SerializableSectionPairDocument.hpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-16
  6. * Changed: 2024-09-13
  7. *
  8. * */
  9. #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_DOCUMENT_HPP
  10. #define LS_STD_SERIALIZABLE_SECTION_PAIR_DOCUMENT_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_view>
  17. /*
  18. * @doc: class(name: 'SerializableSectionPairDocument', package: 'io')
  19. * @doc: io.SerializableSectionPairDocument.description('This class can serialize a Section Pair document for file persistence.')
  20. * */
  21. namespace ls::std::io
  22. {
  23. class LS_STD_DYNAMIC_GOAL SerializableSectionPairDocument : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class
  24. {
  25. public:
  26. explicit SerializableSectionPairDocument(const ls::std::io::SerializableSectionPairParameter &_parameter);
  27. ~SerializableSectionPairDocument() noexcept override;
  28. [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue() const;
  29. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  30. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  31. private:
  32. ls::std::io::SerializableSectionPairParameter parameter{};
  33. [[nodiscard]] ls::std::core::type::byte_field _getCurrentRow(size_t _iterations, ::std::string_view _serializedDocument) const;
  34. [[nodiscard]] ls::std::core::type::byte_field _getNextSerializedSection(const ls::std::core::type::byte_field &_serializedDocument) const;
  35. [[nodiscard]] bool _isNotNewSection(::std::string_view _currentRow) const;
  36. void _addSection(const ls::std::core::type::byte_field &_serializedSection) const;
  37. };
  38. }
  39. #endif