SerializableJSONBoolean.cpp 887 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-09-04
  6. * Changed: 2020-09-04
  7. *
  8. * */
  9. #include "SerializableJSONBoolean.hpp"
  10. ls_std::SerializableJSONBoolean::SerializableJSONBoolean(std::shared_ptr<ls_std::Boolean> _value) : Class("SerializableJSONBoolean"),
  11. value(std::move(_value))
  12. {}
  13. ls_std::byte_field ls_std::SerializableJSONBoolean::marshal()
  14. {
  15. this->_update();
  16. return this->jsonObject.dump();
  17. }
  18. void ls_std::SerializableJSONBoolean::unmarshal(const ls_std::byte_field& _data)
  19. {
  20. this->jsonObject = nlohmann::json::parse(_data);
  21. if(this->jsonObject.contains("value")) {
  22. *this->value = (bool) this->jsonObject["value"];
  23. }
  24. }
  25. void ls_std::SerializableJSONBoolean::_update()
  26. {
  27. this->jsonObject = {
  28. {"value", this->value->getValue()}
  29. };
  30. }