use crate::db::{DBInner, ExportImportFilesMetaData};
use crate::{AsColumnFamilyRef, DBCommon, Error, ThreadMode, ffi, ffi_util::to_cpath};
use std::{marker::PhantomData, path::Path};
const DEFAULT_LOG_SIZE_FOR_FLUSH: u64 = 0_u64;
pub struct Checkpoint<'db> {
inner: *mut ffi::rocksdb_checkpoint_t,
_db: PhantomData<&'db ()>,
}
impl<'db> Checkpoint<'db> {
pub fn new<T: ThreadMode, I: DBInner>(db: &'db DBCommon<T, I>) -> Result<Self, Error> {
let checkpoint: *mut ffi::rocksdb_checkpoint_t;
unsafe {
checkpoint = ffi_try!(ffi::rocksdb_checkpoint_object_create(db.inner.inner()));
}
if checkpoint.is_null() {
return Err(Error::new("Could not create checkpoint object.".to_owned()));
}
Ok(Self {
inner: checkpoint,
_db: PhantomData,
})
}
pub fn create_checkpoint<P: AsRef<Path>>(&self, path: P) -> Result<(), Error> {
let c_path = to_cpath(path)?;
unsafe {
ffi_try!(ffi::rocksdb_checkpoint_create(
self.inner,
c_path.as_ptr(),
DEFAULT_LOG_SIZE_FOR_FLUSH,
));
}
Ok(())
}
pub fn create_checkpoint_with_log_size<P: AsRef<Path>>(
&self,
path: P,
log_size_for_flush: u64,
) -> Result<(), Error> {
let c_path = to_cpath(path)?;
unsafe {
ffi_try!(ffi::rocksdb_checkpoint_create(
self.inner,
c_path.as_ptr(),
log_size_for_flush,
));
}
Ok(())
}
pub fn export_column_family<P: AsRef<Path>>(
&self,
column_family: &impl AsColumnFamilyRef,
path: P,
) -> Result<ExportImportFilesMetaData, Error> {
let c_path = to_cpath(path)?;
let column_family_handle = column_family.inner();
let metadata = unsafe {
ffi_try!(ffi::rocksdb_checkpoint_export_column_family(
self.inner,
column_family_handle,
c_path.as_ptr(),
))
};
Ok(ExportImportFilesMetaData { inner: metadata })
}
}
impl Drop for Checkpoint<'_> {
fn drop(&mut self) {
unsafe {
ffi::rocksdb_checkpoint_object_destroy(self.inner);
}
}
}