summary refs log blame commit diff
path: root/src/argument.rs
blob: 03eda0eaf9db066feca422ccf2e0517b7c246782 (plain) (tree)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410

























































































































































































































































































































































































































                                                                                                  
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Handles argument parsing.
//!
//! # Example
//!
//! ```
//! const ARGUMENTS: &'static [Argument] = &[
//!     Argument::positional("FILES", "files to operate on"),
//!     Argument::short_value('p', "program", "PROGRAM", "Program to apply to each file"),
//!     Argument::short_value('c', "cpus", "N", "Number of CPUs to use. (default: 1)"),
//!     Argument::flag("unmount", "Unmount the root"),
//!     Argument::short_flag('h', "help", "Print help message."),
//! ];
//!
//! let match_res = set_arguments(args, ARGUMENTS, |name, value| {
//!     match name {
//!         "" => println!("positional arg! {}", value.unwrap()),
//!         "program" => println!("gonna use program {}", value.unwrap()),
//!         "cpus" => {
//!             let v: u32 = value.unwrap().parse().map_err(|_| {
//!                 Error::InvalidValue {
//!                     value: value.unwrap().to_owned(),
//!                     expected: "this value for `cpus` needs to be integer",
//!                 }
//!             })?;
//!         }
//!         "unmount" => println!("gonna unmount"),
//!         "help" => return Err(Error::PrintHelp),
//!         _ => unreachable!(),
//!     }
//! }
//!
//! match match_res {
//!     Ok(_) => println!("running with settings"),
//!     Err(Error::PrintHelp) => print_help("best_program", "FILES", ARGUMENTS),
//!     Err(e) => println!("{}", e),
//! }
//! ```

use std::fmt;
use std::result;

/// An error with argument parsing.
pub enum Error {
    /// There was a syntax error with the argument.
    Syntax(String),
    /// The argumen's name is unused.
    UnknownArgument(String),
    /// The argument was required.
    ExpectedArgument(String),
    /// The argument's given value is invalid.
    InvalidValue {
        value: String,
        expected: &'static str,
    },
    /// The argument was already given and none more are expected.
    TooManyArguments(String),
    /// The argument expects a value.
    ExpectedValue(String),
    /// The help information was requested
    PrintHelp,
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            &Error::Syntax(ref s) => write!(f, "syntax error: {}", s),
            &Error::UnknownArgument(ref s) => write!(f, "unknown argument: {}", s),
            &Error::ExpectedArgument(ref s) => write!(f, "expected argument: {}", s),
            &Error::InvalidValue {
                 ref value,
                 expected,
             } => write!(f, "invalid value {:?}: {}", value, expected),
            &Error::TooManyArguments(ref s) => write!(f, "too many arguments: {}", s),
            &Error::ExpectedValue(ref s) => write!(f, "expected parameter value: {}", s),
            &Error::PrintHelp => write!(f, "help was requested"),
        }
    }
}

/// Result of a argument parsing.
pub type Result<T> = result::Result<T, Error>;

/// Information about an argument expected from the command line.
///
/// # Examples
///
/// To indicate a flag style argument:
///
/// ```
/// Argument::short_flag('f', "flag", "enable awesome mode")
/// ```
///
/// To indicate a parameter style argument that expects a value:
///
/// ```
/// // "VALUE" and "NETMASK" are placeholder values displayed in the help message for these
/// // arguments.
/// Argument::short_value('v', "val", "VALUE", "how much do you value this usage information")
/// Argument::value("netmask", "NETMASK", "hides your netface")
/// ```
///
/// To indicate an argument with no short version:
///
/// ```
/// Argument::flag("verbose", "this option is hard to type quickly")
/// ```
///
/// To indicate a positional argument:
///
/// ```
/// Argument::positional("VALUES", "these are positional arguments")
/// ```
#[derive(Default)]
pub struct Argument {
    /// The name of the value to display in the usage information. Use None to indicate that there
    /// is no value expected for this argument.
    pub value: Option<&'static str>,
    /// Optional single character shortened argument name.
    pub short: Option<char>,
    /// The long name of this argument.
    pub long: &'static str,
    /// Helpfuly usage information for this argument to display to the user.
    pub help: &'static str,
}

