kakoune/src/optional.hh

90 lines
2.0 KiB
C++
Raw Normal View History

#ifndef optional_hh_INCLUDED
#define optional_hh_INCLUDED
#include "assert.hh"
namespace Kakoune
{
template<typename T>
struct Optional
{
public:
constexpr Optional() : m_valid(false) {}
Optional(const T& other) : m_valid(true) { new (&m_value) T(other); }
Optional(T&& other) : m_valid(true) { new (&m_value) T(std::move(other)); }
Optional(const Optional& other)
: m_valid(other.m_valid)
{
if (m_valid)
new (&m_value) T(other.m_value);
}
Optional(Optional&& other)
2014-12-25 11:59:06 +01:00
noexcept(noexcept(new (nullptr) T(std::move(other.m_value))))
: m_valid(other.m_valid)
{
if (m_valid)
new (&m_value) T(std::move(other.m_value));
}
Optional& operator=(const Optional& other)
{
2014-12-25 11:59:06 +01:00
destruct_ifn();
if ((m_valid = other.m_valid))
new (&m_value) T(other.m_value);
return *this;
}
Optional& operator=(Optional&& other)
{
2014-12-25 11:59:06 +01:00
destruct_ifn();
if ((m_valid = other.m_valid))
new (&m_value) T(std::move(other.m_value));
return *this;
}
2014-12-25 11:59:06 +01:00
~Optional() { destruct_ifn(); }
constexpr explicit operator bool() const noexcept { return m_valid; }
2014-08-19 19:55:36 +02:00
bool operator==(const Optional& other) const
{
if (m_valid == other.m_valid)
{
if (m_valid)
return m_value == other.m_value;
return true;
}
return false;
}
T& operator*()
{
kak_assert(m_valid);
return m_value;
}
const T& operator*() const { return *const_cast<Optional&>(*this); }
T* operator->()
{
kak_assert(m_valid);
return &m_value;
}
const T* operator->() const { return const_cast<Optional&>(*this).operator->(); }
template<typename U>
T value_or(U&& fallback) const { return m_valid ? m_value : T{fallback}; }
private:
2014-12-25 11:59:06 +01:00
void destruct_ifn() { if (m_valid) m_value.~T(); }
union { T m_value; };
bool m_valid;
};
}
#endif // optional_hh_INCLUDED