Basic args rust parsing.

master
Tomasz Półgrabia 2025-01-13 22:02:30 +01:00
parent 67c1a42044
commit 27b2b1b11e
4 changed files with 70 additions and 0 deletions

1
2025/01/rust_demo1/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target/

25
2025/01/rust_demo1/Cargo.lock generated Normal file
View File

@ -0,0 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
[[package]]
name = "rust_demo1"
version = "0.1.0"
dependencies = [
"getopts",
]
[[package]]
name = "unicode-width"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"

View File

@ -0,0 +1,7 @@
[package]
name = "rust_demo1"
version = "0.1.0"
edition = "2021"
[dependencies]
getopts = "0.2.21"

View File

@ -0,0 +1,37 @@
use getopts::Options;
/**
fn get_help(args: &Vec<String>, opts: &Options) -> String {
return format!("Usage: {} -h? --help?", args[0]);
}
**/
fn main() {
println!("Hello, world!");
for (key,arg) in std::env::args_os().enumerate() {
println!("[{}] Arg: {:?}", key, arg.to_str().expect("Arg should be serializable to string"));
}
let args: Vec<String> = std::env::args().collect();
let mut opts = Options::new();
opts.optflag("h", "help", "print this help");
// let usage = get_help(&args, &opts);
// opts.usage(&usage);
let matches = match opts.parse(&args[1..]) {
Ok(m) => { m }
Err(f) => panic!("Got error: {}", f.to_string())
};
if matches.opt_present("h") {
// println!(get_help(&args, &opts));
let program = format!("{} [args]", args[0]);
println!("Usage: {}", opts.usage(&program));
return;
}
println!("Running...");
}