SerializableJsonStateConnection.hpp 1.3 KB

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