Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
StrongTypeDef.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2//
3// ActiveParts (AP) and the corresponding Data Flow Framework (DFF) is invented and designed by Jakob Daescher.
4// ANY USE OF THIS CODE CONSTITUTES ACCEPTANCE OF THE TERMS OF THE COPYRIGHT NOTICE.
5// ===================================================================================================
6// COPYRIGHT NOTICE
7// ===================================================================================================
8// Copyright (C) 2005-2075, IMT Information Management Technology AG, 9470 Buchs, Switzerland
9// All rights reserved.
10// This code is proprietary software of IMT Information Management Technology AG (hereinafter: "IMT").
11// Proprietary software is computer software licensed under exclusive legal right of IMT.
12//
13// The licensee is given the irrevocable, perpetual, worldwide, non-exclusive right and license to use,
14// execute and reproduce the software in binary form within the licensed products.
15//
16// Redistribution and use in source forms, without modification, are permitted provided that the following conditions are met:
17// (1) Copying of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
18// (2) Copying of source code is only allowed for regulatory documentation and archiving purposes
19// (3) Redistributions in binary form must reproduce the above copyright notice,
20// this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
21//
22// IMT provide no reassurances that the source code provided does not infringe
23// any patent, copyright, or any other intellectual property rights of third parties.
24// IMT disclaim any liability to any recipient for claims brought against
25// recipient by any third party for infringement of that parties intellectual property rights.
26//
27// THIS SOFTWARE IS PROVIDED BY IMT AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29// IN NO EVENT SHALL IMT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30// OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCURE-MENT OF SUBSTITUTE GOODS OR SERVICES;
31// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
33// IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34// ===================================================================================================
35
36#ifndef IMT_BASE_CORE_UTIL_STRONGTYPEDEF_H
37#define IMT_BASE_CORE_UTIL_STRONGTYPEDEF_H
38
39#include <type_traits>
40#include <utility>
41
42namespace imt {
43namespace base {
44namespace core {
45namespace util {
46
50template<class T, template<class> class CrtpType>
51struct CrtpHelper {
52 T& underlying() noexcept {
53 return static_cast<T&>(*this);
54 }
55
56 T const& underlying() const noexcept {
57 return static_cast<T const&>(*this);
58 }
59};
60
61template<class T>
62struct Ignore1 {
63};
64
65template<class T>
66struct Ignore2 {
67};
68
69template<class T>
70struct Ignore3 {
71};
72
73template<class T>
74struct Ignore4 {
75};
76
77template<class T>
78struct Ignore5 {
79};
80
81template<class T>
82struct Ignore6 {
83};
84
85template<class T>
86struct Ignore7 {
87};
88
89template<class T>
90struct Ignore8 {
91};
92
93template<class T>
94struct Ignore9 {
95};
96
97template<class T>
98struct Ignore10 {
99};
100
104template<class T>
105struct EqualityComparable : CrtpHelper<T, EqualityComparable> {
106 bool operator==(T const& other) const {
107 return other.get() == this->underlying().get();
108 }
109 bool operator!=(T const& other) const {
110 return !(*this == other);
111 }
112};
113
117template<class T>
118struct LessThanComparable : CrtpHelper<T, LessThanComparable> {
119 bool operator<(T const& other) const {
120 return this->underlying().get() < other.get();
121 }
122 bool operator>(T const& other) const {
123 return other.get() < this->underlying().get();
124 }
125 bool operator<=(T const& other) const {
126 return !(other.get() < this->underlying().get());
127 }
128 bool operator>=(T const& other) const {
129 return !(*this < other);
130 }
131};
132
136template<class T>
140};
141
145template<class T>
146struct Addable : CrtpHelper<T, Addable> {
147 T operator+(T const& other) const {
148 return T(this->underlying().get() + other.get());
149 }
150 T& operator+=(T const& other) {
151 this->underlying().get() += other.get();
152 return this->underlying();
153 }
154};
155
159template<class T>
160struct Subtractable : CrtpHelper<T, Subtractable> {
161 T operator-(T const& other) const {
162 return T(this->underlying().get() - other.get());
163 }
164 T& operator-=(T const& other) {
165 this->underlying().get() -= other.get();
166 return this->underlying();
167 }
168};
169
173template<class T>
175 : Addable<T>,
176 Subtractable<T> {
177};
178
182template<class T>
183struct Multipliable : CrtpHelper<T, Multipliable> {
184 T operator*(T const& other) const {
185 return T(this->underlying().get() * other.get());
186 }
187};
188
192template<class T>
193struct Dividable : CrtpHelper<T, Dividable> {
194 T operator/(T const& other) const {
195 return T(this->underlying().get() / other.get());
196 }
197};
198
202template<class T>
204 : Multipliable<T>,
205 Dividable<T> {
206};
207
211template<class T>
213 : Additive<T>,
214 Multiplicative<T> {
215};
216
220template<class T>
221struct Incrementable : CrtpHelper<T, Incrementable> {
223 ++(this->underlying().get());
224 return this->underlying();
225 }
226 T operator++(int) {
227 T temp(this->underlying());
228 ++(this->underlying().get());
229 return temp;
230 }
231};
232
236template<class T>
237struct Decrementable : CrtpHelper<T, Decrementable> {
239 --(this->underlying().get());
240 return this->underlying();
241 }
242 T operator--(int) {
243 T temp(this->underlying());
244 --(this->underlying().get());
245 return temp;
246 }
247};
248
252template<class T>
254 : Incrementable<T>,
255 Decrementable<T> {
256};
257
264template<class T, class TagType, template<class> class Skill1 = Ignore1, template<class> class Skill2 = Ignore2, template<class> class Skill3 = Ignore3, template<class> class Skill4 = Ignore4, template<class> class Skill5 = Ignore5, template<class> class Skill6 = Ignore6, template<class> class Skill7 = Ignore7, template<class> class Skill8 = Ignore8, template<class> class Skill9 = Ignore9, template<class> class Skill10 = Ignore10>
266 : public Skill1<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
267 public Skill2<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
268 public Skill3<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
269 public Skill4<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
270 public Skill5<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
271 public Skill6<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
272 public Skill7<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
273 public Skill8<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
274 public Skill9<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>>,
275 public Skill10<StrongTypedef<T, TagType, Skill1, Skill2, Skill3, Skill4, Skill5, Skill6, Skill7, Skill8, Skill9, Skill10>> {
276public:
277
281 constexpr StrongTypedef() noexcept(std::is_nothrow_default_constructible<T>::value) :
282 m_value() {
283 }
284
288 explicit constexpr StrongTypedef(T const& value) noexcept(std::is_nothrow_copy_constructible<T>::value) :
289 m_value(value) {
290 }
291
295 explicit constexpr StrongTypedef(T&& value) noexcept(std::is_nothrow_move_constructible<T>::value) :
296 m_value(std::move(value)) {
297 }
302 T& get() noexcept {
303 return m_value;
304 }
309 T const& get() const noexcept {
310 return m_value;
311 }
312
313private:
314
315 // instance value
316 T m_value;
317};
318
319} // namespace util
320} // namespace core
321} // namespace base
322} // namespace imt
323
324#endif // IMT_BASE_CORE_UTIL_STRONGTYPEDEF_H
Prevent bugs at compile time by providing strongly-typed and expressive interfaces with zero overhead...
constexpr StrongTypedef(T &&value) noexcept(std::is_nothrow_move_constructible< T >::value)
Moves given value into this.
constexpr StrongTypedef() noexcept(std::is_nothrow_default_constructible< T >::value)
Value-Initializes underlying value.
T & get() noexcept
Returns writeable reference to held value.
constexpr StrongTypedef(T const &value) noexcept(std::is_nothrow_copy_constructible< T >::value)
Initializes this with given value.
T const & get() const noexcept
Returns read-only reference to held value.
This is a application specific file which is used to configure Imt.Base.Core.Math.
Requires +, += from the underlying type and provides +, +=.
T operator+(T const &other) const
T & operator+=(T const &other)
Groups Addable and Subtractable to one skill.
Additive and Multiplicative to one skill.
Requires == from the underlying type and provides == and !=.
T const & underlying() const noexcept
Requires –i from the underlying type and provides –i, i–.
Requires / from the underlying type and provides /.
T operator/(T const &other) const
Requires == from the underlying type and provides == and !=.
bool operator!=(T const &other) const
bool operator==(T const &other) const
Requires ++i from the underlying type and provides ++i, i++.
Requires < from the underlying type and provides <, >, <=, >=.
bool operator>=(T const &other) const
bool operator<=(T const &other) const
Requires * from the underlying type and provides *.
T operator*(T const &other) const
Groups Multipliable and Dividable to one skill.
Requires -, -= from the underlying type and provides -, -=.
T operator-(T const &other) const
Provides ==, !=, <, >, <=, >=.
Groups imt::base::core::util::Incrementable and imt::base::core::util::Decrementable to one skill.