SectionPairSection.hpp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-13
  6. * Changed: 2023-05-18
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_SECTION_HPP
  10. #define LS_STD_SECTION_PAIR_SECTION_HPP
  11. #include <list>
  12. #include <ls-std/core/Class.hpp>
  13. #include <ls-std/core/interface/ISerializable.hpp>
  14. #include <ls-std/io/section-pair/SectionPairTypes.hpp>
  15. #include <ls-std/io/section-pair/type/SectionPairSectionTypes.hpp>
  16. #include <ls-std/os/dynamic-goal.hpp>
  17. #include <memory>
  18. #include <string>
  19. #include <string_view>
  20. namespace ls::std::io
  21. {
  22. 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
  23. {
  24. public:
  25. explicit SectionPairSection(const ls::std::io::section_pair_identifier &_sectionId);
  26. ~SectionPairSection() noexcept override;
  27. void add(const ls::std::io::section_pair_row_list_element &_row);
  28. void clear();
  29. [[nodiscard]] ls::std::io::section_pair_row_list_element get(size_t _index) const;
  30. [[nodiscard]] ls::std::io::section_pair_row_list_element get(const ls::std::io::section_pair_identifier &_key) const;
  31. [[nodiscard]] ls::std::io::section_pair_row_list getList() const;
  32. [[nodiscard]] size_t getRowAmount() const;
  33. [[nodiscard]] ls::std::io::section_pair_identifier getSectionId() const;
  34. [[nodiscard]] bool hasRow(const ls::std::io::section_pair_identifier &_key);
  35. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  36. void reserveNewLine(::std::string_view _reservedNewLine);
  37. void setSectionId(const ls::std::io::section_pair_identifier &_sectionId);
  38. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  39. private:
  40. ::std::string reservedNewLine{};
  41. ls::std::io::section_pair_row_list rows{};
  42. ls::std::io::section_pair_identifier sectionId{};
  43. ::std::shared_ptr<ls::std::core::interface_type::ISerializable> serializable{};
  44. void _createSerializable();
  45. [[nodiscard]] ls::std::io::section_pair_row_list_element _get(const ls::std::io::section_pair_identifier &_key) const;
  46. [[nodiscard]] bool _hasRow(const ls::std::io::section_pair_identifier &_key);
  47. void _rowExistenceCheck(const ls::std::io::section_pair_identifier &_key);
  48. void _setSectionId(const ls::std::io::section_pair_identifier &_sectionId);
  49. };
  50. }
  51. #endif