imag/src/cli.rs

62 lines
1.4 KiB
Rust
Raw Normal View History

use std::fmt::{Debug, Formatter, Error};
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
}
pub fn get_rtp(&self) -> Option<String> {
self.cli_matches.value_of("rtp").and_then(|s| Some(String::from(s)))
}
pub fn store_path(&self) -> Option<String> {
self.get_rtp().and_then(|rtp| {
self.cli_matches
.value_of("storepath")
.and_then(|s| Some(rtp + s))
})
}
2015-10-18 13:58:17 +00:00
}
2015-11-27 18:18:38 +00:00
impl<'a> Debug for CliConfig<'a> {
fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
write!(f, "CliConfig (verbose: {}, debugging: {}, rtp: {})",
self.is_verbose(),
self.is_debugging(),
self.get_rtp().or(Some(String::from("NONE"))).unwrap())
}
}