impl Argument {
    pub fn positional(value: &'static str, help: &'static str) -> Argument {
        Argument {
            value: Some(value),
            long: "",
            help: help,
            ..Default::default()
        }
    }

    pub fn value(long: &'static str, value: &'static str, help: &'static str) -> Argument {
        Argument {
            value: Some(value),
            long: long,
            help: help,
            ..Default::default()
        }
    }

    pub fn short_value(short: char,
                       long: &'static str,
                       value: &'static str,
                       help: &'static str)
                       -> Argument {
        Argument {
            value: Some(value),
            short: Some(short),
            long: long,
            help: help,
        }
    }

    pub fn flag(long: &'static str, help: &'static str) -> Argument {
        Argument {
            long: long,
            help: help,
            ..Default::default()
        }
    }

    pub fn short_flag(short: char, long: &'static str, help: &'static str) -> Argument {
        Argument {
            short: Some(short),
            long: long,
            help: help,
            ..Default::default()
        }
    }
}

fn parse_arguments<I, R, F>(args: I, mut f: F) -> Result<()>
    where I: Iterator<Item = R>,
          R: AsRef<str>,
          F: FnMut(&str, Option<&str>) -> Result<()>
{
    enum State {
        // Initial state at the start and after finishing a single argument/value.
        Top,
        // The remaining arguments are all positional.
        Positional,
        // The next string is the value for the argument `name`.
        Value { name: String },
    }
    let mut s = State::Top;
    for arg in args {
        let arg = arg.as_ref();
        s = match s {
            State::Top => {
                if arg == "--" {
                    State::Positional
                } else if arg.starts_with("--") {
                    let param = arg.trim_left_matches('-');
                    if param.contains('=') {
                        let mut iter = param.splitn(2, '=');
                        let name = iter.next().unwrap();
                        let value = iter.next().unwrap();
                        if name.is_empty() {
                            return Err(Error::Syntax("expected parameter name before `=`"
                                                         .to_owned()));
                        }
                        if value.is_empty() {
                            return Err(Error::Syntax("expected parameter value after `=`"
                                                         .to_owned()));
                        }
                        f(name, Some(value))?;
                        State::Top
                    } else {
                        if let Err(e) = f(param, None) {
                            if let Error::ExpectedValue(_) = e {
                                State::Value { name: param.to_owned() }
                            } else {
                                return Err(e);
                            }
                        } else {
                            State::Top
                        }
                    }
                } else if arg.starts_with("-") {
                    if arg.len() == 1 {
                        return Err(Error::Syntax("expected argument short name after `-`"
                                                     .to_owned()));
                    }
                    let name = &arg[1..2];
                    let value = if arg.len() > 2 { Some(&arg[2..]) } else { None };
                    if let Err(e) = f(name, value) {
                        if let Error::ExpectedValue(_) = e {
                            State::Value { name: name.to_owned() }
                        } else {
                            return Err(e);
                        }
                    } else {
                        State::Top
                    }
                } else {
                    f("", Some(&arg))?;
                    State::Positional
                }
            }
            State::Positional => {
                f("", Some(&arg))?;
                State::Positional
            }
            State::Value { name } => {
                f(&name, Some(&arg))?;
                State::Top
            }
        };
    }
    Ok(())
}

/// Parses the given `args` against the list of know arguments `arg_list` and calls `f` with each
/// present argument and value if required.
///
/// This function guarantees that only valid long argument names from `arg_list` are sent to the
/// callback `f`. It is also guaranteed that if an arg requires a value (i.e.
/// `arg.value.is_some()`), the value will be `Some` in the callbacks arguments. If the callback
/// returns `Err`, this function will end parsing and return that `Err`.
///
/// See the [module level](index.html) example for a usage example.
pub fn set_arguments<I, R, F>(args: I, arg_list: &[Argument], mut f: F) -> Result<()>
    where I: Iterator<Item = R>,
          R: AsRef<str>,
          F: FnMut(&str, Option<&str>) -> Result<()>
{
    parse_arguments(args, |name, value| {
        let mut matches = None;
        for arg in arg_list {
            if let Some(short) = arg.short {
                if name.len() == 1 && name.starts_with(short) {
                    if value.is_some() != arg.value.is_some() {
                        return Err(Error::ExpectedValue(short.to_string()));
                    }
                    matches = Some(arg.long);
                }
            }
            if matches.is_none() && arg.long == name {
                if value.is_some() != arg.value.is_some() {
                    return Err(Error::ExpectedValue(arg.long.to_owned()));
                }
                matches = Some(arg.long);
            }
        }
        match matches {
            Some(long) => f(long, value),
            None => Err(Error::UnknownArgument(name.to_owned())),
        }
    })
}

/// Prints command line usage information to stdout.
///
/// Usage information is printed according to the help fields in `args` with a leading usage line.
/// The usage line is of the format "`program_name` [ARGUMENTS] `required_arg`".
pub fn print_help(program_name: &str, required_arg: &str, args: &[Argument]) {
    println!("Usage: {} {}{}\n",
             program_name,
             if args.is_empty() { "" } else { "[ARGUMENTS] " },
             required_arg);
    if args.is_empty() {
        return;
    }
    println!("Argument{}:", if args.len() > 1 { "s" } else { "" });
    for arg in args {
        match arg.short {
            Some(ref s) => print!(" -{}, ", s),
            None => print!("     "),
        }
        if arg.long.is_empty() {
            print!("  ");
        } else {
            print!("--");
        }
        print!("{:<12}", arg.long);
        if let Some(v) = arg.value {
            if arg.long.is_empty() {
                print!(" ");
            } else {
                print!("=");
            }
            print!("{:<10}", v);
        } else {
            print!("{:<11}", "");
        }
        println!("{}", arg.help);
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn request_help() {
        let arguments = [Argument::short_flag('h', "help", "Print help message.")];

        let match_res = set_arguments(["-h"].iter(), &arguments[..], |name, _| {
            match name {
                "help" => return Err(Error::PrintHelp),
                _ => unreachable!(),
            };
        });
        match match_res {
            Err(Error::PrintHelp) => {}
            _ => unreachable!(),
        }
    }

    #[test]
    fn mixed_args() {
        let arguments =
            [Argument::positional("FILES", "files to operate on"),
             Argument::short_value('p', "program", "PROGRAM", "Program to apply to each file"),
             Argument::short_value('c', "cpus", "N", "Number of CPUs to use. (default: 1)"),
             Argument::flag("unmount", "Unmount the root"),
             Argument::short_flag('h', "help", "Print help message.")];

        let mut unmount = false;
        let match_res = set_arguments(["--cpus", "3", "--program", "hello", "--unmount", "file"]
                                          .iter(),
                                      &arguments[..],
                                      |name, value| {
            match name {
                "" => assert_eq!(value.unwrap(), "file"),
                "program" => assert_eq!(value.unwrap(), "hello"),
                "cpus" => {
                    let c: u32 = value
                        .unwrap()
                        .parse()
                        .map_err(|_| {
                                     Error::InvalidValue {
                                         value: value.unwrap().to_owned(),
                                         expected: "this value for `cpus` needs to be integer",
                                     }
                                 })?;
                    assert_eq!(c, 3);
                }
                "unmount" => unmount = true,
                "help" => return Err(Error::PrintHelp),
                _ => unreachable!(),
            };
            Ok(())
        });
        assert!(match_res.is_ok());
        assert!(unmount);
    }

    #[test]
    fn name_value_pair() {
        let arguments =
            [Argument::short_value('c', "cpus", "N", "Number of CPUs to use. (default: 1)")];
        let match_res = set_arguments(["-c", "5", "--cpus", "5", "-c5", "--cpus=5"].iter(),
                                      &arguments[..],
                                      |name, value| {
                                          assert_eq!(name, "cpus");
                                          assert_eq!(value, Some("5"));
                                          Ok(())
                                      });
        assert!(match_res.is_ok());
    }
}