SerializableJSONString.hpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-30
  6. * Changed: 2020-11-26
  7. *
  8. * */
  9. #ifndef LS_STD_SERIALIZABLE_JSON_STRING_HPP
  10. #define LS_STD_SERIALIZABLE_JSON_STRING_HPP
  11. #include <memory>
  12. #include <ls_std/lib/nlohmann_json/include/nlohmann/json.hpp>
  13. #include <ls_std/serialization/ISerializable.hpp>
  14. #include <ls_std/boxing/String.hpp>
  15. namespace ls_std {
  16. class SerializableJSONString : public Class, public ISerializable {
  17. public:
  18. explicit SerializableJSONString(const std::shared_ptr<ls_std::String>& _value);
  19. ~SerializableJSONString() override = default;
  20. // implementation
  21. ls_std::byte_field marshal() override;
  22. void unmarshal(const ls_std::byte_field& _data) override;
  23. // additional functionality
  24. std::shared_ptr<ls_std::String> getValue();
  25. void setValue(const std::shared_ptr<ls_std::String>& _value);
  26. private:
  27. nlohmann::json jsonObject {};
  28. std::shared_ptr<ls_std::String> value {};
  29. void _assignValue(const std::shared_ptr<ls_std::String>& _value);
  30. void _update();
  31. };
  32. }
  33. #endif