patrick
/
plasp
Archived
1
0
Fork 0
This repository has been archived on 2023-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
plasp/apps/plasp-app/main.cpp

82 lines
1.8 KiB
C++
Raw Normal View History

2016-05-20 15:29:24 +02:00
#include <iostream>
#include <boost/program_options.hpp>
#include <plasp/sas/Description.h>
#include <plasp/sas/TranslatorASP.h>
2016-05-20 15:29:24 +02:00
int main(int argc, char **argv)
{
namespace po = boost::program_options;
po::options_description description("Allowed options");
description.add_options()
2016-05-24 16:24:37 +02:00
("help,h", "Display this help message.")
("version,v", "Display version information.")
("input,i", po::value<std::string>(), "Specify the SAS input file.");
2016-05-20 15:29:24 +02:00
po::positional_options_description positionalOptionsDescription;
positionalOptionsDescription.add("input", -1);
po::variables_map variablesMap;
2016-05-24 16:24:37 +02:00
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;
}
2016-05-20 15:29:24 +02:00
if (variablesMap.count("help"))
{
2016-05-24 16:24:37 +02:00
printHelp();
return EXIT_SUCCESS;
}
if (variablesMap.count("version"))
{
std::cout << "plasp version 3.0.0" << std::endl;
2016-05-20 15:29:24 +02:00
return EXIT_SUCCESS;
}
if (!variablesMap.count("input"))
{
2016-05-24 16:24:37 +02:00
std::cerr << "Error: No input file specified" << std::endl << std::endl;
printHelp();
2016-05-20 15:29:24 +02:00
return EXIT_FAILURE;
}
try
{
const auto sasDescription = plasp::sas::Description::fromFile(variablesMap["input"].as<std::string>());
const auto sasTranslator = plasp::sas::TranslatorASP(sasDescription);
sasTranslator.translate(std::cout);
}
catch (const std::exception &e)
{
2016-05-24 16:24:37 +02:00
std::cerr << "Error: " << e.what() << std::endl << std::endl;
printHelp();
return EXIT_FAILURE;
}
2016-05-20 15:29:24 +02:00
return EXIT_SUCCESS;
}