123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-15
- * Changed: 2023-02-22
- *
- * */
- #include <ls-std/core/ConditionalFunctionExecutor.hpp>
- #include <ls-std/core/evaluator/IndexOutOfBoundsEvaluator.hpp>
- #include <ls-std/core/evaluator/NullPointerArgumentEvaluator.hpp>
- #include <ls-std/core/exception/IllegalArgumentException.hpp>
- #include <ls-std/io/section-pair/SectionPairMessageFormatter.hpp>
- #include <ls-std/io/section-pair/model/SectionPairDocument.hpp>
- #include <ls-std/io/section-pair/serialization/SerializableSectionPairDocument.hpp>
- ls::std::io::SectionPairDocument::SectionPairDocument() : ls::std::core::Class("SectionPairDocument")
- {}
- ls::std::io::SectionPairDocument::~SectionPairDocument() noexcept = default;
- void ls::std::io::SectionPairDocument::add(const section_pair_document_section_list_element &_section)
- {
- ::std::string message = this->getClassName() + ": add section attempt failed, since \"_section\" argument is null!";
- ls::std::core::NullPointerArgumentEvaluator(::std::reinterpret_pointer_cast<void>(_section), message).evaluate();
- this->_checkSectionExistence(_section->getSectionId());
- this->sections.push_back(_section);
- }
- void ls::std::io::SectionPairDocument::clear()
- {
- this->sections.clear();
- }
- ls::std::io::section_pair_document_section_list_element ls::std::io::SectionPairDocument::get(size_t _index)
- {
- ls::std::io::section_pair_document_section_list_element element{};
- ls::std::core::IndexOutOfBoundsEvaluator{_index, this->sections.size()}.evaluate();
- size_t index{};
- for (const auto &_element : this->sections)
- {
- if (_index == index)
- {
- element = _element;
- break;
- }
- ++index;
- }
- return element;
- }
- size_t ls::std::io::SectionPairDocument::getAmountOfSections()
- {
- return this->sections.size();
- }
- ::std::string ls::std::io::SectionPairDocument::getHeader()
- {
- return this->header;
- }
- ls::std::io::section_pair_document_section_list ls::std::io::SectionPairDocument::getSectionList()
- {
- return this->sections;
- }
- ls::std::core::type::byte_field ls::std::io::SectionPairDocument::marshal()
- {
- ls::std::core::ConditionalFunctionExecutor{this->serializable == nullptr}.execute([this] { _createSerializable(); });
- return this->serializable->marshal();
- }
- void ls::std::io::SectionPairDocument::reserveNewLine(const ::std::string &_reservedNewLine)
- {
- this->reservedNewLine = _reservedNewLine;
- }
- void ls::std::io::SectionPairDocument::unmarshal(const ls::std::core::type::byte_field &_data)
- {
- ls::std::core::ConditionalFunctionExecutor{this->serializable == nullptr}.execute([this] { _createSerializable(); });
- this->serializable->unmarshal(_data);
- }
- void ls::std::io::SectionPairDocument::_checkSectionExistence(const ls::std::io::section_pair_identifier &_sectionId)
- {
- if (this->_hasSection(_sectionId))
- {
- ::std::string message = this->getClassName() + "section ID \"" + _sectionId + "\" already exists in document!";
- throw ls::std::core::IllegalArgumentException{ls::std::io::SectionPairMessageFormatter::getFormattedMessage(message)};
- }
- }
- void ls::std::io::SectionPairDocument::_createSerializable()
- {
- ls::std::io::SerializableSectionPairParameter parameter{};
- parameter.setValue(shared_from_this());
- if (!this->reservedNewLine.empty())
- {
- parameter.setNewLine(this->reservedNewLine);
- }
- this->serializable = ::std::make_shared<ls::std::io::SerializableSectionPairDocument>(parameter);
- }
- bool ls::std::io::SectionPairDocument::_hasSection(const ls::std::io::section_pair_identifier &_identifier)
- {
- bool sectionExists{};
- for (const auto &_section : this->sections)
- {
- if (_section->getSectionId() == _identifier)
- {
- sectionExists = true;
- break;
- }
- }
- return sectionExists;
- }
|