summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
blob: b5ac878f8c6cbbf7b55b1d808af302f5c51cf0af (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
use cmd;

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

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

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

fn get_command() -> failure::Fallible<Box<Command>> {
    let matches = app_from_crate!()
        .subcommand(cmd::sync::subcommand())
        .subcommand(cmd::sql::subcommand())
        .get_matches();

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

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

    Ok(command)
}