Struct MemoryDB

Source
pub struct MemoryDB<H, KF, T, M = DefaultMemTracker<T>>
where H: KeyHasher, KF: KeyFunction<H>, M: MemTracker<T>,
{ /* private fields */ }
Expand description

Reference-counted memory-based HashDB implementation.

Use new() to create a new database. Insert items with insert(), remove items with remove(), check for existence with contains() and lookup a hash to derive the data with get(). Clear with clear() and purge the portions of the data that have no references with purge().

If you’re not using the MallocSizeOf implementation to track memory usage, set the M type parameter to NoopTracker.

§Example

  use tetsy_hash_db::{Hasher, HashDB, EMPTY_PREFIX};
  use tetsy_keccak_hasher::KeccakHasher;
  use tetsy_memory_db::{MemoryDB, HashKey};

  let mut m = MemoryDB::<KeccakHasher, HashKey<_>, Vec<u8>>::default();
  let d = "Hello world!".as_bytes();

  let k = m.insert(EMPTY_PREFIX, d);
  assert!(m.contains(&k, EMPTY_PREFIX));
  assert_eq!(m.get(&k, EMPTY_PREFIX).unwrap(), d);

  m.insert(EMPTY_PREFIX, d);
  assert!(m.contains(&k, EMPTY_PREFIX));

  m.remove(&k, EMPTY_PREFIX);
  assert!(m.contains(&k, EMPTY_PREFIX));

  m.remove(&k, EMPTY_PREFIX);
  assert!(!m.contains(&k, EMPTY_PREFIX));

  m.remove(&k, EMPTY_PREFIX);
  assert!(!m.contains(&k, EMPTY_PREFIX));

  m.insert(EMPTY_PREFIX, d);
  assert!(!m.contains(&k, EMPTY_PREFIX));
  m.insert(EMPTY_PREFIX, d);
  assert!(m.contains(&k, EMPTY_PREFIX));
  assert_eq!(m.get(&k, EMPTY_PREFIX).unwrap(), d);

  m.remove(&k, EMPTY_PREFIX);
  assert!(!m.contains(&k, EMPTY_PREFIX));

Implementations§

Source§

impl<H, KF, T, M> MemoryDB<H, KF, T, M>
where H: KeyHasher, T: Default, KF: KeyFunction<H>, M: MemTracker<T>,

Create a new MemoryDB from a given null key/data

Source

