2016-03-24 22:07:01 +01: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;
|
2016-04-08 13:07:25 +02:00
|
|
|
use ipc::IpcConfig;
|
2016-03-24 22:07:01 +01:00
|
|
|
|
|
|
|
pub struct Service {
|
|
|
|
pub commits: RwLock<usize>,
|
|
|
|
pub rollbacks: RwLock<usize>,
|
|
|
|
}
|
|
|
|
|
2016-04-22 18:45:09 +02:00
|
|
|
#[derive(Binary)]
|
2016-04-13 02:46:36 +02:00
|
|
|
pub struct CustomData {
|
2016-04-22 18:45:09 +02:00
|
|
|
pub a: u64,
|
|
|
|
pub b: u64,
|
2016-04-13 02:46:36 +02:00
|
|
|
}
|
|
|
|
|
2016-10-04 18:20:16 +02:00
|
|
|
#[ipc]
|
2016-03-24 22:07:01 +01:00
|
|
|
impl Service {
|
|
|
|
fn commit(&self, f: u32) -> u32 {
|
|
|
|
let mut lock = self.commits.write().unwrap();
|
|
|
|
*lock = *lock + f as usize;
|
|
|
|
f
|
|
|
|
}
|
2016-07-05 10:11:09 +02:00
|
|
|
|
2016-03-30 01:20:01 +02:00
|
|
|
pub fn rollback(&self, a: Option<u32>, b: u32) -> i32 {
|
|
|
|
let a_0 = a.unwrap_or_else(|| 0);
|
2016-03-24 22:07:01 +01:00
|
|
|
let mut lock = self.rollbacks.write().unwrap();
|
2016-03-30 01:20:01 +02:00
|
|
|
*lock = *lock + a_0 as usize - b as usize;
|
|
|
|
(a_0 - b) as i32
|
2016-03-24 22:07:01 +01:00
|
|
|
}
|
2016-07-05 10:11:09 +02:00
|
|
|
|
2016-04-13 02:46:36 +02:00
|
|
|
pub fn push_custom(&self, data: CustomData) -> bool {
|
2016-04-13 11:09:47 +02:00
|
|
|
let mut clock = self.commits.write().unwrap();
|
|
|
|
let mut rlock = self.commits.write().unwrap();
|
2016-04-13 02:46:36 +02:00
|
|
|
|
2016-04-22 18:45:09 +02:00
|
|
|
*clock = data.a as usize;
|
|
|
|
*rlock = data.b as usize;
|
2016-04-13 02:46:36 +02:00
|
|
|
|
|
|
|
true
|
|
|
|
}
|
2016-07-05 10:11:09 +02:00
|
|
|
|
|
|
|
pub fn void(&self, a: u64) {
|
|
|
|
}
|
2016-03-24 22:07:01 +01:00
|
|
|
}
|
|
|
|
|
2016-03-29 21:40:38 +02:00
|
|
|
impl Service {
|
2016-03-24 22:07:01 +01:00
|
|
|
pub fn new() -> Service {
|
|
|
|
Service {
|
|
|
|
commits: RwLock::new(0usize),
|
|
|
|
rollbacks: RwLock::new(0usize),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-07 22:18:48 +02:00
|
|
|
|
2016-08-01 15:32:07 +02:00
|
|
|
impl ::ipc::IpcConfig for Service {}
|