Crate getopts [] [src]

Unstable (rustc_private)

: use the crates.io getopts library instead

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 matches object.

Single-character options are expected to appear on the command line with a single preceding 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. Single-character options don't require the space.

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.

#![feature(rustc_private)] extern crate getopts; use getopts::{optopt,optflag,getopts,OptGroup,usage}; use std::env; fn do_work(inp: &str, out: Option<String>) { println!("{}", inp); match out { Some(x) => println!("{}", x), None => println!("No Output"), } } fn print_usage(program: &str, opts: &[OptGroup]) { let brief = format!("Usage: {} [options]", program); print!("{}", usage(&brief, opts)); } fn main() { let args: Vec<String> = env::args().collect(); let program = args[0].clone(); let opts = &[ optopt("o", "", "set output file name", "NAME"), optflag("h", "help", "print this help menu") ]; let matches = match getopts(&args[1..], opts) { Ok(m) => { m } Err(f) => { panic!(f.to_string()) } }; if matches.opt_present("h") { print_usage(&program, opts); return; } let output = matches.opt_str("o"); let input = if !matches.free.is_empty() { matches.free[0].clone() } else { print_usage(&program, opts); return; }; do_work(&input, output); }
#![feature(rustc_private)]

extern crate getopts;
use getopts::{optopt,optflag,getopts,OptGroup,usage};
use std::env;

fn do_work(inp: &str, out: Option<String>) {
    println!("{}", inp);
    match out {
        Some(x) => println!("{}", x),
        None => println!("No Output"),
    }
}

fn print_usage(program: &str, opts: &[OptGroup]) {
    let brief = format!("Usage: {} [options]", program);
    print!("{}", usage(&brief, opts));
}

fn main() {
    let args: Vec<String> = env::args().collect();

    let program = args[0].clone();

    let opts = &[
        optopt("o", "", "set output file name", "NAME"),
        optflag("h", "help", "print this help menu")
    ];
    let matches = match getopts(&args[1..], opts) {
        Ok(m) => { m }
        Err(f) => { panic!(f.to_string()) }
    };
    if matches.opt_present("h") {
        print_usage(&program, opts);
        return;
    }
    let output = matches.opt_str("o");
    let input = if !matches.free.is_empty() {
        matches.free[0].clone()
    } else {
        print_usage(&program, opts);
        return;
    };
    do_work(&input, output);
}

Structs

Matches [Unstable]

The result of checking command line arguments. Contains a vector of matches and a vector of free strings.

Opt [Unstable]

A description of a possible option.

OptGroup [Unstable]

One group of options, e.g., both -h and --help, along with their shared description and properties.

Enums

Fail [Unstable]

The type returned when the command line does not conform to the expected format. Use the Debug implementation to output detailed information.

FailType [Unstable]

The type of failure that occurred.

HasArg [Unstable]

Describes whether an option has an argument.

Name [Unstable]

Name of an option. Either a string or a single char.

Occur [Unstable]

Describes how often an option may occur.

Functions

getopts [Unstable]

Parse command line arguments according to the provided options.

opt [Unstable]

Create a generic option group, stating all parameters explicitly

optflag [Unstable]

Create a long option that is optional and does not take an argument.

optflagmulti [Unstable]

Create a long option that can occur more than once and does not take an argument.

optflagopt [Unstable]

Create a long option that is optional and takes an optional argument.

optmulti [Unstable]

Create a long option that is optional, takes an argument, and may occur multiple times.

optopt [Unstable]

Create a long option that is optional and takes an argument.

reqopt [Unstable]

Create a long option that is required and takes an argument.

short_usage [Unstable]

Derive a short one-line usage summary from a set of long options.

usage [Unstable]

Derive a usage message from a set of long options.

Type Definitions

Result [Unstable]

The result of parsing a command line with a set of options.