有没有办法鼓掌使用文件中的默认值?

时间:2019-03-13 02:14:44

标签: rust clap

我正在使用clap编程CLI来解析我的参数。我想为选项提供默认值,但是如果有一个配置文件,则该配置文件应该会赢得默认值。

将命令行参数优先于默认优先级很容易,但是我希望优先级为:

  1. 命令行参数
  2. 配置文件
  3. 默认值

如果未通过命令行选项设置配置文件,则设置起来也很容易,只需在运行parse_args之前解析配置文件,然后将解析后的配置文件中的值提供给{ {1}}。问题在于,如果您在命令行中指定配置文件,则只有在解析之后才能更改默认值。

我想到的唯一方法是不设置default_value,然后手动匹配default_value中的""。问题在于,在这种情况下,拍手将无法建立有用的value_of

有办法鼓掌读取配置文件本身吗?

1 个答案:

答案 0 :(得分:2)

摘自default_value上拍手的文档:

  

注意:如果用户在运行时不使用此参数,ArgMatches::is_present仍将返回true。如果要确定是否在运行时使用了该参数,请考虑ArgMatches::occurrences_of,如果在运行时未使用该参数,它将返回0

     

https://docs.rs/clap/2.32.0/clap/struct.Arg.html#method.default_value

这可以用来获取您描述的行为:

extern crate clap;
use clap::{App, Arg};
use std::fs::File;
use std::io::prelude::*;

fn main() {
    let matches = App::new("MyApp")
        .version("0.1.0")
        .about("Example for StackOverflow")
        .arg(
            Arg::with_name("config")
                .short("c")
                .long("config")
                .value_name("FILE")
                .help("Sets a custom config file"),
        )
        .arg(
            Arg::with_name("example")
                .short("e")
                .long("example")
                .help("Sets an example parameter")
                .default_value("default_value")
                .takes_value(true),
        )
        .get_matches();

    let mut value = String::new();

    if let Some(c) = matches.value_of("config") {
        let file = File::open(c);
        match file {
            Ok(mut f) => {
                // Note: I have a file `config.txt` that has contents `file_value`
                f.read_to_string(&mut value).expect("Error reading value");
            }
            Err(_) => println!("Error reading file"),
        }

        // Note: this lets us override the config file value with the
        // cli argument, if provided
        if matches.occurrences_of("example") > 0 {
            value = matches.value_of("example").unwrap().to_string();
        }
    } else {
        value = matches.value_of("example").unwrap().to_string();
    }

    println!("Value for config: {}", value);
}

// Code above licensed CC0
// https://creativecommons.org/share-your-work/public-domain/cc0/ 

导致该行为:

./target/debug/example
Value for config: default_value
./target/debug/example --example cli_value
Value for config: cli_value
./target/debug/example --config config.txt
Value for config: file_value
./target/debug/example --example cli_value --config config.txt
Value for config: cli_value