2015-08-31 03:26:17 +00:00
|
|
|
use std::str::FromStr;
|
|
|
|
use std::ascii::AsciiExt;
|
|
|
|
|
2015-09-30 21:14:48 +00:00
|
|
|
bitflags! {
|
|
|
|
flags Flags: u32 {
|
2016-02-02 08:13:18 +00:00
|
|
|
const SC_NEGATE_REQS = 0b00000000000000000001,
|
|
|
|
const SC_REQUIRED = 0b00000000000000000010,
|
|
|
|
const A_REQUIRED_ELSE_HELP = 0b00000000000000000100,
|
|
|
|
const GLOBAL_VERSION = 0b00000000000000001000,
|
|
|
|
const VERSIONLESS_SC = 0b00000000000000010000,
|
|
|
|
const UNIFIED_HELP = 0b00000000000000100000,
|
|
|
|
const WAIT_ON_ERROR = 0b00000000000001000000,
|
|
|
|
const SC_REQUIRED_ELSE_HELP= 0b00000000000010000000,
|
|
|
|
const NEEDS_LONG_HELP = 0b00000000000100000000,
|
|
|
|
const NEEDS_LONG_VERSION = 0b00000000001000000000,
|
|
|
|
const NEEDS_SC_HELP = 0b00000000010000000000,
|
|
|
|
const DISABLE_VERSION = 0b00000000100000000000,
|
|
|
|
const HIDDEN = 0b00000001000000000000,
|
|
|
|
const TRAILING_VARARG = 0b00000010000000000000,
|
|
|
|
const NO_BIN_NAME = 0b00000100000000000000,
|
|
|
|
const ALLOW_UNK_SC = 0b00001000000000000000,
|
|
|
|
const UTF8_STRICT = 0b00010000000000000000,
|
|
|
|
const UTF8_NONE = 0b00100000000000000000,
|
|
|
|
const LEADING_HYPHEN = 0b01000000000000000000,
|
|
|
|
const NO_POS_VALUES = 0b10000000000000000000,
|
2015-09-30 21:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-26 19:02:10 +00:00
|
|
|
#[doc(hidden)]
|
2015-10-28 13:57:47 +00:00
|
|
|
#[derive(Debug)]
|
2015-09-30 21:14:48 +00:00
|
|
|
pub struct AppFlags(Flags);
|
|
|
|
|
|
|
|
impl AppFlags {
|
|
|
|
pub fn new() -> Self {
|
2016-01-22 17:58:56 +00:00
|
|
|
AppFlags(NEEDS_LONG_VERSION | NEEDS_LONG_HELP | NEEDS_SC_HELP | UTF8_NONE)
|
2015-09-30 21:14:48 +00:00
|
|
|
}
|
|
|
|
|
2016-01-26 17:15:57 +00:00
|
|
|
impl_settings! { AppSettings,
|
|
|
|
SubcommandsNegateReqs => SC_NEGATE_REQS,
|
|
|
|
VersionlessSubcommands => VERSIONLESS_SC,
|
|
|
|
SubcommandRequired => SC_REQUIRED,
|
|
|
|
ArgRequiredElseHelp => A_REQUIRED_ELSE_HELP,
|
|
|
|
GlobalVersion => GLOBAL_VERSION,
|
|
|
|
UnifiedHelpMessage => UNIFIED_HELP,
|
|
|
|
WaitOnError => WAIT_ON_ERROR,
|
|
|
|
SubcommandRequiredElseHelp => SC_REQUIRED_ELSE_HELP,
|
|
|
|
NeedsLongHelp => NEEDS_LONG_HELP,
|
|
|
|
NeedsLongVersion => NEEDS_LONG_VERSION,
|
|
|
|
NeedsSubcommandHelp => NEEDS_SC_HELP,
|
|
|
|
DisableVersion => DISABLE_VERSION,
|
|
|
|
Hidden => HIDDEN,
|
|
|
|
TrailingVarArg => TRAILING_VARARG,
|
|
|
|
NoBinaryName => NO_BIN_NAME,
|
|
|
|
AllowExternalSubcommands => ALLOW_UNK_SC,
|
|
|
|
StrictUtf8 => UTF8_STRICT,
|
|
|
|
AllowInvalidUtf8 => UTF8_NONE,
|
2016-02-02 08:13:18 +00:00
|
|
|
AllowLeadingHyphen => LEADING_HYPHEN,
|
|
|
|
HidePossibleValuesInHelp => NO_POS_VALUES
|
2015-09-30 21:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-30 21:10:26 +00:00
|
|
|
/// Application level settings, which affect how `App` operates
|
2015-10-28 13:57:47 +00:00
|
|
|
#[derive(Debug, PartialEq, Copy, Clone)]
|
2015-08-30 21:10:26 +00:00
|
|
|
pub enum AppSettings {
|
2016-01-26 19:02:10 +00:00
|
|
|
/// Allows subcommands to override all requirements of the parent command. For example
|
|
|
|
/// if you had a subcommand or top level application which had a required argument that
|
|
|
|
/// are only required as long as there is no subcommand present, using this setting would allow
|
|
|
|
/// you set those arguments to `required(true)` and yet receive no error so long as the user
|
|
|
|
/// uses a valid subcommand instead.
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
|
|
|
/// **NOTE:** This defaults to false (using subcommand does *not* negate requirements)
|
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// This first example shows that it is an error to not use a required argument
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use clap::{App, Arg, AppSettings, SubCommand, ErrorKind};
|
|
|
|
/// let err = App::new("myprog")
|
|
|
|
/// .setting(AppSettings::SubcommandsNegateReqs)
|
|
|
|
/// .arg(Arg::with_name("opt").required(true))
|
|
|
|
/// .subcommand(SubCommand::with_name("test"))
|
|
|
|
/// .get_matches_from_safe(vec![
|
|
|
|
/// "myprog"
|
|
|
|
/// ]);
|
|
|
|
/// assert!(err.is_err());
|
|
|
|
/// assert_eq!(err.unwrap_err().kind, ErrorKind::MissingRequiredArgument);
|
|
|
|
/// # ;
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// This next example shows that it is no longer error to not use a required argument if a
|
|
|
|
/// valid subcommand is used.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # use clap::{App, Arg, AppSettings, SubCommand, ErrorKind};
|
|
|
|
/// let noerr = App::new("myprog")
|
2015-08-30 21:10:26 +00:00
|
|
|
/// .setting(AppSettings::SubcommandsNegateReqs)
|
2016-01-26 19:02:10 +00:00
|
|
|
/// .arg(Arg::with_name("opt").required(true))
|
|
|
|
/// .subcommand(SubCommand::with_name("test"))
|
|
|
|
/// .get_matches_from_safe(vec![
|
|
|
|
/// "myprog", "test"
|
|
|
|
/// ]);
|
|
|
|
/// assert!(noerr.is_ok());
|
2015-08-30 21:10:26 +00:00
|
|
|
/// # ;
|
|
|
|
/// ```
|
|
|
|
SubcommandsNegateReqs,
|
|
|
|
/// Allows specifying that if no subcommand is present at runtime, error and exit gracefully
|
|
|
|
///
|
|
|
|
/// **NOTE:** This defaults to false (subcommands do *not* need to be present)
|
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
|
|
|
/// # use clap::{App, AppSettings, SubCommand, ErrorKind};
|
|
|
|
/// let err = App::new("myprog")
|
2015-08-30 21:10:26 +00:00
|
|
|
/// .setting(AppSettings::SubcommandRequired)
|
2016-01-26 19:02:10 +00:00
|
|
|
/// .subcommand(SubCommand::with_name("test"))
|
|
|
|
/// .get_matches_from_safe(vec![
|
|
|
|
/// "myprog",
|
|
|
|
/// ]);
|
|
|
|
/// assert!(err.is_err());
|
|
|
|
/// assert_eq!(err.unwrap_err().kind, ErrorKind::MissingSubcommand);
|
2015-08-30 21:10:26 +00:00
|
|
|
/// # ;
|
|
|
|
/// ```
|
|
|
|
SubcommandRequired,
|
2015-11-01 14:02:37 +00:00
|
|
|
/// Specifies that the help text should be displayed (and then exit gracefully), if no
|
2015-08-30 21:10:26 +00:00
|
|
|
/// arguments are present at runtime (i.e. an empty run such as, `$ myprog`.
|
|
|
|
///
|
|
|
|
/// **NOTE:** Subcommands count as arguments
|
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
2015-08-30 21:10:26 +00:00
|
|
|
/// # use clap::{App, AppSettings};
|
|
|
|
/// App::new("myprog")
|
|
|
|
/// .setting(AppSettings::ArgRequiredElseHelp)
|
|
|
|
/// # ;
|
|
|
|
/// ```
|
|
|
|
ArgRequiredElseHelp,
|
2016-01-26 19:02:10 +00:00
|
|
|
/// Specifies to version of the current command for all child subcommands. (Defaults to false;
|
|
|
|
/// subcommands have independant version strings from their parents)
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// **NOTE:** The version for the current command **and** this setting must be set **prior** to
|
|
|
|
/// adding any child subcommands
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # use clap::{App, Arg, SubCommand, AppSettings};
|
|
|
|
/// App::new("myprog")
|
|
|
|
/// .version("v1.1")
|
|
|
|
/// .setting(AppSettings::GlobalVersion)
|
|
|
|
/// .subcommand(SubCommand::with_name("test"))
|
|
|
|
/// .get_matches();
|
2016-01-26 19:02:10 +00:00
|
|
|
/// // running `$ myprog test --version` will display
|
2015-08-30 21:10:26 +00:00
|
|
|
/// // "myprog-test v1.1"
|
|
|
|
/// ```
|
|
|
|
GlobalVersion,
|
|
|
|
/// Disables `-V` and `--version` for all subcommands (Defaults to false; subcommands have
|
|
|
|
/// version flags)
|
|
|
|
///
|
|
|
|
/// **NOTE:** This setting must be set **prior** adding any subcommands
|
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
|
|
|
/// # use clap::{App, SubCommand, AppSettings, ErrorKind};
|
|
|
|
/// let res = App::new("myprog")
|
2015-08-30 21:10:26 +00:00
|
|
|
/// .version("v1.1")
|
|
|
|
/// .setting(AppSettings::VersionlessSubcommands)
|
|
|
|
/// .subcommand(SubCommand::with_name("test"))
|
2016-01-26 19:02:10 +00:00
|
|
|
/// .get_matches_from_safe(vec![
|
|
|
|
/// "myprog", "test", "-V"
|
|
|
|
/// ]);
|
|
|
|
/// assert!(res.is_err());
|
|
|
|
/// assert_eq!(res.unwrap_err().kind, ErrorKind::UnknownArgument);
|
2015-08-30 21:10:26 +00:00
|
|
|
/// ```
|
|
|
|
VersionlessSubcommands,
|
2016-01-26 19:02:10 +00:00
|
|
|
/// Groups flags and options together presenting a more unified help message (a la `getopts` or
|
|
|
|
/// `docopt` style). The default is the auto-generated help message groups flags, options
|
|
|
|
/// separately.
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
|
|
|
/// **NOTE:** This setting is cosmetic only and does not affect any functionality.
|
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # use clap::{App, Arg, SubCommand, AppSettings};
|
|
|
|
/// App::new("myprog")
|
|
|
|
/// .setting(AppSettings::UnifiedHelpMessage)
|
|
|
|
/// .get_matches();
|
|
|
|
/// // running `myprog --help` will display a unified "docopt" or "getopts" style help message
|
|
|
|
/// ```
|
|
|
|
UnifiedHelpMessage,
|
|
|
|
/// Will display a message "Press [ENTER]/[RETURN] to continue..." and wait user before
|
|
|
|
/// exiting
|
|
|
|
///
|
|
|
|
/// This is most useful when writing an application which is run from a GUI shortcut, or on
|
|
|
|
/// Windows where a user tries to open the binary by double-clicking instead of using the
|
2016-01-26 19:02:10 +00:00
|
|
|
/// command line.
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
|
|
|
/// **NOTE:** This setting is **not** recursive with subcommands, meaning if you wish this
|
|
|
|
/// behavior for all subcommands, you must set this on each command (needing this is extremely
|
|
|
|
/// rare)
|
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
2015-08-30 21:10:26 +00:00
|
|
|
/// # use clap::{App, Arg, AppSettings};
|
|
|
|
/// App::new("myprog")
|
|
|
|
/// .setting(AppSettings::WaitOnError)
|
|
|
|
/// # ;
|
|
|
|
/// ```
|
|
|
|
WaitOnError,
|
2015-11-01 14:02:37 +00:00
|
|
|
/// Specifies that the help text should be displayed (and then exit gracefully), if no
|
2015-08-30 21:10:26 +00:00
|
|
|
/// subcommands are present at runtime (i.e. an empty run such as, `$ myprog`.
|
|
|
|
///
|
|
|
|
/// **NOTE:** This should *not* be used with `.subcommand_required()` as they do the same
|
2016-01-26 19:02:10 +00:00
|
|
|
/// thing, except this prints the help text, and the other prints an error.
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
|
|
|
/// **NOTE:** If the user specifies arguments at runtime, but no subcommand the help text will
|
|
|
|
/// still be displayed and exit. If this is *not* the desired result, consider using
|
2016-01-26 19:02:10 +00:00
|
|
|
/// `ArgRequiredElseHelp` instead.
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2015-09-22 02:06:15 +00:00
|
|
|
/// # Examples
|
2015-08-30 21:10:26 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
2015-08-30 21:10:26 +00:00
|
|
|
/// # use clap::{App, Arg, AppSettings};
|
|
|
|
/// App::new("myprog")
|
|
|
|
/// .setting(AppSettings::SubcommandRequiredElseHelp)
|
|
|
|
/// # ;
|
|
|
|
/// ```
|
|
|
|
SubcommandRequiredElseHelp,
|
2015-10-01 01:41:40 +00:00
|
|
|
/// Specifies that this subcommand should be hidden from help messages
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
2015-10-01 01:41:40 +00:00
|
|
|
/// # use clap::{App, Arg, AppSettings, SubCommand};
|
|
|
|
/// App::new("myprog")
|
|
|
|
/// .subcommand(SubCommand::with_name("test")
|
2015-10-28 14:23:59 +00:00
|
|
|
/// .setting(AppSettings::Hidden))
|
2015-10-01 01:41:40 +00:00
|
|
|
/// # ;
|
|
|
|
/// ```
|
|
|
|
Hidden,
|
2016-01-26 19:02:10 +00:00
|
|
|
/// Specifies that the final positional argument is a "VarArg" and that `clap` should not
|
|
|
|
/// attempt to parse any further args.
|
2015-10-01 18:16:13 +00:00
|
|
|
///
|
|
|
|
/// The values of the trailing positional argument will contain all args from itself on.
|
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// **NOTE:** The final positional argument **must** have `.multiple(true)` or the usage string
|
2015-11-01 14:02:37 +00:00
|
|
|
/// equivalent.
|
2015-10-01 18:16:13 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
2015-10-01 18:16:13 +00:00
|
|
|
/// # use clap::{App, Arg, AppSettings};
|
|
|
|
/// let m = App::new("myprog")
|
|
|
|
/// .setting(AppSettings::TrailingVarArg)
|
|
|
|
/// .arg(Arg::from_usage("<cmd>... 'commands to run'"))
|
2016-01-26 19:02:10 +00:00
|
|
|
/// .get_matches_from(vec!["myprog", "arg1", "-r", "val1"]);
|
2015-10-01 18:16:13 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// let trail: Vec<&str> = m.values_of("cmd").unwrap().collect();
|
|
|
|
/// assert_eq!(trail, ["arg1", "-r", "val1"]);
|
2015-10-01 18:16:13 +00:00
|
|
|
/// ```
|
|
|
|
TrailingVarArg,
|
2015-10-28 10:45:45 +00:00
|
|
|
/// Specifies that the parser should not assume the first argument passed is the binary name.
|
|
|
|
/// This is normally the case when using a "daemon" style mode, or an interactive CLI where one
|
|
|
|
/// one would not normally type the binary or program name for each command.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
2015-10-28 10:45:45 +00:00
|
|
|
/// # use clap::{App, Arg, AppSettings};
|
|
|
|
/// let m = App::new("myprog")
|
|
|
|
/// .setting(AppSettings::NoBinaryName)
|
|
|
|
/// .arg(Arg::from_usage("<cmd>... 'commands to run'"))
|
2016-01-26 19:02:10 +00:00
|
|
|
/// .get_matches_from(vec!["command", "set"]);
|
2015-10-28 10:45:45 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// let cmds: Vec<&str> = m.values_of("cmd").unwrap().collect();
|
|
|
|
/// assert_eq!(cmds, ["command", "set"]);
|
2015-10-28 10:45:45 +00:00
|
|
|
/// ```
|
|
|
|
NoBinaryName,
|
2016-01-11 08:59:56 +00:00
|
|
|
/// Specifies that an unexpected argument positional arguments which would otherwise cause a
|
2016-01-22 04:18:52 +00:00
|
|
|
/// `ErrorKind::UnknownArgument` error, should instead be treated as a subcommand in the
|
2016-01-11 08:59:56 +00:00
|
|
|
/// `ArgMatches` struct.
|
|
|
|
///
|
|
|
|
/// **NOTE:** Use this setting with caution, as a truly unexpected argument (i.e. one that is
|
2016-01-22 04:18:52 +00:00
|
|
|
/// *NOT* an external subcommand) will not cause an error and instead be treatd as a potential
|
|
|
|
/// subcommand. You shoud inform the user appropriatly.
|
2016-01-11 08:59:56 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
feat: adds support for external subcommands
External subcommands are now supported via the following:
```rust
extern crate clap;
use clap::{App, AppSettings};
fn main() {
// Assume there is a third party subcommand named myprog-subcmd
let m = App::new("myprog")
.setting(AppSettings::AllowExternalSubcommands)
.get_matches_from(vec![
"myprog", "subcmd", "--option", "value", "-fff", "--flag"
]);
// All trailing arguments will be stored under the subcommands sub-matches under a
// value of their runtime name (in this case "subcmd")
match m.subcommand() {
(external, Some(ext_m)) => {
let ext_args: Vec<&str> = ext_m.values_of(external).unwrap().collect();
assert_eq!(ext_args ,["--option", "value", "-fff", "--flag"]);
},
_ => unreachable!()
}
}
```
Closes #372
2016-01-26 17:25:56 +00:00
|
|
|
/// # use clap::{App, AppSettings};
|
2016-01-26 19:02:10 +00:00
|
|
|
/// // Assume there is an external subcommand named "subcmd"
|
2016-01-11 08:59:56 +00:00
|
|
|
/// let m = App::new("myprog")
|
|
|
|
/// .setting(AppSettings::AllowExternalSubcommands)
|
feat: adds support for external subcommands
External subcommands are now supported via the following:
```rust
extern crate clap;
use clap::{App, AppSettings};
fn main() {
// Assume there is a third party subcommand named myprog-subcmd
let m = App::new("myprog")
.setting(AppSettings::AllowExternalSubcommands)
.get_matches_from(vec![
"myprog", "subcmd", "--option", "value", "-fff", "--flag"
]);
// All trailing arguments will be stored under the subcommands sub-matches under a
// value of their runtime name (in this case "subcmd")
match m.subcommand() {
(external, Some(ext_m)) => {
let ext_args: Vec<&str> = ext_m.values_of(external).unwrap().collect();
assert_eq!(ext_args ,["--option", "value", "-fff", "--flag"]);
},
_ => unreachable!()
}
}
```
Closes #372
2016-01-26 17:25:56 +00:00
|
|
|
/// .get_matches_from(vec![
|
|
|
|
/// "myprog", "subcmd", "--option", "value", "-fff", "--flag"
|
|
|
|
/// ]);
|
2016-01-26 19:02:10 +00:00
|
|
|
///
|
|
|
|
/// // All trailing arguments will be stored under the subcommand's sub-matches using a value
|
|
|
|
/// // of the runtime subcommand name (in this case "subcmd")
|
2016-01-11 08:59:56 +00:00
|
|
|
/// match m.subcommand() {
|
2016-01-22 04:18:52 +00:00
|
|
|
/// (external, Some(ext_m)) => {
|
feat: adds support for external subcommands
External subcommands are now supported via the following:
```rust
extern crate clap;
use clap::{App, AppSettings};
fn main() {
// Assume there is a third party subcommand named myprog-subcmd
let m = App::new("myprog")
.setting(AppSettings::AllowExternalSubcommands)
.get_matches_from(vec![
"myprog", "subcmd", "--option", "value", "-fff", "--flag"
]);
// All trailing arguments will be stored under the subcommands sub-matches under a
// value of their runtime name (in this case "subcmd")
match m.subcommand() {
(external, Some(ext_m)) => {
let ext_args: Vec<&str> = ext_m.values_of(external).unwrap().collect();
assert_eq!(ext_args ,["--option", "value", "-fff", "--flag"]);
},
_ => unreachable!()
}
}
```
Closes #372
2016-01-26 17:25:56 +00:00
|
|
|
/// let ext_args: Vec<&str> = ext_m.values_of(external).unwrap().collect();
|
|
|
|
/// assert_eq!(ext_args, ["--option", "value", "-fff", "--flag"]);
|
2016-01-11 08:59:56 +00:00
|
|
|
/// },
|
2016-01-26 19:02:10 +00:00
|
|
|
/// _ => {},
|
2016-01-11 08:59:56 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
AllowExternalSubcommands,
|
2016-01-22 17:58:56 +00:00
|
|
|
/// Specifies that any invalid UTF-8 code points should be treated as an error and fail
|
|
|
|
/// with a `ErrorKind::InvalidUtf8` error.
|
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// **NOTE:** This rule only applies to argument values, as flags, options, and subcommands
|
|
|
|
/// themselves only allow valid UTF-8 code points.
|
|
|
|
///
|
|
|
|
/// # Platform Specific
|
|
|
|
///
|
|
|
|
/// Non Windows systems only
|
2016-01-22 17:58:56 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```ignore
|
|
|
|
/// # use clap::{App, Arg, AppSettings, ErrorKind};
|
|
|
|
/// use std::ffi::OsString;
|
|
|
|
///
|
|
|
|
/// let m = App::new("myprog")
|
|
|
|
/// .setting(AppSettings::StrictUtf8)
|
|
|
|
/// .arg_from_usage("<arg> 'some positional arg'")
|
|
|
|
/// .get_matches_from_safe(
|
|
|
|
/// vec![
|
|
|
|
/// OsString::from("myprog"),
|
|
|
|
/// OsString::from_vec(vec![0xe9])]);
|
|
|
|
///
|
|
|
|
/// assert!(m.is_err());
|
|
|
|
/// assert_eq!(m.unwrap_err().kind, ErrorKind::InvalidUtf8);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-01-11 08:59:56 +00:00
|
|
|
StrictUtf8,
|
2016-01-22 17:58:56 +00:00
|
|
|
/// Specifies that any invalid UTF-8 code points should *not* be treated as an error. This is
|
|
|
|
/// the default behavior of `clap`
|
|
|
|
///
|
|
|
|
/// **NOTE:** Using argument values with invalid UTF-8 code points requires using Either
|
|
|
|
/// `ArgMatches::os_value(s)_of` or `ArgMatches::lossy_value(s)_of` for those particular
|
2016-01-26 19:02:10 +00:00
|
|
|
/// arguments which may contain invalid UTF-8 values
|
2016-01-22 17:58:56 +00:00
|
|
|
///
|
|
|
|
/// **NOTE:** This rule only applies to argument values, as flags, options, and subcommands
|
2016-01-26 19:02:10 +00:00
|
|
|
/// themselves only allow valid UTF-8 code points.
|
|
|
|
///
|
|
|
|
/// # Platform Specific
|
|
|
|
///
|
|
|
|
/// Non Windows systems only
|
2016-01-22 17:58:56 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```ignore
|
|
|
|
/// # use clap::{App, Arg, AppSettings};
|
|
|
|
/// use std::ffi::OsString;
|
|
|
|
/// use std::os::unix::ffi::OsStrExt;
|
|
|
|
///
|
|
|
|
/// let r = App::new("myprog")
|
|
|
|
/// .setting(AppSettings::StrictUtf8)
|
|
|
|
/// .arg_from_usage("<arg> 'some positional arg'")
|
|
|
|
/// .get_matches_from_safe(
|
|
|
|
/// vec![
|
|
|
|
/// OsString::from("myprog"),
|
|
|
|
/// OsString::from_vec(vec![0xe9])]);
|
|
|
|
///
|
|
|
|
/// assert!(r.is_ok());
|
|
|
|
/// let m = r.unwrap();
|
2016-01-29 02:51:50 +00:00
|
|
|
/// assert_eq!(m.value_of_os("arg").unwrap().as_bytes(), &[0xe9]);
|
2016-01-22 17:58:56 +00:00
|
|
|
/// ```
|
2016-01-11 08:59:56 +00:00
|
|
|
AllowInvalidUtf8,
|
2016-01-26 19:02:10 +00:00
|
|
|
/// Specifies that leading hyphens are allowed in argument values, such as `-10`
|
2016-01-26 16:50:42 +00:00
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// **NOTE:** This can only be set application wide and not on a per argument basis.
|
|
|
|
///
|
|
|
|
/// **NOTE:** Use this setting with caution as it silences certain circumstances which would
|
|
|
|
/// otherwise be an error (such as accidentally forgetting to specify a value for leading
|
|
|
|
/// option)
|
2016-01-26 16:50:42 +00:00
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```rust
|
2016-01-26 16:50:42 +00:00
|
|
|
/// # use clap::{Arg, App, AppSettings};
|
|
|
|
/// // Imagine you needed to represent negative numbers as well, such as -10
|
|
|
|
/// let m = App::new("nums")
|
|
|
|
/// .setting(AppSettings::AllowLeadingHyphen)
|
2016-01-27 16:28:52 +00:00
|
|
|
/// .arg(Arg::with_name("neg").index(1))
|
2016-01-26 16:50:42 +00:00
|
|
|
/// .get_matches_from(vec![
|
|
|
|
/// "nums", "-20"
|
|
|
|
/// ]);
|
|
|
|
///
|
|
|
|
/// assert_eq!(m.value_of("neg"), Some("-20"));
|
|
|
|
/// # ;
|
2016-01-26 19:02:10 +00:00
|
|
|
/// ```
|
2016-01-26 16:50:42 +00:00
|
|
|
AllowLeadingHyphen,
|
2016-02-02 08:13:18 +00:00
|
|
|
/// Tells `clap` *not* to print possible values when displaying help information. This can be
|
|
|
|
/// useful if there are many values, or they are explained elsewhere.
|
|
|
|
HidePossibleValuesInHelp,
|
2015-09-30 21:14:48 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
NeedsLongVersion,
|
|
|
|
#[doc(hidden)]
|
|
|
|
NeedsLongHelp,
|
|
|
|
#[doc(hidden)]
|
|
|
|
NeedsSubcommandHelp,
|
|
|
|
#[doc(hidden)]
|
|
|
|
DisableVersion,
|
2015-08-31 03:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for AppSettings {
|
|
|
|
type Err = String;
|
|
|
|
fn from_str(s: &str) -> Result<Self, <Self as FromStr>::Err> {
|
|
|
|
match &*s.to_ascii_lowercase() {
|
2015-10-28 14:23:59 +00:00
|
|
|
"subcommandsnegatereqs" => Ok(AppSettings::SubcommandsNegateReqs),
|
|
|
|
"subcommandsrequired" => Ok(AppSettings::SubcommandRequired),
|
|
|
|
"argrequiredelsehelp" => Ok(AppSettings::ArgRequiredElseHelp),
|
|
|
|
"globalversion" => Ok(AppSettings::GlobalVersion),
|
2015-08-31 03:26:17 +00:00
|
|
|
"versionlesssubcommands" => Ok(AppSettings::VersionlessSubcommands),
|
2015-10-28 14:23:59 +00:00
|
|
|
"unifiedhelpmessage" => Ok(AppSettings::UnifiedHelpMessage),
|
|
|
|
"waitonerror" => Ok(AppSettings::WaitOnError),
|
2015-08-31 03:26:17 +00:00
|
|
|
"subcommandrequiredelsehelp" => Ok(AppSettings::SubcommandRequiredElseHelp),
|
2015-10-28 14:23:59 +00:00
|
|
|
"hidden" => Ok(AppSettings::Hidden),
|
2016-01-26 19:02:10 +00:00
|
|
|
"allowexternalsubcommands" => Ok(AppSettings::AllowExternalSubcommands),
|
2016-01-11 08:59:56 +00:00
|
|
|
"trailingvararg" => Ok(AppSettings::TrailingVarArg),
|
|
|
|
"nobinaryname" => Ok(AppSettings::NoBinaryName),
|
|
|
|
"strictutf8" => Ok(AppSettings::StrictUtf8),
|
|
|
|
"allowinvalidutf8" => Ok(AppSettings::AllowInvalidUtf8),
|
2016-01-26 16:50:42 +00:00
|
|
|
"allowleadinghyphen" => Ok(AppSettings::AllowLeadingHyphen),
|
2016-02-02 08:13:18 +00:00
|
|
|
"hidepossiblevaluesinhelp" => Ok(AppSettings::HidePossibleValuesInHelp),
|
2015-10-28 14:23:59 +00:00
|
|
|
_ => Err("unknown AppSetting, cannot convert from str".to_owned()),
|
2015-08-31 03:26:17 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-07 01:07:46 +00:00
|
|
|
}
|