SerializableSectionPairSection.hpp 2.7 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-05-19
  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. #include <string_view>
  17. namespace ls::std::io
  18. {
  19. class LS_STD_DYNAMIC_GOAL SerializableSectionPairSection : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class
  20. {
  21. public:
  22. explicit SerializableSectionPairSection(const ls::std::io::SerializableSectionPairParameter &_parameter);
  23. ~SerializableSectionPairSection() noexcept override;
  24. [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue() const;
  25. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  26. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  27. private:
  28. ls::std::io::SerializableSectionPairParameter parameter{};
  29. [[nodiscard]] ls::std::core::type::byte_field _collectSectionRow(const ls::std::core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type) const;
  30. [[nodiscard]] ls::std::core::type::byte_field _collectSectionListValueRow(const core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type) const;
  31. [[nodiscard]] static core::type::byte_field _collectSectionSingleValueRow(const ls::std::core::type::byte_field &_firstRow, ls::std::io::SectionPairRowEnumType &type);
  32. [[nodiscard]] static size_t _getNthSubStringPosition(::std::string_view _text, ::std::string_view _subText);
  33. [[nodiscard]] ls::std::core::type::byte_field _getSectionHeader(const ls::std::core::type::byte_field &_data) const;
  34. [[nodiscard]] static ls::std::core::type::byte_field _getSectionId(::std::string_view _sectionHeader);
  35. [[nodiscard]] static bool _isListValueRow(::std::string_view _currentRow);
  36. [[nodiscard]] static bool _isStartingValueRow(const ::std::string &_currentRow);
  37. [[nodiscard]] static bool _isSingleValueRow(::std::string_view _currentRow);
  38. [[nodiscard]] ls::std::core::type::byte_field _marshalRows() const;
  39. [[nodiscard]] ls::std::core::type::byte_field _marshalSectionId() const;
  40. void _unmarshalRow(const ::std::string &_sectionRow, ls::std::io::SectionPairRowEnumType _type) const;
  41. void _unmarshalRows(const ls::std::core::type::byte_field &_serializedRows) const;
  42. [[nodiscard]] size_t _unmarshalSectionHeader(const ls::std::core::type::byte_field &_data) const;
  43. };
  44. }
  45. #endif