【跟小嘉学 Rust 编程】二十五、Rust命令行参数解析库(clap)

系列文章目录

【跟小嘉学 Rust 编程】一、Rust 编程基础
【跟小嘉学 Rust 编程】二、Rust 包管理工具使用
【跟小嘉学 Rust 编程】三、Rust 的基本程序概念
【跟小嘉学 Rust 编程】四、理解 Rust 的所有权概念
【跟小嘉学 Rust 编程】五、使用结构体关联结构化数据
【跟小嘉学 Rust 编程】六、枚举和模式匹配
【跟小嘉学 Rust 编程】七、使用包(Packages)、单元包(Crates)和模块(Module)来管理项目
【跟小嘉学 Rust 编程】八、常见的集合
【跟小嘉学 Rust 编程】九、错误处理(Error Handling)
【跟小嘉学 Rust 编程】十一、编写自动化测试
【跟小嘉学 Rust 编程】十二、构建一个命令行程序
【跟小嘉学 Rust 编程】十三、函数式语言特性:迭代器和闭包
【跟小嘉学 Rust 编程】十四、关于 Cargo 和 Crates.io
【跟小嘉学 Rust 编程】十五、智能指针(Smart Point)
【跟小嘉学 Rust 编程】十六、无畏并发(Fearless Concurrency)
【跟小嘉学 Rust 编程】十七、面向对象语言特性
【跟小嘉学 Rust 编程】十八、模式匹配(Patterns and Matching)
【跟小嘉学 Rust 编程】十九、高级特性
【跟小嘉学 Rust 编程】二十、进阶扩展
【跟小嘉学 Rust 编程】二十一、网络编程
【跟小嘉学 Rust 编程】二十三、Cargo 使用指南
【跟小嘉学 Rust 编程】二十四、内联汇编(inline assembly)
【跟小嘉学 Rust 编程】二十五、Rust命令行参数解析库(clap)

文章目录

  • 系列文章目录
    • @[TOC](文章目录)
  • 前言
  • 一、 Clap 使用方式一:build构建
    • 1.1、引入 clap 库
    • 1.2、快速启动
    • 1.3、配置解析器(Configuring the Parser)
      • 1.3.1、使用 Command 构建解析器
      • 1.3.2、使用 command! 构建解析器
      • 1.3.2、使用 Command::next_line_help 方法
    • 1.4、添加命令行参数(Adding Arguments)
    • 1.4、设置参数行为
    • 1.5、参数选项
      • 1.5.1、参数选项
      • 1.5.2、开启/关闭标志
      • 1.5.3、参数调用计数
      • 1.5.4、默认值
      • 1.5.5、参数校验
        • 1.5.5.1、默认情况
        • 1.5.5.2、枚举值(Enumerated values)
        • 1.5.5.3、校验值(Validated values)
        • 1.5.5.4、自定义解析器(Custom Parser)
        • 1.5.5.5、参数关系(Argument Relations)
        • 1.5.5.6、自定义校验(Custom Validation)
    • 1.6、子命令(Subcommand)
    • 1.7、测试
  • 二、 Clap 使用方式二:derive feature
    • 2.1、添加依赖
    • 2.2、快速开始
    • 2.3、配置解析器
      • 2.3.1、配置解析器
      • 2.3.2、默认值
      • 2.3.3、Command::next_line_help 替代
    • 2.4、添加参数
      • 2.4.1、添加可选参数
      • 2.4.2、添加多值参数
      • 2.4.3、参数选项
        • 2.4.3.1、短参数名称和长参数名称
        • 2.4.3.2、开启和关闭
        • 2.4.3.3、参数计数
        • 2.4.3.4、参数默认值
        • 2.4.3.5、参数枚举
        • 2.4.3.6、参数校验
        • 2.4.3.7、自定义解析
        • 2.4.3.8、参数关系
        • 2.4.3.9、自定义校验
    • 2.5、子命令
  • 三、如何选择
  • 总结

前言

本章节内容讲解 Rust 的第三方库 Clap,这是一个命令行参数解析库。使用API创建解析的方式有两种:Derive 方式、Builder方式。

主要教材参考 《The Rust Programming Language》
主要教材参考 《Rust For Rustaceans》
主要教材参考 《The Rustonomicon》
主要教材参考 《Rust 高级编程》
主要教材参考 《Cargo 指南》


一、 Clap 使用方式一:build构建

1.1、引入 clap 库

cargo add clap -- features 	cargo

需要注意:如果不启用 cargo feature ,则会报如下错误。

requires `cargo` feature

1.2、快速启动

