2015-12-22 22:19:50 +01:00
|
|
|
extern crate ethcore_util as util;
|
2016-01-07 16:08:12 +01:00
|
|
|
extern crate ethcore;
|
|
|
|
extern crate rustc_serialize;
|
2016-01-14 22:38:49 +01:00
|
|
|
extern crate log;
|
2016-01-09 23:21:57 +01:00
|
|
|
extern crate env_logger;
|
2016-01-22 00:11:19 +01:00
|
|
|
extern crate ctrlc;
|
2015-12-22 22:19:50 +01:00
|
|
|
|
2016-01-14 22:38:49 +01:00
|
|
|
use std::env;
|
2016-01-15 01:44:57 +01:00
|
|
|
use log::{LogLevelFilter};
|
2016-01-14 22:38:49 +01:00
|
|
|
use env_logger::LogBuilder;
|
2016-01-22 00:11:19 +01:00
|
|
|
use ctrlc::CtrlC;
|
2016-01-16 13:30:27 +01:00
|
|
|
use util::*;
|
|
|
|
use ethcore::client::*;
|
2016-01-21 23:33:52 +01:00
|
|
|
use ethcore::service::{ClientService, NetSyncMessage};
|
2016-01-09 18:50:45 +01:00
|
|
|
use ethcore::ethereum;
|
2016-01-18 23:23:32 +01:00
|
|
|
use ethcore::blockchain::CacheSize;
|
2016-01-22 04:54:38 +01:00
|
|
|
use ethcore::sync::EthSync;
|
2015-12-22 22:19:50 +01:00
|
|
|
|
2016-01-14 22:38:49 +01:00
|
|
|
fn setup_log() {
|
|
|
|
let mut builder = LogBuilder::new();
|
2016-01-15 01:44:57 +01:00
|
|
|
builder.filter(None, LogLevelFilter::Info);
|
2016-01-14 22:38:49 +01:00
|
|
|
|
|
|
|
if env::var("RUST_LOG").is_ok() {
|
|
|
|
builder.parse(&env::var("RUST_LOG").unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.init().unwrap();
|
|
|
|
}
|
|
|
|
|
2015-12-22 22:19:50 +01:00
|
|
|
fn main() {
|
2016-01-14 22:38:49 +01:00
|
|
|
setup_log();
|
2016-01-11 12:28:59 +01:00
|
|
|
let spec = ethereum::new_frontier();
|
2016-01-16 13:30:27 +01:00
|
|
|
let mut service = ClientService::start(spec).unwrap();
|
2016-01-22 04:54:38 +01:00
|
|
|
let io_handler = Arc::new(ClientIoHandler { client: service.client(), info: Default::default(), sync: service.sync() });
|
2016-01-16 13:30:27 +01:00
|
|
|
service.io().register_handler(io_handler).expect("Error registering IO handler");
|
2016-01-22 00:11:19 +01:00
|
|
|
|
|
|
|
let exit = Arc::new(Condvar::new());
|
|
|
|
let e = exit.clone();
|
|
|
|
CtrlC::set_handler(move || {
|
|
|
|
e.notify_all();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mutex = Mutex::new(());
|
|
|
|
let _ = exit.wait(mutex.lock().unwrap()).unwrap();
|
2015-12-22 22:19:50 +01:00
|
|
|
}
|
|
|
|
|
2016-01-18 23:23:32 +01:00
|
|
|
struct Informant {
|
2016-01-21 17:21:51 +01:00
|
|
|
chain_info: RwLock<Option<BlockChainInfo>>,
|
|
|
|
cache_info: RwLock<Option<CacheSize>>,
|
|
|
|
report: RwLock<Option<ClientReport>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Informant {
|
|
|
|
fn default() -> Self {
|
|
|
|
Informant {
|
|
|
|
chain_info: RwLock::new(None),
|
|
|
|
cache_info: RwLock::new(None),
|
|
|
|
report: RwLock::new(None),
|
|
|
|
}
|
|
|
|
}
|
2016-01-18 23:23:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Informant {
|
2016-01-22 04:54:38 +01:00
|
|
|
pub fn tick(&self, client: &Client, sync: &EthSync) {
|
2016-01-18 23:23:32 +01:00
|
|
|
// 5 seconds betwen calls. TODO: calculate this properly.
|
|
|
|
let dur = 5usize;
|
|
|
|
|
|
|
|
let chain_info = client.chain_info();
|
2016-01-22 04:54:38 +01:00
|
|
|
let queue_info = client.queue_info();
|
2016-01-18 23:23:32 +01:00
|
|
|
let cache_info = client.cache_info();
|
|
|
|
let report = client.report();
|
2016-01-22 04:54:38 +01:00
|
|
|
let sync_info = sync.status();
|
2016-01-18 23:23:32 +01:00
|
|
|
|
2016-01-21 17:21:51 +01:00
|
|
|
if let (_, &Some(ref last_cache_info), &Some(ref last_report)) = (self.chain_info.read().unwrap().deref(), self.cache_info.read().unwrap().deref(), self.report.read().unwrap().deref()) {
|
2016-01-22 04:54:38 +01:00
|
|
|
println!("[ {} {} ]---[ {} blk/s | {} tx/s | {} gas/s //··· {}/{} peers, {} downloaded, {} queued ···// {} ({}) bl {} ({}) ex ]",
|
2016-01-18 23:23:32 +01:00
|
|
|
chain_info.best_block_number,
|
|
|
|
chain_info.best_block_hash,
|
|
|
|
(report.blocks_imported - last_report.blocks_imported) / dur,
|
|
|
|
(report.transactions_applied - last_report.transactions_applied) / dur,
|
|
|
|
(report.gas_processed - last_report.gas_processed) / From::from(dur),
|
2016-01-22 04:54:38 +01:00
|
|
|
|
|
|
|
sync_info.num_active_peers,
|
|
|
|
sync_info.num_peers,
|
|
|
|
sync_info.blocks_received,
|
|
|
|
queue_info.queue_size,
|
|
|
|
|
2016-01-18 23:23:32 +01:00
|
|
|
cache_info.blocks,
|
|
|
|
cache_info.blocks as isize - last_cache_info.blocks as isize,
|
|
|
|
cache_info.block_details,
|
|
|
|
cache_info.block_details as isize - last_cache_info.block_details as isize
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-01-21 17:21:51 +01:00
|
|
|
*self.chain_info.write().unwrap().deref_mut() = Some(chain_info);
|
|
|
|
*self.cache_info.write().unwrap().deref_mut() = Some(cache_info);
|
|
|
|
*self.report.write().unwrap().deref_mut() = Some(report);
|
2016-01-18 23:23:32 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-16 13:30:27 +01:00
|
|
|
|
2016-01-21 17:21:51 +01:00
|
|
|
const INFO_TIMER: TimerToken = 0;
|
|
|
|
|
2016-01-16 13:30:27 +01:00
|
|
|
struct ClientIoHandler {
|
2016-01-21 23:33:52 +01:00
|
|
|
client: Arc<Client>,
|
2016-01-22 04:54:38 +01:00
|
|
|
sync: Arc<EthSync>,
|
2016-01-18 23:23:32 +01:00
|
|
|
info: Informant,
|
2016-01-16 13:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl IoHandler<NetSyncMessage> for ClientIoHandler {
|
2016-01-21 17:21:51 +01:00
|
|
|
fn initialize(&self, io: &IoContext<NetSyncMessage>) {
|
|
|
|
io.register_timer(INFO_TIMER, 5000).expect("Error registering timer");
|
2016-01-16 13:30:27 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 17:21:51 +01:00
|
|
|
fn timeout(&self, _io: &IoContext<NetSyncMessage>, timer: TimerToken) {
|
|
|
|
if INFO_TIMER == timer {
|
2016-01-22 04:54:38 +01:00
|
|
|
self.info.tick(&self.client, &self.sync);
|
2016-01-16 13:30:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|