/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-16 * Changed: 2023-02-17 * * */ #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_DOCUMENT_HPP #define LS_STD_SERIALIZABLE_SECTION_PAIR_DOCUMENT_HPP #include #include #include #include namespace ls::std::io { class LS_STD_DYNAMIC_GOAL SerializableSectionPairDocument : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class { public: explicit SerializableSectionPairDocument(const ::std::shared_ptr &_value); ~SerializableSectionPairDocument() override; [[nodiscard]] ::std::shared_ptr getValue(); [[nodiscard]] ls::std::core::type::byte_field marshal() override; void unmarshal(const ls::std::core::type::byte_field &_data) override; private: ::std::shared_ptr value{}; [[nodiscard]] static core::type::byte_field _getCurrentRow(size_t _iterations, const ls::std::core::type::byte_field &_serializedDocument); [[nodiscard]] static ls::std::core::type::byte_field _getNextSerializedSection(const ls::std::core::type::byte_field &_serializedDocument); [[nodiscard]] static bool _isNotNewSection(const ls::std::core::type::byte_field &_currentRow); void _setValue(const ::std::shared_ptr &_value); void _addSection(const ls::std::core::type::byte_field &_serializedSection); }; } #endif