emplace 0.3.10

Command-line tool to mirror installed software on multiple machines.
use crate::public_clap_app;
use anyhow::Result;
use std::{env, io};

pub fn init_main(shell_name: &str) -> Result<()> {
    let exe_path = env::current_exe()?
        .into_os_string()
        .into_string()
        .expect("Could not convert path to string");

    let (setup_script, shell) = match shell_name {
        "bash" => (BASH_INIT, Some(clap::Shell::Bash)),
        "zsh" => (ZSH_INIT, Some(clap::Shell::Zsh)),
        "fish" => (FISH_INIT, Some(clap::Shell::Fish)),
        "nu" => (NU_INIT, None),
        _ => panic!("Shell \"{}\" is not supported at the moment", shell_name),
    };

    println!(
        "{}",
        setup_script.replace("## EMPLACE ##", &format!("\"{}\"", exe_path))
    );

    // Print the completions
    if let Some(shell) = shell {
        public_clap_app().gen_completions_to("emplace", shell, &mut io::stdout());
    }

    Ok(())
}

const BASH_INIT: &str = r##"
emplace_postexec_invoke_exec () {
    # quit when the previous command failed
    [ -z "$!" ] && exit $?

    local hist=`history 1`

    local this_command=`HISTTIMEFORMAT= echo $hist | sed -e "s/^[ ]*[0-9]*[ ]*//"`;
    ## EMPLACE ## catch "$this_command"
}
PROMPT_COMMAND="emplace_postexec_invoke_exec;$PROMPT_COMMAND"
"##;

const ZSH_INIT: &str = r##"
emplace_precmd() {
    # quit when the previous command failed
    [ -z "$!" ] && exit

    local hist=`history -1`

    local this_command=`HISTTIMEFORMAT= echo $hist | sed -e "s/^[ ]*[0-9]*[ ]*//"`;
    ## EMPLACE ## catch "$this_command"
}
# Don't hook them double in nested shells
if [[ ${precmd_functions[(ie)emplace_precmd]} -gt ${#precmd_functions} ]]; then
    precmd_functions+=(emplace_precmd)
fi
"##;

const FISH_INIT: &str = r##"
function emplace_postcmd --on-event fish_postexec
    # quit when the previous command failed
    if test $status -gt 0
        return
    end

    ## EMPLACE ## catch "$argv"
end
"##;

const NU_INIT: &str = r##"
## EMPLACE ## catch $(history | last); echo >
"##;