openethereum/src/hashdb.rs

86 lines
2.5 KiB
Rust
Raw Normal View History

2015-11-28 00:14:40 +01:00
use hash::*;
2015-11-30 02:57:02 +01:00
use bytes::*;
2015-11-28 00:14:40 +01:00
pub trait HashDB {
2015-11-28 01:38:36 +01:00
/// Look up a given hash into the bytes that hash to it, returning None if the
/// hash is not known.
///
/// # 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);
2015-11-28 03:08:57 +01:00
/// assert_eq!(m.lookup(&hash).unwrap(), hello_bytes);
2015-11-28 01:38:36 +01:00
/// }
/// ```
2015-11-29 15:50:33 +01:00
fn lookup(&self, key: &H256) -> Option<&[u8]>;
2015-11-28 01:38:36 +01:00
/// Check for the existance of a hash-key.
///
/// # Examples
/// ```rust
/// extern crate ethcore_util;
/// use ethcore_util::hashdb::*;
/// use ethcore_util::memorydb::*;
/// use ethcore_util::sha3::*;
/// fn main() {
/// let mut m = MemoryDB::new();
/// let hello_bytes = "Hello world!".as_bytes();
/// assert!(!m.exists(&hello_bytes.sha3()));
/// let key = m.insert(hello_bytes);
/// assert!(m.exists(&key));
/// m.kill(&key);
/// assert!(!m.exists(&key));
/// }
/// ```
2015-11-28 00:14:40 +01:00
fn exists(&self, key: &H256) -> bool;
2015-11-28 01:38:36 +01:00
/// Insert a datum item into the DB and return the datum's hash for a later lookup. Insertions
/// are counted and the equivalent number of `kill()`s must be performed before the data
/// is considered dead.
///
/// # Examples
/// ```rust
/// extern crate ethcore_util;
/// use ethcore_util::hashdb::*;
/// use ethcore_util::memorydb::*;
/// use ethcore_util::hash::*;
/// fn main() {
/// let mut m = MemoryDB::new();
/// let key = m.insert("Hello world!".as_bytes());
/// assert!(m.exists(&key));
/// }
/// ```
2015-11-28 00:14:40 +01:00
fn insert(&mut self, value: &[u8]) -> H256;
2015-11-28 01:38:36 +01:00
2015-11-30 02:57:02 +01:00
/// Like `insert()` , except you provide the key and the data is all moved.
fn emplace(&mut self, key: H256, value: Bytes);
2015-11-28 01:38:36 +01:00
/// Remove a datum previously inserted. Insertions can be "owed" such that the same number of `insert()`s may
/// happen without the data being eventually being inserted into the DB.
///
/// # Examples
/// ```rust
/// extern crate ethcore_util;
/// use ethcore_util::hashdb::*;
/// use ethcore_util::memorydb::*;
/// use ethcore_util::sha3::*;
/// fn main() {
/// let mut m = MemoryDB::new();
/// let d = "Hello world!".as_bytes();
/// let key = &d.sha3();
/// m.kill(key); // OK - we now owe an insertion.
/// assert!(!m.exists(key));
/// m.insert(d); // OK - now it's "empty" again.
/// assert!(!m.exists(key));
/// m.insert(d); // OK - now we've
2015-11-28 03:08:57 +01:00
/// assert_eq!(m.lookup(key).unwrap(), d);
2015-11-28 01:38:36 +01:00
/// }
/// ```
2015-11-28 00:14:40 +01:00
fn kill(&mut self, key: &H256);
}