SectionPairRow.hpp 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-08
  6. * Changed: 2024-09-09
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_ROW_HPP
  10. #define LS_STD_SECTION_PAIR_ROW_HPP
  11. #include <ls-std/core/Class.hpp>
  12. #include <ls-std/core/interface/ISerializable.hpp>
  13. #include <ls-std/io/section-pair/SectionPairRowEnumType.hpp>
  14. #include <ls-std/io/section-pair/SectionPairTypes.hpp>
  15. #include <ls-std/io/section-pair/model/SectionPairRowValue.hpp>
  16. #include <ls-std/os/dynamic-goal.hpp>
  17. #include <memory>
  18. #include <string>
  19. #include <string_view>
  20. /*
  21. * @doc: class(name: 'SectionPairRow', package: 'io')
  22. * */
  23. namespace ls::std::io
  24. {
  25. class LS_STD_DYNAMIC_GOAL SectionPairRow : public ::std::enable_shared_from_this<SectionPairRow>, public ls::std::core::Class, public ls::std::core::interface_type::ISerializable
  26. {
  27. public:
  28. explicit SectionPairRow(const ls::std::io::section_pair_identifier &_key, const ls::std::io::SectionPairRowEnumType &_type);
  29. ~SectionPairRow() noexcept override;
  30. [[nodiscard]] ls::std::io::section_pair_identifier getKey() const;
  31. [[nodiscard]] ::std::shared_ptr<ls::std::io::SectionPairRowValue> getValue() const;
  32. [[nodiscard]] bool isList() const;
  33. [[nodiscard]] bool isSingleValue() const;
  34. [[nodiscard]] ls::std::core::type::byte_field marshal() override;
  35. void reserveNewLine(::std::string_view _reservedNewLine);
  36. void setKey(const ls::std::io::section_pair_identifier &_key);
  37. void unmarshal(const ls::std::core::type::byte_field &_data) override;
  38. private:
  39. ls::std::io::section_pair_identifier key{};
  40. ::std::string reservedNewLine{};
  41. ::std::shared_ptr<ls::std::core::interface_type::ISerializable> serializable{};
  42. ::std::shared_ptr<ls::std::io::SectionPairRowValue> value{};
  43. void _createSerializable();
  44. void _initValue(const ls::std::io::SectionPairRowEnumType &_type);
  45. void _setKey(const ls::std::io::section_pair_identifier &_key);
  46. };
  47. }
  48. #endif