2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2021-02-23 09:41:26 +01:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2021-07-02 17:42:50 +02:00
|
|
|
* Copyright (c) 2021, Daniel Bertalan <dani@danielbertalan.dev>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-07-08 11:29:38 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Assertions.h>
|
2020-02-06 11:55:06 +01:00
|
|
|
#include <AK/StdLibExtras.h>
|
2020-03-08 12:34:33 +01:00
|
|
|
#include <AK/Types.h>
|
2020-11-21 18:02:56 -07:00
|
|
|
#include <AK/kmalloc.h>
|
2019-07-08 11:29:38 +02:00
|
|
|
|
2020-02-14 22:29:06 +01:00
|
|
|
namespace AK {
|
|
|
|
|
2021-09-07 20:46:23 +00:00
|
|
|
// NOTE: If you're here because of an internal compiler error in GCC 10.3.0+,
|
|
|
|
// it's because of the following bug:
|
|
|
|
//
|
|
|
|
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96745
|
|
|
|
//
|
|
|
|
// Make sure you didn't accidentally make your destructor private before
|
|
|
|
// you start bug hunting. :^)
|
|
|
|
|
2019-07-08 11:29:38 +02:00
|
|
|
template<typename T>
|
2021-07-01 11:29:28 +02:00
|
|
|
class [[nodiscard]] Optional {
|
2019-07-08 11:29:38 +02:00
|
|
|
public:
|
2021-04-15 10:32:48 -04:00
|
|
|
using ValueType = T;
|
|
|
|
|
2021-02-23 09:41:26 +01:00
|
|
|
ALWAYS_INLINE Optional() = default;
|
2019-07-08 11:29:38 +02:00
|
|
|
|
2021-07-02 17:42:50 +02:00
|
|
|
#ifdef AK_HAS_CONDITIONALLY_TRIVIAL
|
2021-09-03 23:57:37 +02:00
|
|
|
Optional(Optional const& other) requires(!IsCopyConstructible<T>) = delete;
|
|
|
|
Optional(Optional const& other) = default;
|
2019-07-08 11:29:38 +02:00
|
|
|
|
2021-07-02 17:42:50 +02:00
|
|
|
Optional(Optional&& other) requires(!IsMoveConstructible<T>) = delete;
|
2019-08-08 18:34:59 +02:00
|
|
|
|
2021-09-03 23:57:37 +02:00
|
|
|
Optional& operator=(Optional const&) requires(!IsCopyConstructible<T> || !IsDestructible<T>) = delete;
|
|
|
|
Optional& operator=(Optional const&) = default;
|
2019-07-08 11:29:38 +02:00
|
|
|
|
2021-07-02 17:42:50 +02:00
|
|
|
Optional& operator=(Optional&& other) requires(!IsMoveConstructible<T> || !IsDestructible<T>) = delete;
|
|
|
|
|
|
|
|
~Optional() requires(!IsDestructible<T>) = delete;
|
|
|
|
~Optional() = default;
|
|
|
|
#endif
|
2019-07-08 11:29:38 +02:00
|
|
|
|
2021-09-03 23:57:37 +02:00
|
|
|
ALWAYS_INLINE Optional(Optional const& other)
|
2021-07-02 17:42:50 +02:00
|
|
|
#ifdef AK_HAS_CONDITIONALLY_TRIVIAL
|
|
|
|
requires(!IsTriviallyCopyConstructible<T>)
|
|
|
|
#endif
|
2019-07-08 11:29:38 +02:00
|
|
|
: m_has_value(other.m_has_value)
|
|
|
|
{
|
2021-07-02 17:42:50 +02:00
|
|
|
if (other.has_value()) {
|
2021-02-23 09:41:26 +01:00
|
|
|
new (&m_storage) T(other.value());
|
2019-07-08 11:29:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-02 17:42:50 +02:00
|
|
|
ALWAYS_INLINE Optional(Optional&& other)
|
2021-05-08 12:22:57 +03:00
|
|
|
: m_has_value(other.m_has_value)
|
|
|
|
{
|
2021-07-02 17:42:50 +02:00
|
|
|
if (other.has_value()) {
|
|
|
|
new (&m_storage) T(other.release_value());
|
2021-05-08 12:22:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-02 17:42:50 +02:00
|
|
|
template<typename U = T>
|
|
|
|
ALWAYS_INLINE explicit(!IsConvertible<U&&, T>) Optional(U&& value) requires(!IsSame<RemoveCVReference<U>, Optional<T>> && IsConstructible<T, U&&>)
|
2021-05-08 12:22:57 +03:00
|
|
|
: m_has_value(true)
|
|
|
|
{
|
2021-07-02 17:42:50 +02:00
|
|
|
new (&m_storage) T(forward<U>(value));
|
2021-05-08 12:22:57 +03:00
|
|
|
}
|
|
|
|
|
2021-09-03 23:57:37 +02:00
|
|
|
ALWAYS_INLINE Optional& operator=(Optional const& other)
|
2021-07-02 17:42:50 +02:00
|
|
|
#ifdef AK_HAS_CONDITIONALLY_TRIVIAL
|
|
|
|
requires(!IsTriviallyCopyConstructible<T> || !IsTriviallyDestructible<T>)
|
|
|
|
#endif
|
2019-07-08 11:29:38 +02:00
|
|
|
{
|
|
|
|
if (this != &other) {
|
|
|
|
clear();
|
|
|
|
m_has_value = other.m_has_value;
|
2021-07-02 17:42:50 +02:00
|
|
|
if (other.has_value()) {
|
2019-07-08 11:29:38 +02:00
|
|
|
new (&m_storage) T(other.value());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2021-02-23 09:41:26 +01:00
|
|
|
ALWAYS_INLINE Optional& operator=(Optional&& other)
|
2019-07-08 11:29:38 +02:00
|
|
|
{
|
|
|
|
if (this != &other) {
|
|
|
|
clear();
|
|
|
|
m_has_value = other.m_has_value;
|
2021-07-02 17:42:50 +02:00
|
|
|
if (other.has_value()) {
|
2019-07-08 11:29:38 +02:00
|
|
|
new (&m_storage) T(other.release_value());
|
2021-07-02 17:42:50 +02:00
|
|
|
}
|
2019-07-08 11:29:38 +02:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-08-22 15:57:34 -06:00
|
|
|
template<typename O>
|
2021-09-03 23:57:37 +02:00
|
|
|
ALWAYS_INLINE bool operator==(Optional<O> const& other) const
|
2020-08-22 15:57:34 -06:00
|
|
|
{
|
|
|
|
return has_value() == other.has_value() && (!has_value() || value() == other.value());
|
|
|
|
}
|
|
|
|
|
2021-06-01 10:12:53 +02:00
|
|
|
template<typename O>
|
|
|
|
ALWAYS_INLINE bool operator==(O const& other) const
|
|
|
|
{
|
|
|
|
return has_value() && value() == other;
|
|
|
|
}
|
|
|
|
|
2020-04-30 11:43:25 +02:00
|
|
|
ALWAYS_INLINE ~Optional()
|
2021-07-02 17:42:50 +02:00
|
|
|
#ifdef AK_HAS_CONDITIONALLY_TRIVIAL
|
|
|
|
requires(!IsTriviallyDestructible<T>)
|
|
|
|
#endif
|
2019-07-08 11:29:38 +02:00
|
|
|
{
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2020-04-30 11:43:25 +02:00
|
|
|
ALWAYS_INLINE void clear()
|
2019-07-08 11:29:38 +02:00
|
|
|
{
|
|
|
|
if (m_has_value) {
|
|
|
|
value().~T();
|
|
|
|
m_has_value = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-29 19:18:01 +02:00
|
|
|
template<typename... Parameters>
|
2020-12-30 22:44:54 +01:00
|
|
|
ALWAYS_INLINE void emplace(Parameters&&... parameters)
|
2020-08-29 19:18:01 +02:00
|
|
|
{
|
|
|
|
clear();
|
|
|
|
m_has_value = true;
|
|
|
|
new (&m_storage) T(forward<Parameters>(parameters)...);
|
|
|
|
}
|
|
|
|
|
2021-02-14 15:21:04 -08:00
|
|
|
[[nodiscard]] ALWAYS_INLINE bool has_value() const { return m_has_value; }
|
2019-07-08 11:29:38 +02:00
|
|
|
|
2021-09-04 00:44:10 +02:00
|
|
|
[[nodiscard]] ALWAYS_INLINE T& value() &
|
2019-07-08 11:29:38 +02:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(m_has_value);
|
2021-07-01 11:29:28 +02:00
|
|
|
return *__builtin_launder(reinterpret_cast<T*>(&m_storage));
|
2019-07-08 11:29:38 +02:00
|
|
|
}
|
|
|
|
|
2021-09-04 00:44:10 +02:00
|
|
|
[[nodiscard]] ALWAYS_INLINE T const& value() const&
|
2019-07-08 11:29:38 +02:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(m_has_value);
|
2021-09-03 23:57:37 +02:00
|
|
|
return *__builtin_launder(reinterpret_cast<T const*>(&m_storage));
|
2019-07-08 11:29:38 +02:00
|
|
|
}
|
|
|
|
|
2021-09-04 00:44:10 +02:00
|
|
|
[[nodiscard]] ALWAYS_INLINE T value() &&
|
|
|
|
{
|
|
|
|
return release_value();
|
|
|
|
}
|
|
|
|
|
2021-02-14 15:21:04 -08:00
|
|
|
[[nodiscard]] T release_value()
|
2019-07-08 11:29:38 +02:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(m_has_value);
|
2019-07-08 11:29:38 +02:00
|
|
|
T released_value = move(value());
|
|
|
|
value().~T();
|
2019-08-05 21:47:36 +02:00
|
|
|
m_has_value = false;
|
2019-07-08 11:29:38 +02:00
|
|
|
return released_value;
|
|
|
|
}
|
|
|
|
|
2021-09-04 00:44:10 +02:00
|
|
|
[[nodiscard]] ALWAYS_INLINE T value_or(T const& fallback) const&
|
2019-07-24 07:26:02 +02:00
|
|
|
{
|
2019-07-30 19:45:40 +02:00
|
|
|
if (m_has_value)
|
2019-07-24 07:26:02 +02:00
|
|
|
return value();
|
|
|
|
return fallback;
|
|
|
|
}
|
|
|
|
|
2021-09-04 00:44:10 +02:00
|
|
|
[[nodiscard]] ALWAYS_INLINE T value_or(T&& fallback) &&
|
|
|
|
{
|
|
|
|
if (m_has_value)
|
|
|
|
return move(value());
|
|
|
|
return move(fallback);
|
|
|
|
}
|
|
|
|
|
2021-09-03 23:57:37 +02:00
|
|
|
ALWAYS_INLINE T const& operator*() const { return value(); }
|
2021-02-23 09:41:26 +01:00
|
|
|
ALWAYS_INLINE T& operator*() { return value(); }
|
2020-12-30 21:16:37 +01:00
|
|
|
|
2021-09-03 23:57:37 +02:00
|
|
|
ALWAYS_INLINE T const* operator->() const { return &value(); }
|
2021-02-23 09:41:26 +01:00
|
|
|
ALWAYS_INLINE T* operator->() { return &value(); }
|
2020-12-30 21:16:37 +01:00
|
|
|
|
2019-07-08 11:29:38 +02:00
|
|
|
private:
|
2021-07-01 11:29:28 +02:00
|
|
|
alignas(T) u8 m_storage[sizeof(T)];
|
2019-07-08 11:29:38 +02:00
|
|
|
bool m_has_value { false };
|
|
|
|
};
|
2020-02-14 22:29:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
using AK::Optional;
|