SerializableJSONInteger.cpp 990 B

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