//main.rs
use std::path::PathBuf;use clap::{arg, command, value_parser, ArgAction, Command};fn main() {let matches = command!() // requires `cargo` feature.arg(arg!([name] "Optional name to operate on")).arg(arg!(-c --config <FILE> "Sets a custom config file")// We don't have syntax yet for optional options, so manually calling `required`.required(false).value_parser(value_parser!(PathBuf)),).arg(arg!(-d --debug ... "Turn debugging information on")).subcommand(Command::new("test").about("does testing things").arg(arg!(-l --list "lists test values").action(ArgAction::SetTrue)),).get_matches();// You can check the value provided by positional arguments, or option argumentsif let Some(name) = matches.get_one::<String>("name") {println!("Value for name: {name}");}if let Some(config_path) = matches.get_one::<PathBuf>("config") {println!("Value for config: {}", config_path.display());}// You can see how many times a particular flag or argument occurred// Note, only flags can have multiple occurrencesmatch matches.get_one::<u8>("debug").expect("Count's are defaulted"){0 => println!("Debug mode is off"),1 => println!("Debug mode is kind of on"),2 => println!("Debug mode is on"),_ => println!("Don't be crazy"),}// You can check for the existence of subcommands, and if found use their// matches just as you would the top level cmdif let Some(matches) = matches.subcommand_matches("test") {// "$ myapp test" was runif matches.get_flag("list") {// "$ myapp test -l" was runprintln!("Printing testing lists...");} else {println!("Not printing testing lists...");}}// Continued program logic goes here...
}

1、默认执行情况

cargo run
Debug mode is off

2、参看帮助文档

cargo run --help
Run a binary or example of the local packageUsage: cargo run [OPTIONS] [args]...Arguments:[args]...  Arguments for the binary or example to runOptions:-q, --quiet                   Do not print cargo log messages--bin [<NAME>]            Name of the bin target to run--example [<NAME>]        Name of the example target to run-p, --package [<SPEC>]        Package with the target to run-j, --jobs <N>                Number of parallel jobs, defaults to # of CPUs.--keep-going              Do not abort the build as soon as there is an error (unstable)-r, --release                 Build artifacts in release mode, with optimizations--profile <PROFILE-NAME>  Build artifacts with the specified profile-F, --features <FEATURES>     Space or comma separated list of features to activate--all-features            Activate all available features--no-default-features     Do not activate the `default` feature--target <TRIPLE>         Build for the target triple--target-dir <DIRECTORY>  Directory for all generated artifacts--manifest-path <PATH>    Path to Cargo.toml--message-format <FMT>    Error format--unit-graph              Output build graph in JSON (unstable)--ignore-rust-version     Ignore `rust-version` specification in packages--timings[=<FMTS>]        Timing output formats (unstable) (comma separated): html, json-h, --help                    Print help-v, --verbose...              Use verbose output (-vv very verbose/build.rs output)--color <WHEN>            Coloring: auto, always, never--frozen                  Require Cargo.lock and cache are up to date--locked                  Require Cargo.lock is up to date--offline                 Run without accessing the network--config <KEY=VALUE>      Override a configuration value-Z <FLAG>                     Unstable (nightly-only) flags to Cargo, see 'cargo -Z help' for detailsRun `cargo help run` for more detailed information.

3、使用 -dd 参数

cargo run -- -dd test 
Debug mode is on
Not printing testing lists...

1.3、配置解析器(Configuring the Parser)

1.3.1、使用 Command 构建解析器

你可以使用 Command 开始构建一个解析器。

use clap::{arg, Command};fn main() {let matches = Command::new("MyApp").version("1.0").author("Kevin K. <kbknapp@gmail.com>").about("Does awesome things").arg(arg!(--two <VALUE>).required(true)).arg(arg!(--one <VALUE>).required(true)).get_matches();println!("two: {:?}",matches.get_one::<String>("two").expect("required"));println!("one: {:?}",matches.get_one::<String>("one").expect("required"));
}

1、查看帮助文档

cargo run -- --helpDoes awesome thingsUsage: hello_world --two <VALUE> --one <VALUE>Options:--two <VALUE>  --one <VALUE>  -h, --help         Print help-V, --version      Print version

1.3.2、使用 command! 构建解析器

你也可以使用 command! 宏 构建解析器,不过要想使用 command! 宏,你需要开启 cargo feature。

use clap::{arg, command};fn main() {// requires `cargo` feature, reading name, version, author, and description from `Cargo.toml`let matches = command!().arg(arg!(--two <VALUE>).required(true)).arg(arg!(--one <VALUE>).required(true)).get_matches();println!("two: {:?}",matches.get_one::<String>("two").expect("required"));println!("one: {:?}",matches.get_one::<String>("one").expect("required"));
}

1、查看帮助文档

cargo run -- --helpUsage: hello_world --two <VALUE> --one <VALUE>Options:--two <VALUE>  --one <VALUE>  -h, --help         Print help-V, --version      Print version

1.3.2、使用 Command::next_line_help 方法

使用 Command::next_line_help 方法 可以修改参数打印行为

use clap::{arg, command, ArgAction};fn main() {let matches = command!() // requires `cargo` feature.next_line_help(true).arg(arg!(--two <VALUE>).required(true).action(ArgAction::Set)).arg(arg!(--one <VALUE>).required(true).action(ArgAction::Set)).get_matches();println!("two: {:?}",matches.get_one::<String>("two").expect("required"));println!("one: {:?}",matches.get_one::<String>("one").expect("required"));
}

1、显示帮助文档

cargo run -- --helpUsage: hello_world --two <VALUE> --one <VALUE>Options:--two <VALUE>--one <VALUE>-h, --helpPrint help-V, --versionPrint version

效果就是:参数的描述和参数是分行的,描述信息在参数下一行。

1.4、添加命令行参数(Adding Arguments)

