2022-03-03 18:32:29 +00:00
|
|
|
// Note: this requires the `cargo` feature
|
|
|
|
|
2022-05-23 15:50:11 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
use clap::{arg, command, value_parser, ErrorKind};
|
2015-04-28 03:15:32 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Create application like normal
|
2022-02-15 14:33:38 +00:00
|
|
|
let mut cmd = command!()
|
2018-11-14 17:05:06 +00:00
|
|
|
// Add the version arguments
|
2021-11-30 18:30:19 +00:00
|
|
|
.arg(arg!(--"set-ver" <VER> "set version manually").required(false))
|
2021-11-19 20:33:11 +00:00
|
|
|
.arg(arg!(--major "auto inc major"))
|
|
|
|
.arg(arg!(--minor "auto inc minor"))
|
|
|
|
.arg(arg!(--patch "auto inc patch"))
|
2018-11-14 17:05:06 +00:00
|
|
|
// Arguments can also be added to a group individually, these two arguments
|
|
|
|
// are part of the "input" group which is not required
|
2022-05-23 15:50:11 +00:00
|
|
|
.arg(arg!([INPUT_FILE] "some regular input").value_parser(value_parser!(PathBuf)))
|
|
|
|
.arg(
|
|
|
|
arg!(--"spec-in" <SPEC_IN> "some special input argument")
|
|
|
|
.required(false)
|
|
|
|
.value_parser(value_parser!(PathBuf)),
|
|
|
|
)
|
2018-11-14 17:05:06 +00:00
|
|
|
// Now let's assume we have a -c [config] argument which requires one of
|
|
|
|
// (but **not** both) the "input" arguments
|
2022-05-23 15:50:11 +00:00
|
|
|
.arg(
|
|
|
|
arg!(config: -c <CONFIG>)
|
|
|
|
.required(false)
|
|
|
|
.value_parser(value_parser!(PathBuf)),
|
|
|
|
);
|
2022-02-14 21:47:20 +00:00
|
|
|
let matches = cmd.get_matches_mut();
|
2015-04-28 03:15:32 +00:00
|
|
|
|
|
|
|
// Let's assume the old version 1.2.3
|
|
|
|
let mut major = 1;
|
|
|
|
let mut minor = 2;
|
|
|
|
let mut patch = 3;
|
|
|
|
|
|
|
|
// See if --set-ver was used to set the version manually
|
2022-05-25 15:46:42 +00:00
|
|
|
let version = if let Some(ver) = matches.get_one::<String>("set-ver") {
|
2021-11-30 18:30:19 +00:00
|
|
|
if matches.is_present("major") || matches.is_present("minor") || matches.is_present("patch")
|
|
|
|
{
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd.error(
|
2021-11-30 18:30:19 +00:00
|
|
|
ErrorKind::ArgumentConflict,
|
|
|
|
"Can't do relative and absolute version change",
|
|
|
|
)
|
|
|
|
.exit();
|
|
|
|
}
|
2019-10-02 13:27:19 +00:00
|
|
|
ver.to_string()
|
2015-04-28 03:15:32 +00:00
|
|
|
} else {
|
|
|
|
// Increment the one requested (in a real program, we'd reset the lower numbers)
|
2018-01-25 04:05:05 +00:00
|
|
|
let (maj, min, pat) = (
|
|
|
|
matches.is_present("major"),
|
|
|
|
matches.is_present("minor"),
|
|
|
|
matches.is_present("patch"),
|
|
|
|
);
|
2015-04-28 03:15:32 +00:00
|
|
|
match (maj, min, pat) {
|
2021-11-30 18:30:19 +00:00
|
|
|
(true, false, false) => major += 1,
|
|
|
|
(false, true, false) => minor += 1,
|
|
|
|
(false, false, true) => patch += 1,
|
|
|
|
_ => {
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd.error(
|
2021-11-30 18:30:19 +00:00
|
|
|
ErrorKind::ArgumentConflict,
|
2022-03-02 05:19:14 +00:00
|
|
|
"Can only modify one version field",
|
2021-11-30 18:30:19 +00:00
|
|
|
)
|
|
|
|
.exit();
|
|
|
|
}
|
2015-04-28 03:15:32 +00:00
|
|
|
};
|
|
|
|
format!("{}.{}.{}", major, minor, patch)
|
|
|
|
};
|
|
|
|
|
|
|
|
println!("Version: {}", version);
|
|
|
|
|
|
|
|
// Check for usage of -c
|
|
|
|
if matches.is_present("config") {
|
2018-01-25 04:05:05 +00:00
|
|
|
let input = matches
|
2022-05-23 15:50:11 +00:00
|
|
|
.get_one::<PathBuf>("INPUT_FILE")
|
2022-05-25 15:46:42 +00:00
|
|
|
.or_else(|| matches.get_one::<PathBuf>("spec-in"))
|
2021-11-30 18:30:19 +00:00
|
|
|
.unwrap_or_else(|| {
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd.error(
|
2021-11-30 18:30:19 +00:00
|
|
|
ErrorKind::MissingRequiredArgument,
|
|
|
|
"INPUT_FILE or --spec-in is required when using --config",
|
|
|
|
)
|
|
|
|
.exit()
|
2022-05-23 15:50:11 +00:00
|
|
|
})
|
|
|
|
.display();
|
2018-01-25 04:05:05 +00:00
|
|
|
println!(
|
|
|
|
"Doing work using input {} and config {}",
|
|
|
|
input,
|
2022-05-25 15:46:42 +00:00
|
|
|
matches.get_one::<PathBuf>("config").unwrap().display()
|
2018-01-25 04:05:05 +00:00
|
|
|
);
|
2015-04-28 03:15:32 +00:00
|
|
|
}
|
2016-01-27 22:22:34 +00:00
|
|
|
}
|