clap/examples/tutorial_builder/04_02_validate.rs

39 lines
971 B
Rust
Raw Normal View History

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