2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-03-14 14:18:29 +01:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-03-14 14:18:29 +01:00
|
|
|
// 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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-03-14 14:18:29 +01:00
|
|
|
// 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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-14 14:18:29 +01:00
|
|
|
|
2018-01-11 17:49:10 +01:00
|
|
|
//! External Miner hashrate tracker.
|
|
|
|
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::{H256, U256};
|
2017-09-02 20:09:13 +02:00
|
|
|
use parking_lot::Mutex;
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
|
|
|
sync::Arc,
|
|
|
|
time::{Duration, Instant},
|
|
|
|
};
|
2016-03-14 14:18:29 +01:00
|
|
|
|
|
|
|
/// External miner interface.
|
|
|
|
pub trait ExternalMinerService: Send + Sync {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Submit hashrate for given miner.
|
|
|
|
fn submit_hashrate(&self, hashrate: U256, id: H256);
|
2016-03-14 14:18:29 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Total hashrate.
|
|
|
|
fn hashrate(&self) -> U256;
|
2016-03-14 14:18:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// External Miner.
|
|
|
|
pub struct ExternalMiner {
|
2020-08-05 06:08:03 +02:00
|
|
|
hashrates: Arc<Mutex<HashMap<H256, (Instant, U256)>>>,
|
2016-03-14 14:18:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for ExternalMiner {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn default() -> Self {
|
|
|
|
ExternalMiner {
|
|
|
|
hashrates: Arc::new(Mutex::new(HashMap::new())),
|
|
|
|
}
|
|
|
|
}
|
2016-04-21 17:32:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ExternalMiner {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Creates new external miner with prefilled hashrates.
|
|
|
|
pub fn new(hashrates: Arc<Mutex<HashMap<H256, (Instant, U256)>>>) -> Self {
|
|
|
|
ExternalMiner {
|
|
|
|
hashrates: hashrates,
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 14:18:29 +01:00
|
|
|
}
|
|
|
|
|
2018-04-02 10:47:56 +02:00
|
|
|
const ENTRY_TIMEOUT: Duration = Duration::from_secs(2);
|
2016-08-02 18:53:32 +02:00
|
|
|
|
2016-03-14 14:18:29 +01:00
|
|
|
impl ExternalMinerService for ExternalMiner {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn submit_hashrate(&self, hashrate: U256, id: H256) {
|
|
|
|
self.hashrates
|
|
|
|
.lock()
|
|
|
|
.insert(id, (Instant::now() + ENTRY_TIMEOUT, hashrate));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn hashrate(&self) -> U256 {
|
|
|
|
let mut hashrates = self.hashrates.lock();
|
|
|
|
let h = hashrates
|
|
|
|
.drain()
|
|
|
|
.filter(|&(_, (t, _))| t > Instant::now())
|
|
|
|
.collect();
|
|
|
|
*hashrates = h;
|
|
|
|
hashrates
|
|
|
|
.iter()
|
|
|
|
.fold(U256::from(0), |sum, (_, &(_, v))| sum + v)
|
|
|
|
}
|
2016-03-14 14:18:29 +01:00
|
|
|
}
|
2016-04-21 17:32:53 +02:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-08-05 06:08:03 +02:00
|
|
|
use super::*;
|
|
|
|
use ethereum_types::{H256, U256};
|
|
|
|
use std::{thread::sleep, time::Duration};
|
|
|
|
|
|
|
|
fn miner() -> ExternalMiner {
|
|
|
|
ExternalMiner::default()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn it_should_forget_old_hashrates() {
|
|
|
|
// given
|
|
|
|
let m = miner();
|
|
|
|
assert_eq!(m.hashrate(), U256::from(0));
|
|
|
|
m.submit_hashrate(U256::from(10), H256::from(1));
|
|
|
|
assert_eq!(m.hashrate(), U256::from(10));
|
|
|
|
|
|
|
|
// when
|
|
|
|
sleep(Duration::from_secs(3));
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(m.hashrate(), U256::from(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_sum_up_hashrate() {
|
|
|
|
// given
|
|
|
|
let m = miner();
|
|
|
|
assert_eq!(m.hashrate(), U256::from(0));
|
|
|
|
m.submit_hashrate(U256::from(10), H256::from(1));
|
|
|
|
assert_eq!(m.hashrate(), U256::from(10));
|
|
|
|
|
|
|
|
// when
|
|
|
|
m.submit_hashrate(U256::from(15), H256::from(1));
|
|
|
|
m.submit_hashrate(U256::from(20), H256::from(2));
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert_eq!(m.hashrate(), U256::from(35));
|
|
|
|
}
|
2016-04-21 17:32:53 +02:00
|
|
|
}
|