Files
turso/extensions/tests/src/lib.rs
2025-08-21 14:51:02 +04:00

548 lines
16 KiB
Rust

use std::cell::RefCell;
use std::collections::{BTreeMap, VecDeque};
use std::fs::{File, OpenOptions};
use std::io::{Read, Seek, SeekFrom, Write};
use std::num::NonZeroUsize;
use std::rc::Rc;
use std::sync::{Arc, Mutex};
use turso_ext::{
register_extension, scalar, Connection, ConstraintInfo, ConstraintOp, ConstraintUsage,
ExtResult, IndexInfo, OrderByInfo, ResultCode, StepResult, VTabCursor, VTabKind, VTabModule,
VTabModuleDerive, VTable, Value,
};
#[cfg(not(target_family = "wasm"))]
use turso_ext::{BufferRef, Callback, VfsDerive, VfsExtension, VfsFile};
register_extension! {
vtabs: { KVStoreVTabModule, TableStatsVtabModule },
scalars: { test_scalar },
vfs: { TestFS },
}
type Store = Rc<RefCell<BTreeMap<i64, (String, String, String)>>>;
#[derive(VTabModuleDerive, Default)]
pub struct KVStoreVTabModule;
/// the cursor holds a snapshot of (rowid, comment, key, value) in memory.
pub struct KVStoreCursor {
rows: Vec<(i64, String, String, String)>,
index: Option<usize>,
store: Store,
}
impl VTabModule for KVStoreVTabModule {
type Table = KVStoreTable;
const VTAB_KIND: VTabKind = VTabKind::VirtualTable;
const NAME: &'static str = "kv_store";
const READONLY: bool = false;
fn create(_args: &[Value]) -> Result<(String, Self::Table), ResultCode> {
// The hidden column is placed first to verify that column index handling
// remains correct when hidden columns are excluded from queries
// (e.g., in `*` expansion or `PRAGMA table_info`). It also includes a NOT NULL
// constraint and default value to confirm that SQLite silently ignores them
// on hidden columns.
let schema = "CREATE TABLE x (
comment TEXT HIDDEN NOT NULL DEFAULT 'default comment',
key TEXT PRIMARY KEY,
value TEXT
)"
.into();
Ok((
schema,
KVStoreTable {
store: Rc::new(RefCell::new(BTreeMap::new())),
},
))
}
}
fn hash_key(key: &str) -> i64 {
use std::hash::{Hash, Hasher};
let mut hasher = std::collections::hash_map::DefaultHasher::new();
key.hash(&mut hasher);
hasher.finish() as i64
}
impl VTabCursor for KVStoreCursor {
type Error = String;
fn filter(&mut self, args: &[Value], idx_str: Option<(&str, i32)>) -> ResultCode {
match idx_str {
Some(("key_eq", 1)) => {
let key = args
.first()
.and_then(|v| v.to_text())
.map(|s| s.to_string());
log::debug!("idx_str found: key_eq\n value: {key:?}");
if let Some(key) = key {
let rowid = hash_key(&key);
if let Some((comment, k, v)) = self.store.borrow().get(&rowid) {
self.rows
.push((rowid, comment.clone(), k.clone(), v.clone()));
self.index = Some(0);
} else {
self.rows.clear();
self.index = None;
return ResultCode::EOF;
}
return ResultCode::OK;
}
self.rows.clear();
self.index = None;
ResultCode::OK
}
_ => {
self.rows = self
.store
.borrow()
.iter()
.map(|(&rowid, (comment, k, v))| (rowid, comment.clone(), k.clone(), v.clone()))
.collect();
self.rows.sort_by_key(|(rowid, _, _, _)| *rowid);
if self.rows.is_empty() {
self.index = None;
ResultCode::EOF
} else {
self.index = Some(0);
ResultCode::OK
}
}
}
}
fn rowid(&self) -> i64 {
if self.index.is_some_and(|c| c < self.rows.len()) {
self.rows[self.index.unwrap_or(0)].0
} else {
log::error!("rowid: -1");
-1
}
}
fn column(&self, idx: u32) -> Result<Value, Self::Error> {
if self.index.is_some_and(|c| c >= self.rows.len()) {
return Err("cursor out of range".into());
}
if let Some((_, ref comment, ref key, ref val)) = self.rows.get(self.index.unwrap_or(0)) {
match idx {
0 => Ok(Value::from_text(comment.clone())),
1 => Ok(Value::from_text(key.clone())), // key
2 => Ok(Value::from_text(val.clone())), // value
_ => Err("Invalid column".into()),
}
} else {
Err("Invalid Column".into())
}
}
fn eof(&self) -> bool {
self.index.is_some_and(|s| s >= self.rows.len()) || self.index.is_none()
}
fn next(&mut self) -> ResultCode {
self.index = Some(self.index.unwrap_or(0) + 1);
if self.index.is_some_and(|c| c >= self.rows.len()) {
return ResultCode::EOF;
}
ResultCode::OK
}
}
pub struct KVStoreTable {
store: Store,
}
impl VTable for KVStoreTable {
type Cursor = KVStoreCursor;
type Error = String;
fn open(&self, _conn: Option<Arc<Connection>>) -> Result<Self::Cursor, Self::Error> {
let _ = env_logger::try_init();
Ok(KVStoreCursor {
rows: Vec::new(),
index: None,
store: Rc::clone(&self.store),
})
}
fn best_index(
constraints: &[ConstraintInfo],
_order_by: &[OrderByInfo],
) -> Result<IndexInfo, ResultCode> {
let mut constraint_usages = Vec::with_capacity(constraints.len());
let mut idx_num = -1;
let mut idx_str = None;
let mut estimated_cost = 1000.0;
let mut estimated_rows = u32::MAX;
// Look for: key = ?
for constraint in constraints.iter() {
if constraint.usable
&& constraint.op == ConstraintOp::Eq
&& constraint.column_index == 1
&& idx_num == -1
// Only use the first usable key = ? constraint
{
constraint_usages.push(ConstraintUsage {
omit: true,
argv_index: Some(1),
});
idx_num = 1;
idx_str = Some("key_eq".to_string());
estimated_cost = 10.0;
estimated_rows = 4;
log::debug!("xBestIndex: constraint found for 'key = ?'");
} else {
constraint_usages.push(ConstraintUsage {
omit: false,
argv_index: None,
});
}
}
// this extension wouldn't support order by but for testing purposes,
// we will consume it if we find an ASC order by clause on the value column
let order_by_consumed = idx_num == 1
&& _order_by
.first()
.is_some_and(|order| order.column_index == 2 && !order.desc);
if idx_num == -1 {
log::debug!("No usable constraints found, using full scan");
}
Ok(IndexInfo {
idx_num,
idx_str,
order_by_consumed,
estimated_cost,
estimated_rows,
constraint_usages,
})
}
fn insert(&mut self, values: &[Value]) -> Result<i64, Self::Error> {
let comment = values
.first()
.and_then(|v| v.to_text())
.map(|v| v.to_string())
.unwrap_or("auto-generated".into());
let key = values
.get(1)
.and_then(|v| v.to_text())
.ok_or("Missing key")?
.to_string();
let val = values
.get(2)
.and_then(|v| v.to_text())
.ok_or("Missing value")?
.to_string();
let rowid = hash_key(&key);
{
self.store.borrow_mut().insert(rowid, (comment, key, val));
}
Ok(rowid)
}
fn delete(&mut self, rowid: i64) -> Result<(), Self::Error> {
self.store.borrow_mut().remove(&rowid);
Ok(())
}
fn update(&mut self, rowid: i64, values: &[Value]) -> Result<(), Self::Error> {
{
self.store.borrow_mut().remove(&rowid);
}
let _ = self.insert(values)?;
Ok(())
}
fn destroy(&mut self) -> Result<(), Self::Error> {
log::debug!("VDestroy called");
Ok(())
}
}
#[derive(Default, Clone)]
pub struct CallbackQueue {
queue: Arc<Mutex<VecDeque<(Callback, i32)>>>,
}
impl CallbackQueue {
pub fn new() -> Self {
Self {
queue: Arc::new(Mutex::new(VecDeque::new())),
}
}
// Store a callback with its result for later execution
pub fn enqueue(&self, callback: Callback, result: i32) {
let mut queue = self.queue.lock().unwrap();
queue.push_back((callback, result));
}
// Process all pending callbacks
pub fn process_all(&self) {
let mut queue = self.queue.lock().unwrap();
while let Some((callback, result)) = queue.pop_front() {
callback(result);
}
}
}
pub struct TestFile {
io: CallbackQueue,
file: File,
}
#[cfg(target_family = "wasm")]
pub struct TestFS;
#[cfg(not(target_family = "wasm"))]
#[derive(VfsDerive, Default)]
pub struct TestFS {
callbacks: CallbackQueue,
}
// Test that we can have additional extension types in the same file
// and still register the vfs at comptime if linking staticly
#[scalar(name = "test_scalar")]
fn test_scalar(_args: turso_ext::Value) -> turso_ext::Value {
turso_ext::Value::from_integer(42)
}
#[cfg(not(target_family = "wasm"))]
impl VfsExtension for TestFS {
const NAME: &'static str = "testvfs";
type File = TestFile;
fn run_once(&self) -> ExtResult<()> {
log::debug!("running once with testing VFS");
self.callbacks.process_all();
Ok(())
}
fn open_file(&self, path: &str, flags: i32, _direct: bool) -> ExtResult<Self::File> {
let _ = env_logger::try_init();
log::debug!("opening file with testing VFS: {path} flags: {flags}");
let file = OpenOptions::new()
.read(true)
.write(true)
.create(flags & 1 != 0)
.open(path)
.map_err(|_| ResultCode::Error)?;
Ok(TestFile {
file,
io: self.callbacks.clone(),
})
}
fn remove_file(&self, path: &str) -> ExtResult<()> {
let _ = env_logger::try_init();
log::debug!("remove file with testing VFS: {path}");
std::fs::remove_file(path).map_err(|_| ResultCode::Error)
}
}
#[cfg(not(target_family = "wasm"))]
impl VfsFile for TestFile {
fn read(&mut self, mut buf: BufferRef, offset: i64, cb: Callback) -> ExtResult<()> {
log::debug!(
"reading file with testing VFS: bytes: {} offset: {}",
buf.len(),
offset
);
if self.file.seek(SeekFrom::Start(offset as u64)).is_err() {
return Err(ResultCode::Error);
}
let len = buf.len();
let buf = buf.as_mut_slice();
let res = self
.file
.read(&mut buf[..len])
.map_err(|_| ResultCode::Error)
.map(|n| n as i32)?;
self.io.enqueue(cb, res);
Ok(())
}
fn write(&mut self, buf: turso_ext::BufferRef, offset: i64, cb: Callback) -> ExtResult<()> {
log::debug!(
"writing to file with testing VFS: bytes: {} offset: {offset}",
buf.len()
);
if self.file.seek(SeekFrom::Start(offset as u64)).is_err() {
return Err(ResultCode::Error);
}
let len = buf.len();
let n = self
.file
.write(&buf[..len])
.map_err(|_| ResultCode::Error)
.map(|n| n as i32)?;
self.io.enqueue(cb, n);
Ok(())
}
fn sync(&self, cb: Callback) -> ExtResult<()> {
log::debug!("syncing file with testing VFS");
self.file.sync_all().map_err(|_| ResultCode::Error)?;
self.io.enqueue(cb, 0);
Ok(())
}
fn truncate(&self, len: i64, cb: Callback) -> ExtResult<()> {
log::debug!("truncating file with testing VFS to length: {len}");
self.file
.set_len(len as u64)
.map_err(|_| ResultCode::Error)?;
self.io.enqueue(cb, 0);
Ok(())
}
fn size(&self) -> i64 {
self.file.metadata().map(|m| m.len() as i64).unwrap_or(-1)
}
}
#[derive(VTabModuleDerive, Default)]
pub struct TableStatsVtabModule;
pub struct StatsCursor {
pos: usize,
rows: Vec<(String, i64)>,
conn: Option<Arc<Connection>>,
}
pub struct StatsTable {}
impl VTabModule for TableStatsVtabModule {
type Table = StatsTable;
const VTAB_KIND: VTabKind = VTabKind::VirtualTable;
const NAME: &'static str = "tablestats";
fn create(_args: &[Value]) -> Result<(String, Self::Table), ResultCode> {
let schema = "CREATE TABLE x (name TEXT, rows INT);".to_string();
Ok((schema, StatsTable {}))
}
}
impl VTable for StatsTable {
type Cursor = StatsCursor;
type Error = String;
fn open(&self, conn: Option<Arc<Connection>>) -> Result<Self::Cursor, Self::Error> {
Ok(StatsCursor {
pos: 0,
rows: Vec::new(),
conn,
})
}
}
impl VTabCursor for StatsCursor {
type Error = String;
fn filter(&mut self, _args: &[Value], _idx_info: Option<(&str, i32)>) -> ResultCode {
self.rows.clear();
self.pos = 0;
let Some(conn) = &self.conn else {
log::error!("no connection present");
return ResultCode::Error;
};
// discover application tables
let mut master = conn
.prepare(
"SELECT name, sql FROM sqlite_schema WHERE type = 'table' AND name NOT LIKE 'sqlite_%';",
)
.map_err(|_| ResultCode::Error)
.unwrap();
let mut tables = Vec::new();
while let StepResult::Row = master.step() {
let row = master.get_row();
let tbl = if let Some(val) = row.first() {
val.to_text().unwrap_or("").to_string()
} else {
"".to_string()
};
if tbl.is_empty() {
continue;
};
if row
.get(1)
.is_some_and(|v| v.to_text().unwrap().contains("CREATE VIRTUAL TABLE"))
{
continue;
}
tables.push(tbl);
}
master.close();
for tbl in tables {
// count rows for each table
if let Ok(mut count_stmt) = conn.prepare(&format!("SELECT COUNT(*) FROM {tbl};")) {
let count = match count_stmt.step() {
StepResult::Row => count_stmt.get_row()[0].to_integer().unwrap_or(0),
_ => 0,
};
self.rows.push((tbl, count));
count_stmt.close();
}
}
if conn
.execute(
"insert into products (name, price) values(?, ?);",
&[Value::from_text("xConnect".into()), Value::from_integer(42)],
)
.is_err()
{
log::error!("failed to insert into xConnect table");
}
let mut stmt = conn
.prepare("select price from products where name = ? limit 1;")
.map_err(|_| ResultCode::Error)
.unwrap();
stmt.bind_at(
NonZeroUsize::new(1).expect("1 to be not zero"),
Value::from_text("xConnect".into()),
);
while let StepResult::Row = stmt.step() {
let row = stmt.get_row();
if let Some(val) = row.first() {
assert_eq!(val.to_integer(), Some(42));
}
}
stmt.close();
ResultCode::OK
}
fn column(&self, idx: u32) -> Result<Value, Self::Error> {
self.rows
.get(self.pos)
.ok_or("row out of range".to_string())
.and_then(|(name, cnt)| match idx {
0 => Ok(Value::from_text(name.clone())),
1 => Ok(Value::from_integer(*cnt)),
_ => Err("bad column".into()),
})
}
fn next(&mut self) -> ResultCode {
self.pos += 1;
if self.pos >= self.rows.len() {
ResultCode::EOF
} else {
ResultCode::OK
}
}
fn eof(&self) -> bool {
self.pos >= self.rows.len()
}
fn rowid(&self) -> i64 {
self.pos as i64
}
}