/* * * Copyright (c) 2020 Jief * All rights reserved. * */ #ifndef CPP_LIB_DEF_TYPES_H_ #define CPP_LIB_DEF_TYPES_H_ #include "../cpp_foundation/XBool.h" template class undefinable { protected: XBool m_defined = false; T m_value = T(); public: XBool isDefined() const { return m_defined; } void setDefined(XBool b) { m_defined = b; } // T& value() { return m_value; } // never allow to return a modifiable value. Breaks encapsulation. const T& value() const { if ( !isDefined() ) { panic("get value of an undefined undefinable type"); } return m_value; } const T& dgetValue() const { return m_value; } // if !m_defined, m_value = T() explicit operator const T&() const { if ( !isDefined() ) panic("get value of an undefined undefinable type"); return m_value; } undefinable& operator = (T value) { setDefined(true); m_value = value; return *this; } XBool operator ==(const undefinable& other) const { if ( !(m_defined == other.m_defined ) ) return false; if ( m_defined && !(m_value == other.m_value ) ) return false; // we don't test value if this is not defined. return true; } XBool operator !=(const undefinable& other) const { return !(*this == other); } }; class undefinable_bool : public undefinable { using super = undefinable; public: undefinable_bool() { } explicit undefinable_bool(bool newValue) { super::operator=(newValue); } undefinable_bool& operator = (bool newValue) { super::operator=(newValue); return *this; } }; class undefinable_xbool : public undefinable { using super = undefinable; public: undefinable_xbool() { } explicit undefinable_xbool(XBool newValue) { super::operator=(newValue); } undefinable_xbool& operator = (XBool newValue) { super::operator=(newValue); return *this; } }; class undefinable_uint8 : public undefinable { using super = undefinable; public: undefinable_uint8() { } explicit undefinable_uint8(uint8_t newValue) { super::operator=(newValue); } undefinable_uint8& operator = (uint8_t newValue) { super::operator=(newValue); return *this; } }; class undefinable_uint16 : public undefinable { using super = undefinable; public: undefinable_uint16() { } explicit undefinable_uint16(uint16_t newValue) { super::operator=(newValue); } undefinable_uint16& operator = (uint16_t newValue) { super::operator=(newValue); return *this; } }; class undefinable_uint32 : public undefinable { using super = undefinable; public: undefinable_uint32() { } explicit undefinable_uint32(uint32_t newValue) { super::operator=(newValue); } undefinable_uint32& operator = (uint32_t newValue) { super::operator=(newValue); return *this; } }; class undefinable_XString8 : public undefinable { using super = undefinable; public: undefinable_XString8() { } explicit undefinable_XString8(const XString8& newValue) { super::operator=(newValue); } undefinable_XString8& operator = (XString8 newValue) { super::operator=(newValue); return *this; } }; #endif /* CPP_LIB_DEF_TYPES_H_ */