我们可以使用 Command::arg 方法来添加 Arg 对象来添加命令行参数

use clap::{command, Arg};fn main() {let matches = command!() // requires `cargo` feature.arg(Arg::new("name")).get_matches();println!("name: {:?}", matches.get_one::<String>("name"));
}

1、查看帮助文档

cargo run -- --helpUsage: hello_world [name]Arguments:[name]  Options:-h, --help     Print help-V, --version  Print version

2、使用 name 参数:默认

cargo run
name: None

3、使用 name 参数:blob

cargo run bob
name: Some("bob")

1.4、设置参数行为

需要注意:参数默认值是一个 Set 类型

我们可以使用 Command::action 方法来设置 参数行为。如果可以添加多个只,我们可以使用 ArgAction::Append

use clap::{command, Arg, ArgAction};fn main() {let matches = command!() // requires `cargo` feature.arg(Arg::new("name").action(ArgAction::Append)).get_matches();let args = matches.get_many::<String>("name").unwrap_or_default().map(|v| v.as_str()).collect::<Vec<_>>();println!("names: {:?}", &args);
}

1.5、参数选项

1.5.1、参数选项

一个参数行为的标志:

  • 顺序无关
  • 可选参数
  • 意图清晰
use clap::{command, Arg};fn main() {let matches = command!() // requires `cargo` feature.arg(Arg::new("name").short('n').long("name")).get_matches();println!("name: {:?}", matches.get_one::<String>("name"));
}

上述代码:我们定义了一个name参数,缩写是n,全拼是name,也就是如下形式

-n, --name <name>

我们使用方式就有如下几种

cargo run -- --name blo
cargo run -- --name=blob
cargo run -- -n blob
cargo run -- -n=blob
cargo run -- -nblob

1.5.2、开启/关闭标志

我们可以是 ArgAction::SetTrue 开启参数

use clap::{command, Arg, ArgAction};fn main() {let matches = command!() // requires `cargo` feature.arg(Arg::new("verbose").short('v').long("verbose").action(ArgAction::SetTrue),).get_matches();println!("verbose: {:?}", matches.get_flag("verbose"));
}

1.5.3、参数调用计数

我们可以使用 ArgAction::Count

use clap::{command, Arg, ArgAction};fn main() {let matches = command!() // requires `cargo` feature.arg(Arg::new("verbose").short('v').long("verbose").action(ArgAction::Count),).get_matches();println!("verbose: {:?}", matches.get_count("verbose"));
}

默认值是0,多次使用参数就会计数

1.5.4、默认值

我们前面设置的参数都是必选的,但是也可以使用可选的,如果是可选的,我们可以使用 Option 并且可以使用 unwrap_or 方法,也可以使用 Arg::default_value 方法设置默认值。

use clap::{arg, command, value_parser};fn main() {let matches = command!() // requires `cargo` feature.arg(arg!([PORT]).value_parser(value_parser!(u16)).default_value("2023"),).get_matches();println!("port: {:?}",matches.get_one::<u16>("PORT").expect("default ensures there is always a value"));
}

1.5.5、参数校验

1.5.5.1、默认情况

默认情况下,参数被认为是 String,并且使用 UTF-8 校验。

1.5.5.2、枚举值(Enumerated values)

如果你的参数有多个特定的值,我们可以使用 PossibleValuesParser 解析器 或者使用 Arg::value_parser([“val1”, …]) 进行设置。

use clap::{arg, command};fn main() {let matches = command!() // requires `cargo` feature.arg(arg!(<MODE>).help("What mode to run the program in").value_parser(["fast", "slow"]),).get_matches();// Note, it's safe to call unwrap() because the arg is requiredmatch matches.get_one::<String>("MODE").expect("'MODE' is required and parsing will fail if its missing").as_str(){"fast" => {println!("Hare");}"slow" => {println!("Tortoise");}_ => unreachable!(),}
}

如果我们开启了 derive feature, 则我们也可以实现 ValueEnum 特征实现相同的功能

use clap::{arg, builder::PossibleValue, command, value_parser, ValueEnum};#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
enum Mode {Fast,Slow,
}// Can also be derived with feature flag `derive`
impl ValueEnum for Mode {fn value_variants<'a>() -> &'a [Self] {&[Mode::Fast, Mode::Slow]}fn to_possible_value<'a>(&self) -> Option<PossibleValue> {Some(match self {Mode::Fast => PossibleValue::new("fast").help("Run swiftly"),Mode::Slow => PossibleValue::new("slow").help("Crawl slowly but steadily"),})}
}impl std::fmt::Display for Mode {fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {self.to_possible_value().expect("no values are skipped").get_name().fmt(f)}
}impl std::str::FromStr for Mode {type Err = String;fn from_str(s: &str) -> Result<Self, Self::Err> {for variant in Self::value_variants() {if variant.to_possible_value().unwrap().matches(s, false) {return Ok(*variant);}}Err(format!("invalid variant: {s}"))}
}fn main() {let matches = command!() // requires `cargo` feature.arg(arg!(<MODE>).help("What mode to run the program in").value_parser(value_parser!(Mode)),).get_matches();// Note, it's safe to call unwrap() because the arg is requiredmatch matches.get_one::<Mode>("MODE").expect("'MODE' is required and parsing will fail if its missing"){Mode::Fast => {println!("Hare");}Mode::Slow => {println!("Tortoise");}}
}

