rust/rhg/src/main.rs
author Yuya Nishihara <yuya@tcha.org>
Sun, 13 Sep 2020 15:59:23 +0900
branchstable
changeset 45503 bd5b2b29b82d
parent 45050 18f8d3b31baa
child 45361 47997afadf08
permissions -rw-r--r--
py3: fix formatting of LookupError for workingctx Spotted while writing broken tests for "hg grep -fr'wdir()'". basectx._fileinfo() raises ManifestLookupError(self._node, ..), but _node of the workingctx is None for historical reasons.

use clap::App;
use clap::AppSettings;
use clap::SubCommand;

mod commands;
mod error;
mod exitcode;
mod ui;
use commands::Command;

fn main() {
    let mut app = App::new("rhg")
        .setting(AppSettings::AllowInvalidUtf8)
        .setting(AppSettings::SubcommandRequired)
        .setting(AppSettings::VersionlessSubcommands)
        .version("0.0.1")
        .subcommand(
            SubCommand::with_name("root").about(commands::root::HELP_TEXT),
        );

    let matches = app.clone().get_matches_safe().unwrap_or_else(|_| {
        std::process::exit(exitcode::UNIMPLEMENTED_COMMAND)
    });

    let command_result = match matches.subcommand_name() {
        Some(name) => match name {
            "root" => commands::root::RootCommand::new().run(),
            _ => std::process::exit(exitcode::UNIMPLEMENTED_COMMAND),
        },
        _ => {
            match app.print_help() {
                Ok(_) => std::process::exit(exitcode::OK),
                Err(_) => std::process::exit(exitcode::ABORT),
            };
        }
    };

    match command_result {
        Ok(_) => std::process::exit(exitcode::OK),
        Err(e) => e.exit(),
    }
}