Improved command-line interface.

This commit is contained in:
Patrick Lühne 2016-11-29 02:01:23 +01:00
parent 180cc33ded
commit f4efb4f3d4
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
9 changed files with 31 additions and 27 deletions

View File

@ -5,6 +5,7 @@
Features: Features:
* extended PDDL support (`imply` expressions) * extended PDDL support (`imply` expressions)
* improved command-line interface
## 3.0.3 (2016-09-02) ## 3.0.3 (2016-09-02)

View File

@ -45,7 +45,7 @@ $ clingo encodings/sequential-incremental.lp instance.lp
## Command-Line Interface ## Command-Line Interface
```bash ```bash
$ plasp [files] [options] $ plasp [options] file...
``` ```
`plasp` automatically detects the language of the input program. `plasp` automatically detects the language of the input program.

View File

@ -20,4 +20,4 @@ set(libraries
add_executable(${target} ${sources}) add_executable(${target} ${sources})
target_link_libraries(${target} ${libraries}) target_link_libraries(${target} ${libraries})
set_target_properties(plasp_app PROPERTIES OUTPUT_NAME plasp) set_target_properties(${target} PROPERTIES OUTPUT_NAME plasp)

View File

@ -18,12 +18,12 @@ int main(int argc, char **argv)
po::options_description description("Allowed options"); po::options_description description("Allowed options");
description.add_options() description.add_options()
("help,h", "Display this help message.") ("help,h", "Display this help message")
("version,v", "Display version information.") ("version,v", "Display version information")
("input,i", po::value<std::vector<std::string>>(), "Specify the PDDL or SAS input file.") ("input,i", po::value<std::vector<std::string>>(), "Input files (in PDDL or SAS format)")
("language,l", po::value<std::string>(), "Specify the input language (sas or pddl). Omit for automatic detection.") ("language,l", po::value<std::string>()->default_value("auto"), "Input language (pddl, sas, auto)")
("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).") ("warning-level", po::value<std::string>()->default_value("show"), "Show warnings (show), treat them as errors (error), or ignore them (ignore)")
("color", po::value<std::string>()->default_value("auto"), "Specify whether to colorize the output (always, never, or auto)."); ("color", po::value<std::string>()->default_value("auto"), "Colorize output (always, never, auto)");
po::positional_options_description positionalOptionsDescription; po::positional_options_description positionalOptionsDescription;
positionalOptionsDescription.add("input", -1); positionalOptionsDescription.add("input", -1);
@ -33,8 +33,8 @@ int main(int argc, char **argv)
const auto printHelp = const auto printHelp =
[&]() [&]()
{ {
std::cout << "Usage: plasp [files] [options]" << std::endl; std::cout << "Usage: plasp [options] file..." << std::endl;
std::cout << "Translate PDDL instances to ASP facts." << std::endl << std::endl; std::cout << "Translate PDDL to ASP." << std::endl << std::endl;
std::cout << description; std::cout << description;
}; };
@ -76,8 +76,8 @@ int main(int argc, char **argv)
logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Error); logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Error);
else if (warningLevel == "ignore") else if (warningLevel == "ignore")
logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Ignore); logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Ignore);
else if (warningLevel == "normal") else if (warningLevel == "show")
logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Normal); logger.setWarningLevel(plasp::utils::Logger::WarningLevel::Show);
else else
{ {
logger.logError("unknown warning level “" + warningLevel + ""); logger.logError("unknown warning level “" + warningLevel + "");
@ -122,12 +122,13 @@ int main(int argc, char **argv)
const auto detectLanguage = const auto detectLanguage =
[&]() [&]()
{ {
if (variablesMap.count("language") == 0) const auto languageName = variablesMap["language"].as<std::string>();
const auto language = plasp::Language::fromString(languageName);
if (language == plasp::Language::Type::Automatic)
return plasp::detectLanguage(parser); return plasp::detectLanguage(parser);
const auto languageName = variablesMap["language"].as<std::string>(); return language;
return plasp::Language::fromString(languageName);
}; };
const auto language = detectLanguage(); const auto language = detectLanguage();

View File

@ -1,18 +1,18 @@
# Command-Line Interface # Command-Line Interface
```bash ```bash
$ plasp [files] [options] $ plasp [options] file...
``` ```
`plasp` automatically detects the language of the input files. `plasp` automatically detects the language of the input files.
Multiple files may be provided in an arbitrary order. Multiple files may be provided in an arbitrary order.
`[files]` may also be omitted, in which case the input is read from `std::cin`. The `file...` arguments may also be omitted, in which case the input is read from `std::cin`.
`plasp` supports the following options: `plasp` supports the following options:
| **option** | **explanation** | | **option** | **explanation** |
|-----------------------------------|-----------------------------------------------------------------------------------------------------------------------------------| |------------|-----------------|
| `-l` [ `--language` ] | Specify the input language (`sas` or `pddl`). Omit for automatic detection. | | `-l` [ `--language` ] arg (=`auto`) | Input language (`pddl`, `sas`, `auto`) |
| `--warning-level` arg (=`normal`) | Specify whether to output warnings normally (`normal`), to treat them as critical errors (`error`), or to ignore them (`ignore`). | | `--warning-level` arg (=`show`) | Show warnings (`show`), treat them as errors (`error`), or ignore them (`ignore`) |
| `--color` arg (=`auto`) | Specify whether to colorize the output (`always`, `never`, or `auto`). | | `--color` arg (=`auto`) | Colorize output (`always`, `never`, `auto`) |

View File

@ -18,6 +18,7 @@ class Language
enum class Type enum class Type
{ {
Unknown, Unknown,
Automatic,
PDDL, PDDL,
SAS SAS
}; };

View File

@ -23,7 +23,7 @@ class Logger
public: public:
enum class WarningLevel enum class WarningLevel
{ {
Normal, Show,
Error, Error,
Ignore Ignore
}; };

View File

@ -17,6 +17,7 @@ using LanguageNames = boost::bimap<Language::Type, std::string>;
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
const LanguageNames languageNames = boost::assign::list_of<LanguageNames::relation> const LanguageNames languageNames = boost::assign::list_of<LanguageNames::relation>
(Language::Type::Automatic, "auto")
(Language::Type::PDDL, "pddl") (Language::Type::PDDL, "pddl")
(Language::Type::SAS, "sas") (Language::Type::SAS, "sas")
(Language::Type::Unknown, "unknown"); (Language::Type::Unknown, "unknown");

View File

@ -16,7 +16,7 @@ namespace utils
Logger::Logger() Logger::Logger()
: m_outputStream(StandardStream::Out), : m_outputStream(StandardStream::Out),
m_errorStream(StandardStream::Err), m_errorStream(StandardStream::Err),
m_warningLevel{Logger::WarningLevel::Normal} m_warningLevel{Logger::WarningLevel::Show}
{ {
} }
@ -47,7 +47,7 @@ Logger::Logger(Logger &&other)
m_errorStream{std::move(other.m_errorStream)}, m_errorStream{std::move(other.m_errorStream)},
m_warningLevel{other.m_warningLevel} m_warningLevel{other.m_warningLevel}
{ {
other.m_warningLevel = WarningLevel::Normal; other.m_warningLevel = WarningLevel::Show;
} }
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////
@ -58,7 +58,7 @@ Logger &Logger::operator=(Logger &&other)
m_errorStream = std::move(other.m_errorStream); m_errorStream = std::move(other.m_errorStream);
m_warningLevel = other.m_warningLevel; m_warningLevel = other.m_warningLevel;
other.m_warningLevel = WarningLevel::Normal; other.m_warningLevel = WarningLevel::Show;
return *this; return *this;
} }