emerald-cli 0.23.0

Console utility for secure account management
//! # CLI wrapper for `emerald-rs`

#![cfg(feature = "cli")]
#![cfg_attr(feature = "dev", feature(plugin))]
#![cfg_attr(feature = "dev", plugin(clippy))]

extern crate emerald_rs as emerald;
extern crate env_logger;
extern crate hex;
extern crate hyper;
extern crate jsonrpc_core;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate reqwest;
extern crate rpassword;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate url;
#[macro_use]
extern crate clap;

mod cmd;
mod indicator;
mod rpc;

use clap::App;
use env_logger::LogBuilder;
use log::LogRecord;
use std::env;
use std::process::*;

const VERSION: Option<&'static str> = option_env!("CARGO_PKG_VERSION");

/// Get the current Emerald version.
pub fn version() -> &'static str {
    VERSION.unwrap_or("unknown")
}

fn main() {
    let yaml = load_yaml!("../cli.yml");
    let matches = App::from_yaml(yaml).get_matches();

    match matches.occurrences_of("verbose") {
        0 => env::set_var("RUST_LOG", "error"),
        1 => env::set_var("RUST_LOG", "info"),
        2 | _ => env::set_var("RUST_LOG", "debug"),
    }

    let mut log_builder = LogBuilder::new();
    if env::var("RUST_LOG").is_ok() {
        log_builder.parse(&env::var("RUST_LOG").unwrap());
    }
    log_builder.format(|record: &LogRecord| format!("[{}]\t{}", record.level(), record.args()));
    log_builder.init().expect("Expect to initialize logger");

    if matches.is_present("version") {
        println!("v{}", version());
        exit(0);
    }

    match cmd::execute(&matches) {
        Ok(_) => exit(0),
        Err(e) => {
            error!("{}", e.to_string());
            exit(1)
        }
    };
}