Merge pull request #636 from matthiasbeyer/libimagrt/make-arg-names-publicly-available

Make arg names publicly available
This commit is contained in:
Matthias Beyer 2016-08-07 11:15:47 +02:00 committed by GitHub
commit a15301ed11

View file

@ -166,56 +166,101 @@ impl<'a> Runtime<'a> {
.version(version) .version(version)
.author("Matthias Beyer <mail@beyermatthias.de>") .author("Matthias Beyer <mail@beyermatthias.de>")
.about(about) .about(about)
.arg(Arg::with_name("verbosity") .arg(Arg::with_name(Runtime::arg_verbosity_name())
.short("v") .short("v")
.long("verbose") .long("verbose")
.help("Enables verbosity") .help("Enables verbosity")
.required(false) .required(false)
.takes_value(false)) .takes_value(false))
.arg(Arg::with_name("debugging") .arg(Arg::with_name(Runtime::arg_debugging_name())
.long("debug") .long("debug")
.help("Enables debugging output") .help("Enables debugging output")
.required(false) .required(false)
.takes_value(false)) .takes_value(false))
.arg(Arg::with_name("no-color-output") .arg(Arg::with_name(Runtime::arg_no_color_output_name())
.long("no-color") .long("no-color")
.help("Disable color output") .help("Disable color output")
.required(false) .required(false)
.takes_value(false)) .takes_value(false))
.arg(Arg::with_name("config") .arg(Arg::with_name(Runtime::arg_config_name())
.long("config") .long("config")
.help("Path to alternative config file") .help("Path to alternative config file")
.required(false) .required(false)
.takes_value(true)) .takes_value(true))
.arg(Arg::with_name("config-override") .arg(Arg::with_name(Runtime::arg_config_override_name())
.long("override-config") .long("override-config")
.help("Override a configuration settings. Use 'key=value' pairs, where the key is a path in the TOML configuration. The value must be present in the configuration and be convertible to the type of the configuration setting. If the argument does not contain a '=', it gets ignored. Setting Arrays and Tables is not yet supported.") .help("Override a configuration settings. Use 'key=value' pairs, where the key is a path in the TOML configuration. The value must be present in the configuration and be convertible to the type of the configuration setting. If the argument does not contain a '=', it gets ignored. Setting Arrays and Tables is not yet supported.")
.required(false) .required(false)
.takes_value(true)) .takes_value(true))
.arg(Arg::with_name("runtimepath") .arg(Arg::with_name(Runtime::arg_runtimepath_name())
.long("rtp") .long("rtp")
.help("Alternative runtimepath") .help("Alternative runtimepath")
.required(false) .required(false)
.takes_value(true)) .takes_value(true))
.arg(Arg::with_name("storepath") .arg(Arg::with_name(Runtime::arg_storepath_name())
.long("store") .long("store")
.help("Alternative storepath. Must be specified as full path, can be outside of the RTP") .help("Alternative storepath. Must be specified as full path, can be outside of the RTP")
.required(false) .required(false)
.takes_value(true)) .takes_value(true))
.arg(Arg::with_name("editor") .arg(Arg::with_name(Runtime::arg_editor_name())
.long("editor") .long("editor")
.help("Set editor") .help("Set editor")
.required(false) .required(false)
.takes_value(true)) .takes_value(true))
} }
pub fn arg_names() -> Vec<&'static str> {
vec![
Runtime::arg_verbosity_name(),
Runtime::arg_debugging_name(),
Runtime::arg_no_color_output_name(),
Runtime::arg_config_name(),
Runtime::arg_config_override_name(),
Runtime::arg_runtimepath_name(),
Runtime::arg_storepath_name(),
Runtime::arg_editor_name(),
]
}
pub fn arg_verbosity_name() -> &'static str {
"verbosity"
}
pub fn arg_debugging_name() -> &'static str {
"debugging"
}
pub fn arg_no_color_output_name() -> &'static str {
"no-color-output"
}
pub fn arg_config_name() -> &'static str {
"config"
}
pub fn arg_config_override_name() -> &'static str {
"config-override"
}
pub fn arg_runtimepath_name() -> &'static str {
"runtimepath"
}
pub fn arg_storepath_name() -> &'static str {
"storepath"
}
pub fn arg_editor_name() -> &'static str {
"editor"
}
/** /**
* Initialize the internal logger * Initialize the internal logger
*/ */