fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
4.3 KiB
140 lines
4.3 KiB
use std::ffi::CStr;
|
|
|
|
use libc::{self, c_char, c_void};
|
|
|
|
use crate::{
|
|
compaction_filter::{self, CompactionFilter},
|
|
ffi,
|
|
};
|
|
|
|
/// Each compaction will create a new CompactionFilter allowing the
|
|
/// application to know about different compactions.
|
|
///
|
|
/// See [compaction_filter::CompactionFilter][CompactionFilter] and
|
|
/// [Options::set_compaction_filter_factory][set_compaction_filter_factory]
|
|
/// for more details
|
|
///
|
|
/// [CompactionFilter]: ../compaction_filter/trait.CompactionFilter.html
|
|
/// [set_compaction_filter_factory]: ../struct.Options.html#method.set_compaction_filter_factory
|
|
pub trait CompactionFilterFactory {
|
|
type Filter: CompactionFilter;
|
|
|
|
/// Returns a CompactionFilter for the compaction process
|
|
fn create(&mut self, context: CompactionFilterContext) -> Self::Filter;
|
|
|
|
/// Returns a name that identifies this compaction filter factory.
|
|
fn name(&self) -> &CStr;
|
|
}
|
|
|
|
pub unsafe extern "C" fn destructor_callback<F>(raw_self: *mut c_void)
|
|
where
|
|
F: CompactionFilterFactory,
|
|
{
|
|
drop(Box::from_raw(raw_self as *mut F));
|
|
}
|
|
|
|
pub unsafe extern "C" fn name_callback<F>(raw_self: *mut c_void) -> *const c_char
|
|
where
|
|
F: CompactionFilterFactory,
|
|
{
|
|
let self_ = &*(raw_self as *const c_void as *const F);
|
|
self_.name().as_ptr()
|
|
}
|
|
|
|
/// Context information of a compaction run
|
|
pub struct CompactionFilterContext {
|
|
/// Does this compaction run include all data files
|
|
pub is_full_compaction: bool,
|
|
/// Is this compaction requested by the client (true),
|
|
/// or is it occurring as an automatic compaction process
|
|
pub is_manual_compaction: bool,
|
|
}
|
|
|
|
impl CompactionFilterContext {
|
|
unsafe fn from_raw(ptr: *mut ffi::rocksdb_compactionfiltercontext_t) -> Self {
|
|
let is_full_compaction = ffi::rocksdb_compactionfiltercontext_is_full_compaction(ptr) != 0;
|
|
let is_manual_compaction =
|
|
ffi::rocksdb_compactionfiltercontext_is_manual_compaction(ptr) != 0;
|
|
|
|
Self {
|
|
is_full_compaction,
|
|
is_manual_compaction,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub unsafe extern "C" fn create_compaction_filter_callback<F>(
|
|
raw_self: *mut c_void,
|
|
context: *mut ffi::rocksdb_compactionfiltercontext_t,
|
|
) -> *mut ffi::rocksdb_compactionfilter_t
|
|
where
|
|
F: CompactionFilterFactory,
|
|
{
|
|
let self_ = &mut *(raw_self as *mut F);
|
|
let context = CompactionFilterContext::from_raw(context);
|
|
let filter = Box::new(self_.create(context));
|
|
|
|
let filter_ptr = Box::into_raw(filter);
|
|
|
|
ffi::rocksdb_compactionfilter_create(
|
|
filter_ptr as *mut c_void,
|
|
Some(compaction_filter::destructor_callback::<F::Filter>),
|
|
Some(compaction_filter::filter_callback::<F::Filter>),
|
|
Some(compaction_filter::name_callback::<F::Filter>),
|
|
)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::compaction_filter::Decision;
|
|
use crate::{Options, DB};
|
|
use std::ffi::CString;
|
|
|
|
struct CountFilter(u16, CString);
|
|
impl CompactionFilter for CountFilter {
|
|
fn filter(&mut self, _level: u32, _key: &[u8], _value: &[u8]) -> crate::CompactionDecision {
|
|
self.0 += 1;
|
|
if self.0 > 2 {
|
|
Decision::Remove
|
|
} else {
|
|
Decision::Keep
|
|
}
|
|
}
|
|
|
|
fn name(&self) -> &CStr {
|
|
&self.1
|
|
}
|
|
}
|
|
|
|
struct TestFactory(CString);
|
|
impl CompactionFilterFactory for TestFactory {
|
|
type Filter = CountFilter;
|
|
|
|
fn create(&mut self, _context: CompactionFilterContext) -> Self::Filter {
|
|
CountFilter(0, CString::new("CountFilter").unwrap())
|
|
}
|
|
|
|
fn name(&self) -> &CStr {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn compaction_filter_factory_test() {
|
|
let path = "_rust_rocksdb_filter_factory_test";
|
|
let mut opts = Options::default();
|
|
opts.create_if_missing(true);
|
|
opts.set_compaction_filter_factory(TestFactory(CString::new("TestFactory").unwrap()));
|
|
{
|
|
let db = DB::open(&opts, path).unwrap();
|
|
let _r = db.put(b"k1", b"a");
|
|
let _r = db.put(b"_rk", b"b");
|
|
let _r = db.put(b"%k", b"c");
|
|
db.compact_range(None::<&[u8]>, None::<&[u8]>);
|
|
assert_eq!(db.get(b"%k1").unwrap(), None);
|
|
}
|
|
let result = DB::destroy(&opts, path);
|
|
assert!(result.is_ok());
|
|
}
|
|
}
|
|
|