SectionPairDocument.hpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-15
  6. * Changed: 2023-02-23
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_DOCUMENT_HPP
  10. #define LS_STD_SECTION_PAIR_DOCUMENT_HPP
  11. #include <ls-std/core/Class.hpp>
  12. #include <ls-std/core/interface/ISerializable.hpp>
  13. #include <ls-std/io/section-pair/SectionPairTypes.hpp>
  14. #include <ls-std/io/section-pair/type/SectionPairDocumentTypes.hpp>
  15. #include <ls-std/os/dynamic-goal.hpp>
  16. #include <memory>
  17. namespace ls::std::io
  18. {
  19. 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
  20. {
  21. public:
  22. SectionPairDocument();
  23. ~SectionPairDocument() noexcept override;
  24. void add(const ls::std::io::section_pair_document_section_list_element &_section);
  25. void clear();
  26. [[nodiscard]] ls::std::io::section_pair_document_section_list_element get(size_t _index);
  27. [[nodiscard]] ls::std::io::section_pair_document_section_list_element get(const ls::std::io::section_pair_identifier &_sectionId);
  28. [[nodiscard]] size_t getAmountOfSections();
  29. [[nodiscard]] ::std::string getHeader();
  30. [[nodiscard]] ls::std::io::section_pair_document_section_list getSectionList();
  31. [[nodiscard]] bool hasSection(const ls::std::io::section_pair_identifier &_sectionId);
  32. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  33. void reserveNewLine(const ::std::string &_reservedNewLine);
  34. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  35. private:
  36. const ::std::string header = "# section-pair document";
  37. ::std::string reservedNewLine{};
  38. ls::std::io::section_pair_document_section_list sections{};
  39. ::std::shared_ptr<ls::std::core::interface_type::ISerializable> serializable{};
  40. void _checkSectionExistence(const ls::std::io::section_pair_identifier &_sectionId);
  41. void _createSerializable();
  42. [[nodiscard]] ls::std::io::section_pair_document_section_list_element _get(const ls::std::io::section_pair_identifier &_sectionId);
  43. [[nodiscard]] bool _hasSection(const ls::std::io::section_pair_identifier &_identifier);
  44. };
  45. }
  46. #endif