2015-07-09 23:35:28 +00:00
|
|
|
// Convenience for writing to stderr thanks to https://github.com/BurntSushi
|
|
|
|
macro_rules! wlnerr(
|
|
|
|
($($arg:tt)*) => ({
|
|
|
|
use std::io::{Write, stderr};
|
|
|
|
writeln!(&mut stderr(), $($arg)*).ok();
|
|
|
|
})
|
|
|
|
);
|
|
|
|
macro_rules! werr(
|
|
|
|
($($arg:tt)*) => ({
|
|
|
|
use std::io::{Write, stderr};
|
|
|
|
write!(&mut stderr(), $($arg)*).ok();
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
#[cfg(feature = "debug")]
|
|
|
|
macro_rules! debugln {
|
|
|
|
($fmt:expr) => (println!(concat!("**DEBUG** ", $fmt)));
|
|
|
|
($fmt:expr, $($arg:tt)*) => (println!(concat!("**DEBUG** ",$fmt), $($arg)*));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "debug")]
|
|
|
|
macro_rules! debug {
|
|
|
|
($fmt:expr) => (print!(concat!("**DEBUG** ", $fmt)));
|
|
|
|
($fmt:expr, $($arg:tt)*) => (println!(concat!("**DEBUG** ",$fmt), $($arg)*));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "debug"))]
|
|
|
|
macro_rules! debugln {
|
|
|
|
($fmt:expr) => ();
|
|
|
|
($fmt:expr, $($arg:tt)*) => ();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "debug"))]
|
|
|
|
macro_rules! debug {
|
|
|
|
($fmt:expr) => ();
|
|
|
|
($fmt:expr, $($arg:tt)*) => ();
|
|
|
|
}
|
|
|
|
|
2015-04-14 02:18:50 +00:00
|
|
|
// De-duplication macro used in src/app.rs
|
2015-04-10 15:40:08 +00:00
|
|
|
macro_rules! get_help {
|
2015-05-01 18:38:27 +00:00
|
|
|
($opt:ident) => {
|
|
|
|
if let Some(h) = $opt.help {
|
|
|
|
format!("{}{}", h,
|
|
|
|
if let Some(ref pv) = $opt.possible_vals {
|
|
|
|
let mut pv_s = pv.iter().fold(String::with_capacity(50), |acc, name| {
|
2015-05-22 22:17:57 +00:00
|
|
|
acc + &format!(" {},",name)[..]
|
2015-05-01 18:38:27 +00:00
|
|
|
});
|
|
|
|
pv_s.shrink_to_fit();
|
2015-05-22 22:17:57 +00:00
|
|
|
// pv_s = one, two, three, four,
|
|
|
|
// Needs to remove trailing comma (',')
|
|
|
|
format!(" [values:{}]", &pv_s[..pv_s.len()-1])
|
2015-05-01 18:38:27 +00:00
|
|
|
}else{"".to_owned()})
|
|
|
|
} else {
|
|
|
|
" ".to_owned()
|
2015-05-01 18:44:20 +00:00
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
};
|
2015-04-13 04:37:59 +00:00
|
|
|
}
|
|
|
|
|
2015-04-27 02:03:11 +00:00
|
|
|
// De-duplication macro used in src/app.rs
|
|
|
|
macro_rules! parse_group_reqs {
|
2015-05-01 18:38:27 +00:00
|
|
|
($me:ident, $arg:ident) => {
|
|
|
|
for ag in $me.groups.values() {
|
|
|
|
let mut found = false;
|
|
|
|
for name in ag.args.iter() {
|
|
|
|
if name == &$arg.name {
|
|
|
|
$me.required.remove(ag.name);
|
|
|
|
if let Some(ref reqs) = ag.requires {
|
|
|
|
for r in reqs {
|
|
|
|
$me.required.insert(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(ref bl) = ag.conflicts {
|
|
|
|
for b in bl {
|
|
|
|
$me.blacklist.insert(b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if found {
|
|
|
|
for name in ag.args.iter() {
|
|
|
|
if name == &$arg.name { continue }
|
|
|
|
$me.required.remove(name);
|
|
|
|
$me.blacklist.insert(name);
|
|
|
|
}
|
2015-05-01 18:44:20 +00:00
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
}
|
2015-04-27 02:03:11 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-04-27 04:35:56 +00:00
|
|
|
// De-duplication macro used in src/app.rs
|
|
|
|
macro_rules! validate_reqs {
|
2015-05-01 18:38:27 +00:00
|
|
|
($me:ident, $t:ident, $m:ident, $n:ident) => {
|
2015-04-27 04:35:56 +00:00
|
|
|
if let Some(a) = $me.$t.get($n) {
|
|
|
|
if let Some(ref bl) = a.blacklist {
|
|
|
|
for n in bl.iter() {
|
|
|
|
if $m.args.contains_key(n) {
|
|
|
|
return false
|
|
|
|
} else if $me.groups.contains_key(n) {
|
|
|
|
let grp = $me.groups.get(n).unwrap();
|
|
|
|
for an in grp.args.iter() {
|
|
|
|
if $m.args.contains_key(an) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 18:44:20 +00:00
|
|
|
}
|
2015-04-27 04:35:56 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
};
|
2015-04-27 04:35:56 +00:00
|
|
|
}
|
|
|
|
|
2015-04-13 04:37:59 +00:00
|
|
|
// Thanks to bluss and flan3002 in #rust IRC
|
2015-04-14 02:18:50 +00:00
|
|
|
//
|
|
|
|
// Helps with rightward drift when iterating over something and matching each item.
|
2015-04-13 04:37:59 +00:00
|
|
|
macro_rules! for_match {
|
2015-05-01 18:38:27 +00:00
|
|
|
($it:ident, $($p:pat => $($e:expr);+),*) => {
|
|
|
|
for i in $it {
|
|
|
|
match i {
|
|
|
|
$(
|
|
|
|
$p => { $($e)+ }
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2015-04-14 16:06:15 +00:00
|
|
|
}
|
|
|
|
|
2015-04-16 16:53:05 +00:00
|
|
|
/// Convenience macro getting a typed value `T` where `T` implements `std::str::FromStr`
|
2015-04-14 19:02:50 +00:00
|
|
|
/// This macro returns a `Result<T,String>` which allows you as the developer to decide
|
|
|
|
/// what you'd like to do on a failed parse. There are two types of errors, parse failures
|
2015-05-01 18:44:20 +00:00
|
|
|
/// and those where the argument wasn't present (such as a non-required argument).
|
2015-04-14 19:02:50 +00:00
|
|
|
///
|
|
|
|
/// You can use it to get a single value, or a `Vec<T>` with the `values_of()`
|
2015-05-01 18:44:20 +00:00
|
|
|
///
|
2015-04-14 19:02:50 +00:00
|
|
|
/// **NOTE:** Be cautious, as since this a macro invocation it's not exactly like
|
|
|
|
/// standard syntax.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// # Example single value
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate clap;
|
|
|
|
/// # use clap::App;
|
|
|
|
/// # fn main() {
|
|
|
|
/// let matches = App::new("myapp")
|
2015-04-14 20:10:47 +00:00
|
|
|
/// .arg_from_usage("[length] 'Set the length to use as a pos whole num, i.e. 20'")
|
2015-05-01 18:38:27 +00:00
|
|
|
/// .get_matches();
|
2015-04-14 20:10:47 +00:00
|
|
|
/// let len = value_t!(matches.value_of("length"), u32)
|
2015-05-01 18:38:27 +00:00
|
|
|
/// .unwrap_or_else(|e|{
|
2015-05-01 18:44:20 +00:00
|
|
|
/// println!("{}",e);
|
2015-05-01 18:38:27 +00:00
|
|
|
/// std::process::exit(1)
|
|
|
|
/// });
|
2015-04-14 19:02:50 +00:00
|
|
|
///
|
|
|
|
/// println!("{} + 2: {}", len, len + 2);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// # Example multiple values
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate clap;
|
|
|
|
/// # use clap::App;
|
|
|
|
/// # fn main() {
|
|
|
|
/// let matches = App::new("myapp")
|
2015-04-14 20:10:47 +00:00
|
|
|
/// .arg_from_usage("[seq]... 'A sequence of pos whole nums, i.e. 20 45'")
|
2015-05-01 18:38:27 +00:00
|
|
|
/// .get_matches();
|
2015-04-14 20:10:47 +00:00
|
|
|
/// for v in value_t!(matches.values_of("seq"), u32)
|
2015-05-01 18:38:27 +00:00
|
|
|
/// .unwrap_or_else(|e|{
|
2015-05-01 18:44:20 +00:00
|
|
|
/// println!("{}",e);
|
2015-05-01 18:38:27 +00:00
|
|
|
/// std::process::exit(1)
|
|
|
|
/// }) {
|
|
|
|
/// println!("{} + 2: {}", v, v + 2);
|
|
|
|
/// }
|
2015-04-14 19:02:50 +00:00
|
|
|
/// # }
|
|
|
|
/// ```
|
2015-04-14 16:06:15 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! value_t {
|
2015-05-01 18:38:27 +00:00
|
|
|
($m:ident.value_of($v:expr), $t:ty) => {
|
|
|
|
match $m.value_of($v) {
|
|
|
|
Some(v) => {
|
|
|
|
match v.parse::<$t>() {
|
|
|
|
Ok(val) => Ok(val),
|
2015-05-22 22:17:57 +00:00
|
|
|
Err(_) => Err(format!("'{}' isn't a valid value", ::clap::Format::Warning(v))),
|
2015-05-01 18:38:27 +00:00
|
|
|
}
|
|
|
|
},
|
2015-05-22 22:17:57 +00:00
|
|
|
None => Err(format!("The argument '{}' not found", ::clap::Format::Warning($v)))
|
2015-05-01 18:38:27 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
($m:ident.values_of($v:expr), $t:ty) => {
|
|
|
|
match $m.values_of($v) {
|
|
|
|
Some(ref v) => {
|
|
|
|
let mut tmp = Vec::with_capacity(v.len());
|
|
|
|
let mut err = None;
|
|
|
|
for pv in v {
|
|
|
|
match pv.parse::<$t>() {
|
|
|
|
Ok(rv) => tmp.push(rv),
|
|
|
|
Err(e) => {
|
2015-05-22 22:17:57 +00:00
|
|
|
err = Some(format!("'{}' isn't a valid value\n\t{}", ::clap::Format::Warning(pv),e));
|
2015-05-01 18:38:27 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
match err {
|
|
|
|
Some(e) => Err(e),
|
|
|
|
None => Ok(tmp)
|
|
|
|
}
|
|
|
|
},
|
2015-05-22 22:17:57 +00:00
|
|
|
None => Err(format!("The argument '{}' was not found", ::clap::Format::Warning($v)))
|
2015-05-01 18:38:27 +00:00
|
|
|
}
|
|
|
|
};
|
2015-04-14 16:30:53 +00:00
|
|
|
}
|
|
|
|
|
2015-04-16 16:53:05 +00:00
|
|
|
/// Convenience macro getting a typed value `T` where `T` implements `std::str::FromStr`
|
2015-04-14 19:02:50 +00:00
|
|
|
/// This macro returns a `T` or `Vec<T>` or exits with a usage string upon failure. This
|
2015-05-01 18:44:20 +00:00
|
|
|
/// removes some of the boiler plate to handle failures from value_t! above.
|
2015-04-14 19:02:50 +00:00
|
|
|
///
|
|
|
|
/// You can use it to get a single value `T`, or a `Vec<T>` with the `values_of()`
|
2015-05-01 18:44:20 +00:00
|
|
|
///
|
2015-04-14 19:02:50 +00:00
|
|
|
/// **NOTE:** This should only be used on required arguments, as it can be confusing to the user
|
|
|
|
/// why they are getting error messages when it appears they're entering all required argumetns.
|
|
|
|
///
|
|
|
|
/// **NOTE:** Be cautious, as since this a macro invocation it's not exactly like
|
|
|
|
/// standard syntax.
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// # Example single value
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate clap;
|
|
|
|
/// # use clap::App;
|
|
|
|
/// # fn main() {
|
|
|
|
/// let matches = App::new("myapp")
|
2015-04-14 20:10:47 +00:00
|
|
|
/// .arg_from_usage("[length] 'Set the length to use as a pos whole num, i.e. 20'")
|
2015-05-01 18:38:27 +00:00
|
|
|
/// .get_matches();
|
2015-04-14 19:02:50 +00:00
|
|
|
/// let len = value_t_or_exit!(matches.value_of("length"), u32);
|
|
|
|
///
|
|
|
|
/// println!("{} + 2: {}", len, len + 2);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// # Example multiple values
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate clap;
|
|
|
|
/// # use clap::App;
|
|
|
|
/// # fn main() {
|
|
|
|
/// let matches = App::new("myapp")
|
2015-04-14 20:10:47 +00:00
|
|
|
/// .arg_from_usage("[seq]... 'A sequence of pos whole nums, i.e. 20 45'")
|
2015-05-01 18:38:27 +00:00
|
|
|
/// .get_matches();
|
2015-04-14 19:02:50 +00:00
|
|
|
/// for v in value_t_or_exit!(matches.values_of("seq"), u32) {
|
2015-05-01 18:38:27 +00:00
|
|
|
/// println!("{} + 2: {}", v, v + 2);
|
|
|
|
/// }
|
2015-04-14 19:02:50 +00:00
|
|
|
/// # }
|
|
|
|
/// ```
|
2015-04-14 16:30:53 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! value_t_or_exit {
|
2015-05-01 18:38:27 +00:00
|
|
|
($m:ident.value_of($v:expr), $t:ty) => {
|
|
|
|
match $m.value_of($v) {
|
|
|
|
Some(v) => {
|
|
|
|
match v.parse::<$t>() {
|
|
|
|
Ok(val) => val,
|
|
|
|
Err(e) => {
|
2015-05-22 22:17:57 +00:00
|
|
|
println!("{} '{}' isn't a valid value\n\t{}\n\n{}\n\nPlease re-run with {} for \
|
2015-05-01 18:38:27 +00:00
|
|
|
more information",
|
2015-05-22 22:17:57 +00:00
|
|
|
::clap::Format::Error("error:"),
|
|
|
|
::clap::Format::Warning(v.to_string()),
|
2015-05-01 18:38:27 +00:00
|
|
|
e,
|
2015-05-22 22:17:57 +00:00
|
|
|
$m.usage(),
|
|
|
|
::clap::Format::Good("--help"));
|
2015-05-01 18:38:27 +00:00
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => {
|
2015-05-22 22:17:57 +00:00
|
|
|
println!("{} The argument '{}' was not found or is not valid\n\n{}\n\nPlease re-run with \
|
|
|
|
{} for more information",
|
|
|
|
::clap::Format::Error("error:"),
|
|
|
|
::clap::Format::Warning($v.to_string()),
|
|
|
|
$m.usage(),
|
|
|
|
::clap::Format::Good("--help"));
|
2015-05-01 18:38:27 +00:00
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
($m:ident.values_of($v:expr), $t:ty) => {
|
|
|
|
match $m.values_of($v) {
|
|
|
|
Some(ref v) => {
|
|
|
|
let mut tmp = Vec::with_capacity(v.len());
|
|
|
|
for pv in v {
|
|
|
|
match pv.parse::<$t>() {
|
|
|
|
Ok(rv) => tmp.push(rv),
|
|
|
|
Err(_) => {
|
2015-05-22 22:17:57 +00:00
|
|
|
println!("{} '{}' isn't a valid value\n\t{}\n\nPlease re-run with {} for more \
|
2015-05-01 18:38:27 +00:00
|
|
|
information",
|
2015-05-22 22:17:57 +00:00
|
|
|
::clap::Format::Error("error:"),
|
|
|
|
::clap::Format::Warning(pv),
|
|
|
|
$m.usage(),
|
|
|
|
::clap::Format::Good("--help"));
|
2015-05-01 18:38:27 +00:00
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tmp
|
|
|
|
},
|
|
|
|
None => {
|
2015-05-22 22:17:57 +00:00
|
|
|
println!("{} The argument '{}' not found or is not valid\n\n{}\n\nPlease re-run with \
|
|
|
|
{} for more information",
|
|
|
|
::clap::Format::Error("error:"),
|
|
|
|
::clap::Format::Warning($v.to_string()),
|
|
|
|
$m.usage(),
|
|
|
|
::clap::Format::Good("--help"));
|
2015-05-01 18:38:27 +00:00
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2015-04-16 16:53:05 +00:00
|
|
|
}
|
2015-04-16 17:41:20 +00:00
|
|
|
|
|
|
|
/// Convenience macro generated a simple enum with variants to be used as a type when parsing
|
2015-05-15 20:41:39 +00:00
|
|
|
/// arguments. This enum also provides a `variants()` function which can be used to retrieve a
|
|
|
|
/// `Vec<&'static str>` of the variant names.
|
2015-04-16 17:41:20 +00:00
|
|
|
///
|
2015-05-15 19:34:41 +00:00
|
|
|
/// **NOTE:** This macro automaically implements std::str::FromStr and std::fmt::Display
|
|
|
|
///
|
2015-04-16 17:41:20 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate clap;
|
|
|
|
/// # use clap::{App, Arg};
|
|
|
|
/// simple_enum!{Foo => Bar, Baz, Qux}
|
|
|
|
/// // Foo enum can now be used via Foo::Bar, or Foo::Baz, etc
|
|
|
|
/// // and implements std::str::FromStr to use with the value_t! macros
|
|
|
|
/// fn main() {
|
2015-05-01 18:38:27 +00:00
|
|
|
/// let enum_vals = ["Bar", "Baz", "Qux"];
|
|
|
|
/// let m = App::new("app")
|
|
|
|
/// .arg(Arg::from_usage("<foo> 'the foo'")
|
|
|
|
/// .possible_values(&enum_vals))
|
|
|
|
/// .get_matches();
|
|
|
|
/// let f = value_t_or_exit!(m.value_of("foo"), Foo);
|
2015-04-16 17:41:20 +00:00
|
|
|
///
|
2015-05-01 18:38:27 +00:00
|
|
|
/// // Use f like any other Foo variant...
|
2015-04-16 17:41:20 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! simple_enum {
|
2015-05-01 18:38:27 +00:00
|
|
|
($e:ident => $($v:ident),+) => {
|
|
|
|
enum $e {
|
|
|
|
$($v),+
|
|
|
|
}
|
2015-04-16 17:41:20 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
impl ::std::str::FromStr for $e {
|
2015-05-01 18:44:20 +00:00
|
|
|
type Err = String;
|
2015-04-16 17:41:20 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
fn from_str(s: &str) -> Result<Self,Self::Err> {
|
|
|
|
match s {
|
|
|
|
$(stringify!($v) => Ok($e::$v),)+
|
|
|
|
_ => Err({
|
|
|
|
let v = vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
];
|
2015-05-01 18:44:20 +00:00
|
|
|
format!("valid:{}",
|
2015-05-01 18:38:27 +00:00
|
|
|
v.iter().fold(String::new(), |a, i| {
|
|
|
|
a + &format!(" {}", i)[..]
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 19:34:41 +00:00
|
|
|
|
|
|
|
impl ::std::fmt::Display for $e {
|
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
|
|
|
match *self {
|
|
|
|
$($e::$v => write!(f, stringify!($v)),)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 20:41:39 +00:00
|
|
|
|
|
|
|
impl $e {
|
2015-07-08 00:06:15 +00:00
|
|
|
#[allow(dead_code)]
|
2015-05-15 20:41:39 +00:00
|
|
|
pub fn variants() -> Vec<&'static str> {
|
|
|
|
vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
};
|
2015-04-17 14:20:56 +00:00
|
|
|
}
|
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
/// Convenience macro to generate more complete enums with variants to be used as a type when
|
2015-05-15 20:41:39 +00:00
|
|
|
/// parsing arguments. This enum also provides a `variants()` function which can be used to retrieve a
|
|
|
|
/// `Vec<&'static str>` of the variant names.
|
2015-04-17 14:20:56 +00:00
|
|
|
///
|
2015-05-05 16:33:02 +00:00
|
|
|
/// **NOTE:** Case insensitivity is supported for ASCII characters
|
|
|
|
///
|
2015-05-15 19:34:41 +00:00
|
|
|
/// **NOTE:** This macro automaically implements std::str::FromStr and std::fmt::Display
|
|
|
|
///
|
2015-04-17 14:20:56 +00:00
|
|
|
/// These enums support pub (or not) and use of the #[derive()] traits
|
|
|
|
///
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate clap;
|
|
|
|
/// # use clap::{App, Arg};
|
|
|
|
/// arg_enum!{
|
2015-05-01 18:38:27 +00:00
|
|
|
/// #[derive(Debug)]
|
|
|
|
/// pub enum Foo {
|
|
|
|
/// Bar,
|
|
|
|
/// Baz,
|
|
|
|
/// Qux
|
|
|
|
/// }
|
2015-04-17 14:20:56 +00:00
|
|
|
/// }
|
|
|
|
/// // Foo enum can now be used via Foo::Bar, or Foo::Baz, etc
|
|
|
|
/// // and implements std::str::FromStr to use with the value_t! macros
|
|
|
|
/// fn main() {
|
2015-05-01 18:38:27 +00:00
|
|
|
/// let m = App::new("app")
|
|
|
|
/// .arg_from_usage("<foo> 'the foo'")
|
|
|
|
/// .get_matches();
|
|
|
|
/// let f = value_t_or_exit!(m.value_of("foo"), Foo);
|
2015-04-17 14:20:56 +00:00
|
|
|
///
|
2015-05-01 18:38:27 +00:00
|
|
|
/// // Use f like any other Foo variant...
|
2015-04-17 14:20:56 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! arg_enum {
|
2015-05-01 18:38:27 +00:00
|
|
|
(enum $e:ident { $($v:ident),+ } ) => {
|
|
|
|
enum $e {
|
|
|
|
$($v),+
|
|
|
|
}
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
impl ::std::str::FromStr for $e {
|
|
|
|
type Err = String;
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
fn from_str(s: &str) -> Result<Self,Self::Err> {
|
2015-05-05 16:33:02 +00:00
|
|
|
use ::std::ascii::AsciiExt;
|
2015-05-01 18:38:27 +00:00
|
|
|
match s {
|
2015-05-05 16:33:02 +00:00
|
|
|
$(stringify!($v) |
|
|
|
|
_ if s.eq_ignore_ascii_case(stringify!($v)) => Ok($e::$v),)+
|
2015-05-01 18:38:27 +00:00
|
|
|
_ => Err({
|
|
|
|
let v = vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
];
|
2015-05-05 16:33:02 +00:00
|
|
|
format!("valid values:{}",
|
2015-05-01 18:38:27 +00:00
|
|
|
v.iter().fold(String::new(), |a, i| {
|
|
|
|
a + &format!(" {}", i)[..]
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 19:34:41 +00:00
|
|
|
|
|
|
|
impl ::std::fmt::Display for $e {
|
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
|
|
|
match *self {
|
|
|
|
$($e::$v => write!(f, stringify!($v)),)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 20:41:39 +00:00
|
|
|
|
|
|
|
impl $e {
|
2015-07-08 00:06:15 +00:00
|
|
|
#[allow(dead_code)]
|
2015-05-15 20:41:39 +00:00
|
|
|
fn variants() -> Vec<&'static str> {
|
|
|
|
vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
};
|
|
|
|
(pub enum $e:ident { $($v:ident),+ } ) => {
|
|
|
|
pub enum $e {
|
|
|
|
$($v),+
|
|
|
|
}
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
impl ::std::str::FromStr for $e {
|
|
|
|
type Err = String;
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
fn from_str(s: &str) -> Result<Self,Self::Err> {
|
2015-05-05 08:33:27 +00:00
|
|
|
use ::std::ascii::AsciiExt;
|
2015-05-01 18:38:27 +00:00
|
|
|
match s {
|
2015-05-05 08:33:27 +00:00
|
|
|
$(stringify!($v) |
|
|
|
|
_ if s.eq_ignore_ascii_case(stringify!($v)) => Ok($e::$v),)+
|
2015-05-01 18:38:27 +00:00
|
|
|
_ => Err({
|
|
|
|
let v = vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
];
|
2015-05-05 08:33:27 +00:00
|
|
|
format!("valid values:{}",
|
2015-05-01 18:38:27 +00:00
|
|
|
v.iter().fold(String::new(), |a, i| {
|
|
|
|
a + &format!(" {}", i)[..]
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 19:34:41 +00:00
|
|
|
|
|
|
|
impl ::std::fmt::Display for $e {
|
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
|
|
|
match *self {
|
|
|
|
$($e::$v => write!(f, stringify!($v)),)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 20:41:39 +00:00
|
|
|
|
|
|
|
impl $e {
|
2015-07-08 00:06:15 +00:00
|
|
|
#[allow(dead_code)]
|
2015-05-15 20:41:39 +00:00
|
|
|
pub fn variants() -> Vec<&'static str> {
|
|
|
|
vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
};
|
|
|
|
(#[derive($($d:ident),+)] enum $e:ident { $($v:ident),+ } ) => {
|
|
|
|
#[derive($($d,)+)]
|
|
|
|
enum $e {
|
|
|
|
$($v),+
|
|
|
|
}
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
impl ::std::str::FromStr for $e {
|
|
|
|
type Err = String;
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
fn from_str(s: &str) -> Result<Self,Self::Err> {
|
2015-05-05 08:33:27 +00:00
|
|
|
use ::std::ascii::AsciiExt;
|
2015-05-01 18:38:27 +00:00
|
|
|
match s {
|
2015-05-05 08:33:27 +00:00
|
|
|
$(stringify!($v) |
|
|
|
|
_ if s.eq_ignore_ascii_case(stringify!($v)) => Ok($e::$v),)+
|
2015-05-01 18:38:27 +00:00
|
|
|
_ => Err({
|
|
|
|
let v = vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
];
|
2015-05-05 08:33:27 +00:00
|
|
|
format!("valid values:{}",
|
2015-05-01 18:38:27 +00:00
|
|
|
v.iter().fold(String::new(), |a, i| {
|
|
|
|
a + &format!(" {}", i)[..]
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 19:34:41 +00:00
|
|
|
|
|
|
|
impl ::std::fmt::Display for $e {
|
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
|
|
|
match *self {
|
|
|
|
$($e::$v => write!(f, stringify!($v)),)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 20:41:39 +00:00
|
|
|
|
|
|
|
impl $e {
|
2015-07-08 00:06:15 +00:00
|
|
|
#[allow(dead_code)]
|
2015-05-15 20:41:39 +00:00
|
|
|
pub fn variants() -> Vec<&'static str> {
|
|
|
|
vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
};
|
|
|
|
(#[derive($($d:ident),+)] pub enum $e:ident { $($v:ident),+ } ) => {
|
|
|
|
#[derive($($d,)+)]
|
|
|
|
pub enum $e {
|
|
|
|
$($v),+
|
|
|
|
}
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
impl ::std::str::FromStr for $e {
|
|
|
|
type Err = String;
|
2015-04-17 14:20:56 +00:00
|
|
|
|
2015-05-01 18:38:27 +00:00
|
|
|
fn from_str(s: &str) -> Result<Self,Self::Err> {
|
2015-05-05 08:33:27 +00:00
|
|
|
use ::std::ascii::AsciiExt;
|
2015-05-01 18:38:27 +00:00
|
|
|
match s {
|
2015-05-05 08:33:27 +00:00
|
|
|
$(stringify!($v) |
|
|
|
|
_ if s.eq_ignore_ascii_case(stringify!($v)) => Ok($e::$v),)+
|
2015-05-01 18:38:27 +00:00
|
|
|
_ => Err({
|
|
|
|
let v = vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
];
|
2015-05-05 08:33:27 +00:00
|
|
|
format!("valid values:{}",
|
2015-05-01 18:38:27 +00:00
|
|
|
v.iter().fold(String::new(), |a, i| {
|
|
|
|
a + &format!(" {}", i)[..]
|
|
|
|
}))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 19:34:41 +00:00
|
|
|
|
|
|
|
impl ::std::fmt::Display for $e {
|
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
|
|
|
match *self {
|
|
|
|
$($e::$v => write!(f, stringify!($v)),)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-15 20:41:39 +00:00
|
|
|
|
|
|
|
impl $e {
|
2015-07-08 00:06:15 +00:00
|
|
|
#[allow(dead_code)]
|
2015-05-15 20:41:39 +00:00
|
|
|
pub fn variants() -> Vec<&'static str> {
|
|
|
|
vec![
|
|
|
|
$(stringify!($v),)+
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 18:38:27 +00:00
|
|
|
};
|
2015-04-19 02:20:43 +00:00
|
|
|
}
|
2015-04-19 18:06:08 +00:00
|
|
|
|
|
|
|
/// Allows you pull the version for an from your Cargo.toml as MAJOR.MINOR.PATCH_PKGVERSION_PRE
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```no_run
|
|
|
|
/// # #[macro_use]
|
|
|
|
/// # extern crate clap;
|
|
|
|
/// # use clap::App;
|
|
|
|
/// # fn main() {
|
2015-05-01 18:38:27 +00:00
|
|
|
/// let m = App::new("app")
|
2015-05-01 18:50:28 +00:00
|
|
|
/// .version(&crate_version!()[..])
|
2015-05-01 18:38:27 +00:00
|
|
|
/// .get_matches();
|
2015-04-19 18:06:08 +00:00
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! crate_version {
|
2015-05-01 18:38:27 +00:00
|
|
|
() => {
|
|
|
|
format!("{}.{}.{}{}",
|
|
|
|
env!("CARGO_PKG_VERSION_MAJOR"),
|
|
|
|
env!("CARGO_PKG_VERSION_MINOR"),
|
|
|
|
env!("CARGO_PKG_VERSION_PATCH"),
|
|
|
|
option_env!("CARGO_PKG_VERSION_PRE").unwrap_or(""))
|
|
|
|
}
|
2015-04-19 18:06:08 +00:00
|
|
|
}
|