fabaccess-bffh/bffhd/resources/state/db.rs

85 lines
2.4 KiB
Rust
Raw Normal View History

2022-03-16 18:10:59 +01:00
use crate::db;
2022-05-05 15:50:44 +02:00
use crate::db::{AlignedAdapter, ArchivedValue, RawDB, DB};
use lmdb::{DatabaseFlags, Environment, EnvironmentFlags, Transaction, WriteFlags};
2022-03-16 18:10:59 +01:00
use std::{path::Path, sync::Arc};
2021-10-07 16:44:01 +02:00
2022-03-10 20:52:34 +01:00
use crate::resources::state::State;
2022-03-16 18:10:59 +01:00
#[derive(Debug, Clone)]
2021-10-07 16:44:01 +02:00
pub struct StateDB {
env: Arc<Environment>,
2022-03-16 18:10:59 +01:00
db: DB<AlignedAdapter<State>>,
}
impl StateDB {
2022-03-13 22:50:37 +01:00
pub fn open_env<P: AsRef<Path>>(path: P) -> lmdb::Result<Arc<Environment>> {
2021-10-07 16:44:01 +02:00
Environment::new()
2022-03-16 18:10:59 +01:00
.set_flags(
EnvironmentFlags::WRITE_MAP
| EnvironmentFlags::NO_SUB_DIR
| EnvironmentFlags::NO_TLS
| EnvironmentFlags::NO_READAHEAD,
)
2022-03-16 19:01:09 +01:00
.set_max_dbs(8)
2021-10-07 16:44:01 +02:00
.open(path.as_ref())
2022-03-13 22:50:37 +01:00
.map(Arc::new)
}
2022-03-16 18:10:59 +01:00
fn new(env: Arc<Environment>, db: RawDB) -> Self {
let db = DB::new(db);
Self { env, db }
}
pub fn open_with_env(env: Arc<Environment>) -> lmdb::Result<Self> {
let db = unsafe { RawDB::open(&env, Some("state"))? };
Ok(Self::new(env, db))
}
pub fn open<P: AsRef<Path>>(path: P) -> lmdb::Result<Self> {
2021-10-07 16:44:01 +02:00
let env = Self::open_env(path)?;
2022-03-16 18:10:59 +01:00
Self::open_with_env(env)
2021-10-07 16:44:01 +02:00
}
2022-03-13 22:50:37 +01:00
pub fn create_with_env(env: Arc<Environment>) -> lmdb::Result<Self> {
2021-10-20 18:37:50 +02:00
let flags = DatabaseFlags::empty();
2022-03-16 18:10:59 +01:00
let db = unsafe { RawDB::create(&env, Some("state"), flags)? };
2021-10-20 18:37:50 +02:00
2022-03-16 18:10:59 +01:00
Ok(Self::new(env, db))
2021-10-20 18:37:50 +02:00
}
2022-03-13 22:50:37 +01:00
pub fn create<P: AsRef<Path>>(path: P) -> lmdb::Result<Self> {
let env = Self::open_env(path)?;
Self::create_with_env(env)
}
2022-03-16 18:10:59 +01:00
pub fn begin_ro_txn(&self) -> Result<impl Transaction + '_, db::Error> {
self.env.begin_ro_txn()
}
2022-03-16 18:10:59 +01:00
pub fn get(&self, key: impl AsRef<[u8]>) -> Result<Option<ArchivedValue<State>>, db::Error> {
let txn = self.env.begin_ro_txn()?;
self.db.get(&txn, &key.as_ref())
}
2022-03-16 18:10:59 +01:00
pub fn get_all<'txn, T: Transaction>(
&self,
txn: &'txn T,
2022-05-05 15:50:44 +02:00
) -> Result<impl IntoIterator<Item = (&'txn [u8], ArchivedValue<State>)>, db::Error> {
2022-03-16 18:10:59 +01:00
self.db.get_all(txn)
}
2022-03-16 18:10:59 +01:00
pub fn put(&self, key: &impl AsRef<[u8]>, val: &ArchivedValue<State>) -> Result<(), db::Error> {
let mut txn = self.env.begin_rw_txn()?;
let flags = WriteFlags::empty();
self.db.put(&mut txn, key, val, flags)?;
txn.commit()
}
}
2021-10-18 11:27:42 +02:00
#[cfg(test)]
mod tests {
use super::*;
2021-10-18 11:27:42 +02:00
use std::ops::Deref;
}