/* * 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 #include #include #include #include #include #include #include #include namespace ls::std::io { class LS_STD_DYNAMIC_GOAL SectionPairSection : public ::std::enable_shared_from_this, 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 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