37#ifndef H_OGF_BASIC_TYPES_ANY_H
38#define H_OGF_BASIC_TYPES_ANY_H
41#include <OGF/gom/services/life_cycle.h>
49#ifdef GEO_COMPILER_CLANG
50#pragma GCC diagnostic push
51#pragma GCC diagnostic ignored "-Wcast-align"
69 enum { BUFFER_SIZE = 40 };
76 Any() : value_(nullptr), in_buffer_(false), meta_type_(nullptr) {
92 return value_ ==
nullptr;
107 value_(nullptr), in_buffer_(false), meta_type_(nullptr) {
130 if(value_ !=
nullptr) {
131 convert_to_string(meta_type_, result, value_);
158 MetaType* new_type = resolve_meta_type<T>();
159 if(new_type == meta_type_) {
164 meta_type_ = new_type;
166#if defined(GEO_COMPILER_GCC)
170#pragma GCC diagnostic push
171#pragma GCC diagnostic ignored "-Wplacement-new"
172#elif defined(GEO_COMPILER_MSVC)
175#pragma warning(disable:4127)
178 if(
sizeof(T) <= BUFFER_SIZE) {
187#if defined(GEO_COMPILER_GCC)
188#pragma GCC diagnostic pop
189#elif defined(GEO_COMPILER_MSVC)
203 set_value<std::string>(std::string(value));
213 if(value_ ==
nullptr) {
217 if(meta_type_ == resolve_meta_type<T>()) {
218 value = value_as<T>();
222 if(meta_type_ == resolve_meta_type<std::string>()) {
223 const std::string& string_value = value_as<std::string>();
225 resolve_meta_type<T>(),
251 if(get_value<index_t>(value)) {
256 if(get_value<signed_index_t>(tmp)) {
263 if(get_value<float>(tmp)) {
271 if(get_value<double>(tmp)) {
287 if(get_value<signed_index_t>(value)) {
292 if(get_value<index_t>(tmp)) {
299 if(get_value<float>(tmp)) {
307 if(get_value<double>(tmp)) {
323 if(get_value<float>(value)) {
328 if(get_value<double>(tmp)) {
335 if(get_value<index_t>(tmp)) {
342 if(get_value<signed_index_t>(tmp)) {
357 if(get_value<double>(value)) {
362 if(get_value<float>(tmp)) {
369 if(get_value<index_t>(tmp)) {
376 if(get_value<signed_index_t>(tmp)) {
400 if(is_smart_pointer_type(meta_type())) {
402 Counted* counted = value_as<Counted*>();
403 value =
reinterpret_cast<T*
>(counted);
407 if(!is_pointer_type(meta_type())) {
409 <<
"Invalid Any to pointer conversion: not pointer type "
413 << meta_type_name(meta_type())
433 value = (T*)(value_as<Memory::pointer>());
444 meta_type_ = meta_type;
445 if(life_cycle()->object_size() <= BUFFER_SIZE) {
448 life_cycle()->construct(value_);
451 value_ = life_cycle()->new_object();
462 if(value_ !=
nullptr && this->meta_type() == meta_type) {
463 life_cycle()->assign(value_, addr);
466 if(value_ !=
nullptr) {
469 meta_type_ = meta_type;
470 if(life_cycle()->object_size() <= BUFFER_SIZE) {
473 life_cycle()->copy_construct(value_, addr);
476 value_ = life_cycle()->new_object(addr);
489 if(value_ ==
nullptr) {
492 if(meta_type == this->meta_type()) {
493 life_cycle()->assign(addr, value_);
497 return copy_convert_to(addr, meta_type);
562 const MetaType* derived_pointer_type,
577 const std::string& typeid_name
586 resolve_meta_type_by_typeid_name(
typeid(T).name());
610 return *(T*)(value_);
617 if(value_ ==
nullptr) {
621 life_cycle()->destroy(value_);
624 life_cycle()->delete_object(value_);
627 meta_type_ =
nullptr;
641 if(life_cycle()->object_size() <= BUFFER_SIZE) {
644 life_cycle()->copy_construct(value_, rhs.value_);
647 value_ = life_cycle()->new_object(rhs.value_);
651 static std::string meta_type_name(
const MetaType* mt);
662#ifdef GEO_COMPILER_CLANG
663#pragma GCC diagnostic pop
#define geo_debug_assert(x)
Verifies that a condition is met.
Base class for reference-counted objects.
A class that stores a variable of arbitrary type.
bool get_value(signed_index_t &value) const
Gets the stored value (signed_index_t overload).
bool get_value(T *&value) const
Gets the stored value (pointers overload).
static void convert_to_string(MetaType *meta_type, std::string &string, Memory::pointer value)
Converts an object of a given type into a string.
void set_value(const T &value)
Sets the value of this Any.
static MetaType * pointed_type(const MetaType *mtype)
Gets the deferenced type.
std::string as_string() const
Gets a string representation.
const T & value_as() const
Gets the value as a specific type.
void set_value(const char *value)
Sets the value of this Any (overload for string literals).
LifeCycle * life_cycle() const
Gets the LifeCycle.
void destroy()
Deallocates the stored variable.
void reset()
Resets this Any to the initial null value.
bool copy_convert_to(Memory::pointer addr, MetaType *meta_type) const
Tentatively converts the value stored in this Any to a type and if successful, store it at a specifie...
bool get_value(T &value) const
Gets the stored value.
static bool pointer_can_be_casted_to(const MetaType *derived_pointer_type, const MetaType *base_pointer_type)
Tests whether a pointer type can be casted to an object type.
MetaType * meta_type() const
Gets the MetaType of the stored value.
void copy(const Any &rhs)
Copies another Any.
static MetaType * resolve_meta_type_by_typeid_name(const std::string &typeid_name)
Finds a MetaType by typeid name.
static bool is_smart_pointer_type(const MetaType *mtype)
Tests whether a MetaType is a smart pointer type.
bool get_value(std::string &value) const
Gets the stored value (std::string overload).
void copy_from(Memory::pointer addr, MetaType *meta_type)
Assigns a value from a specifed address and specified type to this Any.
bool copy_to(Memory::pointer addr, MetaType *meta_type) const
Copies the value stored in this Any at a specified address.
static MetaType * resolve_meta_type()
Gets the MetaType associated with a type.
bool get_value(index_t &value) const
Gets the stored value (index_t overload).
static bool is_pointer_type(const MetaType *mtype)
Tests whether a MetaType is a pointer type.
bool get_value(float &value) const
Gets the stored value (float overload).
Any & operator=(const Any &rhs)
Any affectation operator.
bool is_null() const
Tests whether this Any is null.
void create(MetaType *meta_type)
Initializes this Any with the default value of a specified MetaType.
Any(const Any &rhs)
Any copy constructor.
bool get_value(double &value) const
Gets the stored value (double overload).
static void convert_from_string(MetaType *meta_type, const std::string &string, Memory::pointer value)
Converts a string into an object of a given type.
Manages the life cycle of an object.
unsigned char byte
Unsigned byte type.
byte * pointer
Pointer to unsigned byte(s)
geo_signed_index_t signed_index_t
The type for storing and manipulating indices differences.
geo_index_t index_t
The type for storing and manipulating indices.
Global Graphite namespace.
Definitions common to all include files in the gom library.