CloverBootloader/rEFIt_UEFI/cpp_lib/undefinable.h

78 lines
2.0 KiB
C
Raw Normal View History

2021-03-19 19:37:24 +01:00
/*
* def_types.h
*
* Created on: Mar 19, 2021
* Author: jief
*/
#ifndef CPP_LIB_DEF_TYPES_H_
#define CPP_LIB_DEF_TYPES_H_
template <class T>
class undefinable
{
protected:
bool m_defined = false;
T m_value = T();
2021-03-19 19:37:24 +01:00
public:
bool isDefined() const { return m_defined; }
void setDefined(bool b) { m_defined = b; }
// T& value() { return m_value; } // never allow to return a modifiable value. We need to hook ever assignment possible.
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");
2021-03-19 19:37:24 +01:00
return m_value;
}
undefinable<T>& operator = (T value) {
setDefined(true);
m_value = value;
return *this;
}
};
class undefinable_bool : public undefinable<bool>
{
using super = undefinable<bool>;
public:
undefinable_bool() { }
undefinable_bool(bool newValue) { super::operator=(newValue); }
undefinable_bool& operator = (bool newValue) { super::operator=(newValue); return *this; }
2021-03-19 19:37:24 +01:00
};
class undefinable_uint16 : public undefinable<uint16_t>
{
using super = undefinable<uint16_t>;
public:
undefinable_uint16() { }
undefinable_uint16(uint32_t newValue) { super::operator=(newValue); }
undefinable_uint16& operator = (uint16_t newValue) { super::operator=(newValue); return *this; }
2021-03-19 19:37:24 +01:00
};
class undefinable_uint32 : public undefinable<uint32_t>
{
using super = undefinable<uint32_t>;
public:
undefinable_uint32() { }
undefinable_uint32(uint32_t newValue) { super::operator=(newValue); }
undefinable_uint32& operator = (uint32_t newValue) { super::operator=(newValue); return *this; }
2021-03-19 19:37:24 +01:00
};
class undefinable_XString8 : public undefinable<XString8>
{
using super = undefinable<XString8>;
public:
undefinable_XString8& operator = (XString8 newValue) { super::operator=(newValue); return *this; }
};
2021-03-19 19:37:24 +01:00
#endif /* CPP_LIB_DEF_TYPES_H_ */