SerializableSectionPairRow.hpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-11
  6. * Changed: 2023-05-18
  7. *
  8. * */
  9. #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_HPP
  10. #define LS_STD_SERIALIZABLE_SECTION_PAIR_ROW_HPP
  11. #include "SerializableSectionPairParameter.hpp"
  12. #include <ls-std/core/Class.hpp>
  13. #include <ls-std/core/interface/ISerializable.hpp>
  14. #include <ls-std/os/dynamic-goal.hpp>
  15. #include <memory>
  16. #include <string>
  17. namespace ls::std::io
  18. {
  19. class LS_STD_DYNAMIC_GOAL SerializableSectionPairRow : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class
  20. {
  21. public:
  22. explicit SerializableSectionPairRow(const ls::std::io::SerializableSectionPairParameter &_parameter);
  23. ~SerializableSectionPairRow() noexcept override;
  24. [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue() const;
  25. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  26. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  27. private:
  28. ls::std::io::SerializableSectionPairParameter parameter{};
  29. [[nodiscard]] ::std::string _marshalKey() const;
  30. void _unmarshalListValue(const ls::std::core::type::byte_field &_data) const;
  31. void _unmarshalSingleValue(const ls::std::core::type::byte_field &_data) const;
  32. };
  33. }
  34. #endif