imag/src/cli.rs

38 lines
770 B
Rust
Raw Normal View History

2015-10-18 13:58:17 +00:00
extern crate clap;
use clap::{App, ArgMatches};
pub struct ModuleConfig {
pub load : bool,
2015-10-18 13:58:17 +00:00
}
impl ModuleConfig {
pub fn new() -> ModuleConfig {
ModuleConfig {
load: false,
}
}
}
2015-10-26 23:02:42 +00:00
pub struct CliConfig<'a> {
pub module_configs : Vec<ModuleConfig>,
2015-10-25 18:47:17 +00:00
pub cli_matches : ArgMatches<'a, 'a>,
2015-10-18 13:58:17 +00:00
}
2015-10-26 23:02:42 +00:00
impl<'a> CliConfig<'a> {
pub fn new(app : clap::App<'a, 'a, 'a, 'a, 'a, 'a>) -> CliConfig<'a> {
CliConfig {
2015-10-18 13:58:17 +00:00
module_configs: vec![],
2015-10-25 18:47:17 +00:00
cli_matches: app.get_matches(),
2015-10-18 13:58:17 +00:00
}
}
pub fn is_verbose(&self) -> bool {
2015-10-26 20:26:15 +00:00
self.cli_matches.is_present("verbose") || self.is_debugging()
}
pub fn is_debugging(&self) -> bool {
2015-10-26 20:26:15 +00:00
self.cli_matches.is_present("debug")
2015-10-18 13:58:17 +00:00
}
}