2020-06-16 01:34:04 +00:00
|
|
|
use super::{Error, ItemStore, KeyValueStore, KeyValueStoreOp};
|
2019-05-20 08:01:51 +00:00
|
|
|
use parking_lot::RwLock;
|
|
|
|
use std::collections::HashMap;
|
2019-12-06 07:52:11 +00:00
|
|
|
use std::marker::PhantomData;
|
2019-11-26 23:54:46 +00:00
|
|
|
use types::*;
|
2019-02-14 01:09:18 +00:00
|
|
|
|
|
|
|
type DBHashMap = HashMap<Vec<u8>, Vec<u8>>;
|
|
|
|
|
2019-05-21 08:49:24 +00:00
|
|
|
/// A thread-safe `HashMap` wrapper.
|
2019-12-06 07:52:11 +00:00
|
|
|
pub struct MemoryStore<E: EthSpec> {
|
2019-11-26 23:54:46 +00:00
|
|
|
db: RwLock<DBHashMap>,
|
2019-12-06 07:52:11 +00:00
|
|
|
_phantom: PhantomData<E>,
|
2019-11-26 23:54:46 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 07:52:11 +00:00
|
|
|
impl<E: EthSpec> Clone for MemoryStore<E> {
|
2019-11-26 23:54:46 +00:00
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self {
|
|
|
|
db: RwLock::new(self.db.read().clone()),
|
2019-12-06 07:52:11 +00:00
|
|
|
_phantom: PhantomData,
|
2019-11-26 23:54:46 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 07:52:11 +00:00
|
|
|
impl<E: EthSpec> MemoryStore<E> {
|
2019-05-21 08:49:24 +00:00
|
|
|
/// Create a new, empty database.
|
2019-02-14 01:09:18 +00:00
|
|
|
pub fn open() -> Self {
|
|
|
|
Self {
|
2019-11-26 23:54:46 +00:00
|
|
|
db: RwLock::new(HashMap::new()),
|
2019-12-06 07:52:11 +00:00
|
|
|
_phantom: PhantomData,
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_key_for_col(col: &str, key: &[u8]) -> Vec<u8> {
|
2019-05-20 08:01:51 +00:00
|
|
|
let mut col = col.as_bytes().to_vec();
|
|
|
|
col.append(&mut key.to_vec());
|
|
|
|
col
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-31 22:13:49 +00:00
|
|
|
impl<E: EthSpec> KeyValueStore<E> for MemoryStore<E> {
|
2019-02-14 01:09:18 +00:00
|
|
|
/// Get the value of some key from the database. Returns `None` if the key does not exist.
|
2019-05-21 08:49:24 +00:00
|
|
|
fn get_bytes(&self, col: &str, key: &[u8]) -> Result<Option<Vec<u8>>, Error> {
|
2019-12-06 07:52:11 +00:00
|
|
|
let column_key = Self::get_key_for_col(col, key);
|
2020-01-21 07:38:56 +00:00
|
|
|
Ok(self.db.read().get(&column_key).cloned())
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Puts a key in the database.
|
2019-05-20 08:01:51 +00:00
|
|
|
fn put_bytes(&self, col: &str, key: &[u8], val: &[u8]) -> Result<(), Error> {
|
2019-12-06 07:52:11 +00:00
|
|
|
let column_key = Self::get_key_for_col(col, key);
|
2019-05-20 08:01:51 +00:00
|
|
|
self.db.write().insert(column_key, val.to_vec());
|
|
|
|
Ok(())
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Return true if some key exists in some column.
|
2019-05-20 08:01:51 +00:00
|
|
|
fn key_exists(&self, col: &str, key: &[u8]) -> Result<bool, Error> {
|
2019-12-06 07:52:11 +00:00
|
|
|
let column_key = Self::get_key_for_col(col, key);
|
2019-05-20 08:01:51 +00:00
|
|
|
Ok(self.db.read().contains_key(&column_key))
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Delete some key from the database.
|
2019-05-20 08:01:51 +00:00
|
|
|
fn key_delete(&self, col: &str, key: &[u8]) -> Result<(), Error> {
|
2019-12-06 07:52:11 +00:00
|
|
|
let column_key = Self::get_key_for_col(col, key);
|
2019-05-20 08:01:51 +00:00
|
|
|
self.db.write().remove(&column_key);
|
|
|
|
Ok(())
|
2019-02-14 01:09:18 +00:00
|
|
|
}
|
2019-11-26 23:54:46 +00:00
|
|
|
|
2020-06-16 01:34:04 +00:00
|
|
|
fn do_atomically(&self, batch: &[KeyValueStoreOp]) -> Result<(), Error> {
|
2020-05-16 03:23:32 +00:00
|
|
|
for op in batch {
|
|
|
|
match op {
|
2020-06-16 01:34:04 +00:00
|
|
|
KeyValueStoreOp::DeleteKey(hash) => {
|
|
|
|
self.db.write().remove(hash);
|
2020-05-16 03:23:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-05-31 22:13:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<E: EthSpec> ItemStore<E> for MemoryStore<E> {}
|