#pragma once #include #include #include "ki/pclass/Property.h" #include "ki/pclass/TypeSystem.h" namespace ki { namespace serialization { /** * TODO: Documentation */ class JsonSerializer { static const int FILE_INDENT_VALUE = 2; public: explicit JsonSerializer(pclass::TypeSystem &type_system, bool is_file); virtual ~JsonSerializer() {} std::string save(const pclass::PropertyClass *object) const; void load(std::unique_ptr &dest, const std::string &json_string) const; private: pclass::TypeSystem *m_type_system; bool m_is_file; virtual bool presave_object(nlohmann::json &j, const pclass::PropertyClass *object) const; nlohmann::json save_object(const pclass::PropertyClass *object) const; void save_property(nlohmann::json &j, const pclass::IProperty &prop) const; void save_dynamic_property(nlohmann::json &j, const pclass::IDynamicProperty &prop) const; virtual bool preload_object(std::unique_ptr &dest, nlohmann::json &j) const; void load_object(std::unique_ptr &dest, nlohmann::json &j) const; void load_property(pclass::IProperty &prop, nlohmann::json &j) const; void load_dynamic_property(pclass::IDynamicProperty &prop, nlohmann::json &j) const; }; } }