/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-16 * Changed: 2023-06-06 * * */ #include "SectionPairDocumentProvider.hpp" #include #include using ls::std::core::type::byte_field; using ls::std::io::NewLine; using ls::std::io::SectionPairDocument; using ls::std::io::SectionPairRow; using ls::std::io::SectionPairRowEnumType; using ls::std::io::SectionPairRowSingleValue; using ls::std::io::SectionPairSection; using std::dynamic_pointer_cast; using std::make_shared; using std::shared_ptr; using std::string; using test::io::SectionPairDocumentProvider; using test::io::SectionPairSectionProvider; SectionPairDocumentProvider::SectionPairDocumentProvider() = default; SectionPairDocumentProvider::~SectionPairDocumentProvider() = default; shared_ptr SectionPairDocumentProvider::createDocument() { auto document = make_shared(); // general section shared_ptr generalSection = SectionPairSectionProvider::createSectionWithSandraExample(); document->add(generalSection); // physical auto physicalSection = make_shared("physical"); auto eyeColor = make_shared("eye-color", SectionPairRowEnumType::SECTION_PAIR_ROW_SINGLE_VALUE); dynamic_pointer_cast(eyeColor->getValue())->set("blue"); physicalSection->add(eyeColor); auto hairColor = make_shared("hair-color", SectionPairRowEnumType::SECTION_PAIR_ROW_SINGLE_VALUE); dynamic_pointer_cast(hairColor->getValue())->set("red"); physicalSection->add(hairColor); auto height = make_shared("height", SectionPairRowEnumType::SECTION_PAIR_ROW_SINGLE_VALUE); dynamic_pointer_cast(height->getValue())->set("167"); physicalSection->add(height); document->add(physicalSection); return document; } byte_field SectionPairDocumentProvider::createSerializedDocument(const string &_newLine) { byte_field serializedDocument = "# section-pair document" + _newLine; // general section serializedDocument += SectionPairSectionProvider::createSerializedSectionWithSandraExample(_newLine); // physical serializedDocument += _newLine + "[physical]" + _newLine + _newLine; serializedDocument += "eye-color=blue" + _newLine; serializedDocument += "hair-color=red" + _newLine; serializedDocument += "height=167" + _newLine; return serializedDocument; } byte_field SectionPairDocumentProvider::createSerializedDocumentColineExample(const string &_newLine) { string paragraph = _newLine + _newLine; string _resourcesFolderLocation = R"lit(C:\Users\Admin\CLionProjects\coline-documentation\test\resources)lit"; byte_field fileContent = "# section-pair document" + paragraph; fileContent += "[general]" + paragraph; fileContent += "name=Lynar Studios - Standard Library" + _newLine; fileContent += "version=2023.2.0" + paragraph; fileContent += "[input]" + paragraph; fileContent += "directories:" + _newLine; fileContent += " " + _resourcesFolderLocation + "source" + _newLine; fileContent += "extensions:" + _newLine; fileContent += " .cpp" + paragraph; fileContent += "[output]" + paragraph; fileContent += "directory=" + _resourcesFolderLocation + "doc" + _newLine; return fileContent; } byte_field SectionPairDocumentProvider::createSerializedDocumentComputerExample(const string &_newLine) { byte_field serializedDocument = "# section-pair document" + _newLine; serializedDocument += _newLine + "[model]" + _newLine + _newLine; serializedDocument += "graphics-card=GTX 720" + _newLine; serializedDocument += "ram-size=4096" + _newLine; serializedDocument += "graphics-ram-size=4096" + _newLine; serializedDocument += "cpu=Intel i7" + _newLine; serializedDocument += _newLine + "[requirements]" + _newLine + _newLine; serializedDocument += "graphics-ram-size=2048" + _newLine; serializedDocument += "io-devices:" + _newLine; serializedDocument += " mouse" + _newLine; serializedDocument += " keyboard" + _newLine; serializedDocument += " screen" + _newLine; serializedDocument += " headset" + _newLine; return serializedDocument; }