123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-13
- * Changed: 2023-05-18
- *
- * */
- #ifndef LS_STD_SECTION_PAIR_SECTION_HPP
- #define LS_STD_SECTION_PAIR_SECTION_HPP
- #include <list>
- #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/SectionPairSectionTypes.hpp>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <memory>
- #include <string>
- #include <string_view>
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL SectionPairSection : public ::std::enable_shared_from_this<SectionPairSection>, public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
- {
- public:
- explicit SectionPairSection(const ls::std::io::section_pair_identifier &_sectionId);
- ~SectionPairSection() noexcept override;
- void add(const ls::std::io::section_pair_row_list_element &_row);
- void clear();
- [[nodiscard]] ls::std::io::section_pair_row_list_element get(size_t _index) const;
- [[nodiscard]] ls::std::io::section_pair_row_list_element get(const ls::std::io::section_pair_identifier &_key) const;
- [[nodiscard]] ls::std::io::section_pair_row_list getList() const;
- [[nodiscard]] size_t getRowAmount() const;
- [[nodiscard]] ls::std::io::section_pair_identifier getSectionId() const;
- [[nodiscard]] bool hasRow(const ls::std::io::section_pair_identifier &_key);
- [[nodiscard]] ls::std::core::type::byte_field marshal() override;
- void reserveNewLine(::std::string_view _reservedNewLine);
- void setSectionId(const ls::std::io::section_pair_identifier &_sectionId);
- void unmarshal(const ls::std::core::type::byte_field &_data) override;
- private:
- ::std::string reservedNewLine{};
- ls::std::io::section_pair_row_list rows{};
- ls::std::io::section_pair_identifier sectionId{};
- ::std::shared_ptr<ls::std::core::interface_type::ISerializable> serializable{};
- void _createSerializable();
- [[nodiscard]] ls::std::io::section_pair_row_list_element _get(const ls::std::io::section_pair_identifier &_key) const;
- [[nodiscard]] bool _hasRow(const ls::std::io::section_pair_identifier &_key);
- void _rowExistenceCheck(const ls::std::io::section_pair_identifier &_key);
- void _setSectionId(const ls::std::io::section_pair_identifier &_sectionId);
- };
- }
- #endif
|