2019-02-01 04:59:12 +00:00
|
|
|
use parking_lot::{RwLock, RwLockReadGuard};
|
2019-01-24 06:05:48 +00:00
|
|
|
use std::collections::HashSet;
|
2019-01-25 02:05:11 +00:00
|
|
|
use types::Hash256;
|
2019-01-24 06:05:48 +00:00
|
|
|
|
2019-02-01 04:59:12 +00:00
|
|
|
/// Maintains a view of the block DAG, also known as the "blockchain" (except, it tracks multiple
|
|
|
|
/// chains eminating from a single root instead of just the head of some canonical chain).
|
|
|
|
///
|
|
|
|
/// The BlockGraph does not store the blocks, instead it tracks the block hashes of blocks at the
|
|
|
|
/// tip of the DAG. It is out of the scope of the object to retrieve blocks.
|
|
|
|
///
|
|
|
|
/// Presently, the DAG root (genesis block) is not tracked.
|
|
|
|
///
|
|
|
|
/// The BlogGraph is thread-safe due to internal RwLocks.
|
2019-01-24 06:05:48 +00:00
|
|
|
pub struct BlockGraph {
|
|
|
|
pub leaves: RwLock<HashSet<Hash256>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BlockGraph {
|
2019-02-01 04:59:12 +00:00
|
|
|
/// Create a new block graph without any leaves.
|
2019-01-24 06:05:48 +00:00
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
leaves: RwLock::new(HashSet::new()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/// Add a new leaf to the block hash graph. Returns `true` if the leaf was built upon another
|
|
|
|
/// leaf.
|
|
|
|
pub fn add_leaf(&self, parent: &Hash256, leaf: Hash256) -> bool {
|
2019-02-01 04:59:12 +00:00
|
|
|
let mut leaves = self.leaves.write();
|
2019-01-24 06:05:48 +00:00
|
|
|
|
|
|
|
if leaves.contains(parent) {
|
|
|
|
leaves.remove(parent);
|
|
|
|
leaves.insert(leaf);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
leaves.insert(leaf);
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-01 04:59:12 +00:00
|
|
|
/// Returns a read-guarded HashSet of all leaf blocks.
|
2019-01-24 06:05:48 +00:00
|
|
|
pub fn leaves(&self) -> RwLockReadGuard<HashSet<Hash256>> {
|
2019-02-01 04:59:12 +00:00
|
|
|
self.leaves.read()
|
2019-01-24 06:05:48 +00:00
|
|
|
}
|
|
|
|
}
|