157 lines
4.2 KiB
C++
157 lines
4.2 KiB
C++
#include <algorithm>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
#include <plasp/LanguageDetection.h>
|
|
#include <plasp/pddl/Description.h>
|
|
#include <plasp/pddl/TranslatorASP.h>
|
|
#include <plasp/sas/Description.h>
|
|
#include <plasp/sas/TranslatorASP.h>
|
|
#include <plasp/utils/ParserWarning.h>
|
|
#include <plasp/utils/TranslatorException.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
namespace po = boost::program_options;
|
|
|
|
po::options_description description("Allowed options");
|
|
description.add_options()
|
|
("help,h", "Display this help message.")
|
|
("version,v", "Display version information.")
|
|
("input,i", po::value<std::vector<std::string>>(), "Specify the PDDL or SAS input file.")
|
|
("language,l", po::value<std::string>(), "Specify the input language (SAS or PDDL). Omit for automatic detection.")
|
|
("warning-level", po::value<std::string>()->default_value("normal"), "Specify whether to output warnings normally (normal), to treat them as critical errors (error), or to ignore them (ignore).");
|
|
|
|
po::positional_options_description positionalOptionsDescription;
|
|
positionalOptionsDescription.add("input", -1);
|
|
|
|
po::variables_map variablesMap;
|
|
|
|
const auto printHelp =
|
|
[&]()
|
|
{
|
|
std::cout << "Usage: plasp file [options]" << std::endl;
|
|
std::cout << "Translate PDDL instances to ASP facts." << std::endl << std::endl;
|
|
|
|
std::cout << description;
|
|
};
|
|
|
|
try
|
|
{
|
|
po::store(po::command_line_parser(argc, argv)
|
|
.options(description)
|
|
.positional(positionalOptionsDescription)
|
|
.run(),
|
|
variablesMap);
|
|
po::notify(variablesMap);
|
|
}
|
|
catch (const po::error &e)
|
|
{
|
|
std::cerr << "Error: " << e.what() << std::endl << std::endl;
|
|
printHelp();
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
if (variablesMap.count("help"))
|
|
{
|
|
printHelp();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
if (variablesMap.count("version"))
|
|
{
|
|
std::cout << "plasp version 3.0.0" << std::endl;
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
const auto handleException =
|
|
[&](const auto &messagePrefix, const auto &exception)
|
|
{
|
|
std::cerr << messagePrefix << ": " << exception.what() << std::endl << std::endl;
|
|
printHelp();
|
|
exit(EXIT_FAILURE);
|
|
};
|
|
|
|
try
|
|
{
|
|
plasp::utils::Parser parser;
|
|
|
|
parser.setCaseSensitive(false);
|
|
|
|
if (variablesMap.count("input"))
|
|
{
|
|
const auto &inputFiles = variablesMap["input"].as<std::vector<std::string>>();
|
|
|
|
std::for_each(inputFiles.cbegin(), inputFiles.cend(),
|
|
[&](const auto &inputFile)
|
|
{
|
|
parser.readFile(inputFile);
|
|
});
|
|
}
|
|
else
|
|
parser.readStream("std::cin", std::cin);
|
|
|
|
const auto detectLanguage =
|
|
[&]()
|
|
{
|
|
if (variablesMap.count("language") == 0)
|
|
return plasp::detectLanguage(parser);
|
|
|
|
const auto languageName = variablesMap["language"].as<std::string>();
|
|
|
|
return plasp::Language::fromString(languageName);
|
|
};
|
|
|
|
const auto language = detectLanguage();
|
|
|
|
if (language == plasp::Language::Type::Unknown)
|
|
{
|
|
std::cerr << "Error: Unknown input language" << std::endl << std::endl;
|
|
printHelp();
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
if (language == plasp::Language::Type::PDDL)
|
|
{
|
|
auto context = plasp::pddl::Context(std::move(parser));
|
|
|
|
const auto warningLevel = variablesMap["warning-level"].as<std::string>();
|
|
|
|
if (warningLevel == "error")
|
|
context.logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Error);
|
|
else if (warningLevel == "ignore")
|
|
context.logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Ignore);
|
|
|
|
const auto description = plasp::pddl::Description::fromContext(std::move(context));
|
|
const auto translator = plasp::pddl::TranslatorASP(description, std::cout);
|
|
translator.translate();
|
|
}
|
|
else if (language == plasp::Language::Type::SAS)
|
|
{
|
|
const auto description = plasp::sas::Description::fromParser(std::move(parser));
|
|
const auto translator = plasp::sas::TranslatorASP(description, std::cout);
|
|
translator.translate();
|
|
}
|
|
}
|
|
catch (const plasp::utils::ParserException &e)
|
|
{
|
|
handleException("Parser error", e);
|
|
}
|
|
catch (const plasp::utils::ParserWarning &e)
|
|
{
|
|
handleException("Parser warning", e);
|
|
}
|
|
catch (const plasp::utils::TranslatorException &e)
|
|
{
|
|
handleException("Translation error", e);
|
|
}
|
|
catch (const std::exception &e)
|
|
{
|
|
handleException("Error", e);
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|