1.5.5.3、校验值(Validated values)

我们可以使用 Arg::value_parser 验证并解析成我们需要的任何类型。

use clap::{arg, command, value_parser};fn main() {let matches = command!() // requires `cargo` feature.arg(arg!(<PORT>).help("Network port to use").value_parser(value_parser!(u16).range(1..)),).get_matches();// Note, it's safe to call unwrap() because the arg is requiredlet port: u16 = *matches.get_one::<u16>("PORT").expect("'PORT' is required and parsing will fail if its missing");println!("PORT = {port}");
}

1.5.5.4、自定义解析器(Custom Parser)

我们也可以使用自定义解析器用于改进错误信息提示和额外的验证。

use std::ops::RangeInclusive;use clap::{arg, command};fn main() {let matches = command!() // requires `cargo` feature.arg(arg!(<PORT>).help("Network port to use").value_parser(port_in_range),).get_matches();// Note, it's safe to call unwrap() because the arg is requiredlet port: u16 = *matches.get_one::<u16>("PORT").expect("'PORT' is required and parsing will fail if its missing");println!("PORT = {port}");
}const PORT_RANGE: RangeInclusive<usize> = 1..=65535;fn port_in_range(s: &str) -> Result<u16, String> {let port: usize = s.parse().map_err(|_| format!("`{s}` isn't a port number"))?;if PORT_RANGE.contains(&port) {Ok(port as u16)} else {Err(format!("port not in range {}-{}",PORT_RANGE.start(),PORT_RANGE.end()))}
}

1.5.5.5、参数关系(Argument Relations)

我们可以声明 Arg 和 ArgGroup。ArgGroup 用于声明参数关系。

use std::path::PathBuf;use clap::{arg, command, value_parser, ArgAction, ArgGroup};fn main() {// Create application like normallet matches = command!() // requires `cargo` feature// Add the version arguments.arg(arg!(--"set-ver" <VER> "set version manually")).arg(arg!(--major         "auto inc major").action(ArgAction::SetTrue)).arg(arg!(--minor         "auto inc minor").action(ArgAction::SetTrue)).arg(arg!(--patch         "auto inc patch").action(ArgAction::SetTrue))// Create a group, make it required, and add the above arguments.group(ArgGroup::new("vers").required(true).args(["set-ver", "major", "minor", "patch"]),)// Arguments can also be added to a group individually, these two arguments// are part of the "input" group which is not required.arg(arg!([INPUT_FILE] "some regular input").value_parser(value_parser!(PathBuf)).group("input"),).arg(arg!(--"spec-in" <SPEC_IN> "some special input argument").value_parser(value_parser!(PathBuf)).group("input"),)// Now let's assume we have a -c [config] argument which requires one of// (but **not** both) the "input" arguments.arg(arg!(config: -c <CONFIG>).value_parser(value_parser!(PathBuf)).requires("input"),).get_matches();// Let's assume the old version 1.2.3let mut major = 1;let mut minor = 2;let mut patch = 3;// See if --set-ver was used to set the version manuallylet version = if let Some(ver) = matches.get_one::<String>("set-ver") {ver.to_owned()} else {// Increment the one requested (in a real program, we'd reset the lower numbers)let (maj, min, pat) = (matches.get_flag("major"),matches.get_flag("minor"),matches.get_flag("patch"),);match (maj, min, pat) {(true, _, _) => major += 1,(_, true, _) => minor += 1,(_, _, true) => patch += 1,_ => unreachable!(),};format!("{major}.{minor}.{patch}")};println!("Version: {version}");// Check for usage of -cif matches.contains_id("config") {let input = matches.get_one::<PathBuf>("INPUT_FILE").unwrap_or_else(|| matches.get_one::<PathBuf>("spec-in").unwrap()).display();println!("Doing work using input {} and config {}",input,matches.get_one::<PathBuf>("config").unwrap().display());}
}

此时 --set-ver <VER>|--major|--minor|--patch 是一个组的参数。

1.5.5.6、自定义校验(Custom Validation)

我们可以创建自定义校验错误 Command::error 方法可以返回指定错误 Error和自定义错误信息

