2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Module: getopts
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
Simple getopt alternative. Construct a vector of options, either by using
|
|
|
|
reqopt, optopt, and optflag or by building them from components yourself, and
|
|
|
|
pass them to getopts, along with a vector of actual arguments (not including
|
|
|
|
argv[0]). You'll either get a failure code back, or a match. You'll have to
|
|
|
|
verify whether the amount of 'free' arguments in the match is what you
|
|
|
|
expect. Use opt_* accessors to get argument values out of the match object.
|
|
|
|
|
|
|
|
Single-character options are expected to appear on the command line with a
|
|
|
|
single preceeding dash; multiple-character options are expected to be
|
|
|
|
proceeded by two dashes. Options that expect an argument accept their argument
|
|
|
|
following either a space or an equals sign.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
The following example shows simple command line parsing for an application
|
|
|
|
that requires an input file to be specified, accepts an optional output file
|
|
|
|
name following -o, and accepts both -h and --help as optional flags.
|
|
|
|
|
|
|
|
> fn main(args: [str]) {
|
|
|
|
> let opts = [
|
|
|
|
> optopt("o"),
|
|
|
|
> optflag("h"),
|
|
|
|
> optflag("help")
|
|
|
|
> ];
|
|
|
|
> let match = alt getopts(vec::shift(args), opts) {
|
2011-12-15 18:11:29 -06:00
|
|
|
> ok(m) { m }
|
|
|
|
> err(f) { fail fail_str(f) }
|
2011-10-24 17:25:41 -05:00
|
|
|
> };
|
|
|
|
> if opt_present(match, "h") || opt_present(match, "help") {
|
|
|
|
> print_usage();
|
|
|
|
> ret;
|
|
|
|
> }
|
|
|
|
> let output = opt_maybe_str(match, "o");
|
|
|
|
> let input = if !vec::is_empty(match.free) {
|
|
|
|
> match.free[0]
|
|
|
|
> } else {
|
|
|
|
> print_usage();
|
|
|
|
> ret;
|
|
|
|
> }
|
|
|
|
> do_work(input, output);
|
|
|
|
> }
|
|
|
|
|
|
|
|
*/
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-12-15 18:11:29 -06:00
|
|
|
import core::result;
|
|
|
|
import core::result::{err, ok};
|
2011-12-13 18:25:51 -06:00
|
|
|
import core::option;
|
2011-12-15 18:11:29 -06:00
|
|
|
import core::option::{some, none};
|
2011-05-21 18:30:04 -05:00
|
|
|
export opt;
|
|
|
|
export reqopt;
|
|
|
|
export optopt;
|
|
|
|
export optflag;
|
2011-06-01 20:31:09 -05:00
|
|
|
export optflagopt;
|
2011-05-21 18:30:04 -05:00
|
|
|
export optmulti;
|
|
|
|
export getopts;
|
2011-05-22 15:41:06 -05:00
|
|
|
export match;
|
2011-05-21 18:30:04 -05:00
|
|
|
export fail_;
|
|
|
|
export fail_str;
|
|
|
|
export opt_present;
|
|
|
|
export opt_str;
|
|
|
|
export opt_strs;
|
|
|
|
export opt_maybe_str;
|
2011-06-01 20:31:09 -05:00
|
|
|
export opt_default;
|
2011-05-21 18:30:04 -05:00
|
|
|
|
2012-01-19 19:55:34 -06:00
|
|
|
enum name { long(str), short(char), }
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2012-01-19 19:55:34 -06:00
|
|
|
enum hasarg { yes, no, maybe, }
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2012-01-19 19:55:34 -06:00
|
|
|
enum occur { req, optional, multi, }
|
2011-04-26 10:46:54 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Type: opt
|
|
|
|
|
|
|
|
A description of a possible option
|
|
|
|
*/
|
2011-07-27 07:19:39 -05:00
|
|
|
type opt = {name: name, hasarg: hasarg, occur: occur};
|
2011-04-26 10:46:54 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn mkname(nm: str) -> name {
|
2011-09-01 19:27:58 -05:00
|
|
|
ret if str::char_len(nm) == 1u {
|
|
|
|
short(str::char_at(nm, 0u))
|
2011-06-15 13:19:50 -05:00
|
|
|
} else { long(nm) };
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: reqopt
|
|
|
|
|
|
|
|
Create an option that is required and takes an argument
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn reqopt(name: str) -> opt {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret {name: mkname(name), hasarg: yes, occur: req};
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: optopt
|
|
|
|
|
|
|
|
Create an option that is optional and takes an argument
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn optopt(name: str) -> opt {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret {name: mkname(name), hasarg: yes, occur: optional};
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: optflag
|
|
|
|
|
|
|
|
Create an option that is optional and does not take an argument
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn optflag(name: str) -> opt {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret {name: mkname(name), hasarg: no, occur: optional};
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: optflagopt
|
|
|
|
|
|
|
|
Create an option that is optional and takes an optional argument
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn optflagopt(name: str) -> opt {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret {name: mkname(name), hasarg: maybe, occur: optional};
|
2011-06-01 20:31:09 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: optmulti
|
|
|
|
|
|
|
|
Create an option that is optional, takes an argument, and may occur
|
|
|
|
multiple times
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn optmulti(name: str) -> opt {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret {name: mkname(name), hasarg: yes, occur: multi};
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
|
2012-01-19 19:55:34 -06:00
|
|
|
enum optval { val(str), given, }
|
2011-04-26 10:46:54 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Type: match
|
|
|
|
|
|
|
|
The result of checking command line arguments. Contains a vector
|
|
|
|
of matches and a vector of free strings.
|
|
|
|
*/
|
2011-09-02 17:34:58 -05:00
|
|
|
type match = {opts: [opt], vals: [mutable [optval]], free: [str]};
|
2011-04-26 10:46:54 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn is_arg(arg: str) -> bool {
|
2011-09-01 19:27:58 -05:00
|
|
|
ret str::byte_len(arg) > 1u && arg[0] == '-' as u8;
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn name_str(nm: name) -> str {
|
2011-09-01 19:27:58 -05:00
|
|
|
ret alt nm { short(ch) { str::from_char(ch) } long(s) { s } };
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
|
2012-01-31 19:05:20 -06:00
|
|
|
fn find_opt(opts: [opt], nm: name) -> option<uint> {
|
2011-12-13 21:58:18 -06:00
|
|
|
vec::position_pred(opts, { |opt| opt.name == nm })
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Type: fail_
|
|
|
|
|
|
|
|
The type returned when the command line does not conform to the
|
|
|
|
expected format. Pass this value to <fail_str> to get an error message.
|
|
|
|
*/
|
2012-01-19 17:20:57 -06:00
|
|
|
enum fail_ {
|
2012-01-19 19:55:34 -06:00
|
|
|
argument_missing(str),
|
|
|
|
unrecognized_option(str),
|
|
|
|
option_missing(str),
|
|
|
|
option_duplicated(str),
|
|
|
|
unexpected_argument(str),
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: fail_str
|
|
|
|
|
2012-01-19 17:20:57 -06:00
|
|
|
Convert a <fail_> enum into an error string
|
2011-10-24 17:25:41 -05:00
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn fail_str(f: fail_) -> str {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret alt f {
|
2011-09-02 17:34:58 -05:00
|
|
|
argument_missing(nm) { "Argument to option '" + nm + "' missing." }
|
|
|
|
unrecognized_option(nm) { "Unrecognized option: '" + nm + "'." }
|
|
|
|
option_missing(nm) { "Required option '" + nm + "' missing." }
|
2011-07-27 07:19:39 -05:00
|
|
|
option_duplicated(nm) {
|
2011-09-02 17:34:58 -05:00
|
|
|
"Option '" + nm + "' given more than once."
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
|
|
|
unexpected_argument(nm) {
|
2011-09-02 17:34:58 -05:00
|
|
|
"Option " + nm + " does not take an argument."
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
};
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Type: result
|
|
|
|
|
|
|
|
The result of parsing a command line with a set of options
|
2011-12-15 18:11:29 -06:00
|
|
|
(result::t<match, fail_>)
|
2011-10-24 17:25:41 -05:00
|
|
|
|
|
|
|
Variants:
|
|
|
|
|
2011-12-15 18:11:29 -06:00
|
|
|
ok(match) - Returned from getopts on success
|
|
|
|
err(fail_) - Returned from getopts on failure
|
2011-10-24 17:25:41 -05:00
|
|
|
*/
|
2011-12-15 18:11:29 -06:00
|
|
|
type result = result::t<match, fail_>;
|
2011-04-26 10:46:54 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: getopts
|
|
|
|
|
|
|
|
Parse command line arguments according to the provided options
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
|
2011-12-15 18:11:29 -06:00
|
|
|
ok(match) - On success. Use functions such as <opt_present>
|
|
|
|
<opt_str>, etc. to interrogate results.
|
|
|
|
err(fail_) - On failure. Use <fail_str> to get an error message.
|
2011-10-24 17:25:41 -05:00
|
|
|
*/
|
2012-02-01 05:41:58 -06:00
|
|
|
fn getopts(args: [str], opts: [opt]) -> result unsafe {
|
2011-08-12 12:56:57 -05:00
|
|
|
let n_opts = vec::len::<opt>(opts);
|
2011-08-19 17:16:48 -05:00
|
|
|
fn f(_x: uint) -> [optval] { ret []; }
|
2012-01-18 14:18:26 -06:00
|
|
|
let vals = vec::init_fn_mut::<[optval]>(n_opts, f);
|
2011-09-02 17:34:58 -05:00
|
|
|
let free: [str] = [];
|
2011-08-24 20:13:27 -05:00
|
|
|
let l = vec::len(args);
|
2011-07-27 07:19:39 -05:00
|
|
|
let i = 0u;
|
|
|
|
while i < l {
|
2011-08-19 17:16:48 -05:00
|
|
|
let cur = args[i];
|
2011-09-01 19:27:58 -05:00
|
|
|
let curlen = str::byte_len(cur);
|
2011-07-27 07:19:39 -05:00
|
|
|
if !is_arg(cur) {
|
2011-08-19 17:16:48 -05:00
|
|
|
free += [cur];
|
2011-09-02 17:34:58 -05:00
|
|
|
} else if str::eq(cur, "--") {
|
2011-07-27 07:19:39 -05:00
|
|
|
let j = i + 1u;
|
2011-08-19 17:16:48 -05:00
|
|
|
while j < l { free += [args[j]]; j += 1u; }
|
2011-04-26 10:46:54 -05:00
|
|
|
break;
|
|
|
|
} else {
|
2011-07-27 07:19:39 -05:00
|
|
|
let names;
|
2011-09-02 17:34:58 -05:00
|
|
|
let i_arg = option::none::<str>;
|
2011-08-19 17:16:48 -05:00
|
|
|
if cur[1] == '-' as u8 {
|
2012-02-01 05:41:58 -06:00
|
|
|
let tail = str::unsafe::slice(cur, 2u, curlen);
|
2011-09-01 19:27:58 -05:00
|
|
|
let eq = str::index(tail, '=' as u8);
|
2011-07-27 07:19:39 -05:00
|
|
|
if eq == -1 {
|
2011-08-19 17:16:48 -05:00
|
|
|
names = [long(tail)];
|
2011-04-26 10:46:54 -05:00
|
|
|
} else {
|
2012-02-01 05:41:58 -06:00
|
|
|
names = [long(str::unsafe::slice(tail, 0u, eq as uint))];
|
2011-06-15 13:19:50 -05:00
|
|
|
i_arg =
|
2012-02-01 05:41:58 -06:00
|
|
|
option::some::<str>(str::unsafe::slice(tail,
|
2011-09-02 17:34:58 -05:00
|
|
|
(eq as uint) + 1u,
|
|
|
|
curlen - 2u));
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
} else {
|
2011-07-27 07:19:39 -05:00
|
|
|
let j = 1u;
|
2011-08-19 17:16:48 -05:00
|
|
|
names = [];
|
2011-07-27 07:19:39 -05:00
|
|
|
while j < curlen {
|
2011-09-01 19:27:58 -05:00
|
|
|
let range = str::char_range_at(cur, j);
|
2011-08-19 17:16:48 -05:00
|
|
|
names += [short(range.ch)];
|
2011-07-26 07:06:02 -05:00
|
|
|
j = range.next;
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
let name_pos = 0u;
|
2011-08-15 23:54:52 -05:00
|
|
|
for nm: name in names {
|
2011-04-26 10:46:54 -05:00
|
|
|
name_pos += 1u;
|
2011-07-27 07:19:39 -05:00
|
|
|
let optid;
|
|
|
|
alt find_opt(opts, nm) {
|
|
|
|
some(id) { optid = id; }
|
2012-01-19 00:37:22 -06:00
|
|
|
none { ret err(unrecognized_option(name_str(nm))); }
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-08-19 17:16:48 -05:00
|
|
|
alt opts[optid].hasarg {
|
2012-01-19 00:37:22 -06:00
|
|
|
no {
|
2011-09-02 17:34:58 -05:00
|
|
|
if !option::is_none::<str>(i_arg) {
|
2011-12-15 18:11:29 -06:00
|
|
|
ret err(unexpected_argument(name_str(nm)));
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-08-19 17:16:48 -05:00
|
|
|
vals[optid] += [given];
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-01-19 00:37:22 -06:00
|
|
|
maybe {
|
2011-09-02 17:34:58 -05:00
|
|
|
if !option::is_none::<str>(i_arg) {
|
2011-08-19 17:16:48 -05:00
|
|
|
vals[optid] += [val(option::get(i_arg))];
|
|
|
|
} else if name_pos < vec::len::<name>(names) ||
|
|
|
|
i + 1u == l || is_arg(args[i + 1u]) {
|
|
|
|
vals[optid] += [given];
|
|
|
|
} else { i += 1u; vals[optid] += [val(args[i])]; }
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-01-19 00:37:22 -06:00
|
|
|
yes {
|
2011-09-02 17:34:58 -05:00
|
|
|
if !option::is_none::<str>(i_arg) {
|
|
|
|
vals[optid] += [val(option::get::<str>(i_arg))];
|
2011-08-19 17:16:48 -05:00
|
|
|
} else if i + 1u == l {
|
2011-12-15 18:11:29 -06:00
|
|
|
ret err(argument_missing(name_str(nm)));
|
2011-08-19 17:16:48 -05:00
|
|
|
} else { i += 1u; vals[optid] += [val(args[i])]; }
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i += 1u;
|
|
|
|
}
|
|
|
|
i = 0u;
|
2011-07-27 07:19:39 -05:00
|
|
|
while i < n_opts {
|
2011-08-19 17:16:48 -05:00
|
|
|
let n = vec::len::<optval>(vals[i]);
|
|
|
|
let occ = opts[i].occur;
|
2011-07-27 07:19:39 -05:00
|
|
|
if occ == req {
|
|
|
|
if n == 0u {
|
2011-12-15 18:11:29 -06:00
|
|
|
ret err(option_missing(name_str(opts[i].name)));
|
2011-06-15 13:19:50 -05:00
|
|
|
}
|
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
if occ != multi {
|
|
|
|
if n > 1u {
|
2011-12-15 18:11:29 -06:00
|
|
|
ret err(option_duplicated(name_str(opts[i].name)));
|
2011-06-15 13:19:50 -05:00
|
|
|
}
|
|
|
|
}
|
2011-04-26 10:46:54 -05:00
|
|
|
i += 1u;
|
|
|
|
}
|
2011-12-15 18:11:29 -06:00
|
|
|
ret ok({opts: opts, vals: vals, free: free});
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn opt_vals(m: match, nm: str) -> [optval] {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret alt find_opt(m.opts, mkname(nm)) {
|
2011-08-19 17:16:48 -05:00
|
|
|
some(id) { m.vals[id] }
|
2012-01-19 00:37:22 -06:00
|
|
|
none { #error("No option '%s' defined", nm); fail }
|
2011-06-15 13:19:50 -05:00
|
|
|
};
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn opt_val(m: match, nm: str) -> optval { ret opt_vals(m, nm)[0]; }
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: opt_present
|
|
|
|
|
|
|
|
Returns true if an option was matched
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn opt_present(m: match, nm: str) -> bool {
|
2011-08-12 12:56:57 -05:00
|
|
|
ret vec::len::<optval>(opt_vals(m, nm)) > 0u;
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: opt_str
|
|
|
|
|
|
|
|
Returns the string argument supplied to a matching option
|
|
|
|
|
|
|
|
Failure:
|
|
|
|
|
|
|
|
- If the option was not matched
|
|
|
|
- If the match did not take an argument
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn opt_str(m: match, nm: str) -> str {
|
2011-07-27 07:19:39 -05:00
|
|
|
ret alt opt_val(m, nm) { val(s) { s } _ { fail } };
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: opt_str
|
|
|
|
|
|
|
|
Returns a vector of the arguments provided to all matches of the given option.
|
|
|
|
Used when an option accepts multiple values.
|
|
|
|
*/
|
2011-09-12 04:27:30 -05:00
|
|
|
fn opt_strs(m: match, nm: str) -> [str] {
|
2011-09-02 17:34:58 -05:00
|
|
|
let acc: [str] = [];
|
2011-08-15 23:54:52 -05:00
|
|
|
for v: optval in opt_vals(m, nm) {
|
2011-08-19 17:16:48 -05:00
|
|
|
alt v { val(s) { acc += [s]; } _ { } }
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
ret acc;
|
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: opt_str
|
|
|
|
|
|
|
|
Returns the string argument supplied to a matching option or none
|
|
|
|
*/
|
2012-01-31 19:05:20 -06:00
|
|
|
fn opt_maybe_str(m: match, nm: str) -> option<str> {
|
2011-07-27 07:19:39 -05:00
|
|
|
let vals = opt_vals(m, nm);
|
2011-09-02 17:34:58 -05:00
|
|
|
if vec::len::<optval>(vals) == 0u { ret none::<str>; }
|
|
|
|
ret alt vals[0] { val(s) { some::<str>(s) } _ { none::<str> } };
|
2011-04-26 10:46:54 -05:00
|
|
|
}
|
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-24 17:25:41 -05:00
|
|
|
/*
|
|
|
|
Function: opt_default
|
|
|
|
|
|
|
|
Returns the matching string, a default, or none
|
|
|
|
|
|
|
|
Returns none if the option was not present, `def` if the option was
|
|
|
|
present but no argument was provided, and the argument if the option was
|
|
|
|
present and an argument was provided.
|
|
|
|
*/
|
2012-01-31 19:05:20 -06:00
|
|
|
fn opt_default(m: match, nm: str, def: str) -> option<str> {
|
2011-07-27 07:19:39 -05:00
|
|
|
let vals = opt_vals(m, nm);
|
2011-09-02 17:34:58 -05:00
|
|
|
if vec::len::<optval>(vals) == 0u { ret none::<str>; }
|
|
|
|
ret alt vals[0] { val(s) { some::<str>(s) } _ { some::<str>(def) } }
|
2011-06-01 20:31:09 -05:00
|
|
|
}
|
2012-01-17 21:05:07 -06:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
import opt = getopts;
|
|
|
|
import result::{err, ok};
|
|
|
|
|
2012-01-19 17:20:57 -06:00
|
|
|
enum fail_type {
|
2012-01-19 19:55:34 -06:00
|
|
|
argument_missing_,
|
|
|
|
unrecognized_option_,
|
|
|
|
option_missing_,
|
|
|
|
option_duplicated_,
|
|
|
|
unexpected_argument_,
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn check_fail_type(f: fail_, ft: fail_type) {
|
|
|
|
alt f {
|
|
|
|
argument_missing(_) { assert (ft == argument_missing_); }
|
|
|
|
unrecognized_option(_) { assert (ft == unrecognized_option_); }
|
|
|
|
option_missing(_) { assert (ft == option_missing_); }
|
|
|
|
option_duplicated(_) { assert (ft == option_duplicated_); }
|
|
|
|
unexpected_argument(_) { assert (ft == unexpected_argument_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Tests for reqopt
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_long() {
|
|
|
|
let args = ["--test=20"];
|
|
|
|
let opts = [reqopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "test"));
|
|
|
|
assert (opt_str(m, "test") == "20");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_long_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [reqopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_long_no_arg() {
|
|
|
|
let args = ["--test"];
|
|
|
|
let opts = [reqopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, argument_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_long_multi() {
|
|
|
|
let args = ["--test=20", "--test=30"];
|
|
|
|
let opts = [reqopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_duplicated_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_short() {
|
|
|
|
let args = ["-t", "20"];
|
|
|
|
let opts = [reqopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "t"));
|
|
|
|
assert (opt_str(m, "t") == "20");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_short_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [reqopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_short_no_arg() {
|
|
|
|
let args = ["-t"];
|
|
|
|
let opts = [reqopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, argument_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_reqopt_short_multi() {
|
|
|
|
let args = ["-t", "20", "-t", "30"];
|
|
|
|
let opts = [reqopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_duplicated_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Tests for optopt
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_long() {
|
|
|
|
let args = ["--test=20"];
|
|
|
|
let opts = [optopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "test"));
|
|
|
|
assert (opt_str(m, "test") == "20");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_long_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [optopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (!opt_present(m, "test")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_long_no_arg() {
|
|
|
|
let args = ["--test"];
|
|
|
|
let opts = [optopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, argument_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_long_multi() {
|
|
|
|
let args = ["--test=20", "--test=30"];
|
|
|
|
let opts = [optopt("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_duplicated_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_short() {
|
|
|
|
let args = ["-t", "20"];
|
|
|
|
let opts = [optopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "t"));
|
|
|
|
assert (opt_str(m, "t") == "20");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_short_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [optopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (!opt_present(m, "t")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_short_no_arg() {
|
|
|
|
let args = ["-t"];
|
|
|
|
let opts = [optopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, argument_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optopt_short_multi() {
|
|
|
|
let args = ["-t", "20", "-t", "30"];
|
|
|
|
let opts = [optopt("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_duplicated_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Tests for optflag
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_long() {
|
|
|
|
let args = ["--test"];
|
|
|
|
let opts = [optflag("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (opt_present(m, "test")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_long_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [optflag("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (!opt_present(m, "test")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_long_arg() {
|
|
|
|
let args = ["--test=20"];
|
|
|
|
let opts = [optflag("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) {
|
|
|
|
log(error, fail_str(f));
|
|
|
|
check_fail_type(f, unexpected_argument_);
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_long_multi() {
|
|
|
|
let args = ["--test", "--test"];
|
|
|
|
let opts = [optflag("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_duplicated_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_short() {
|
|
|
|
let args = ["-t"];
|
|
|
|
let opts = [optflag("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (opt_present(m, "t")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_short_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [optflag("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (!opt_present(m, "t")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_short_arg() {
|
|
|
|
let args = ["-t", "20"];
|
|
|
|
let opts = [optflag("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
// The next variable after the flag is just a free argument
|
|
|
|
|
|
|
|
assert (m.free[0] == "20");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optflag_short_multi() {
|
|
|
|
let args = ["-t", "-t"];
|
|
|
|
let opts = [optflag("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, option_duplicated_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Tests for optmulti
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_long() {
|
|
|
|
let args = ["--test=20"];
|
|
|
|
let opts = [optmulti("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "test"));
|
|
|
|
assert (opt_str(m, "test") == "20");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_long_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [optmulti("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (!opt_present(m, "test")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_long_no_arg() {
|
|
|
|
let args = ["--test"];
|
|
|
|
let opts = [optmulti("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, argument_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_long_multi() {
|
|
|
|
let args = ["--test=20", "--test=30"];
|
|
|
|
let opts = [optmulti("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "test"));
|
|
|
|
assert (opt_str(m, "test") == "20");
|
|
|
|
assert (opt_strs(m, "test")[0] == "20");
|
|
|
|
assert (opt_strs(m, "test")[1] == "30");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_short() {
|
|
|
|
let args = ["-t", "20"];
|
|
|
|
let opts = [optmulti("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "t"));
|
|
|
|
assert (opt_str(m, "t") == "20");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_short_missing() {
|
|
|
|
let args = ["blah"];
|
|
|
|
let opts = [optmulti("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) { assert (!opt_present(m, "t")); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_short_no_arg() {
|
|
|
|
let args = ["-t"];
|
|
|
|
let opts = [optmulti("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, argument_missing_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_optmulti_short_multi() {
|
|
|
|
let args = ["-t", "20", "-t", "30"];
|
|
|
|
let opts = [optmulti("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (opt_present(m, "t"));
|
|
|
|
assert (opt_str(m, "t") == "20");
|
|
|
|
assert (opt_strs(m, "t")[0] == "20");
|
|
|
|
assert (opt_strs(m, "t")[1] == "30");
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unrecognized_option_long() {
|
|
|
|
let args = ["--untest"];
|
|
|
|
let opts = [optmulti("t")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, unrecognized_option_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unrecognized_option_short() {
|
|
|
|
let args = ["-t"];
|
|
|
|
let opts = [optmulti("test")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
err(f) { check_fail_type(f, unrecognized_option_); }
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_combined() {
|
|
|
|
let args =
|
|
|
|
["prog", "free1", "-s", "20", "free2", "--flag", "--long=30",
|
|
|
|
"-f", "-m", "40", "-m", "50", "-n", "-A B", "-n", "-60 70"];
|
|
|
|
let opts =
|
|
|
|
[optopt("s"), optflag("flag"), reqopt("long"),
|
|
|
|
optflag("f"), optmulti("m"), optmulti("n"),
|
|
|
|
optopt("notpresent")];
|
|
|
|
let rs = getopts(args, opts);
|
|
|
|
alt rs {
|
|
|
|
ok(m) {
|
|
|
|
assert (m.free[0] == "prog");
|
|
|
|
assert (m.free[1] == "free1");
|
|
|
|
assert (opt_str(m, "s") == "20");
|
|
|
|
assert (m.free[2] == "free2");
|
|
|
|
assert (opt_present(m, "flag"));
|
|
|
|
assert (opt_str(m, "long") == "30");
|
|
|
|
assert (opt_present(m, "f"));
|
|
|
|
assert (opt_strs(m, "m")[0] == "40");
|
|
|
|
assert (opt_strs(m, "m")[1] == "50");
|
|
|
|
assert (opt_strs(m, "n")[0] == "-A B");
|
|
|
|
assert (opt_strs(m, "n")[1] == "-60 70");
|
|
|
|
assert (!opt_present(m, "notpresent"));
|
|
|
|
}
|
|
|
|
_ { fail; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-04-26 10:46:54 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|