Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
Optional.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_CORE_UTIL_OPTIONAL_H
4#define IMT_BASE_CORE_UTIL_OPTIONAL_H
5
8
9namespace imt {
10namespace base {
11namespace core {
12namespace util {
13
19// AXIVION Next Construct AutosarC++19_03-M2.10.1: Name given by STL.
20template<typename ElementType>
21class Optional final {
22
23public:
24
28 // AXIVION Next Construct AutosarC++19_03-A12.1.5: No constructor to delegate to.
29 constexpr Optional() noexcept :
30 m_hasValue {false},
31 m_value {} {
32 }
33
38 // AXIVION Next Construct AutosarC++19_03-A12.1.4: Implicit conversion on purpose (same as STL implementation).
39 constexpr Optional(ElementType const value) noexcept :
40 m_hasValue {true},
41 m_value {value} {
42 }
43
48 inline bool hasValue() const noexcept {
49 return m_hasValue;
50 }
51
57 inline ElementType value() const {
58 // STL would throw std::bad_optional_access here. Because Imt.Base do not use exceptions, an assert is used instead.
59 const bool hasVal {hasValue()};
60 ASSERT_DEBUG1(hasVal, "No value available");
61 return m_value;
62 }
63
69 inline ElementType valueOr(ElementType const fallbackValue) const noexcept {
70 if (!hasValue()) {
71 return fallbackValue;
72 }
73 return m_value;
74 }
75
81 inline ElementType operator*() const {
82 return value();
83 }
84
90 inline ElementType operator->() const {
91 return value();
92 }
93
98 // AXIVION Next Codeline AutosarC++19_03-A13.5.2: Implitcit bool conversion is intended (same as STL implementation).
99 // AXIVION Next Codeline AutosarC++19_03-A13.5.3: Overload of operator intended (same as STL implementation).
100 operator bool() const noexcept {
101 return m_hasValue;
102 }
103
104private:
105
106 bool m_hasValue;
107 ElementType m_value;
108};
109
115template<typename ElementType>
116bool operator==(Optional<ElementType> const left, Optional<ElementType> const right) noexcept {
117 if (!left.hasValue() && !right.hasValue()) {
118 return true;
119 }
120 if (!left.hasValue() || !right.hasValue()) {
121 return false;
122 }
123 return left.value() == right.value();
124}
125
131template<typename ElementType>
132bool operator!=(Optional<ElementType> const left, Optional<ElementType> const right) noexcept {
133 return !(left == right);
134}
135
141template<typename ElementType>
142bool operator>(Optional<ElementType> const left, Optional<ElementType> const right) noexcept {
143 if (!left.hasValue()) {
144 return false;
145 }
146 if (!right.hasValue()) {
147 return false;
148 }
149 return left.value() > right.value();
150}
151
157template<typename ElementType>
158bool operator<(Optional<ElementType> const left, Optional<ElementType> const right) noexcept {
159 if (!left.hasValue()) {
160 return false;
161 }
162 if (!right.hasValue()) {
163 return false;
164 }
165 return left.value() < right.value();
166}
167
173template<typename ElementType>
174bool operator<=(Optional<ElementType> const left, Optional<ElementType> const right) noexcept {
175 if (left == right) {
176 return true;
177 }
178 return left < right;
179}
180
186template<typename ElementType>
187bool operator>=(Optional<ElementType> const left, Optional<ElementType> const right) noexcept {
188 if (left == right) {
189 return true;
190 }
191 return left > right;
192}
193
194} // namespace util
195} // namespace core
196} // namespace base
197} // namespace imt
198
199#endif // IMT_BASE_CORE_UTIL_OPTIONAL_H
void ASSERT_DEBUG1(bool const condition, char_t const *const pMessage) noexcept
"Assert for debugging only" (ASSERT_DEBUG).
Definition Diagnostics.h:77
Port of the std::optional type.
Definition Optional.h:21
constexpr Optional(ElementType const value) noexcept
Constructs an optional object with a value.
Definition Optional.h:39
constexpr Optional() noexcept
Constructs an empty optional object with no value.
Definition Optional.h:29
bool hasValue() const noexcept
Check if a value is contained.
Definition Optional.h:48
ElementType valueOr(ElementType const fallbackValue) const noexcept
Gets the contained value or the given fallback value.
Definition Optional.h:69
ElementType value() const
Gets the contained value.
Definition Optional.h:57
ElementType operator*() const
Gets the contained value.
Definition Optional.h:81
ElementType operator->() const
Gets the contained value.
Definition Optional.h:90
bool operator<(DateTimeStamp const left, DateTimeStamp const right) noexcept
Less than operator overload.
bool operator>=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Greater than or equal operator overload.
bool operator>(DateTimeStamp const left, DateTimeStamp const right) noexcept
Greater than operator overload.
bool operator<=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Less than or equal operator overload.
bool operator==(DateTimeStamp const left, DateTimeStamp const right) noexcept
Equals operator overload.
bool operator!=(DateTimeStamp const left, DateTimeStamp const right) noexcept
Not equals operator overload.
This is a application specific file which is used to configure Imt.Base.Core.Math.
#define bool
Definition stdbool.h:42