12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-09-17
- * Changed: 2022-05-05
- *
- * */
- #ifndef LS_STD_SERIALIZABLE_JSON_STATE_MACHINE_HPP
- #define LS_STD_SERIALIZABLE_JSON_STATE_MACHINE_HPP
- #include "ls_std/core/Class.hpp"
- #include "ls_std/serialization/ISerializable.hpp"
- #include "ls_std/logic/StateMachine.hpp"
- #include <memory>
- #include "ls_std/lib/nlohmann_json/include/nlohmann/json.hpp"
- namespace ls
- {
- class SerializableJsonStateMachine : public ls::Class, public ls::ISerializable
- {
- public:
- explicit SerializableJsonStateMachine(const ::std::shared_ptr<ls::StateMachine> &_value);
- ~SerializableJsonStateMachine() override = default;
- // implementation
- ls::byte_field marshal() override;
- void unmarshal(const ls::byte_field &_data) override;
- // additional functionality
- ::std::shared_ptr<ls::StateMachine> getValue();
- void setValue(const ::std::shared_ptr<ls::StateMachine> &_value);
- private:
- nlohmann::json jsonObject{};
- ::std::shared_ptr<ls::StateMachine> value{};
- void _assignValue(const ::std::shared_ptr<ls::StateMachine> &_value);
- void _unmarshalCurrentState();
- void _unmarshalStates();
- void _update();
- void _updateCurrentState();
- void _updateStates();
- };
- }
- #endif
|