anthem/src/anthem/Translation.cpp

58 lines
1.5 KiB
C++

#include <anthem/Translation.h>
#include <fstream>
#include <iostream>
#include <sstream>
#include <clingo.hh>
#include <anthem/Context.h>
#include <anthem/StatementVisitor.h>
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Translation
//
////////////////////////////////////////////////////////////////////////////////////////////////////
void translate(const std::vector<std::string> &fileNames, Context &context)
{
for (const auto &fileName : fileNames)
{
std::ifstream file(fileName, std::ios::in);
translate(fileName.c_str(), file, context);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
void translate(const char *fileName, std::istream &stream, Context &context)
{
std::cout << "info: reading " << fileName << std::endl;
auto fileContent = std::string(std::istreambuf_iterator<char>(stream), {});
const auto translateStatement =
[&context](const Clingo::AST::Statement &statement)
{
statement.data.accept(StatementVisitor(), statement, context);
context.logger.outputStream() << std::endl;
};
const auto logger =
[&context](const Clingo::WarningCode warningCode, const char *text)
{
context.logger.log(output::Priority::Error, text);
};
Clingo::parse_program(fileContent.c_str(), translateStatement, logger);
}
////////////////////////////////////////////////////////////////////////////////////////////////////
}