#include #include #include #include int main(int argc, char **argv) { anthem::Context context; 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>(), "Input files") ("color", po::value()->default_value("auto"), "Whether to colorize the output (always, never, or auto)."); po::positional_options_description positionalOptionsDescription; positionalOptionsDescription.add("input", -1); po::variables_map variablesMap; const auto printHelp = [&]() { std::cout << "Usage: anthem [files] [options]" << std::endl << "Translate ASP programs to the language of first-order theorem provers." << std::endl << std::endl << description; }; try { po::store(po::command_line_parser(argc, argv) .options(description) .positional(positionalOptionsDescription) .run(), variablesMap); po::notify(variablesMap); } catch (const po::error &e) { context.logger.log(anthem::output::Priority::Error, e.what()); printHelp(); return EXIT_FAILURE; } if (variablesMap.count("help")) { printHelp(); return EXIT_SUCCESS; } if (variablesMap.count("version")) { std::cout << "anthem version 0.1.0-git" << std::endl; return EXIT_SUCCESS; } const auto colorPolicy = variablesMap["color"].as(); if (colorPolicy == "auto") context.logger.setColorPolicy(anthem::output::ColorStream::ColorPolicy::Auto); else if (colorPolicy == "never") context.logger.setColorPolicy(anthem::output::ColorStream::ColorPolicy::Never); else if (colorPolicy == "always") context.logger.setColorPolicy(anthem::output::ColorStream::ColorPolicy::Always); else { context.logger.log(anthem::output::Priority::Error, ("unknown color policy “" + colorPolicy + "”").c_str()); context.logger.errorStream() << std::endl; printHelp(); return EXIT_FAILURE; } try { if (variablesMap.count("input")) { const auto &inputFiles = variablesMap["input"].as>(); anthem::translate(inputFiles, context); } else anthem::translate("std::cin", std::cin, context); } catch (const std::exception &e) { context.logger.log(anthem::output::Priority::Error, e.what()); return EXIT_FAILURE; } return EXIT_SUCCESS; }