1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! Several ways of creating more fancier flags from primitive components
use bpaf::*;
#[derive(Debug, Clone, Copy)]
enum Trim {
On,
Off,
}
fn main() {
// program takes one or more -v or --verbose flags, more flags = higher verbosity.
// parser handles number and produces a single flag.
//
// let's create it without using any single purpose magical functions
// Let's staty by creating a simple parser that handles a single -v / --verbose
// and fails otherwise;
let verbose: Parser<()> = short('v').long("verbose").req_flag(());
// .many() tries to appy parser as many times as possible and collects the results.
// We can't use non failing parse with .many() since it will loop forever.
let verbose: Parser<Vec<()>> = verbose.many();
// Then count how many times parser succeeded
let verbose: Parser<usize> = verbose.map(|v| v.len());
// And add a simple sanity checker.
// By this time when this parser succeeds - it will contain verbosity in 0..3 range, inclusive.
let verbose = verbose.guard(|&x| x <= 3, "it doesn't get any more verbose than 3");
// program takes --trimor --no-trimflag, but not both at once. If none is given -
// fallback value is to disable trimming. Trim enum is set accordingly
// this flag succeeds iff --no-trim is given and produces Trim::Off
let trim_off: Parser<Trim> = long("no-trim").req_flag(Trim::Off);
// this flag handles two remaining cases: --trim is given (Trim::On) an fallback (Trim::Off)
let trim_on: Parser<Trim> = long("trim").flag(Trim::On, Trim::Off);
// combination of previous two.
// if trim_off succeeds - trim_on never runs, otherwise trim_on tries to handle the remaining
// case before falling back to Trim:Off.
// If both --trim and --no-trim are given trim_off succeeds, trim_off never runs and --trim
// remains unused - parser fails
let trim = trim_off.or_else(trim_on);
let parser = construct!(verbose, trim);
let opt = Info::default().for_parser(parser).run();
println!("{:#?}", opt);
}