use std::path::PathBuf;use clap::error::ErrorKind;
use clap::{arg, command, value_parser, ArgAction};fn main() {// Create application like normallet mut cmd = command!() // requires `cargo` feature// Add the version arguments.arg(arg!(--"set-ver" <VER> "set version manually")).arg(arg!(--major         "auto inc major").action(ArgAction::SetTrue)).arg(arg!(--minor         "auto inc minor").action(ArgAction::SetTrue)).arg(arg!(--patch         "auto inc patch").action(ArgAction::SetTrue))// Arguments can also be added to a group individually, these two arguments// are part of the "input" group which is not required.arg(arg!([INPUT_FILE] "some regular input").value_parser(value_parser!(PathBuf))).arg(arg!(--"spec-in" <SPEC_IN> "some special input argument").value_parser(value_parser!(PathBuf)),)// Now let's assume we have a -c [config] argument which requires one of// (but **not** both) the "input" arguments.arg(arg!(config: -c <CONFIG>).value_parser(value_parser!(PathBuf)));let matches = cmd.get_matches_mut();// Let's assume the old version 1.2.3let mut major = 1;let mut minor = 2;let mut patch = 3;// See if --set-ver was used to set the version manuallylet version = if let Some(ver) = matches.get_one::<String>("set-ver") {if matches.get_flag("major") || matches.get_flag("minor") || matches.get_flag("patch") {cmd.error(ErrorKind::ArgumentConflict,"Can't do relative and absolute version change",).exit();}ver.to_string()} else {// Increment the one requested (in a real program, we'd reset the lower numbers)let (maj, min, pat) = (matches.get_flag("major"),matches.get_flag("minor"),matches.get_flag("patch"),);match (maj, min, pat) {(true, false, false) => major += 1,(false, true, false) => minor += 1,(false, false, true) => patch += 1,_ => {cmd.error(ErrorKind::ArgumentConflict,"Can only modify one version field",).exit();}};format!("{major}.{minor}.{patch}")};println!("Version: {version}");// Check for usage of -cif matches.contains_id("config") {let input = matches.get_one::<PathBuf>("INPUT_FILE").or_else(|| matches.get_one::<PathBuf>("spec-in")).unwrap_or_else(|| {cmd.error(ErrorKind::MissingRequiredArgument,"INPUT_FILE or --spec-in is required when using --config",).exit()}).display();println!("Doing work using input {} and config {}",input,matches.get_one::<PathBuf>("config").unwrap().display());}
}

1.6、子命令(Subcommand)

我们可以使用 Command::subcommand 方法添加子命令。每一个子命令都自己的版本、作者、参数和它的子命令。

use clap::{arg, command, Command};fn main() {let matches = command!() // requires `cargo` feature.propagate_version(true).subcommand_required(true).arg_required_else_help(true).subcommand(Command::new("add").about("Adds files to myapp").arg(arg!([NAME])),).get_matches();match matches.subcommand() {Some(("add", sub_matches)) => println!("'myapp add' was used, name is: {:?}",sub_matches.get_one::<String>("NAME")),_ => unreachable!("Exhausted list of subcommands and subcommand_required prevents `None`"),}
}
  • 我们使用 Command::arg_required_else_help 如果参数不存在,优雅的退出。
  • 使用 Command::propagate_version 可以打印命令的版本号

1.7、测试

我们可以使用 debug_assert! 宏 或者 使用 Command::debug_assert 方法。

use clap::{arg, command, value_parser};fn main() {let matches = cmd().get_matches();// Note, it's safe to call unwrap() because the arg is requiredlet port: usize = *matches.get_one::<usize>("PORT").expect("'PORT' is required and parsing will fail if its missing");println!("PORT = {port}");
}fn cmd() -> clap::Command {command!() // requires `cargo` feature.arg(arg!(<PORT>).help("Network port to use").value_parser(value_parser!(usize)),)
}#[test]
fn verify_cmd() {cmd().debug_assert();
}

二、 Clap 使用方式二:derive feature

2.1、添加依赖

cargo add clap --features derive

使用这种方式,更加符合我们面向对象的设计方案。

2.2、快速开始

use std::path::PathBuf;use clap::{Parser, Subcommand};#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {/// Optional name to operate onname: Option<String>,/// Sets a custom config file#[arg(short, long, value_name = "FILE")]config: Option<PathBuf>,/// Turn debugging information on#[arg(short, long, action = clap::ArgAction::Count)]debug: u8,#[command(subcommand)]command: Option<Commands>,
}#[derive(Subcommand)]
enum Commands {/// does testing thingsTest {/// lists test values#[arg(short, long)]list: bool,},
}fn main() {let cli = Cli::parse();// You can check the value provided by positional arguments, or option argumentsif let Some(name) = cli.name.as_deref() {println!("Value for name: {name}");}if let Some(config_path) = cli.config.as_deref() {println!("Value for config: {}", config_path.display());}// You can see how many times a particular flag or argument occurred// Note, only flags can have multiple occurrencesmatch cli.debug {0 => println!("Debug mode is off"),1 => println!("Debug mode is kind of on"),2 => println!("Debug mode is on"),_ => println!("Don't be crazy"),}// You can check for the existence of subcommands, and if found use their// matches just as you would the top level cmdmatch &cli.command {Some(Commands::Test { list }) => {if *list {println!("Printing testing lists...");} else {println!("Not printing testing lists...");}}None => {}}// Continued program logic goes here...
}

2.3、配置解析器

2.3.1、配置解析器

我们可以是 Parse 属性开启构建解析器

use clap::Parser;#[derive(Parser)]
#[command(name = "MyApp")]
#[command(author = "xiaojia")]
#[command(version = "1.0")]
#[command(about = "完成一些事情", long_about = None)]
struct Cli {#[arg(long)]two: String,#[arg(long)]one: String,
}fn main() {let cli = Cli::parse();println!("two: {:?}", cli.two);println!("one: {:?}", cli.one);
}

2.3.2、默认值

我们也可使用使用 #[command(author, version, about)] 形式从 Cargo.toml 读取配置消息

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)] // Read from `Cargo.toml`
struct Cli {#[arg(long)]two: String,#[arg(long)]one: String,
}fn main() {let cli = Cli::parse();println!("two: {:?}", cli.two);println!("one: {:?}", cli.one);
}

