2016-01-13 23:15:53 +01:00
|
|
|
use util::*;
|
|
|
|
use sync::*;
|
|
|
|
use spec::Spec;
|
|
|
|
use error::*;
|
|
|
|
use std::env;
|
|
|
|
use client::Client;
|
|
|
|
|
2016-01-15 01:03:29 +01:00
|
|
|
/// Client service setup. Creates and registers client and network services with the IO subsystem.
|
2016-01-13 23:15:53 +01:00
|
|
|
pub struct ClientService {
|
2016-01-16 13:30:27 +01:00
|
|
|
net_service: NetworkService<SyncMessage>,
|
|
|
|
client: Arc<RwLock<Client>>,
|
2016-01-13 23:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ClientService {
|
2016-01-15 01:03:29 +01:00
|
|
|
/// Start the service in a separate thread.
|
2016-01-13 23:15:53 +01:00
|
|
|
pub fn start(spec: Spec) -> Result<ClientService, Error> {
|
|
|
|
let mut net_service = try!(NetworkService::start());
|
2016-01-14 19:03:48 +01:00
|
|
|
info!("Starting {}", net_service.host_info());
|
2016-01-14 22:38:49 +01:00
|
|
|
info!("Configured for {} using {} engine", spec.name, spec.engine_name);
|
2016-01-14 19:03:48 +01:00
|
|
|
let mut dir = env::home_dir().unwrap();
|
|
|
|
dir.push(".parity");
|
|
|
|
dir.push(H64::from(spec.genesis_header().hash()).hex());
|
|
|
|
let client = Arc::new(RwLock::new(try!(Client::new(spec, &dir, net_service.io().channel()))));
|
2016-01-13 23:15:53 +01:00
|
|
|
EthSync::register(&mut net_service, client.clone());
|
2016-01-21 16:48:37 +01:00
|
|
|
let client_io = Arc::new(ClientIoHandler {
|
2016-01-16 13:30:27 +01:00
|
|
|
client: client.clone()
|
2016-01-13 23:15:53 +01:00
|
|
|
});
|
|
|
|
try!(net_service.io().register_handler(client_io));
|
|
|
|
|
|
|
|
Ok(ClientService {
|
2016-01-16 13:30:27 +01:00
|
|
|
net_service: net_service,
|
|
|
|
client: client,
|
2016-01-13 23:15:53 +01:00
|
|
|
})
|
|
|
|
}
|
2016-01-16 13:30:27 +01:00
|
|
|
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [arkpar] Please document me
|
2016-01-16 13:30:27 +01:00
|
|
|
pub fn io(&mut self) -> &mut IoService<NetSyncMessage> {
|
|
|
|
self.net_service.io()
|
|
|
|
}
|
|
|
|
|
2016-01-19 17:02:01 +01:00
|
|
|
/// TODO [arkpar] Please document me
|
2016-01-16 13:30:27 +01:00
|
|
|
pub fn client(&self) -> Arc<RwLock<Client>> {
|
|
|
|
self.client.clone()
|
|
|
|
}
|
2016-01-13 23:15:53 +01:00
|
|
|
}
|
|
|
|
|
2016-01-15 01:03:29 +01:00
|
|
|
/// IO interface for the Client handler
|
2016-01-13 23:15:53 +01:00
|
|
|
struct ClientIoHandler {
|
2016-01-14 19:03:48 +01:00
|
|
|
client: Arc<RwLock<Client>>
|
2016-01-13 23:15:53 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 17:21:51 +01:00
|
|
|
const CLIENT_TICK_TIMER: TimerToken = 0;
|
|
|
|
const CLIENT_TICK_MS: u64 = 5000;
|
|
|
|
|
2016-01-13 23:15:53 +01:00
|
|
|
impl IoHandler<NetSyncMessage> for ClientIoHandler {
|
2016-01-21 17:21:51 +01:00
|
|
|
fn initialize(&self, io: &IoContext<NetSyncMessage>) {
|
|
|
|
io.register_timer(CLIENT_TICK_TIMER, CLIENT_TICK_MS).expect("Error registering client timer");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn timeout(&self, _io: &IoContext<NetSyncMessage>, timer: TimerToken) {
|
|
|
|
if timer == CLIENT_TICK_TIMER {
|
|
|
|
self.client.read().unwrap().tick();
|
|
|
|
}
|
2016-01-16 18:30:27 +01:00
|
|
|
}
|
2016-01-13 23:15:53 +01:00
|
|
|
|
2016-01-21 16:48:37 +01:00
|
|
|
fn message(&self, _io: &IoContext<NetSyncMessage>, net_message: &NetSyncMessage) {
|
2016-01-13 23:15:53 +01:00
|
|
|
match net_message {
|
2016-01-21 16:48:37 +01:00
|
|
|
&UserMessage(ref message) => {
|
2016-01-13 23:15:53 +01:00
|
|
|
match message {
|
2016-01-21 16:48:37 +01:00
|
|
|
&SyncMessage::BlockVerified => {
|
2016-01-17 23:07:58 +01:00
|
|
|
self.client.write().unwrap().import_verified_blocks();
|
2016-01-13 23:15:53 +01:00
|
|
|
},
|
2016-01-15 01:03:29 +01:00
|
|
|
_ => {}, // ignore other messages
|
2016-01-13 23:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2016-01-15 01:03:29 +01:00
|
|
|
_ => {}, // ignore other messages
|
2016-01-13 23:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|