preprocessor/src/macro/Driver.cc

71 lines
2.1 KiB
C++

/*
* Copyright © 2019-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 <https://www.gnu.org/licenses/>.
*/
#include "Driver.hh"
#include <regex>
#include <utility>
using namespace macro;
void
Driver::parse(const string& file_arg, const istream& modfile, bool debug,
const vector<pair<string, string>>& defines, Environment& env,
vector<filesystem::path>& paths, ostream& output)
{
file = file_arg;
if (!defines.empty())
{
stringstream command_line_defines_with_endl;
for (const auto& [var, val] : defines)
command_line_defines_with_endl << "@#define " << var << " = " << val << endl;
Driver m;
istream is(command_line_defines_with_endl.rdbuf());
m.parse("command_line_defines", is, debug, {}, env, paths, output);
}
stringstream file_with_endl;
file_with_endl << modfile.rdbuf() << endl;
lexer = make_unique<TokenizerFlex>(&file_with_endl);
lexer->set_debug(debug);
Tokenizer::parser parser(*this);
parser.set_debug_level(debug);
// Launch macro-processing
parser.parse();
// Interpret parsed statements
for (bool printLine {true}; const auto& statement : statements)
{
if (exchange(printLine, false))
statement->printLineInfo(output);
statement->interpret(output, env, paths);
}
}
void
Driver::error(const Tokenizer::parser::location_type& location, const string& message) const
{
cerr << "ERROR in macro-processor: " << location << ": " << message << endl;
exit(EXIT_FAILURE);
}