2.3.3、Command::next_line_help 替代

我们可以使用 #[command(next_line_help = true)] 方法替代 Command::next_line_help

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(next_line_help = true)]
struct Cli {#[arg(long)]two: String,#[arg(long)]one: String,
}fn main() {let cli = Cli::parse();println!("two: {:?}", cli.two);println!("one: {:?}", cli.one);
}

2.4、添加参数

2.4.1、添加可选参数

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {name: Option<String>,
}fn main() {let cli = Cli::parse();println!("name: {:?}", cli.name.as_deref());
}

2.4.2、添加多值参数

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {name: Vec<String>,
}fn main() {let cli = Cli::parse();println!("name: {:?}", cli.name);
}

2.4.3、参数选项

2.4.3.1、短参数名称和长参数名称

我们可以使用 #[arg(short = ‘n’)] 和 #[arg(long = “name”)] 属性设置参数的短名称和长名称

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {#[arg(short, long)]name: Option<String>,
}fn main() {let cli = Cli::parse();println!("name: {:?}", cli.name.as_deref());
}

2.4.3.2、开启和关闭

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {#[arg(short, long)]verbose: bool,
}fn main() {let cli = Cli::parse();println!("verbose: {:?}", cli.verbose);
}

需要注意我们默认调用的是clap::ArgAction::SetTrue

2.4.3.3、参数计数

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {#[arg(short, long, action = clap::ArgAction::Count)]verbose: u8,
}fn main() {let cli = Cli::parse();println!("verbose: {:?}", cli.verbose);
}

2.4.3.4、参数默认值

我们使用 #[arg(default_value_t)] 属性来给参数设置默认值

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {#[arg(default_value_t = 2020)]port: u16,
}fn main() {let cli = Cli::parse();println!("port: {:?}", cli.port);
}

2.4.3.5、参数枚举

我们使用 #[arg(value_enum)] 设置参数枚举 结合枚举类

use clap::{Parser, ValueEnum};#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {/// What mode to run the program in#[arg(value_enum)]mode: Mode,
}#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, ValueEnum)]
enum Mode {/// Run swiftlyFast,/// Crawl slowly but steadily////// This paragraph is ignored because there is no long help text for possible values.Slow,
}fn main() {let cli = Cli::parse();match cli.mode {Mode::Fast => {println!("Hare");}Mode::Slow => {println!("Tortoise");}}
}

2.4.3.6、参数校验

use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {/// Network port to use#[arg(value_parser = clap::value_parser!(u16).range(1..))]port: u16,
}fn main() {let cli = Cli::parse();println!("PORT = {}", cli.port);
}

2.4.3.7、自定义解析

use std::ops::RangeInclusive;use clap::Parser;#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {/// Network port to use#[arg(value_parser = port_in_range)]port: u16,
}fn main() {let cli = Cli::parse();println!("PORT = {}", cli.port);
}const PORT_RANGE: RangeInclusive<usize> = 1..=65535;fn port_in_range(s: &str) -> Result<u16, String> {let port: usize = s.parse().map_err(|_| format!("`{s}` isn't a port number"))?;if PORT_RANGE.contains(&port) {Ok(port as u16)} else {Err(format!("port not in range {}-{}",PORT_RANGE.start(),PORT_RANGE.end()))}
}

2.4.3.8、参数关系

use clap::{Args, Parser};#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {#[command(flatten)]vers: Vers,/// some regular input#[arg(group = "input")]input_file: Option<String>,/// some special input argument#[arg(long, group = "input")]spec_in: Option<String>,#[arg(short, requires = "input")]config: Option<String>,
}#[derive(Args)]
#[group(required = true, multiple = false)]
struct Vers {/// set version manually#[arg(long, value_name = "VER")]set_ver: Option<String>,/// auto inc major#[arg(long)]major: bool,/// auto inc minor#[arg(long)]minor: bool,/// auto inc patch#[arg(long)]patch: bool,
}fn main() {let cli = Cli::parse();// Let's assume the old version 1.2.3let mut major = 1;let mut minor = 2;let mut patch = 3;// See if --set_ver was used to set the version manuallylet vers = &cli.vers;let version = if let Some(ver) = vers.set_ver.as_deref() {ver.to_string()} else {// Increment the one requested (in a real program, we'd reset the lower numbers)let (maj, min, pat) = (vers.major, vers.minor, vers.patch);match (maj, min, pat) {(true, _, _) => major += 1,(_, true, _) => minor += 1,(_, _, true) => patch += 1,_ => unreachable!(),};format!("{major}.{minor}.{patch}")};println!("Version: {version}");// Check for usage of -cif let Some(config) = cli.config.as_deref() {let input = cli.input_file.as_deref().unwrap_or_else(|| cli.spec_in.as_deref().unwrap());println!("Doing work using input {input} and config {config}");}
}

2.4.3.9、自定义校验

