rust/rhg/src/main.rs
author Antoine Cezar <antoine.cezar@octobus.net>
Mon, 20 Jul 2020 18:14:52 +0200
changeset 45361 47997afadf08
parent 45050 18f8d3b31baa
child 45365 26440adbe3e9
permissions -rw-r--r--
rhg: ask the error message from `CommandError` Avoid repeating the display of the same error messages in different commands. Differential Revision: https://phab.mercurial-scm.org/D8865

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 ui = ui::Ui::new();

    let command_result = match matches.subcommand_name() {
        Some(name) => match name {
            "root" => commands::root::RootCommand::new(&ui).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) => {
            let message = e.get_error_message_bytes();
            if let Some(msg) = message {
                match ui.write_stderr(&msg) {
                    Ok(_) => (),
                    Err(_) => std::process::exit(exitcode::ABORT),
                };
            };
            e.exit()
        }
    }
}