pub fn remove_and_purge( &mut self, key: &<H as KeyHasher>::Out, prefix: Prefix<'_>, ) -> Option<T>

Remove an element and delete it from storage if reference count reaches zero. If the value was purged, return the old value.

Source

pub fn shrink_to_fit(&mut self)

Shrinks the capacity of the map as much as possible. It will drop down as much as possible while maintaining the internal rules and possibly leaving some space in accordance with the resize policy.

Source§

impl<'a, H, KF, T, M> MemoryDB<H, KF, T, M>
where H: KeyHasher, T: From<&'a [u8]>, KF: KeyFunction<H>, M: MemTracker<T> + Default,

Source

pub fn from_null_node(null_key: &'a [u8], null_node_data: T) -> Self

Create a new MemoryDB from a given null key/data

Source

pub fn new(data: &'a [u8]) -> Self

Create a new instance of Self.

Source

pub fn default_with_root() -> (Self, H::Out)

Create a new default instance of Self and returns Self and the root hash.

Source

pub fn clear(&mut self)

Clear all data from the database.

§Examples
extern crate tetsy_hash_db;
extern crate tetsy_keccak_hasher;
extern crate tetsy_memory_db;

use tetsy_hash_db::{Hasher, HashDB, EMPTY_PREFIX};
use tetsy_keccak_hasher::KeccakHasher;
use tetsy_memory_db::{MemoryDB, HashKey};

fn main() {
  let mut m = MemoryDB::<KeccakHasher, HashKey<_>, Vec<u8>>::default();
  let hello_bytes = "Hello world!".as_bytes();
  let hash = m.insert(EMPTY_PREFIX, hello_bytes);
  assert!(m.contains(&hash, EMPTY_PREFIX));
  m.clear();
  assert!(!m.contains(&hash, EMPTY_PREFIX));
}
Source

pub fn purge(&mut self)

Purge all zero-referenced data from the database.

Source

pub fn drain(&mut self) -> HashMap<KF::Key, (T, i32)>

Return the internal key-value HashMap, clearing the current state.

Source

pub fn raw( &self, key: &<H as KeyHasher>::Out, prefix: Prefix<'_>, ) -> Option<(&T, i32)>

Grab the raw information associated with a key. Returns None if the key doesn’t exist.

Even when Some is returned, the data is only guaranteed to be useful when the refs > 0.

Source

pub fn consolidate(&mut self, other: Self)

Consolidate all the entries of other into self.

Source

pub fn keys(&self) -> HashMap<KF::Key, i32>

Get the keys in the database together with number of underlying references.

Trait Implementations§

Source§

impl<H, KF, T, M> AsHashDB<H, T> for MemoryDB<H, KF, T, M>
where H: KeyHasher, T: Default + PartialEq<T> + for<'a> From<&'a [u8]> + Clone + Send + Sync, KF: KeyFunction<H> + Send + Sync, M: MemTracker<T> + Send + Sync,

Source§

fn as_hash_db(&self) -> &dyn HashDB<H, T>

Perform upcast to HashDB for anything that derives from HashDB.
Source§

fn as_hash_db_mut(&mut self) -> &mut dyn HashDB<H, T>

Perform mutable upcast to HashDB for anything that derives from HashDB.
Source§

impl<H, KF, T, M> AsPlainDB<<H as Hasher>::Out, T> for MemoryDB<H, KF, T, M>
where H: KeyHasher, T: Default + PartialEq<T> + for<'a> From<&'a [u8]> + Clone + Send + Sync, KF: KeyFunction<H> + Send + Sync, KF::Key: Borrow<[u8]> + for<'a> From<&'a [u8]>, M: MemTracker<T> + Send + Sync,

Source§

fn as_plain_db(&self) -> &dyn PlainDB<H::Out, T>

Perform upcast to PlainDB for anything that derives from PlainDB.
Source§

fn as_plain_db_mut(&mut self) -> &mut dyn PlainDB<H::Out, T>

Perform mutable upcast to PlainDB for anything that derives from PlainDB.
Source§

impl<H, KF, T, M> Clone for MemoryDB<H, KF, T, M>
where H: KeyHasher, KF: KeyFunction<H>, T: Clone, M: MemTracker<T> + Copy,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, H, KF, T, M> Default for MemoryDB<H, KF, T, M>
where H: KeyHasher, T: From<&'a [u8]>, KF: KeyFunction<H>, M: MemTracker<T> + Default,

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<H, KF, T, M> HashDB<H, T> for MemoryDB<H, KF, T, M>
where H: KeyHasher, T: Default + PartialEq<T> + for<'a> From<&'a [u8]> + Clone + Send + Sync, KF: Send + Sync + KeyFunction<H>, M: MemTracker<T> + Send + Sync,

Source§

fn get(&self, key: &H::Out, prefix: Prefix<'_>) -> Option<T>

Look up a given hash into the bytes that hash to it, returning None if the hash is not known.
Source§

fn contains(&self, key: &H::Out, prefix: Prefix<'_>) -> bool

Check for the existence of a hash-key.
Source§

fn emplace(&mut self, key: H::Out, prefix: Prefix<'_>, value: T)

Like insert(), except you provide the key and the data is all moved.
Source§

fn insert(&mut self, prefix: Prefix<'_>, value: &[u8]) -> H::Out

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 remove()s must be performed before the data is considered dead.
Source§

fn remove(&mut self, key: &H::Out, prefix: Prefix<'_>)

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. It can be “owed” more than once.
Source§

impl<H, KF, T, M> HashDBRef<H, T> for MemoryDB<H, KF, T, M>
where H: KeyHasher, T: Default + PartialEq<T> + for<'a> From<&'a [u8]> + Clone + Send + Sync, KF: KeyFunction<H> + Send + Sync, M: MemTracker<T> + Send + Sync,

Source§

fn get(&self, key: &H::Out, prefix: Prefix<'_>) -> Option<T>

Look up a given hash into the bytes that hash to it, returning None if the hash is not known.
Source§

fn contains(&self, key: &H::Out, prefix: Prefix<'_>) -> bool

Check for the existance of a hash-key.
Source§

impl<H, KF, T, M> MallocSizeOf for MemoryDB<H, KF, T, M>

Source§

fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize

Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself. If T::size_of is a constant, consider implementing constant_size as well.
Source§

fn constant_size() -> Option<usize>
where Self: Sized,

Used to optimize MallocSizeOf implementation for collections like Vec and HashMap to avoid iterating over them unnecessarily. The Self: Sized bound is for object safety.
Source§

impl<H, KF, T, M> PartialEq for MemoryDB<H, KF, T, M>
where H: KeyHasher, KF: KeyFunction<H>, <KF as KeyFunction<H>>::Key: Eq + MaybeDebug, T: Eq + MaybeDebug, M: MemTracker<T> + PartialEq,

Source§

fn eq(&self, other: &MemoryDB<H, KF, T, M>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<H, KF, T, M> PlainDB<<H as Hasher>::Out, T> for MemoryDB<H, KF, T, M>
where H: KeyHasher, T: Default + PartialEq<T> + for<'a> From<&'a [u8]> + Clone + Send + Sync, KF: Send + Sync + KeyFunction<H>, KF::Key: Borrow<[u8]> + for<'a> From<&'a [u8]>, M: MemTracker<T> + Send + Sync,

Source§

fn get(&self, key: &H::Out) -> Option<T>

Look up a given hash into the bytes that hash to it, returning None if the hash is not known.
Source§

fn contains(&self, key: &H::Out) -> bool

Check for the existence of a hash-key.
Source§

fn emplace(&mut self, key: H::Out, value: T)

Insert a datum item into the DB. Insertions are counted and the equivalent number of remove()s must be performed before the data is considered dead. The caller should ensure that a key only corresponds to one value.
Source§

fn remove(&mut self, key: &H::Out)

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. It can be “owed” more than once. The caller should ensure that a key only corresponds to one value.
Source§

impl<H, KF, T, M> PlainDBRef<<H as Hasher>::Out, T> for MemoryDB<H, KF, T, M>
where H: KeyHasher, T: Default + PartialEq<T> + for<'a> From<&'a [u8]> + Clone + Send + Sync, KF: Send + Sync + KeyFunction<H>, KF::Key: Borrow<[u8]> + for<'a> From<&'a [u8]>, M: MemTracker<T> + Send + Sync,

Source§

fn get(&self, key: &H::Out) -> Option<T>

Look up a given hash into the bytes that hash to it, returning None if the hash is not known.
Source§

fn contains(&self, key: &H::Out) -> bool

Check for the existance of a hash-key.
Source§

impl<H, KF, T, M> Eq for MemoryDB<H, KF, T, M>
where H: KeyHasher, KF: KeyFunction<H>, <KF as KeyFunction<H>>::Key: Eq + MaybeDebug, T: Eq + MaybeDebug, M: MemTracker<T> + Eq,

Auto Trait Implementations§

§

impl<H, KF, T, M> Freeze for MemoryDB<H, KF, T, M>
where M: Freeze, <H as Hasher>::Out: Freeze, T: Freeze,

§

impl<H, KF, T, M> RefUnwindSafe for MemoryDB<H, KF, T, M>

§

impl<H, KF, T, M> Send for MemoryDB<H, KF, T, M>
where M: Send, T: Send, KF: Send,

§

impl<H, KF, T, M> Sync for MemoryDB<H, KF, T, M>
where M: Sync, T: Sync, KF: Sync,

§

impl<H, KF, T, M> Unpin for MemoryDB<H, KF, T, M>
where M: Unpin, <H as Hasher>::Out: Unpin, T: Unpin, KF: Unpin, <KF as KeyFunction<H>>::Key: Unpin,

§

impl<H, KF, T, M> UnwindSafe for MemoryDB<H, KF, T, M>
where M: UnwindSafe, <H as Hasher>::Out: UnwindSafe, T: UnwindSafe, <KF as KeyFunction<H>>::Key: UnwindSafe, KF: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> MallocSizeOfExt for T
where T: MallocSizeOf,

Source§

fn malloc_size_of(&self) -> usize

Method to launch a heapsize measurement with a fresh state.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.