use clap::error::ErrorKind;
use clap::{CommandFactory, Parser};#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Cli {/// set version manually#[arg(long, value_name = "VER")]set_ver: Option<String>,/// auto inc major#[arg(long)]major: bool,/// auto inc minor#[arg(long)]minor: bool,/// auto inc patch#[arg(long)]patch: bool,/// some regular inputinput_file: Option<String>,/// some special input argument#[arg(long)]spec_in: Option<String>,#[arg(short)]config: Option<String>,
}fn main() {let cli = Cli::parse();// Let's assume the old version 1.2.3let mut major = 1;let mut minor = 2;let mut patch = 3;// See if --set-ver was used to set the version manuallylet version = if let Some(ver) = cli.set_ver.as_deref() {if cli.major || cli.minor || cli.patch {let mut cmd = Cli::command();cmd.error(ErrorKind::ArgumentConflict,"Can't do relative and absolute version change",).exit();}ver.to_string()} else {// Increment the one requested (in a real program, we'd reset the lower numbers)let (maj, min, pat) = (cli.major, cli.minor, cli.patch);match (maj, min, pat) {(true, false, false) => major += 1,(false, true, false) => minor += 1,(false, false, true) => patch += 1,_ => {let mut cmd = Cli::command();cmd.error(ErrorKind::ArgumentConflict,"Can only modify one version field",).exit();}};format!("{major}.{minor}.{patch}")};println!("Version: {version}");// Check for usage of -cif let Some(config) = cli.config.as_deref() {let input = cli.input_file.as_deref()// 'or' is preferred to 'or_else' here since `Option::as_deref` is 'const'.or(cli.spec_in.as_deref()).unwrap_or_else(|| {let mut cmd = Cli::command();cmd.error(ErrorKind::MissingRequiredArgument,"INPUT_FILE or --spec-in is required when using --config",).exit()});println!("Doing work using input {input} and config {config}");}
}

2.5、子命令

我们使用 #[command(subcommand)] 属性和#[derive(Subcommand)] 联合起来使用声明子命令。

use clap::{Parser, Subcommand};#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(propagate_version = true)]
struct Cli {#[command(subcommand)]command: Commands,
}#[derive(Subcommand)]
enum Commands {/// Adds files to myappAdd { name: Option<String> },
}fn main() {let cli = Cli::parse();// You can check for the existence of subcommands, and if found use their// matches just as you would the top level cmdmatch &cli.command {Commands::Add { name } => {println!("'myapp add' was used, name is: {name:?}")}}
}

三、如何选择

我们需要注意 clap 的yaml 支持在新版本之中转移到了 clap_serde 库了。 我们建议使用 derive APi,因为此种方式跟容易阅读、修改;更加保持参数声明和参数读取同步;更容易复用,符合面向对象设计。

我们也可以使用 fncmd 库来实现命令行接口像函数一样使用。

总结

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/73674.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

K8S 基础概念学习

1.K8S 通过Deployment 实现滚动发布&#xff0c;比如左边的ReplicatSet 的 pod 中 是V1版本的镜像&#xff0c;Deployment通过 再启动一个 ReplicatSet 中启动 pod中 镜像就是V2 2.每个pod 中都有一个pause 容器&#xff0c;他会连接本pod中的其他容器&#xff0c;实现互通。p…

【计算机网络】HTTP(上)

文章目录 1.HTTP概念2. URLurlencode 和 urldecode转义规则 3. HTTP的宏观理解HTTP的请求HTTP的响应 4. 见一见HTTP请求和响应请求报头 1. 模拟一个简单的响应response响应报头 2. 从路径中获取内容ReadFile函数的实现 3.不同资源进行区分反序列化的实现ReadOneLine函数的实现P…

2.11 PE结构:添加新的节区

在可执行PE文件中&#xff0c;节&#xff08;section&#xff09;是文件的组成部分之一&#xff0c;用于存储特定类型的数据。每个节都具有特定的作用和属性&#xff0c;通常来说一个正常的程序在被编译器创建后会生成一些固定的节&#xff0c;通过将数据组织在不同的节中&…

数学建模B多波束测线问题B

数学建模多波束测线问题 1.问题重述&#xff1a; 单波束测深是一种利用声波在水中传播的技术来测量水深的方法。它通过测量从船上发送声波到声波返回所用的时间来计算水深。然而&#xff0c;由于它是在单一点上连续测量的&#xff0c;因此数据在航迹上非常密集&#xff0c;但…

多通道振弦数据记录仪应用桥梁安全监测的关键要点

多通道振弦数据记录仪应用桥梁安全监测的关键要点 随着近年来桥梁建设和维护的不断推进&#xff0c;桥梁安全监测越来越成为公共关注的焦点。多通道振弦数据记录仪因其高效、准确的数据采集和处理能力&#xff0c;已经成为桥梁安全监测中不可或缺的设备。本文将从以下几个方面…

zabbix企业微信告警

目前&#xff0c;企业微信使用要设置可信域名 华为云搜索云函数 创建函数 选择http函数&#xff0c;随便输入函数名字 回到函数列表&#xff0c;选择刚创建的函数&#xff0c;创建触发器&#xff0c;安全模式选择none 点击右上角管理 选刚创建的api&#xff0c;右边操作点…

SpringBoot学习笔记-配置spring.mvc.view.prefix和suffix

spring.mvc.view.prefix/webapp/pages/ spring.mvc.view.suffix.jsp SpringBoot配置spring.mvc.view.prefix

