SerializableSectionPairSection.hpp 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-14
  6. * Changed: 2023-02-17
  7. *
  8. * */
  9. #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_SECTION_HPP
  10. #define LS_STD_SERIALIZABLE_SECTION_PAIR_SECTION_HPP
  11. #include "SerializableSectionPairParameter.hpp"
  12. #include <ls-std/core/Class.hpp>
  13. #include <ls-std/core/interface/ISerializable.hpp>
  14. #include <ls-std/io/section-pair/SectionPairRowEnumType.hpp>
  15. #include <ls-std/os/dynamic-goal.hpp>
  16. namespace ls::std::io
  17. {
  18. class LS_STD_DYNAMIC_GOAL SerializableSectionPairSection : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class
  19. {
  20. public:
  21. explicit SerializableSectionPairSection(const ls::std::io::SerializableSectionPairParameter &_parameter);
  22. ~SerializableSectionPairSection() override;
  23. [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue();
  24. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  25. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  26. private:
  27. ls::std::io::SerializableSectionPairParameter parameter{};
  28. void _checkSectionHeader(const ls::std::core::type::byte_field &_sectionHeader);
  29. [[nodiscard]] ls::std::core::type::byte_field _collectSectionRow(const ls::std::core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type);
  30. [[nodiscard]] ls::std::core::type::byte_field _collectSectionListValueRow(const core::type::byte_field &_currentRows, SectionPairRowEnumType &_type);
  31. [[nodiscard]] static core::type::byte_field _collectSectionSingleValueRow(const ls::std::core::type::byte_field &_firstRow, SectionPairRowEnumType &type);
  32. [[nodiscard]] static size_t _getNthSubStringPosition(const ls::std::core::type::byte_field &_text, const ls::std::core::type::byte_field &_subText);
  33. [[nodiscard]] ls::std::core::type::byte_field _getSectionHeader(const ls::std::core::type::byte_field &_data);
  34. [[nodiscard]] static ls::std::core::type::byte_field _getSectionId(const ls::std::core::type::byte_field &_sectionHeader);
  35. [[nodiscard]] static bool _isListValueRow(const ::std::string &_currentRow);
  36. [[nodiscard]] static bool _isStartingValueRow(const ::std::string &_currentRow);
  37. [[nodiscard]] static bool _isSingleValueRow(const ::std::string &_currentRow);
  38. [[nodiscard]] ls::std::core::type::byte_field _marshalRows();
  39. [[nodiscard]] ls::std::core::type::byte_field _marshalSectionId();
  40. void _unmarshalRow(const ::std::string &_sectionRow, ls::std::io::SectionPairRowEnumType _type);
  41. void _unmarshalRows(const ls::std::core::type::byte_field &_serializedRows);
  42. [[nodiscard]] size_t _unmarshalSectionHeader(const ls::std::core::type::byte_field &_data);
  43. };
  44. }
  45. #endif