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-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-07-11 17:02:42 +02:00
|
|
|
use util::{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-04-21 13:57:27 +02:00
|
|
|
pub info: Informant,
|
|
|
|
}
|
|
|
|
|
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-06-20 15:20:55 +02:00
|
|
|
if let INFO_TIMER = timer {
|
2016-07-11 17:02:42 +02:00
|
|
|
let sync_status = self.sync.status();
|
2016-07-16 15:51:06 +02:00
|
|
|
let network_config = self.net.network_config();
|
2016-07-11 17:02:42 +02:00
|
|
|
self.info.tick(&self.client, Some((sync_status, network_config)));
|
2016-06-17 12:58:28 +02:00
|
|
|
}
|
|
|
|
}
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|