java实现命令模式

命令模式是一种行为设计模式&#xff0c;它允许您将请求封装为对象&#xff0c;以便您可以将其参数化、队列化、记录和撤销。在 Java 中实现命令模式涉及创建一个命令接口&#xff0c;具体命令类&#xff0c;以及一个接收者类&#xff0c;该接收者类执行实际操作。下面是一个简…

07-ThreadLocal有哪些使用场景?【Java面试题总结】

ThreadLocal有哪些使用场景&#xff1f; 7.1 多线程场景下共享变量问题 ThreadLocal是线程本地变量&#xff0c;可以存储共享变量副本&#xff0c;每一个独立线程都有与共享变量一模一样的副本。ThreadLocal在当前线程下共享变量是全局共享的&#xff0c;各个线程之间是相互独…

基于Dubbo实现服务的远程调用

目录 前言 RPC思想 为什么使用Dubbo Dubbo技术框架 ​编辑 调用关系流程 基础实现 A.提供统一业务Api B.编辑服务提供者Product B.a 添加依赖 B.b 添加Dubbo 配置(基于yaml配置文件) B.c 编写并暴露服务 C.编辑服务消费者 C.a 添加依赖 C.b 添加Dubbo配置 C.c 引用…

SSH 免密登录:普通用户免密配置登录仍需输入密码

一、服务器信息 服务器系统IPAcentos7192.168.0.100Bcentos7192.168.0.101Ccentos7192.168.0.102 二、免密配置 1.1 A 服务器操作 &#xff08;1&#xff09;生成密钥文件 [testlocalhost ~]$ ssh-keygen -t rsa [testlocalhost ~]$ ll .ssh/ total 8 -rw-------. 1 test …

C# 现状简单说明

文章目录 环境框架图形界面后端游戏 环境 .net framework 老版本.net版本&#xff0c;只能在windows环境下运行 .net core 新版.net版本。可以跨linux,mac平台运行 框架 图形界面 Winfrom 很老的图形界面。特点是丑&#xff0c;但是能用&#xff0c;学起来快 WPF 使用Xaml…

【Redis】3、Redis主从复制、哨兵、集群

Redis主从复制 主从复制&#xff0c;是指将一台Redis服务器的数据&#xff0c;复制到其他的Redis服务器。前者称为主节点(Master)&#xff0c;后者称为从节点(Slave)&#xff1b;数据的复制是单向的&#xff0c;只能由主节点到从节点。 默认情况下&#xff0c;每台Redis服务器…

PostgreSQL安装异常,服务无法启动导致创建服务器超时

win上安装pg后无法创建服务器&#xff0c;提示创建超时&#xff0c;发现服务列表里面pg15服务 并没有启动&#xff0c;启动服务器发现服务不了&#xff0c;截图忘记截了&#xff0c;复现不了&#xff0c;解决方法是 换个身份&#xff0c;然后继续启动&#xff0c;然后就可以在…

如何使用Docker部署Nacos服务?Nacos Docker 快速部署指南: 一站式部署与配置教程

&#x1f337;&#x1f341; 博主猫头虎&#xff08;&#x1f405;&#x1f43e;&#xff09;带您 Go to New World✨&#x1f341; &#x1f984; 博客首页——&#x1f405;&#x1f43e;猫头虎的博客&#x1f390; &#x1f433; 《面试题大全专栏》 &#x1f995; 文章图文…

说说 TCP的粘包、拆包

分析&回答 拆包和粘包是在socket编程中经常出现的情况&#xff0c; 在socket通讯过程中&#xff0c;如果通讯的一端一次性连续发送多条数据包&#xff0c;tcp协议会将多个数据包打包成一个tcp报文发送出去&#xff0c;这就是所谓的粘包。如果通讯的一端发送的数据包超过一…

【C++漂流记】一文搞懂类与对象的封装

本篇文章主要说明了类与对象中封装的有关知识&#xff0c;包括属性和行为作为整体、访问权限、class与struct的区别、成员属性的私有化&#xff0c;希望这篇文章可以帮助你更好的了解类与对象这方面的知识。 文章目录 一、属性和行为作为整体二、访问权限三、class与struct的区…

C语言--volatile

volatile 1、介绍 volatile是一个类型修饰符&#xff08;type specifier&#xff09;。它是被设计用来修饰被不同线程访问和修改的变量。如果没有volatile&#xff0c;基本上会导致这样的结果&#xff1a;要么无法编写多线程程序&#xff0c;要么编译器失去大量优化的机会。 …

某米ax3000路由器组网解析

我们使用某米k60手机与某米ax3000 wifi6路由器组网&#xff0c;来分析和学习网络速率与瓶颈限制。 某米 AX3000 路由器简介 某米 AX3000 路由器是一款支持 WiFi 6 的双频路由器&#xff0c;它的 MIMO 是 22&#xff0c;也就是两根天线。MIMO 是 Multiple Input Multiple Outpu…

复制tr的一行数据或者复制数据使用,使用jq和php

效果图&#xff1a; 2.Html <!--复制的tr数据&#xff0c;s----------------------------------------------------------------------------------------------->{foreach from$arrs keykk itemvv} <tr><td style"text-align:center;" >1</t…