2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-01-27 17:18:38 +01:00
|
|
|
//! Ethcore client application.
|
|
|
|
|
|
|
|
#![warn(missing_docs)]
|
2016-03-11 11:16:49 +01:00
|
|
|
#![cfg_attr(feature="dev", feature(plugin))]
|
|
|
|
#![cfg_attr(feature="dev", plugin(clippy))]
|
2016-04-06 10:07:24 +02:00
|
|
|
#![cfg_attr(feature="dev", allow(useless_format))]
|
2016-07-10 13:18:33 +02:00
|
|
|
#![cfg_attr(feature="dev", allow(match_bool))]
|
2016-04-21 13:12:43 +02:00
|
|
|
|
2016-01-23 23:53:20 +01:00
|
|
|
extern crate docopt;
|
2016-03-22 19:12:17 +01:00
|
|
|
extern crate num_cpus;
|
2016-01-23 23:53:20 +01:00
|
|
|
extern crate rustc_serialize;
|
2016-07-29 10:48:05 +02:00
|
|
|
extern crate ethcore_devtools as devtools;
|
2016-01-07 16:08:12 +01:00
|
|
|
extern crate ethcore;
|
2016-01-29 15:56:06 +01:00
|
|
|
extern crate ethsync;
|
2016-01-09 23:21:57 +01:00
|
|
|
extern crate env_logger;
|
2016-07-25 16:09:47 +02:00
|
|
|
extern crate ethcore_logger;
|
2016-01-22 00:11:19 +01:00
|
|
|
extern crate ctrlc;
|
2016-02-05 13:49:36 +01:00
|
|
|
extern crate fdlimit;
|
2016-02-23 20:14:37 +01:00
|
|
|
extern crate time;
|
2016-02-25 14:09:39 +01:00
|
|
|
extern crate number_prefix;
|
2016-03-09 14:11:15 +01:00
|
|
|
extern crate rpassword;
|
2016-04-10 15:12:20 +02:00
|
|
|
extern crate semver;
|
2016-08-05 10:32:04 +02:00
|
|
|
extern crate ethcore_io as io;
|
2016-04-13 18:03:57 +02:00
|
|
|
extern crate ethcore_ipc as ipc;
|
|
|
|
extern crate ethcore_ipc_nano as nanoipc;
|
2016-09-26 19:21:25 +02:00
|
|
|
extern crate serde;
|
|
|
|
extern crate serde_json;
|
2016-09-01 14:55:07 +02:00
|
|
|
extern crate rlp;
|
2016-11-20 22:40:23 +01:00
|
|
|
extern crate ethcore_hash_fetch as hash_fetch;
|
2016-09-01 14:55:07 +02:00
|
|
|
|
2016-05-04 15:37:09 +02:00
|
|
|
extern crate json_ipc_server as jsonipc;
|
2016-03-28 00:49:35 +02:00
|
|
|
|
2016-07-09 17:18:34 +02:00
|
|
|
extern crate ethcore_ipc_hypervisor as hypervisor;
|
2016-04-21 13:12:43 +02:00
|
|
|
extern crate ethcore_rpc;
|
|
|
|
|
2016-07-11 17:11:49 +02:00
|
|
|
extern crate ethcore_signer;
|
|
|
|
extern crate ansi_term;
|
2016-09-01 14:55:07 +02:00
|
|
|
|
2016-07-13 09:05:26 +02:00
|
|
|
extern crate regex;
|
2016-07-15 10:11:14 +02:00
|
|
|
extern crate isatty;
|
2016-09-10 11:37:14 +02:00
|
|
|
extern crate toml;
|
2016-07-11 17:11:49 +02:00
|
|
|
|
2016-09-01 14:55:07 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate ethcore_util as util;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate log as rlog;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate hyper; // for price_info.rs
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
2016-08-24 18:35:38 +02:00
|
|
|
#[cfg(feature="stratum")]
|
|
|
|
extern crate ethcore_stratum;
|
|
|
|
|
2016-05-26 18:21:15 +02:00
|
|
|
#[cfg(feature = "dapps")]
|
|
|
|
extern crate ethcore_dapps;
|
2016-01-20 04:19:38 +01:00
|
|
|
|
2016-08-24 18:35:38 +02:00
|
|
|
macro_rules! dependency {
|
|
|
|
($dep_ty:ident, $url:expr) => {
|
|
|
|
{
|
|
|
|
let dep = boot::dependency::<$dep_ty<_>>($url)
|
|
|
|
.unwrap_or_else(|e| panic!("Fatal: error connecting service ({:?})", e));
|
|
|
|
dep.handshake()
|
|
|
|
.unwrap_or_else(|e| panic!("Fatal: error in connected service ({:?})", e));
|
|
|
|
dep
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
mod cache;
|
2016-04-10 15:12:20 +02:00
|
|
|
mod upgrade;
|
2016-04-21 13:12:43 +02:00
|
|
|
mod rpc;
|
2016-05-26 18:21:15 +02:00
|
|
|
mod dapps;
|
2016-04-21 13:57:27 +02:00
|
|
|
mod informant;
|
|
|
|
mod io_handler;
|
2016-04-21 15:41:25 +02:00
|
|
|
mod cli;
|
2016-04-21 16:45:04 +02:00
|
|
|
mod configuration;
|
2016-05-26 18:24:51 +02:00
|
|
|
mod migration;
|
2016-05-27 13:03:00 +02:00
|
|
|
mod signer;
|
2016-06-01 19:37:34 +02:00
|
|
|
mod rpc_apis;
|
2016-06-14 16:12:46 +02:00
|
|
|
mod url;
|
2016-07-25 16:09:47 +02:00
|
|
|
mod helpers;
|
|
|
|
mod params;
|
|
|
|
mod deprecated;
|
|
|
|
mod dir;
|
2016-07-16 14:24:57 +02:00
|
|
|
mod modules;
|
2016-07-25 16:09:47 +02:00
|
|
|
mod account;
|
|
|
|
mod blockchain;
|
|
|
|
mod presale;
|
2016-09-06 15:31:13 +02:00
|
|
|
mod snapshot;
|
2016-07-25 16:09:47 +02:00
|
|
|
mod run;
|
2016-09-06 15:31:13 +02:00
|
|
|
#[cfg(feature="ipc")]
|
2016-07-26 00:21:08 +02:00
|
|
|
mod sync;
|
2016-09-06 15:31:13 +02:00
|
|
|
#[cfg(feature="ipc")]
|
2016-08-24 18:35:38 +02:00
|
|
|
mod boot;
|
2016-09-26 19:21:25 +02:00
|
|
|
mod user_defaults;
|
2016-08-24 18:35:38 +02:00
|
|
|
|
|
|
|
#[cfg(feature="stratum")]
|
|
|
|
mod stratum;
|
2016-04-21 16:45:04 +02:00
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
use std::{process, env};
|
2016-11-03 12:00:26 +01:00
|
|
|
use std::io::{self as stdio, BufReader, Write};
|
2016-09-23 15:28:09 +02:00
|
|
|
use std::fs::File;
|
|
|
|
use util::sha3::sha3;
|
2016-09-10 11:37:14 +02:00
|
|
|
use cli::Args;
|
2016-11-02 19:42:21 +01:00
|
|
|
use configuration::{Cmd, Execute, Configuration};
|
2016-07-25 16:09:47 +02:00
|
|
|
use deprecated::find_deprecated;
|
2016-11-02 19:42:21 +01:00
|
|
|
use ethcore_logger::setup_log;
|
2016-07-25 16:09:47 +02:00
|
|
|
|
2016-09-23 15:28:09 +02:00
|
|
|
fn print_hash_of(maybe_file: Option<String>) -> Result<String, String> {
|
|
|
|
if let Some(file) = maybe_file {
|
|
|
|
let mut f = BufReader::new(try!(File::open(&file).map_err(|_| "Unable to open file".to_owned())));
|
|
|
|
let hash = try!(sha3(&mut f).map_err(|_| "Unable to read from file".to_owned()));
|
|
|
|
Ok(hash.hex())
|
|
|
|
} else {
|
|
|
|
Err("Streaming from standard input not yet supported. Specify a file.".to_owned())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 19:42:21 +01:00
|
|
|
fn execute(command: Execute) -> Result<String, String> {
|
|
|
|
let logger = setup_log(&command.logger).expect("Logger is initialized only once; qed");
|
|
|
|
|
|
|
|
match command.cmd {
|
2016-07-25 16:09:47 +02:00
|
|
|
Cmd::Run(run_cmd) => {
|
2016-11-02 19:42:21 +01:00
|
|
|
try!(run::execute(run_cmd, logger));
|
2016-07-25 16:09:47 +02:00
|
|
|
Ok("".into())
|
2016-04-21 15:41:25 +02:00
|
|
|
},
|
2016-09-10 11:37:14 +02:00
|
|
|
Cmd::Version => Ok(Args::print_version()),
|
2016-09-23 15:28:09 +02:00
|
|
|
Cmd::Hash(maybe_file) => print_hash_of(maybe_file),
|
2016-07-25 16:09:47 +02:00
|
|
|
Cmd::Account(account_cmd) => account::execute(account_cmd),
|
|
|
|
Cmd::ImportPresaleWallet(presale_cmd) => presale::execute(presale_cmd),
|
|
|
|
Cmd::Blockchain(blockchain_cmd) => blockchain::execute(blockchain_cmd),
|
2016-11-02 19:42:21 +01:00
|
|
|
Cmd::SignerToken(signer_cmd) => signer::execute(signer_cmd),
|
2016-08-05 17:00:46 +02:00
|
|
|
Cmd::Snapshot(snapshot_cmd) => snapshot::execute(snapshot_cmd),
|
2016-05-26 18:24:51 +02:00
|
|
|
}
|
2016-04-21 15:41:25 +02:00
|
|
|
}
|
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
fn start() -> Result<String, String> {
|
2016-09-10 11:37:14 +02:00
|
|
|
let args: Vec<String> = env::args().collect();
|
|
|
|
let conf = Configuration::parse(&args).unwrap_or_else(|e| e.exit());
|
2016-04-21 15:41:25 +02:00
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
let deprecated = find_deprecated(&conf.args);
|
|
|
|
for d in deprecated {
|
|
|
|
println!("{}", d);
|
2016-06-14 16:12:46 +02:00
|
|
|
}
|
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
let cmd = try!(conf.into_command());
|
|
|
|
execute(cmd)
|
2016-05-23 18:42:59 +02:00
|
|
|
}
|
|
|
|
|
2016-08-24 18:35:38 +02:00
|
|
|
#[cfg(feature="stratum")]
|
|
|
|
mod stratum_optional {
|
|
|
|
pub fn probably_run() -> bool {
|
|
|
|
// just redirect to the stratum::main()
|
|
|
|
if ::std::env::args().nth(1).map_or(false, |arg| arg == "stratum") {
|
|
|
|
super::stratum::main();
|
|
|
|
true
|
|
|
|
}
|
|
|
|
else { false }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature="stratum"))]
|
|
|
|
mod stratum_optional {
|
|
|
|
pub fn probably_run() -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-06 15:31:13 +02:00
|
|
|
#[cfg(not(feature="ipc"))]
|
|
|
|
fn sync_main() -> bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature="ipc")]
|
|
|
|
fn sync_main() -> bool {
|
2016-07-26 00:21:08 +02:00
|
|
|
// just redirect to the sync::main()
|
2016-07-26 20:31:25 +02:00
|
|
|
if std::env::args().nth(1).map_or(false, |arg| arg == "sync") {
|
2016-07-26 00:21:08 +02:00
|
|
|
sync::main();
|
2016-09-06 15:31:13 +02:00
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-10-08 17:33:38 +02:00
|
|
|
// Always print backtrace on panic.
|
|
|
|
::std::env::set_var("RUST_BACKTRACE", "1");
|
2016-11-02 19:42:21 +01:00
|
|
|
|
2016-09-06 15:31:13 +02:00
|
|
|
if sync_main() {
|
2016-07-26 00:21:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-24 18:35:38 +02:00
|
|
|
if stratum_optional::probably_run() { return; }
|
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
match start() {
|
|
|
|
Ok(result) => {
|
2016-10-30 17:48:36 +01:00
|
|
|
info!("{}", result);
|
2016-05-24 20:29:19 +02:00
|
|
|
},
|
2016-07-25 16:09:47 +02:00
|
|
|
Err(err) => {
|
2016-11-03 12:00:26 +01:00
|
|
|
writeln!(&mut stdio::stderr(), "{}", err).expect("StdErr available; qed");
|
2016-07-25 16:09:47 +02:00
|
|
|
process::exit(1);
|
2016-05-24 20:29:19 +02:00
|
|
|
}
|
|
|
|
}
|
2016-06-07 17:21:19 +02:00
|
|
|
}
|