aboutsummaryrefslogtreecommitdiff
path: root/database/src/backends/mod.rs
blob: a95b00aeb8e5d0684031df9e5d250122d41d917c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2025 metamuffin <metamuffin.org>
*/

pub mod memory;
pub mod redb;
pub mod rocksdb;

use crate::backends::{memory::Memory, redb::Redb, rocksdb::Rocksdb};
use anyhow::{Result, bail};
use std::{path::Path, sync::Arc};

pub type WriteTxnFunction = dyn FnMut(&mut dyn WriteTransaction) -> Result<()>;
pub type ReadTxnFunction = dyn FnMut(&dyn ReadTransaction) -> Result<()>;

pub trait Db {
    fn write_transaction(&self, f: &mut WriteTxnFunction) -> Result<()>;
    fn read_transaction(&self, f: &mut ReadTxnFunction) -> Result<()>;
}
pub trait WriteTransaction: ReadTransaction {
    fn set(&mut self, key: &[u8], value: &[u8]) -> Result<()>;
    fn del(&mut self, key: &[u8]) -> Result<()>;
}
pub trait ReadTransaction {
    fn get(&self, key: &[u8]) -> Result<Option<Vec<u8>>>;
    fn next(&self, key: &[u8]) -> Result<Option<Vec<u8>>>;
    fn prev(&self, key: &[u8]) -> Result<Option<Vec<u8>>>;
}

pub fn create_backend(driver: &str, path: &Path) -> Result<Arc<dyn Db>> {
    Ok(match driver {
        "rocksdb" => Arc::new(Rocksdb::new(path)?),
        "redb" => Arc::new(Redb::new(path)?),
        "memory" => Arc::new(Memory::new()),
        _ => bail!("unknown db driver"),
    })
}