// Copyright 2015-2020 Parity Technologies (UK) Ltd. // This file is part of OpenEthereum. // OpenEthereum 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. // OpenEthereum 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 OpenEthereum. If not, see . use api::TransactionStats; use ethereum_types::{H256, H512}; use fastmap::H256FastMap; use std::{ collections::{HashMap, HashSet}, hash::BuildHasher, }; use types::BlockNumber; type NodeId = H512; #[derive(Debug, PartialEq, Clone)] pub struct Stats { first_seen: BlockNumber, propagated_to: HashMap, } impl Stats { pub fn new(number: BlockNumber) -> Self { Stats { first_seen: number, propagated_to: Default::default(), } } } impl<'a> From<&'a Stats> for TransactionStats { fn from(other: &'a Stats) -> Self { TransactionStats { first_seen: other.first_seen, propagated_to: other .propagated_to .iter() .map(|(hash, size)| (*hash, *size)) .collect(), } } } #[derive(Debug, Default)] pub struct TransactionsStats { pending_transactions: H256FastMap, } impl TransactionsStats { /// Increases number of propagations to given `enodeid`. pub fn propagated( &mut self, hash: &H256, enode_id: Option, current_block_num: BlockNumber, ) { let enode_id = enode_id.unwrap_or_default(); let stats = self .pending_transactions .entry(*hash) .or_insert_with(|| Stats::new(current_block_num)); let count = stats.propagated_to.entry(enode_id).or_insert(0); *count = count.saturating_add(1); } /// Returns propagation stats for given hash or `None` if hash is not known. #[cfg(test)] pub fn get(&self, hash: &H256) -> Option<&Stats> { self.pending_transactions.get(hash) } pub fn stats(&self) -> &H256FastMap { &self.pending_transactions } /// Retains only transactions present in given `HashSet`. pub fn retain(&mut self, hashes: &HashSet) { let to_remove = self .pending_transactions .keys() .filter(|hash| !hashes.contains(hash)) .cloned() .collect::>(); for hash in to_remove { self.pending_transactions.remove(&hash); } } } #[cfg(test)] mod tests { use super::{Stats, TransactionsStats}; use std::collections::{HashMap, HashSet}; #[test] fn should_keep_track_of_propagations() { // given let mut stats = TransactionsStats::default(); let hash = 5.into(); let enodeid1 = 2.into(); let enodeid2 = 5.into(); // when stats.propagated(&hash, Some(enodeid1), 5); stats.propagated(&hash, Some(enodeid1), 10); stats.propagated(&hash, Some(enodeid2), 15); // then let stats = stats.get(&hash); assert_eq!( stats, Some(&Stats { first_seen: 5, propagated_to: hash_map![ enodeid1 => 2, enodeid2 => 1 ], }) ); } #[test] fn should_remove_hash_from_tracking() { // given let mut stats = TransactionsStats::default(); let hash = 5.into(); let enodeid1 = 5.into(); stats.propagated(&hash, Some(enodeid1), 10); // when stats.retain(&HashSet::new()); // then let stats = stats.get(&hash); assert_eq!(stats, None); } }