3#ifndef _aspose_system_boxed_value_h_
4#define _aspose_system_boxed_value_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>
23 template <
typename T>
class Nullable;
25 namespace BoxedValueDetail
36 typename std::enable_if<detail::has_operator_equal<T>::value,
bool>::type
39 return value1 == value2;
48 typename std::enable_if<detail::has_only_method_equals<T>::value,
bool>::type
51 return value1.Equals(value2);
61 return (std::isnan(value1) && std::isnan(value2)) ? true : value1 == value2;
71 return (std::isnan(value1) && std::isnan(value2)) ? true : value1 == value2;
122 namespace TypeCodeHelper
174 typedef System::BaseTypesInfo<System::Object> baseTypes;
187 return System::ObjectType::GetType<T>();
193 : m_original_typeid_hash( typeid(T).hash_code() )
194 , m_value_holder(value)
197 "Only arithmetic, enums and specified in IsBoxable<> types are supported, use specializations to extend");
204 return m_value_holder;
214 return typeid(V).hash_code() == m_original_typeid_hash;
222 if( !obj || !obj->
Is(GetType()) )
232 return System::GetHashCode<T>(m_value_holder);
239 return ToStringHelper(m_value_holder);
252 return ToUInt64Helper(m_value_holder);
259 return TypeCodeHelper::GetTypeCodeFor<T>();
267 size_t m_original_typeid_hash;
276 static typename std::enable_if<
277 std::is_arithmetic<C>::value || std::is_enum<C>::value,
String>::type
278 ToStringHelper(
const C& value)
287 static typename std::enable_if<
288 (!std::is_arithmetic<C>::value && !std::is_enum<C>::value && !IsSmartPtr<C>::value), String>::type
289 ToStringHelper(
const C& obj)
291 return obj.ToString();
298 static typename std::enable_if<IsSmartPtr<C>::value, String>::type
299 ToStringHelper(
const C& obj)
301 return obj->ToString();
307 static String ToStringHelper(
bool b)
309 return b ? u
"True" : u
"False";
313 template <
typename C>
314 static typename std::enable_if<std::is_convertible<C, uint64_t>::value, uint64_t>::type
315 ToUInt64Helper(C value)
317 return static_cast<uint64_t
>(value);
321 template <
typename C>
322 static typename std::enable_if<!std::is_convertible<C, uint64_t>::value, uint64_t>::type
337 typedef System::BaseTypesInfo<System::Object> baseTypes;
348 return System::ObjectType::GetType<T>();
355 : m_original_typeid_hash(typeid(T).hash_code())
356 , m_value_holder(value)
364 return m_value_holder;
374 return typeid(V).hash_code() == m_original_typeid_hash;
382 if (!obj || !obj->
Is(Type()))
386 return m_value_holder == boxed->
unbox();
392 return m_value_holder.GetHashCode();
405 size_t m_original_typeid_hash;
414 template <
typename T>
415 struct IsBoxedValue : std::false_type {};
419 template <
typename T>
420 struct IsBoxedValue<BoxedValue<
T>> : std::true_type {};
A base class that defines an interface and implements some fundamental methods of a descendant class ...
Definition: boxed_value.h:81
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....
Represents a boxed value. Objects of this class should only be allocated using System::MakeObject() f...
Definition: boxed_value.h:172
const T & unbox() const
Unboxes the value represented by the current object.
Definition: boxed_value.h:202
BoxedValue(const T &value)
Constructs an object that represents the specified value boxed.
Definition: boxed_value.h:192
bool Equals(ptr obj) override
Determines the equality of the boxed values represented by the current and specified objects.
Definition: boxed_value.h:220
int GetHashCode() const override
Returns a hash code for the current object.
Definition: boxed_value.h:230
uint64_t GetUnsignedLongLongValue() const override
Returns numeric value of boxed object if it can be cast too, zero otherwise.
Definition: boxed_value.h:250
bool is() const
Determines if the type of the boxed value represented by the current object is V.
Definition: boxed_value.h:212
bool IsBoxedEnum() override
Determines if current object represents a boxed value of enum type.
Definition: boxed_value.h:244
TypeCode GetTypeCode() const override
Returns the value representing the type of the boxed value represented by the current object.
Definition: boxed_value.h:257
const System::TypeInfo & GetType() const override
Gets actual type of object.
Definition: boxed_value.h:185
String ToString() const override
Converts boxed value represented by current object to string.
Definition: boxed_value.h:237
BoxedValue class implementation. Allows it BoxingValue specializations to be declared without duplica...
Definition: boxed_value.h:335
DefaultBoxedValue(const T &value)
Constructs a new instance of DefaultBoxedValue class that represents the specified value.
Definition: boxed_value.h:354
const T & unbox() const
Unboxes the boxed value.
Definition: boxed_value.h:362
int GetHashCode() const override
Returns a hash code for the current object.
Definition: boxed_value.h:390
bool is() const
Determines if the type of the boxed value represented by the current object is V.
Definition: boxed_value.h:372
bool Equals(ptr obj) override
Determines the equality of the boxed values represented by the current and specified objects.
Definition: boxed_value.h:380
String ToString() const override
Returns the string representation of the boxed value.
Definition: boxed_value.h:396
const System::TypeInfo & GetType() const override
Gets actual type of object.
Definition: boxed_value.h:346
Forward declaration.
Definition: nullable.h:74
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
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:122
static String Format(const SharedPtr< IFormatProvider > &fp, const String &format, const Args &... args)
Formats string in C# style.
Definition: string.h:1405
String ToString() const
Wrapper for handling String class in contexts where ToString() is being called on value type objects.
Definition: string.h:494
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:154
TypeCode GetTypeCodeFor< uint16_t >()
Template specialization for uint16_t.
Definition: boxed_value.h:144
TypeCode GetTypeCodeFor< String >()
Template specialization for System::String.
Definition: boxed_value.h:162
TypeCode GetTypeCodeFor< double >()
Template specialization for double.
Definition: boxed_value.h:156
TypeCode GetTypeCodeFor< int64_t >()
Template specialization for int64_t.
Definition: boxed_value.h:150
TypeCode GetTypeCodeFor< bool >()
Template specialization for bool.
Definition: boxed_value.h:134
TypeCode GetTypeCodeFor< char_t >()
Template specialization for char_t.
Definition: boxed_value.h:136
TypeCode GetTypeCodeFor< uint32_t >()
Template specialization for uint32_t.
Definition: boxed_value.h:148
TypeCode GetTypeCodeFor< Decimal >()
Template specialization for System::Decimal.
Definition: boxed_value.h:158
TypeCode GetTypeCodeFor< int16_t >()
Template specialization for int16_t.
Definition: boxed_value.h:142
TypeCode GetTypeCodeFor()
A template function that returns an enum value representing the function's template type argument.
Definition: boxed_value.h:128
TypeCode GetTypeCodeFor< int32_t >()
Template specialization for int32_t.
Definition: boxed_value.h:146
TypeCode GetTypeCodeFor< DateTime >()
Template specialization for System::DateTime.
Definition: boxed_value.h:160
TypeCode GetTypeCodeFor< uint64_t >()
Template specialization for uint64_t.
Definition: boxed_value.h:152
TypeCode GetTypeCodeFor< uint8_t >()
Template specialization for uint8_t.
Definition: boxed_value.h:140
TypeCode GetTypeCodeFor< int8_t >()
Template specialization for int8_t.
Definition: boxed_value.h:138
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 boxing of the specified type is supported.
Definition: boxable_traits.h:16
TypeInfo structure for BoxedValue class.
Definition: type_info.h:367