1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-15
- * Changed: 2023-05-16
- *
- * */
- #ifndef LS_STD_SECTION_PAIR_DOCUMENT_HPP
- #define LS_STD_SECTION_PAIR_DOCUMENT_HPP
- #include <ls-std/core/Class.hpp>
- #include <ls-std/core/interface/ISerializable.hpp>
- #include <ls-std/io/section-pair/SectionPairTypes.hpp>
- #include <ls-std/io/section-pair/type/SectionPairDocumentTypes.hpp>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <memory>
- #include <string_view>
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL SectionPairDocument : public ::std::enable_shared_from_this<SectionPairDocument>, public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
- {
- public:
- SectionPairDocument();
- ~SectionPairDocument() noexcept override;
- void add(const ls::std::io::section_pair_document_section_list_element &_section);
- void clear();
- [[nodiscard]] ls::std::io::section_pair_document_section_list_element get(size_t _index) const;
- [[nodiscard]] ls::std::io::section_pair_document_section_list_element get(const ls::std::io::section_pair_identifier &_sectionId) const;
- [[nodiscard]] size_t getAmountOfSections() const;
- [[nodiscard]] ::std::string getHeader() const;
- [[nodiscard]] ls::std::io::section_pair_document_section_list getSectionList() const;
- [[nodiscard]] bool hasSection(const ls::std::io::section_pair_identifier &_sectionId);
- [[nodiscard]] ls::std::core::type::byte_field marshal() override;
- void reserveNewLine(::std::string_view _reservedNewLine);
- void unmarshal(const ls::std::core::type::byte_field &_data) override;
- private:
- const ::std::string header = "# section-pair document";
- ::std::string reservedNewLine{};
- ls::std::io::section_pair_document_section_list sections{};
- ::std::shared_ptr<ls::std::core::interface_type::ISerializable> serializable{};
- void _checkSectionExistence(const ls::std::io::section_pair_identifier &_sectionId);
- void _createSerializable();
- [[nodiscard]] ls::std::io::section_pair_document_section_list_element _get(const ls::std::io::section_pair_identifier &_sectionId) const;
- [[nodiscard]] bool _hasSection(const ls::std::io::section_pair_identifier &_identifier);
- };
- }
- #endif
|