CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
boxed_value.h
1
3#ifndef _aspose_system_boxed_value_h_
4#define _aspose_system_boxed_value_h_
5
6#include <fwd.h>
7#include <system/get_hash_code.h>
8#include <system/object.h>
9#include <system/object_type.h>
10#include <system/boxable_traits.h>
11#include <system/timespan.h>
12#include <system/decimal.h>
13#include <system/guid.h>
14#include <system/value_type.h>
15#include <system/type_code.h>
16
17#include <typeinfo>
18#include <type_traits>
19
20namespace System
21{
23 template <typename T> class Nullable;
24
25 namespace BoxedValueDetail
26 {
27 // Although two floating point NaNs are defined by IEC 60559:1989 to always compare as unequal, the contract for System.Object.Equals,
28 // requires that overrides must satisfy the requirements for an equivalence operator. Therefore, System.Double.Equals and System.Single.Equals
29 // return True when comparing two NaNs, while the equality operator returns False in that case, as required by the standard.
35 template<typename T>
36 typename std::enable_if<detail::has_operator_equal<T>::value, bool>::type
37 Equals(T value1, T value2)
38 {
39 return value1 == value2;
40 }
41
47 template<typename T>
48 typename std::enable_if<detail::has_only_method_equals<T>::value, bool>::type
49 Equals(T value1, T value2)
50 {
51 return value1.Equals(value2);
52 }
53
58 template<>
59 inline bool Equals<float>(float value1, float value2)
60 {
61 return (std::isnan(value1) && std::isnan(value2)) ? true : value1 == value2;
62 }
63
68 template<>
69 inline bool Equals<double>(double value1, double value2)
70 {
71 return (std::isnan(value1) && std::isnan(value2)) ? true : value1 == value2;
72 }
73
75 template <typename T>
77 : std::integral_constant<bool, std::is_arithmetic<T>::value || std::is_enum<T>::value>
78 {};
79
81 template<typename T, typename Self>
83 {
86
87 typedef ::System::BaseTypesInfo<BaseType> ThisTypeBaseTypesInfo;
88 RTTI_INFO_TEMPLATE_CLASS(ThisType, ThisTypeBaseTypesInfo);
89
90 public:
91 int CompareTo(T other) override
92 {
93 auto& self = static_cast<Self*>(this)->unbox();
94 return self < other ? -1 : other < self ? 1 : 0;
95 }
96 };
99 {
100 };
101 }
102
108 class ASPOSECPP_SHARED_CLASS BoxedValueBase : public virtual Object
109 {
110 RTTI_INFO(System::BoxedValueBase, ::System::BaseTypesInfo<System::Object>);
111
112 public:
115 virtual ASPOSECPP_SHARED_API bool IsBoxedEnum() = 0;
116
119 virtual ASPOSECPP_SHARED_API uint64_t GetUnsignedLongLongValue() const = 0;
120
123 virtual ASPOSECPP_SHARED_API TypeCode GetTypeCode() const = 0;
124
125 using Object::ToString;
126
128 ASPOSECPP_SHARED_API System::String ToString(const System::String& format) const;
129
130 // Parsing enums
140 static ASPOSECPP_SHARED_API SharedPtr<Object> Parse(const TypeInfo& type, const String& str, bool ignoreCase);
147 static ASPOSECPP_SHARED_API SharedPtr<Object> Parse(const TypeInfo& type, const String& str);
148 };
149
150 namespace TypeCodeHelper
151 {
155 template<typename T>
157 {
158 return TypeCode::Object;
159 }
160
162 template<> inline TypeCode GetTypeCodeFor<bool>() { return TypeCode::Boolean; }
164 template<> inline TypeCode GetTypeCodeFor<char_t>() { return TypeCode::Char; }
166 template<> inline TypeCode GetTypeCodeFor<int8_t>() { return TypeCode::SByte; }
168 template<> inline TypeCode GetTypeCodeFor<uint8_t>() { return TypeCode::Byte; }
170 template<> inline TypeCode GetTypeCodeFor<int16_t>() { return TypeCode::Int16; }
172 template<> inline TypeCode GetTypeCodeFor<uint16_t>() { return TypeCode::UInt16; }
174 template<> inline TypeCode GetTypeCodeFor<int32_t>() { return TypeCode::Int32; }
176 template<> inline TypeCode GetTypeCodeFor<uint32_t>() { return TypeCode::UInt32; }
178 template<> inline TypeCode GetTypeCodeFor<int64_t>() { return TypeCode::Int64; }
180 template<> inline TypeCode GetTypeCodeFor<uint64_t>() { return TypeCode::UInt64; }
182 template<> inline TypeCode GetTypeCodeFor<float>() { return TypeCode::Single; }
184 template<> inline TypeCode GetTypeCodeFor<double>() { return TypeCode::Double; }
186 template<> inline TypeCode GetTypeCodeFor<Decimal>() { return TypeCode::Decimal; }
190 template<> inline TypeCode GetTypeCodeFor<String>() { return TypeCode::String; }
191 }
192
198 template<class T>
199 class ASPOSECPP_SHARED_CLASS BoxedValue : public BoxedValueBase,
200 public std::conditional_t<BoxedValueDetail::ImplementsInterface_v<T, IComparable<T>>,
201 BoxedValueDetail::Comparable<T, BoxedValue<T>>, BoxedValueDetail::NonComparable>
202 {
204 typedef System::BaseTypesInfo<System::Object> baseTypes;
205
207
208 RTTI_INFO_BOXED_CUSTOM(System::BoxedValue<T>, System::BaseTypesInfo<System::Object>);
209
210 friend class System::Nullable<T>;
211
212 public:
215 const System::TypeInfo& GetType() const override
216 {
217 return System::ObjectType::GetType<T>();
218 }
219
222 BoxedValue(const T& value)
223 : m_original_typeid_hash( typeid(T).hash_code() )
224 , m_value_holder(value)
225 {
226 static_assert(System::IsBoxable<T>::value,
227 "Only arithmetic, enums and specified in IsBoxable<> types are supported, use specializations to extend");
228 }
229
232 const T& unbox() const
233 {
234 return m_value_holder;
235 }
236
241 template<class V>
242 bool is() const
243 {
244 return typeid(V).hash_code() == m_original_typeid_hash;
245 }
246
250 bool Equals(ptr obj) override
251 {
252 if( !obj || !obj->Is(GetType()) )
253 return false;
254
255 auto boxed = obj.Cast<BoxedValue<T>>();
256 return BoxedValueDetail::Equals(m_value_holder, boxed->m_value_holder);
257 }
258
260 int GetHashCode() const override
261 {
262 return System::GetHashCode<T>(m_value_holder);
263 }
264
267 String ToString() const override
268 {
269 return ToStringHelper(m_value_holder);
270 }
271
274 bool IsBoxedEnum() override
275 {
276 return false;
277 }
278
280 uint64_t GetUnsignedLongLongValue() const override
281 {
282 return ToUInt64Helper(m_value_holder);
283 }
284
287 TypeCode GetTypeCode() const override
288 {
289 return TypeCodeHelper::GetTypeCodeFor<T>();
290 }
291
292 private:
293
294 // Do not make m_original_typeid_hash public!
295 // The particular values returned by typeid(T).hash_code() are implementation-defined and may vary between executions of the same program
297 size_t m_original_typeid_hash;
298
300 T m_value_holder;
301
305 template<class C>
306 static typename std::enable_if<
307 std::is_arithmetic<C>::value || std::is_enum<C>::value, String>::type
308 ToStringHelper(const C& value)
309 {
310 return String::Format(u"{0}", value);
311 }
312
316 template<typename C>
317 static typename std::enable_if<
318 (!std::is_arithmetic<C>::value && !std::is_enum<C>::value && !IsSmartPtr<C>::value), String>::type
319 ToStringHelper(const C& obj)
320 {
321 return obj.ToString();
322 }
323
327 template<typename C>
328 static typename std::enable_if<IsSmartPtr<C>::value, String>::type
329 ToStringHelper(const C& obj)
330 {
331 return obj->ToString();
332 }
333
337 static String ToStringHelper(bool b)
338 {
339 return b ? u"True" : u"False";
340 }
341
343 template <typename C>
344 static typename std::enable_if<std::is_convertible<C, uint64_t>::value, uint64_t>::type
345 ToUInt64Helper(C value)
346 {
347 return static_cast<uint64_t>(value);
348 }
349
351 template <typename C>
352 static typename std::enable_if<!std::is_convertible<C, uint64_t>::value, uint64_t>::type
353 ToUInt64Helper(C)
354 {
355 return 0;
356 }
357 };
358
363 template <class T>
364 class ASPOSECPP_SHARED_CLASS DefaultBoxedValue : public Object
365 {
367 typedef System::BaseTypesInfo<System::Object> baseTypes;
368
370
371 RTTI_INFO_BOXED_CUSTOM(System::DefaultBoxedValue<T>, System::BaseTypesInfo<System::Object>);
372
373 public:
376 const System::TypeInfo& GetType() const override
377 {
378 return System::ObjectType::GetType<T>();
379 }
380
384 DefaultBoxedValue(const T& value)
385 : m_original_typeid_hash(typeid(T).hash_code())
386 , m_value_holder(value)
387 {
388 }
389
392 const T& unbox() const
393 {
394 return m_value_holder;
395 }
396
401 template<class V>
402 bool is() const
403 {
404 return typeid(V).hash_code() == m_original_typeid_hash;
405 }
406
410 bool Equals(ptr obj) override
411 {
412 if (!obj || !obj->Is(Type()))
413 return false;
414
415 auto boxed = obj.Cast<BoxedValue<T>>();
416 return m_value_holder == boxed->unbox();
417 }
418
420 int GetHashCode() const override
421 {
422 return m_value_holder.GetHashCode();
423 }
424
426 String ToString() const override
427 {
428 return m_value_holder.ToString();
429 }
430
431 private:
432 // Do not make m_original_typeid_hash public!
433 // The particular values returned by typeid(T).hash_code() are implementation-defined and may vary between executions of the same program
435 size_t m_original_typeid_hash;
437 T m_value_holder;
438 };
439
441
444 template <typename T>
445 struct IsBoxedValue : std::false_type {};
446
449 template <typename T>
450 struct IsBoxedValue<BoxedValue<T>> : std::true_type {};
451
453
454} // namespace System
455
456#endif // _aspose_system_boxed_value_h_
A base class that defines an interface and implements some fundamental methods of a descendant class ...
Definition: boxed_value.h:109
static SharedPtr< Object > Parse(const TypeInfo &type, const String &str)
Boxes the value of enumeration constant of the specified enumeration with the specified name.
System::String ToString(const System::String &format) const
Converts boxed object to string using specified format string.
virtual uint64_t GetUnsignedLongLongValue() const =0
Converts the boxed represented by the current object to 64-bit integer value.
virtual TypeCode GetTypeCode() const =0
Returns the value representing the type of the boxed value represented by the current object.
virtual bool IsBoxedEnum()=0
Determines if current object represents a boxed value of enum type.
static SharedPtr< Object > Parse(const TypeInfo &type, const String &str, bool ignoreCase)
Boxes the value of enumeration constant of the specified enumeration with the specified name....
Simple implementation of IComparable<>
Definition: boxed_value.h:83
int CompareTo(T other) override
Compares the current object with the specified object.
Definition: boxed_value.h:91
Dummy base type for boxed types what do not implement IComparable<>
Definition: boxed_value.h:99
Represents a boxed value. Objects of this class should only be allocated using System::MakeObject() f...
Definition: boxed_value.h:202
const T & unbox() const
Unboxes the value represented by the current object.
Definition: boxed_value.h:232
BoxedValue(const T &value)
Constructs an object that represents the specified value boxed.
Definition: boxed_value.h:222
bool Equals(ptr obj) override
Determines the equality of the boxed values represented by the current and specified objects.
Definition: boxed_value.h:250
int GetHashCode() const override
Returns a hash code for the current object.
Definition: boxed_value.h:260
uint64_t GetUnsignedLongLongValue() const override
Returns numeric value of boxed object if it can be cast too, zero otherwise.
Definition: boxed_value.h:280
bool is() const
Determines if the type of the boxed value represented by the current object is V.
Definition: boxed_value.h:242
bool IsBoxedEnum() override
Determines if current object represents a boxed value of enum type.
Definition: boxed_value.h:274
TypeCode GetTypeCode() const override
Returns the value representing the type of the boxed value represented by the current object.
Definition: boxed_value.h:287
const System::TypeInfo & GetType() const override
Gets actual type of object.
Definition: boxed_value.h:215
String ToString() const override
Converts boxed value represented by current object to string.
Definition: boxed_value.h:267
BoxedValue class implementation. Allows it BoxingValue specializations to be declared without duplica...
Definition: boxed_value.h:365
DefaultBoxedValue(const T &value)
Constructs a new instance of DefaultBoxedValue class that represents the specified value.
Definition: boxed_value.h:384
const T & unbox() const
Unboxes the boxed value.
Definition: boxed_value.h:392
int GetHashCode() const override
Returns a hash code for the current object.
Definition: boxed_value.h:420
bool is() const
Determines if the type of the boxed value represented by the current object is V.
Definition: boxed_value.h:402
bool Equals(ptr obj) override
Determines the equality of the boxed values represented by the current and specified objects.
Definition: boxed_value.h:410
String ToString() const override
Returns the string representation of the boxed value.
Definition: boxed_value.h:426
const System::TypeInfo & GetType() const override
Gets actual type of object.
Definition: boxed_value.h:376
Defines a method that compares two objects. Objects of this class should only be allocated using Syst...
Definition: icomparable.h:17
Forward declaration.
Definition: nullable.h:75
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:51
virtual bool Is(const TypeInfo &targetType) const
Check if object represents an instance of type described by targetType. Analog of C# 'is' operator.
virtual String ToString() const
Analog of C# Object.ToString() method. Enables converting custom objects to string.
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
std::enable_if_t< std::is_same< Y, T >::value, SmartPtr< Y > > Cast() const
Casts pointer to its type itself.
Definition: smart_ptr.h:742
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:125
static String Format(const SharedPtr< IFormatProvider > &fp, const String &format, const Args &... args)
Formats string in C# style.
Definition: string.h:1437
String ToString() const
Wrapper for handling String class in contexts where ToString() is being called on value type objects.
Definition: string.h:512
Represents a particular type and provides information about it.
Definition: type_info.h:109
bool Equals< float >(float value1, float value2)
Compares two single-precision floating-point values.
Definition: boxed_value.h:59
bool Equals< double >(double value1, double value2)
Compares two double-precision floating-point values.
Definition: boxed_value.h:69
std::enable_if< detail::has_operator_equal< T >::value, bool >::type Equals(T value1, T value2)
Determines the equality of the specified value using operator==().
Definition: boxed_value.h:37
TypeCode GetTypeCodeFor< float >()
Template specialization for float.
Definition: boxed_value.h:182
TypeCode GetTypeCodeFor< uint16_t >()
Template specialization for uint16_t.
Definition: boxed_value.h:172
TypeCode GetTypeCodeFor< String >()
Template specialization for System::String.
Definition: boxed_value.h:190
TypeCode GetTypeCodeFor< double >()
Template specialization for double.
Definition: boxed_value.h:184
TypeCode GetTypeCodeFor< int64_t >()
Template specialization for int64_t.
Definition: boxed_value.h:178
TypeCode GetTypeCodeFor< bool >()
Template specialization for bool.
Definition: boxed_value.h:162
TypeCode GetTypeCodeFor< char_t >()
Template specialization for char_t.
Definition: boxed_value.h:164
TypeCode GetTypeCodeFor< uint32_t >()
Template specialization for uint32_t.
Definition: boxed_value.h:176
TypeCode GetTypeCodeFor< Decimal >()
Template specialization for System::Decimal.
Definition: boxed_value.h:186
TypeCode GetTypeCodeFor< int16_t >()
Template specialization for int16_t.
Definition: boxed_value.h:170
TypeCode GetTypeCodeFor()
A template function that returns an enum value representing the function's template type argument.
Definition: boxed_value.h:156
TypeCode GetTypeCodeFor< int32_t >()
Template specialization for int32_t.
Definition: boxed_value.h:174
TypeCode GetTypeCodeFor< DateTime >()
Template specialization for System::DateTime.
Definition: boxed_value.h:188
TypeCode GetTypeCodeFor< uint64_t >()
Template specialization for uint64_t.
Definition: boxed_value.h:180
TypeCode GetTypeCodeFor< uint8_t >()
Template specialization for uint8_t.
Definition: boxed_value.h:168
TypeCode GetTypeCodeFor< int8_t >()
Template specialization for int8_t.
Definition: boxed_value.h:166
Definition: db_command.h:9
TypeCode
Represents the type of an object.
Definition: type_code.h:19
@ String
A sealed class type representing Unicode character strings.
@ Boolean
A simple type representing Boolean values of true or false.
@ Int16
An integral type representing signed 16-bit integers with values between -32768 and 32767.
@ Object
A general type representing any reference or value type not explicitly represented by another TypeCod...
@ Single
A floating point type representing values ranging from approximately 1.5 x 10 -45 to 3....
@ SByte
An integral type representing signed 8-bit integers with values between -128 and 127.
@ UInt16
An integral type representing unsigned 16-bit integers with values between 0 and 65535.
@ DateTime
A type representing a date and time value.
@ Char
An integral type representing unsigned 16-bit integers with values between 0 and 65535.
@ Decimal
A simple type representing values ranging from 1.0 x 10 -28 to approximately 7.9 x 10 28 with 28-29 s...
@ Byte
An integral type representing unsigned 8-bit integers with values between 0 and 255.
@ UInt64
An integral type representing unsigned 64-bit integers with values between 0 and 18446744073709551615...
@ Int32
An integral type representing signed 32-bit integers with values between -2147483648 and 2147483647.
@ Double
A floating point type representing values ranging from approximately 5.0 x 10 -324 to 1....
@ UInt32
An integral type representing unsigned 32-bit integers with values between 0 and 4294967295.
@ Int64
An integral type representing signed 64-bit integers with values between -9223372036854775808 and 922...
Template predicate that checks if boxed object should implement given interface by itself.
Definition: boxable_traits.h:33
Template predicate that checks if boxing of the specified type is supported.
Definition: boxable_traits.h:16
TypeInfo structure for BoxedValue class.
Definition: type_info.h:367