SerializableSectionPairSection.hpp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-22
  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() noexcept 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. [[nodiscard]] ls::std::core::type::byte_field _collectSectionRow(const ls::std::core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type);
  29. [[nodiscard]] ls::std::core::type::byte_field _collectSectionListValueRow(const core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type);
  30. [[nodiscard]] static core::type::byte_field _collectSectionSingleValueRow(const ls::std::core::type::byte_field &_firstRow, ls::std::io::SectionPairRowEnumType &type);
  31. [[nodiscard]] static size_t _getNthSubStringPosition(const ls::std::core::type::byte_field &_text, const ls::std::core::type::byte_field &_subText);
  32. [[nodiscard]] ls::std::core::type::byte_field _getSectionHeader(const ls::std::core::type::byte_field &_data);
  33. [[nodiscard]] static ls::std::core::type::byte_field _getSectionId(const ls::std::core::type::byte_field &_sectionHeader);
  34. [[nodiscard]] static bool _isListValueRow(const ::std::string &_currentRow);
  35. [[nodiscard]] static bool _isStartingValueRow(const ::std::string &_currentRow);
  36. [[nodiscard]] static bool _isSingleValueRow(const ::std::string &_currentRow);
  37. [[nodiscard]] ls::std::core::type::byte_field _marshalRows();
  38. [[nodiscard]] ls::std::core::type::byte_field _marshalSectionId();
  39. void _unmarshalRow(const ::std::string &_sectionRow, ls::std::io::SectionPairRowEnumType _type);
  40. void _unmarshalRows(const ls::std::core::type::byte_field &_serializedRows);
  41. [[nodiscard]] size_t _unmarshalSectionHeader(const ls::std::core::type::byte_field &_data);
  42. };
  43. }
  44. #endif