123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-14
- * Changed: 2023-05-19
- *
- * */
- #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_SECTION_HPP
- #define LS_STD_SERIALIZABLE_SECTION_PAIR_SECTION_HPP
- #include "SerializableSectionPairParameter.hpp"
- #include <ls-std/core/Class.hpp>
- #include <ls-std/core/interface/ISerializable.hpp>
- #include <ls-std/io/section-pair/SectionPairRowEnumType.hpp>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <string_view>
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL SerializableSectionPairSection : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class
- {
- public:
- explicit SerializableSectionPairSection(const ls::std::io::SerializableSectionPairParameter &_parameter);
- ~SerializableSectionPairSection() noexcept override;
- [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue() const;
- [[nodiscard]] ls::std::core::type::byte_field marshal() override;
- void unmarshal(const ls::std::core::type::byte_field &_data) override;
- private:
- ls::std::io::SerializableSectionPairParameter parameter{};
- [[nodiscard]] ls::std::core::type::byte_field _collectSectionRow(const ls::std::core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type) const;
- [[nodiscard]] ls::std::core::type::byte_field _collectSectionListValueRow(const core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type) const;
- [[nodiscard]] static core::type::byte_field _collectSectionSingleValueRow(const ls::std::core::type::byte_field &_firstRow, ls::std::io::SectionPairRowEnumType &type);
- [[nodiscard]] static size_t _getNthSubStringPosition(::std::string_view _text, ::std::string_view _subText);
- [[nodiscard]] ls::std::core::type::byte_field _getSectionHeader(const ls::std::core::type::byte_field &_data) const;
- [[nodiscard]] static ls::std::core::type::byte_field _getSectionId(::std::string_view _sectionHeader);
- [[nodiscard]] static bool _isListValueRow(::std::string_view _currentRow);
- [[nodiscard]] static bool _isStartingValueRow(const ::std::string &_currentRow);
- [[nodiscard]] static bool _isSingleValueRow(::std::string_view _currentRow);
- [[nodiscard]] ls::std::core::type::byte_field _marshalRows() const;
- [[nodiscard]] ls::std::core::type::byte_field _marshalSectionId() const;
- void _unmarshalRow(const ::std::string &_sectionRow, ls::std::io::SectionPairRowEnumType _type) const;
- void _unmarshalRows(const ls::std::core::type::byte_field &_serializedRows) const;
- [[nodiscard]] size_t _unmarshalSectionHeader(const ls::std::core::type::byte_field &_data) const;
- };
- }
- #endif
|