mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 20:14:21 +01:00
119 lines
3.5 KiB
Rust
119 lines
3.5 KiB
Rust
use std::{cell::RefCell, rc::Rc};
|
|
|
|
use limbo_core::{File, Result};
|
|
pub(crate) struct SimulatorFile {
|
|
pub(crate) inner: Rc<dyn File>,
|
|
pub(crate) fault: RefCell<bool>,
|
|
|
|
/// Number of `pread` function calls (both success and failures).
|
|
pub(crate) nr_pread_calls: RefCell<usize>,
|
|
|
|
/// Number of `pread` function calls with injected fault.
|
|
pub(crate) nr_pread_faults: RefCell<usize>,
|
|
|
|
/// Number of `pwrite` function calls (both success and failures).
|
|
pub(crate) nr_pwrite_calls: RefCell<usize>,
|
|
|
|
/// Number of `pwrite` function calls with injected fault.
|
|
pub(crate) nr_pwrite_faults: RefCell<usize>,
|
|
|
|
/// Number of `sync` function calls (both success and failures).
|
|
pub(crate) nr_sync_calls: RefCell<usize>,
|
|
|
|
pub(crate) page_size: usize,
|
|
}
|
|
|
|
impl SimulatorFile {
|
|
pub(crate) fn inject_fault(&self, fault: bool) {
|
|
self.fault.replace(fault);
|
|
}
|
|
|
|
pub(crate) fn print_stats(&self) {
|
|
log::info!("op calls faults");
|
|
log::info!("--------- -------- --------");
|
|
log::info!(
|
|
"pread {:8} {:8}",
|
|
*self.nr_pread_calls.borrow(),
|
|
*self.nr_pread_faults.borrow()
|
|
);
|
|
log::info!(
|
|
"pwrite {:8} {:8}",
|
|
*self.nr_pwrite_calls.borrow(),
|
|
*self.nr_pwrite_faults.borrow()
|
|
);
|
|
log::info!(
|
|
"sync {:8} {:8}",
|
|
*self.nr_sync_calls.borrow(),
|
|
0 // No fault counter for sync
|
|
);
|
|
log::info!("--------- -------- --------");
|
|
let sum_calls = *self.nr_pread_calls.borrow()
|
|
+ *self.nr_pwrite_calls.borrow()
|
|
+ *self.nr_sync_calls.borrow();
|
|
let sum_faults = *self.nr_pread_faults.borrow() + *self.nr_pwrite_faults.borrow();
|
|
log::info!("total {:8} {:8}", sum_calls, sum_faults);
|
|
}
|
|
}
|
|
|
|
impl File for SimulatorFile {
|
|
fn lock_file(&self, exclusive: bool) -> Result<()> {
|
|
if *self.fault.borrow() {
|
|
return Err(limbo_core::LimboError::InternalError(
|
|
"Injected fault".into(),
|
|
));
|
|
}
|
|
self.inner.lock_file(exclusive)
|
|
}
|
|
|
|
fn unlock_file(&self) -> Result<()> {
|
|
if *self.fault.borrow() {
|
|
return Err(limbo_core::LimboError::InternalError(
|
|
"Injected fault".into(),
|
|
));
|
|
}
|
|
self.inner.unlock_file()
|
|
}
|
|
|
|
fn pread(&self, pos: usize, c: Rc<limbo_core::Completion>) -> Result<()> {
|
|
*self.nr_pread_calls.borrow_mut() += 1;
|
|
if *self.fault.borrow() {
|
|
*self.nr_pread_faults.borrow_mut() += 1;
|
|
return Err(limbo_core::LimboError::InternalError(
|
|
"Injected fault".into(),
|
|
));
|
|
}
|
|
self.inner.pread(pos, c)
|
|
}
|
|
|
|
fn pwrite(
|
|
&self,
|
|
pos: usize,
|
|
buffer: Rc<RefCell<limbo_core::Buffer>>,
|
|
c: Rc<limbo_core::Completion>,
|
|
) -> Result<()> {
|
|
*self.nr_pwrite_calls.borrow_mut() += 1;
|
|
if *self.fault.borrow() {
|
|
*self.nr_pwrite_faults.borrow_mut() += 1;
|
|
return Err(limbo_core::LimboError::InternalError(
|
|
"Injected fault".into(),
|
|
));
|
|
}
|
|
self.inner.pwrite(pos, buffer, c)
|
|
}
|
|
|
|
fn sync(&self, c: Rc<limbo_core::Completion>) -> Result<()> {
|
|
*self.nr_sync_calls.borrow_mut() += 1;
|
|
self.inner.sync(c)
|
|
}
|
|
|
|
fn size(&self) -> Result<u64> {
|
|
self.inner.size()
|
|
}
|
|
}
|
|
|
|
impl Drop for SimulatorFile {
|
|
fn drop(&mut self) {
|
|
self.inner.unlock_file().expect("Failed to unlock file");
|
|
}
|
|
}
|