/* * Copyright © 2006-2023 Dynare Team * * This file is part of Dynare. * * Dynare is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Dynare is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Dynare. If not, see . */ #include "Statement.hh" #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wold-style-cast" #include #pragma GCC diagnostic pop #include void Statement::checkPass([[maybe_unused]] ModFileStructure& mod_file_struct, [[maybe_unused]] WarningConsolidation& warnings) { } void Statement::computingPass([[maybe_unused]] const ModFileStructure& mod_file_struct) { } NativeStatement::NativeStatement(string native_statement_arg) : native_statement {move(native_statement_arg)} { } void NativeStatement::writeOutput(ostream& output, [[maybe_unused]] const string& basename, [[maybe_unused]] bool minimal_workspace) const { using namespace boost::xpressive; string date_regex = R"((-?\d+([YyAa]|[Mm]([1-9]|1[0-2])|[Qq][1-4]|[SsHh][1-2])))"; sregex regex_lookbehind = sregex::compile(R"((?(const T& v) { if constexpr (is_same_v) v.writeOutput(option_group + "." + name, output); else { output << option_group << "." << name << " = "; if constexpr (is_same_v || is_same_v) output << v; else if constexpr (is_same_v>) output << '[' << v.first << "; " << v.second << ']'; else if constexpr (is_same_v) output << "'" << v << "'"; else if constexpr (is_same_v>) { if (v.size() > 1) { output << '['; for (int it : v) output << it << ";"; output << ']'; } else output << v.front(); } else if constexpr (is_same_v) { if (v.size() > 1) { output << '{'; for (const auto& it : v) output << "'" << it << "';"; output << '}'; } else output << v.front(); } else if constexpr (is_same_v) { /* VecCellStrVal should ideally be merged into VecStrVal. only difference is treatment of v.size==1, where VecStrVal does not add quotes and curly brackets, i.e. allows for type conversion of '2' into the number 2 */ output << '{'; for (const auto& it : v) output << "'" << it << "';"; output << '}'; } else if constexpr (is_same_v) { /* For historical reason, those vectors are output as row vectors (contrary to vectors of integers which are output as column vectors) */ output << '['; for (const auto& it : v) output << it << ','; output << ']'; } else if constexpr (is_same_v>>) { // Same remark as for VecValueVal output << '{'; for (const auto& v2 : v) { output << '['; for (const auto& it : v2) output << it << ','; output << "], "; } output << '}'; } else static_assert(always_false_v, "Non-exhaustive visitor!"); output << ";" << endl; } }, val); // NOLINTEND(clang-analyzer-core.CallAndMessage) } void OptionsList::writeJsonOutput(ostream& output) const { if (empty()) return; output << R"("options": {)"; for (bool opt_written {false}; const auto& [name, val] : options) { if (exchange(opt_written, true)) output << ", "; output << R"(")" << name << R"(": )"; std::visit( [&](const T& v) { if constexpr (is_same_v) output << v; else if constexpr (is_same_v>) output << '[' << v.first << ", " << v.second << ']'; else if constexpr (is_same_v || is_same_v) output << '"' << v << '"'; else if constexpr (is_same_v) { output << '{'; v.writeJsonOutput(output); output << '}'; } else if constexpr (is_same_v> || is_same_v || is_same_v || is_same_v || is_same_v>>) { output << '['; for (bool printed_something {false}; const auto& it : v) { if (exchange(printed_something, true)) output << ", "; if constexpr (is_same_v> || is_same_v) output << it; else if constexpr (is_same_v || is_same_v) output << '"' << it << '"'; else // vector> { output << '['; for (bool printed_something2 {false}; const auto& it2 : it) { if (exchange(printed_something2, true)) output << ", "; output << it2; } output << ']'; } } output << ']'; } else static_assert(always_false_v, "Non-exhaustive visitor!"); }, val); } output << "}"; } void OptionsList::clear() { options.clear(); } bool OptionsList::contains(const string& name) const { return options.contains(name); } void OptionsList::erase(const string& name) { options.erase(name); } bool OptionsList::empty() const { return options.empty(); }