summaryrefslogtreecommitdiffstats
path: root/src/cmd/mod.rs
blob: 813a27afd3f8633cf9b168492b3a1efaebd2bf70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
mod sql;
mod sync;
mod recommend;

const _DUMMY_DEPENDENCY: &'static str = include_str!("../../Cargo.toml");

trait Command {
    fn run(&self) -> failure::Fallible<()>;
}

pub fn run() -> failure::Fallible<()> {
    get_command()?.run()
}

fn get_command() -> failure::Fallible<Box<Command>> {
    let subcommands = vec![
        sync::subcommand(),
        sql::subcommand(),
        recommend::subcommand(),
    ];
    let matches = app_from_crate!()
        .subcommands(subcommands.into_iter().map(|s| {
            s.setting(clap::AppSettings::DisableVersion)
        }))
        .get_matches();

    let command: Box<Command> = match matches.subcommand() {
        ("sync", Some(matches)) => Box::new(sync::Command::new(matches)),
        ("sql", Some(matches)) => Box::new(sql::Command::new(matches)),
        ("recommend", Some(matches)) => Box::new(recommend::Command::new(matches)?),

        (name, Some(_)) => bail!("unknown subcommand: {}", name),
        (_, None) => bail!("no subcommand given"),
    };

    Ok(command)
}