openethereum/ipc/hypervisor/src/service.rs.in

79 lines
2.4 KiB
Rust
Raw Normal View History

2016-04-13 18:03:57 +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/>.
use std::sync::{RwLock,Arc};
use ipc::IpcConfig;
use std::collections::HashMap;
2016-04-25 05:34:11 +02:00
use std::mem;
use ipc::binary::BinaryConvertError;
use std::collections::VecDeque;
2016-04-13 18:03:57 +02:00
2016-04-14 17:49:25 +02:00
pub type IpcModuleId = u64;
2016-04-13 18:03:57 +02:00
2016-04-14 20:50:35 +02:00
/// Blockhain database module id
pub const CLIENT_MODULE_ID: IpcModuleId = 2000;
2016-04-13 18:03:57 +02:00
/// Sync module id
pub const SYNC_MODULE_ID: IpcModuleId = 2100;
2016-04-14 20:50:35 +02:00
/// IPC service that handles module management
2016-04-13 18:03:57 +02:00
pub struct HypervisorService {
check_list: RwLock<HashMap<IpcModuleId, bool>>,
}
#[derive(Ipc)]
impl HypervisorService {
fn module_ready(&self, module_id: u64) -> bool {
let mut check_list = self.check_list.write().unwrap();
check_list.get_mut(&module_id).map(|mut status| *status = true);
check_list.iter().any(|(_, status)| !status)
}
}
impl HypervisorService {
2016-04-14 20:50:35 +02:00
/// New service with the default list of modules
2016-04-13 18:03:57 +02:00
pub fn new() -> Arc<HypervisorService> {
2016-07-15 19:50:17 +02:00
HypervisorService::with_modules(vec![])
2016-04-14 17:22:31 +02:00
}
2016-04-14 20:50:35 +02:00
/// New service with list of modules that will report for being ready
2016-04-14 17:49:25 +02:00
pub fn with_modules(module_ids: Vec<IpcModuleId>) -> Arc<HypervisorService> {
2016-04-13 18:03:57 +02:00
let mut check_list = HashMap::new();
2016-04-14 17:22:31 +02:00
for module_id in module_ids {
check_list.insert(module_id, false);
}
2016-04-13 18:03:57 +02:00
Arc::new(HypervisorService {
check_list: RwLock::new(check_list),
})
}
2016-04-14 17:22:31 +02:00
2016-07-15 19:50:17 +02:00
pub fn add_module(&self, module_id: IpcModuleId) {
self.check_list.write().unwrap().insert(module_id, false);
}
2016-04-14 20:50:35 +02:00
/// Number of modules still being waited for check-in
2016-04-14 17:22:31 +02:00
pub fn unchecked_count(&self) -> usize {
self.check_list.read().unwrap().iter().filter(|&(_, status)| !status).count()
}
2016-04-14 20:45:53 +02:00
2016-04-14 20:50:35 +02:00
/// List of all modules within this service
2016-04-14 20:45:53 +02:00
pub fn module_ids(&self) -> Vec<IpcModuleId> {
self.check_list.read().unwrap().iter().map(|(module_id, _)| module_id).cloned().collect()
}
2016-04-13 18:03:57 +02:00
}
2016-07-16 19:09:14 +02:00
impl ::ipc::IpcConfig<HypervisorService> for HypervisorService {}