SectionPairSection.hpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-13
  6. * Changed: 2023-02-16
  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. namespace ls::std::io
  19. {
  20. 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
  21. {
  22. public:
  23. explicit SectionPairSection(const ls::std::io::section_pair_identifier &_sectionId);
  24. ~SectionPairSection() override;
  25. void add(const section_pair_row_list_element &_row);
  26. void clear();
  27. [[nodiscard]] section_pair_row_list_element get(size_t _index);
  28. [[nodiscard]] ls::std::io::section_pair_row_list getList();
  29. [[nodiscard]] size_t getRowAmount();
  30. [[nodiscard]] ls::std::io::section_pair_identifier getSectionId();
  31. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  32. void setSectionId(const ls::std::io::section_pair_identifier &_sectionId);
  33. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  34. private:
  35. ls::std::io::section_pair_row_list rows{};
  36. ls::std::io::section_pair_identifier sectionId{};
  37. ::std::shared_ptr<ls::std::core::interface_type::ISerializable> serializable{};
  38. void _createSerializable();
  39. [[nodiscard]] bool _hasRow(const ls::std::io::section_pair_identifier &_key);
  40. void _rowExistenceCheck(const ls::std::io::section_pair_identifier &_key);
  41. void _setSectionId(const ls::std::io::section_pair_identifier &_sectionId);
  42. };
  43. }
  44. #endif