openethereum/src/memorydb.rs

197 lines
4.8 KiB
Rust
Raw Normal View History

2015-11-28 00:14:40 +01:00
//! Reference-counted memory-based HashDB implementation.
use hash::*;
use bytes::*;
use sha3::*;
use hashdb::*;
use std::mem;
2015-11-28 00:14:40 +01:00
use std::collections::HashMap;
#[derive(Debug,Clone)]
2015-11-28 01:38:36 +01:00
/// Reference-counted memory-based HashDB implementation.
///
/// Use `new()` to create a new database. Insert items with `insert()`, remove items
/// with `kill()`, check for existance with `exists()` and lookup a hash to derive
/// the data with `lookup()`. Clear with `clear()` and purge the portions of the data
/// that have no references with `purge()`.
///
/// # Example
/// ```rust
/// extern crate ethcore_util;
/// use ethcore_util::hashdb::*;
/// use ethcore_util::memorydb::*;
/// fn main() {
/// let mut m = MemoryDB::new();
/// let d = "Hello world!".as_bytes();
///
/// let k = m.insert(d);
/// assert!(m.exists(&k));
2015-11-28 03:08:57 +01:00
/// assert_eq!(m.lookup(&k).unwrap(), d);
2015-11-28 01:38:36 +01:00
///
/// m.insert(d);
/// assert!(m.exists(&k));
///
/// m.kill(&k);
/// assert!(m.exists(&k));
///
/// m.kill(&k);
/// assert!(!m.exists(&k));
///
2015-11-30 02:57:02 +01:00
/// m.kill(&k);
/// assert!(!m.exists(&k));
///
/// m.insert(d);
/// assert!(!m.exists(&k));
2015-11-28 01:38:36 +01:00
/// m.insert(d);
/// assert!(m.exists(&k));
2015-11-28 03:08:57 +01:00
/// assert_eq!(m.lookup(&k).unwrap(), d);
2015-11-28 01:38:36 +01:00
///
/// m.kill(&k);
/// assert!(!m.exists(&k));
/// }
/// ```
2015-11-28 00:14:40 +01:00
pub struct MemoryDB {
data: HashMap<H256, (Bytes, i32)>,
}
impl MemoryDB {
2015-11-28 01:12:59 +01:00
/// Create a new instance of the memory DB.
2015-11-28 00:14:40 +01:00
pub fn new() -> MemoryDB {
MemoryDB {
data: HashMap::new()
}
}
2015-11-28 01:12:59 +01:00
/// Clear all data from the database.
///
/// # Examples
/// ```rust
/// extern crate ethcore_util;
/// use ethcore_util::hashdb::*;
/// use ethcore_util::memorydb::*;
/// fn main() {
/// let mut m = MemoryDB::new();
/// let hello_bytes = "Hello world!".as_bytes();
/// let hash = m.insert(hello_bytes);
/// assert!(m.exists(&hash));
/// m.clear();
/// assert!(!m.exists(&hash));
/// }
/// ```
2015-11-28 00:14:40 +01:00
pub fn clear(&mut self) {
self.data.clear();
}
2015-11-28 01:12:59 +01:00
/// Purge all zero-referenced data from the database.
2015-11-28 00:14:40 +01:00
pub fn purge(&mut self) {
2015-11-28 01:12:59 +01:00
let empties: Vec<_> = self.data.iter()
.filter(|&(_, &(_, rc))| rc == 0)
.map(|(k, _)| k.clone())
.collect();
2015-11-28 00:14:40 +01:00
for empty in empties { self.data.remove(&empty); }
}
2015-11-28 03:08:57 +01:00
/// Grab the raw information associated with a key. Returns None if the key
2015-11-28 03:08:57 +01:00
/// doesn't exist.
///
/// Even when Some is returned, the data is only guaranteed to be useful
/// when the refs > 0.
pub fn raw(&self, key: &H256) -> Option<&(Bytes, i32)> {
self.data.get(key)
2015-11-28 03:08:57 +01:00
}
pub fn drain(&mut self) -> HashMap<H256, (Bytes, i32)> {
let mut data = HashMap::new();
mem::swap(&mut self.data, &mut data);
data
2015-11-28 03:08:57 +01:00
}
2015-11-29 15:50:33 +01:00
pub fn denote(&self, key: &H256, value: Bytes) -> &(Bytes, i32) {
if self.data.get(&key) == None {
unsafe {
2015-11-29 16:00:23 +01:00
let p = &self.data as *const HashMap<H256, (Bytes, i32)> as *mut HashMap<H256, (Bytes, i32)>;
(*p).insert(key.clone(), (value, 0));
2015-11-29 15:50:33 +01:00
}
}
self.data.get(key).unwrap()
}
2015-11-28 00:14:40 +01:00
}
impl HashDB for MemoryDB {
2015-11-29 15:50:33 +01:00
fn lookup(&self, key: &H256) -> Option<&[u8]> {
2015-11-28 00:14:40 +01:00
match self.data.get(key) {
2015-11-29 15:50:33 +01:00
Some(&(ref d, rc)) if rc > 0 => Some(d),
2015-11-28 00:14:40 +01:00
_ => None
}
}
2015-12-04 18:05:59 +01:00
fn keys(&self) -> HashMap<H256, i32> {
self.data.iter().filter_map(|(k, v)| if v.1 != 0 {Some((k.clone(), v.1))} else {None}).collect::<HashMap<H256, i32>>()
}
2015-11-28 00:14:40 +01:00
fn exists(&self, key: &H256) -> bool {
match self.data.get(key) {
Some(&(_, x)) if x > 0 => true,
_ => false
}
}
fn insert(&mut self, value: &[u8]) -> H256 {
let key = value.sha3();
if match self.data.get_mut(&key) {
2015-11-30 02:57:02 +01:00
Some(&mut (ref mut old_value, ref mut rc @ -0x80000000i32 ... 0)) => {
2015-11-28 01:38:36 +01:00
*old_value = From::from(value.bytes());
2015-11-30 02:57:02 +01:00
*rc += 1;
2015-11-28 01:38:36 +01:00
false
},
2015-11-28 00:14:40 +01:00
Some(&mut (_, ref mut x)) => { *x += 1; false } ,
None => true,
}{ // ... None falls through into...
2015-11-28 01:38:36 +01:00
self.data.insert(key.clone(), (From::from(value.bytes()), 1));
2015-11-28 00:14:40 +01:00
}
key
}
2015-11-28 03:08:57 +01:00
2015-11-30 02:57:02 +01:00
fn emplace(&mut self, key: H256, value: Bytes) {
match self.data.get_mut(&key) {
Some(&mut (ref mut old_value, ref mut rc @ -0x80000000i32 ... 0)) => {
*old_value = value;
*rc += 1;
return;
},
Some(&mut (_, ref mut x)) => { *x += 1; return; } ,
None => {},
}
// ... None falls through into...
self.data.insert(key, (value, 1));
}
2015-11-28 00:14:40 +01:00
fn kill(&mut self, key: &H256) {
if match self.data.get_mut(key) {
Some(&mut (_, ref mut x)) => { *x -= 1; false }
None => true
}{ // ... None falls through into...
2015-11-28 01:38:36 +01:00
self.data.insert(key.clone(), (Bytes::new(), -1));
2015-11-28 00:14:40 +01:00
}
}
}
2015-11-29 15:50:33 +01:00
#[test]
fn memorydb_denote() {
let mut m = MemoryDB::new();
let hello_bytes = b"Hello world!";
let hash = m.insert(hello_bytes);
assert_eq!(m.lookup(&hash).unwrap(), b"Hello world!");
2015-11-29 16:00:23 +01:00
for _ in 0..1000 {
2015-11-29 15:50:33 +01:00
let r = H256::random();
let k = r.sha3();
let &(ref v, ref rc) = m.denote(&k, r.bytes().to_vec());
assert_eq!(v, &r.bytes());
assert_eq!(*rc, 0);
}
assert_eq!(m.lookup(&hash).unwrap(), b"Hello world!");
2015-12-01 16:39:44 +01:00
}