SerializableJsonStateMachine.hpp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-17
  6. * Changed: 2022-07-01
  7. *
  8. * */
  9. #ifndef LS_STD_SERIALIZABLE_JSON_STATE_MACHINE_HPP
  10. #define LS_STD_SERIALIZABLE_JSON_STATE_MACHINE_HPP
  11. #include <ls_std/core/Class.hpp>
  12. #include <ls_std/core/interface/ISerializable.hpp>
  13. #include <ls_std/logic/StateMachine.hpp>
  14. #include <memory>
  15. #include <ls_std/lib/nlohmann_json/include/nlohmann/json.hpp>
  16. #include <ls_std/os/dynamic_goal.hpp>
  17. namespace ls
  18. {
  19. namespace std
  20. {
  21. namespace logic
  22. {
  23. class DYNAMIC_GOAL SerializableJsonStateMachine : public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
  24. {
  25. public:
  26. explicit SerializableJsonStateMachine(const ::std::shared_ptr<ls::std::logic::StateMachine> &_value);
  27. ~SerializableJsonStateMachine() override = default;
  28. // implementation
  29. ls::std::core::type::byte_field marshal() override;
  30. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  31. // additional functionality
  32. ::std::shared_ptr<ls::std::logic::StateMachine> getValue();
  33. void setValue(const ::std::shared_ptr<ls::std::logic::StateMachine> &_value);
  34. private:
  35. nlohmann::json jsonObject{};
  36. ::std::shared_ptr<ls::std::logic::StateMachine> value{};
  37. void _assignValue(const ::std::shared_ptr<ls::std::logic::StateMachine> &_value);
  38. void _unmarshalCurrentState();
  39. void _unmarshalStates();
  40. void _update();
  41. void _updateCurrentState();
  42. void _updateStates();
  43. };
  44. }
  45. }
  46. }
  47. #endif