SerializableSectionPairSection.hpp 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-14
  6. * Changed: 2024-09-13
  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. /*
  18. * @doc: class(name: 'SerializableSectionPairSection', package: 'io')
  19. * @doc: io.SerializableSectionPairSection.description('This class can serialize a Section Pair section for file persistence.')
  20. * */
  21. namespace ls::std::io
  22. {
  23. class LS_STD_DYNAMIC_GOAL SerializableSectionPairSection : public ls::std::core::interface_type::ISerializable, public ls::std::core::Class
  24. {
  25. public:
  26. explicit SerializableSectionPairSection(const ls::std::io::SerializableSectionPairParameter &_parameter);
  27. ~SerializableSectionPairSection() noexcept override;
  28. [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue() const;
  29. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  30. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  31. private:
  32. ls::std::io::SerializableSectionPairParameter parameter{};
  33. [[nodiscard]] ls::std::core::type::byte_field _collectSectionRow(const ls::std::core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type) const;
  34. [[nodiscard]] ls::std::core::type::byte_field _collectSectionListValueRow(const core::type::byte_field &_currentRows, ls::std::io::SectionPairRowEnumType &_type) const;
  35. [[nodiscard]] static core::type::byte_field _collectSectionSingleValueRow(const ls::std::core::type::byte_field &_firstRow, ls::std::io::SectionPairRowEnumType &type);
  36. [[nodiscard]] static size_t _getNthSubStringPosition(::std::string_view _text, ::std::string_view _subText);
  37. [[nodiscard]] ls::std::core::type::byte_field _getSectionHeader(const ls::std::core::type::byte_field &_data) const;
  38. [[nodiscard]] static ls::std::core::type::byte_field _getSectionId(::std::string_view _sectionHeader);
  39. [[nodiscard]] static bool _isListValueRow(::std::string_view _currentRow);
  40. [[nodiscard]] static bool _isStartingValueRow(const ::std::string &_currentRow);
  41. [[nodiscard]] static bool _isSingleValueRow(::std::string_view _currentRow);
  42. [[nodiscard]] ls::std::core::type::byte_field _marshalRows() const;
  43. [[nodiscard]] ls::std::core::type::byte_field _marshalSectionId() const;
  44. void _unmarshalRow(const ::std::string &_sectionRow, ls::std::io::SectionPairRowEnumType _type) const;
  45. void _unmarshalRows(const ls::std::core::type::byte_field &_serializedRows) const;
  46. [[nodiscard]] size_t _unmarshalSectionHeader(const ls::std::core::type::byte_field &_data) const;
  47. };
  48. }
  49. #endif