// // Struct.h // Clock Signal // // Created by Thomas Harte on 06/03/2020. // Copyright © 2020 Thomas Harte. All rights reserved. // #ifndef Struct_h #define Struct_h #include #include #include #include #include namespace Reflection { #define DeclareField(Name) declare(&Name, #Name) struct Struct { virtual std::vector all_keys() = 0; virtual const std::type_info *type_of(const std::string &name) = 0; virtual void set(const std::string &name, const void *value) = 0; virtual const void *get(const std::string &name) = 0; virtual ~Struct() {} }; struct Serialisable { /// Serialises this object, appending it to @c target. virtual void serialise(std::vector &target) = 0; /// Deserialises this object from @c source. /// @returns @c true if the deserialisation was successful; @c false otherwise. virtual bool deserialise(const std::vector &source) = 0; }; template class StructImpl: public Struct, public Serialisable { public: /*! @returns the value of type @c Type that is loaded from the offset registered for the field @c name. It is the caller's responsibility to provide an appropriate type of data. */ const void *get(const std::string &name) final { const auto iterator = contents_.find(name); if(iterator == contents_.end()) return nullptr; return reinterpret_cast(this) + iterator->second.offset; } /*! Stores the @c value of type @c Type to the offset registered for the field @c name. It is the caller's responsibility to provide an appropriate type of data. */ void set(const std::string &name, const void *value) final { const auto iterator = contents_.find(name); if(iterator == contents_.end()) return; memcpy(reinterpret_cast(this) + iterator->second.offset, value, iterator->second.size); } /*! @returns @c type_info for the field @c name. */ const std::type_info *type_of(const std::string &name) final { const auto iterator = contents_.find(name); if(iterator == contents_.end()) return nullptr; return iterator->second.type; } /*! @returns A vector of all declared fields for this struct. */ std::vector all_keys() final { std::vector keys; for(const auto &pair: contents_) { keys.push_back(pair.first); } return keys; } protected: /* This interface requires reflective structs to declare all fields; specifically they should call: declare_field(&field1, "field1"); declare_field(&field2, "field2"); Fields are registered in class storage. So callers can use needs_declare() to determine whether a class of this type has already established the reflective fields. */ /*! Exposes the field pointed to by @c t for reflection as @c name. */ template void declare(Type *t, const std::string &name) { contents_.emplace( std::make_pair( name, Field(typeid(Type), reinterpret_cast(t) - reinterpret_cast(this), sizeof(Type)) )); } /*! @returns @c true if this subclass of @c Struct has not yet declared any fields. */ bool needs_declare() { return !contents_.size(); } private: struct Field { const std::type_info *type; ssize_t offset, size; Field(const std::type_info &type, ssize_t offset, size_t size) : type(&type), offset(offset), size(size) {} }; static inline std::unordered_map contents_; }; } #endif /* Struct_h */