2016-04-21 13:57:27 +02: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-07-11 17:02:42 +02:00
|
|
|
use std::sync::Arc;
|
2016-09-03 10:31:29 +02:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
2016-04-21 13:57:27 +02:00
|
|
|
use ethcore::client::Client;
|
2016-07-11 17:02:42 +02:00
|
|
|
use ethcore::service::ClientIoMessage;
|
2016-07-16 15:51:06 +02:00
|
|
|
use ethsync::{SyncProvider, ManageNetwork};
|
2016-06-20 00:10:34 +02:00
|
|
|
use ethcore::account_provider::AccountProvider;
|
2016-08-05 10:32:04 +02:00
|
|
|
use io::{TimerToken, IoHandler, IoContext};
|
2016-04-21 13:57:27 +02:00
|
|
|
|
|
|
|
use informant::Informant;
|
|
|
|
|
|
|
|
const INFO_TIMER: TimerToken = 0;
|
|
|
|
|
|
|
|
pub struct ClientIoHandler {
|
|
|
|
pub client: Arc<Client>,
|
2016-07-16 15:51:06 +02:00
|
|
|
pub sync: Arc<SyncProvider>,
|
|
|
|
pub net: Arc<ManageNetwork>,
|
2016-06-20 00:10:34 +02:00
|
|
|
pub accounts: Arc<AccountProvider>,
|
2016-07-20 12:36:20 +02:00
|
|
|
pub info: Arc<Informant>,
|
2016-09-03 10:31:29 +02:00
|
|
|
pub shutdown: Arc<AtomicBool>
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
impl IoHandler<ClientIoMessage> for ClientIoHandler {
|
|
|
|
fn initialize(&self, io: &IoContext<ClientIoMessage>) {
|
2016-04-21 13:57:27 +02:00
|
|
|
io.register_timer(INFO_TIMER, 5000).expect("Error registering timer");
|
|
|
|
}
|
|
|
|
|
2016-07-11 17:02:42 +02:00
|
|
|
fn timeout(&self, _io: &IoContext<ClientIoMessage>, timer: TimerToken) {
|
2016-09-03 10:31:29 +02:00
|
|
|
if timer == INFO_TIMER && !self.shutdown.load(Ordering::SeqCst) {
|
2016-07-20 12:36:20 +02:00
|
|
|
self.info.tick();
|
2016-06-17 12:58:28 +02:00
|
|
|
}
|
|
|
|
}
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
2016-09-11 14:04:56 +02:00
|
|
|
|
|
|
|
pub struct ImportIoHandler {
|
|
|
|
pub info: Arc<Informant>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IoHandler<ClientIoMessage> for ImportIoHandler {
|
|
|
|
fn initialize(&self, io: &IoContext<ClientIoMessage>) {
|
|
|
|
io.register_timer(INFO_TIMER, 5000).expect("Error registering timer");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn timeout(&self, _io: &IoContext<ClientIoMessage>, timer: TimerToken) {
|
|
|
|
if let INFO_TIMER = timer {
|
|
|
|
self.info.tick()
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 18:16:00 +02:00
|
|
|
}
|