combu is a customizable cli framework. The library name "combu" comes from command + 昆布(konbu, it means kelp in japanese).
combu has no dependencies(or depends on only std library). Crate.io's page is here.
combu(com + 昆布)は柔軟に CLI を組み上げられることを目標とした、カスタマイズ可能な CLI フレームワークです(一時クレートの名前が cmb だったこともありましたが、現在は combu です)。
Combu exists on crates.io.
You can use(or import) this crate like other crate that exists on crates.io.
Add
toml
combu="[version you want to use]"
to cargo.toml.
If you installed cargo-edit, exec below command under the target project:
bash
cargo add combu
```rust use combu::{ActionError, ActionResult, Command, Context, Flag, FlagValue}; use std::env;
fn main() { Command::new() .name(env!("CARGOPKGNAME")) .authors(env!("CARGOPKGAUTHORS")) .version(env!("CARGOPKGVERSION")) .usage(env!("CARGOPKGNAME").tostring() + " [args]") .commonflag(Flag::newbool("help").shortalias('h')) .action(act) .runfromargs(env::args().collect()) }
fn act(c: Context) -> Result
If you want to run quick start as example, exec
bash
cargo run --example quick_start
cargo run --example quick_start --help
```rust use combu::{ActionError, ActionResult, Command, Context, Flag, FlagValue}; use std::env;
fn main() {
Command::withname("single")
.action(act)
.localflag(Flag::newbool("reverse").shortalias('r'))
.single_run(env::args().collect::
fn act(c: Context) -> Result
println!(
"{:?}",
match r {
FlagValue::Bool(true) => {
c.args
.iter()
.rev()
.fold(String::new(), |concated, arg| concated + arg)
}
_ => {
c.args
.iter()
.fold(String::new(), |concated, arg| concated + arg)
}
}
);
Ok(ActionResult::Done)
}
```
bash
$ cargo run --example single a b c d e
abcde
$ cargo run --example single a b c d e -r
edcba
```rust use combu::{ActionError, ActionResult, Command, Context, Flag, FlagValue};
fn main() { rootcommand().runfrom_args(std::env::args().collect()) }
fn rootcommand() -> Command {
Command::withname("multi")
.commonflag(Flag::newbool("help").shortalias('h'))
.commonflag(Flag::newbool("reverse").shortalias('r'))
.localflag(Flag::newbool("by-char").shortalias('c'))
.action(printargs)
.subcommand(addcommand())
.subcommand(subcommand())
}
fn callhelp(c: Context) -> Result
println!("{}", str);
Ok(ActionResult::Done)
}
fn calledhelp(c: &Context) -> bool { Some(FlagValue::Bool(true)) == c.getflagvalueof("help") }
fn addcommand() -> Command { Command::new() .name("add") .alias("a") .action(addaction) .localflag(Flag::newbool("detail").short_alias('d')) }
fn addaction(c: Context) -> Result
if c.get_flag_value_of("detail").unwrap().is_bool_true() {
println!("{} = {}", str, sum);
} else {
println!("{}", sum);
}
Ok(ActionResult::Done)
}
fn subcommand() -> Command { Command::new() .name("sub") .alias("s") .action(subaction) .localflag(Flag::newbool("sort").short_alias('s')) }
fn subaction(c: Context) -> Result
println!("{} = {}", str, result);
Ok(ActionResult::Done)
} ```
bash
cargo run --example multi -- a 1 2 3 4 5
15
cargo run --example multi -- s 1 2 3 4 5
-13
command.rs
のフラグ解析テストは実装した)This is licensed under MIT LICENSE