mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 19:44:21 +01:00
613 lines
20 KiB
Rust
613 lines
20 KiB
Rust
#![deny(clippy::all)]
|
|
|
|
use std::cell::{RefCell, RefMut};
|
|
use std::num::NonZeroUsize;
|
|
|
|
use std::rc::Rc;
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
use limbo_core::{LimboError, StepResult};
|
|
use napi::iterator::Generator;
|
|
use napi::{bindgen_prelude::ObjectFinalize, Env, JsUnknown};
|
|
use napi_derive::napi;
|
|
|
|
#[derive(Default)]
|
|
#[napi(object)]
|
|
pub struct OpenDatabaseOptions {
|
|
pub readonly: bool,
|
|
pub file_must_exist: bool,
|
|
pub timeout: u32,
|
|
// verbose => Callback,
|
|
}
|
|
|
|
#[napi(object)]
|
|
pub struct PragmaOptions {
|
|
pub simple: bool,
|
|
}
|
|
|
|
#[napi(custom_finalize)]
|
|
#[derive(Clone)]
|
|
pub struct Database {
|
|
#[napi(writable = false)]
|
|
pub memory: bool,
|
|
|
|
#[napi(writable = false)]
|
|
pub readonly: bool,
|
|
// #[napi(writable = false)]
|
|
// pub in_transaction: bool,
|
|
pub open: bool,
|
|
#[napi(writable = false)]
|
|
pub name: String,
|
|
_db: Arc<limbo_core::Database>,
|
|
conn: Arc<limbo_core::Connection>,
|
|
io: Arc<dyn limbo_core::IO>,
|
|
}
|
|
|
|
impl ObjectFinalize for Database {
|
|
// TODO: check if something more is required
|
|
fn finalize(self, _env: Env) -> napi::Result<()> {
|
|
self.conn.close().map_err(into_napi_error)?;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[napi]
|
|
impl Database {
|
|
#[napi(constructor)]
|
|
pub fn new(path: String, options: Option<OpenDatabaseOptions>) -> napi::Result<Self> {
|
|
let memory = path == ":memory:";
|
|
let io: Arc<dyn limbo_core::IO> = if memory {
|
|
Arc::new(limbo_core::MemoryIO::new())
|
|
} else {
|
|
Arc::new(limbo_core::PlatformIO::new().map_err(into_napi_error)?)
|
|
};
|
|
let opts = options.unwrap_or_default();
|
|
let flag = if opts.readonly {
|
|
limbo_core::OpenFlags::ReadOnly
|
|
} else {
|
|
limbo_core::OpenFlags::Create
|
|
};
|
|
let file = io.open_file(&path, flag, false).map_err(into_napi_error)?;
|
|
|
|
let db_file = Arc::new(DatabaseFile::new(file));
|
|
let db = limbo_core::Database::open(io.clone(), &path, db_file, false)
|
|
.map_err(into_napi_error)?;
|
|
let conn = db.connect().map_err(into_napi_error)?;
|
|
|
|
Ok(Self {
|
|
readonly: opts.readonly,
|
|
memory,
|
|
_db: db,
|
|
conn,
|
|
open: true,
|
|
name: path,
|
|
io,
|
|
})
|
|
}
|
|
|
|
#[napi]
|
|
pub fn prepare(&self, sql: String) -> napi::Result<Statement> {
|
|
let stmt = self.conn.prepare(&sql).map_err(into_napi_error)?;
|
|
Ok(Statement::new(RefCell::new(stmt), self.clone(), sql))
|
|
}
|
|
|
|
#[napi]
|
|
pub fn pragma(
|
|
&self,
|
|
env: Env,
|
|
pragma_name: String,
|
|
options: Option<PragmaOptions>,
|
|
) -> napi::Result<JsUnknown> {
|
|
let sql = format!("PRAGMA {}", pragma_name);
|
|
let stmt = self.prepare(sql)?;
|
|
match options {
|
|
Some(PragmaOptions { simple: true, .. }) => {
|
|
let mut stmt = stmt.inner.borrow_mut();
|
|
match stmt.step().map_err(into_napi_error)? {
|
|
limbo_core::StepResult::Row => {
|
|
let row: Vec<_> = stmt.row().unwrap().get_values().cloned().collect();
|
|
to_js_value(&env, &row[0])
|
|
}
|
|
limbo_core::StepResult::Done => Ok(env.get_undefined()?.into_unknown()),
|
|
limbo_core::StepResult::IO => todo!(),
|
|
step @ limbo_core::StepResult::Interrupt
|
|
| step @ limbo_core::StepResult::Busy => Err(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
format!("{:?}", step),
|
|
)),
|
|
}
|
|
}
|
|
_ => stmt.run(env, None),
|
|
}
|
|
}
|
|
|
|
#[napi]
|
|
pub fn readonly(&self) -> bool {
|
|
self.readonly
|
|
}
|
|
|
|
#[napi]
|
|
pub fn open(&self) -> bool {
|
|
self.open
|
|
}
|
|
|
|
#[napi]
|
|
pub fn backup(&self) {
|
|
todo!()
|
|
}
|
|
|
|
#[napi]
|
|
pub fn serialize(&self) {
|
|
todo!()
|
|
}
|
|
|
|
#[napi]
|
|
pub fn function(&self) {
|
|
todo!()
|
|
}
|
|
|
|
#[napi]
|
|
pub fn aggregate(&self) {
|
|
todo!()
|
|
}
|
|
|
|
#[napi]
|
|
pub fn table(&self) {
|
|
todo!()
|
|
}
|
|
|
|
#[napi]
|
|
pub fn load_extension(&self, path: String) -> napi::Result<()> {
|
|
let ext_path = limbo_core::resolve_ext_path(path.as_str()).map_err(into_napi_error)?;
|
|
self.conn
|
|
.load_extension(ext_path)
|
|
.map_err(into_napi_error)?;
|
|
Ok(())
|
|
}
|
|
|
|
#[napi]
|
|
pub fn exec(&self, sql: String) -> napi::Result<()> {
|
|
let query_runner = self.conn.query_runner(sql.as_bytes());
|
|
|
|
// Since exec doesn't return any values, we can just iterate over the results
|
|
for output in query_runner {
|
|
match output {
|
|
Ok(Some(mut stmt)) => loop {
|
|
match stmt.step() {
|
|
Ok(StepResult::Row) => continue,
|
|
Ok(StepResult::IO) => self.io.run_once().map_err(into_napi_error)?,
|
|
Ok(StepResult::Done) => break,
|
|
Ok(StepResult::Interrupt | StepResult::Busy) => {
|
|
return Err(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
"Statement execution interrupted or busy".to_string(),
|
|
));
|
|
}
|
|
Err(err) => {
|
|
return Err(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
format!("Error executing SQL: {}", err),
|
|
));
|
|
}
|
|
}
|
|
},
|
|
Ok(None) => continue,
|
|
Err(err) => {
|
|
return Err(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
format!("Error executing SQL: {}", err),
|
|
));
|
|
}
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
#[napi]
|
|
pub fn close(&mut self) -> napi::Result<()> {
|
|
self.conn.close().map_err(into_napi_error)?;
|
|
self.open = false;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
enum PresentationMode {
|
|
Raw,
|
|
Pluck,
|
|
None,
|
|
}
|
|
|
|
#[napi]
|
|
#[derive(Clone)]
|
|
pub struct Statement {
|
|
// TODO: implement each property when core supports it
|
|
// #[napi(able = false)]
|
|
// pub reader: bool,
|
|
// #[napi(writable = false)]
|
|
// pub readonly: bool,
|
|
// #[napi(writable = false)]
|
|
// pub busy: bool,
|
|
#[napi(writable = false)]
|
|
pub source: String,
|
|
|
|
database: Database,
|
|
presentation_mode: PresentationMode,
|
|
binded: bool,
|
|
inner: Rc<RefCell<limbo_core::Statement>>,
|
|
}
|
|
|
|
#[napi]
|
|
impl Statement {
|
|
pub fn new(inner: RefCell<limbo_core::Statement>, database: Database, source: String) -> Self {
|
|
Self {
|
|
inner: Rc::new(inner),
|
|
database,
|
|
source,
|
|
presentation_mode: PresentationMode::None,
|
|
binded: false,
|
|
}
|
|
}
|
|
|
|
#[napi]
|
|
pub fn get(&self, env: Env, args: Option<Vec<JsUnknown>>) -> napi::Result<JsUnknown> {
|
|
let mut stmt = self.check_and_bind(args)?;
|
|
|
|
let step = stmt.step().map_err(into_napi_error)?;
|
|
match step {
|
|
limbo_core::StepResult::Row => {
|
|
let row = stmt.row().unwrap();
|
|
|
|
match self.presentation_mode {
|
|
PresentationMode::Raw => {
|
|
let mut raw_obj = env.create_array(row.len() as u32)?;
|
|
for (idx, value) in row.get_values().enumerate() {
|
|
let js_value = to_js_value(&env, value);
|
|
|
|
raw_obj.set(idx as u32, js_value)?;
|
|
}
|
|
|
|
Ok(raw_obj.coerce_to_object()?.into_unknown())
|
|
}
|
|
PresentationMode::Pluck => {
|
|
let (_, value) =
|
|
row.get_values().enumerate().next().ok_or(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
"Pluck mode requires at least one column in the result",
|
|
))?;
|
|
let js_value = to_js_value(&env, value)?;
|
|
|
|
Ok(js_value)
|
|
}
|
|
PresentationMode::None => {
|
|
let mut obj = env.create_object()?;
|
|
|
|
for (idx, value) in row.get_values().enumerate() {
|
|
let key = stmt.get_column_name(idx);
|
|
let js_value = to_js_value(&env, value);
|
|
|
|
obj.set_named_property(&key, js_value)?;
|
|
}
|
|
|
|
Ok(obj.into_unknown())
|
|
}
|
|
}
|
|
}
|
|
limbo_core::StepResult::Done => Ok(env.get_undefined()?.into_unknown()),
|
|
limbo_core::StepResult::IO => todo!(),
|
|
limbo_core::StepResult::Interrupt | limbo_core::StepResult::Busy => Err(
|
|
napi::Error::new(napi::Status::GenericFailure, format!("{:?}", step)),
|
|
),
|
|
}
|
|
}
|
|
|
|
// TODO: Return Info object (https://github.com/WiseLibs/better-sqlite3/blob/master/docs/api.md#runbindparameters---object)
|
|
#[napi]
|
|
pub fn run(&self, env: Env, args: Option<Vec<JsUnknown>>) -> napi::Result<JsUnknown> {
|
|
let stmt = self.check_and_bind(args)?;
|
|
|
|
self.internal_all(env, stmt)
|
|
}
|
|
|
|
#[napi]
|
|
pub fn iterate(
|
|
&self,
|
|
env: Env,
|
|
args: Option<Vec<JsUnknown>>,
|
|
) -> napi::Result<IteratorStatement> {
|
|
self.check_and_bind(args)?;
|
|
Ok(IteratorStatement {
|
|
stmt: Rc::clone(&self.inner),
|
|
database: self.database.clone(),
|
|
env,
|
|
presentation_mode: self.presentation_mode.clone(),
|
|
})
|
|
}
|
|
|
|
#[napi]
|
|
pub fn all(&self, env: Env, args: Option<Vec<JsUnknown>>) -> napi::Result<JsUnknown> {
|
|
let stmt = self.check_and_bind(args)?;
|
|
|
|
self.internal_all(env, stmt)
|
|
}
|
|
|
|
fn internal_all(
|
|
&self,
|
|
env: Env,
|
|
mut stmt: RefMut<'_, limbo_core::Statement>,
|
|
) -> napi::Result<JsUnknown> {
|
|
let mut results = env.create_empty_array()?;
|
|
let mut index = 0;
|
|
loop {
|
|
match stmt.step().map_err(into_napi_error)? {
|
|
limbo_core::StepResult::Row => {
|
|
let row = stmt.row().unwrap();
|
|
|
|
match self.presentation_mode {
|
|
PresentationMode::Raw => {
|
|
let mut raw_array = env.create_array(row.len() as u32)?;
|
|
for (idx, value) in row.get_values().enumerate() {
|
|
let js_value = to_js_value(&env, value)?;
|
|
raw_array.set(idx as u32, js_value)?;
|
|
}
|
|
results.set_element(index, raw_array.coerce_to_object()?)?;
|
|
index += 1;
|
|
continue;
|
|
}
|
|
PresentationMode::Pluck => {
|
|
let (_, value) =
|
|
row.get_values().enumerate().next().ok_or(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
"Pluck mode requires at least one column in the result",
|
|
))?;
|
|
let js_value = to_js_value(&env, value)?;
|
|
results.set_element(index, js_value)?;
|
|
index += 1;
|
|
continue;
|
|
}
|
|
PresentationMode::None => {
|
|
let mut obj = env.create_object()?;
|
|
for (idx, value) in row.get_values().enumerate() {
|
|
let key = stmt.get_column_name(idx);
|
|
let js_value = to_js_value(&env, value);
|
|
obj.set_named_property(&key, js_value)?;
|
|
}
|
|
results.set_element(index, obj)?;
|
|
index += 1;
|
|
}
|
|
}
|
|
}
|
|
limbo_core::StepResult::Done => {
|
|
break;
|
|
}
|
|
limbo_core::StepResult::IO => {
|
|
self.database.io.run_once().map_err(into_napi_error)?;
|
|
}
|
|
limbo_core::StepResult::Interrupt | limbo_core::StepResult::Busy => {
|
|
return Err(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
format!("{:?}", stmt.step()),
|
|
));
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(results.into_unknown())
|
|
}
|
|
|
|
#[napi]
|
|
pub fn pluck(&mut self, pluck: Option<bool>) {
|
|
if let Some(false) = pluck {
|
|
self.presentation_mode = PresentationMode::None;
|
|
}
|
|
|
|
self.presentation_mode = PresentationMode::Pluck;
|
|
}
|
|
|
|
#[napi]
|
|
pub fn expand() {
|
|
todo!()
|
|
}
|
|
|
|
#[napi]
|
|
pub fn raw(&mut self, raw: Option<bool>) {
|
|
if let Some(false) = raw {
|
|
self.presentation_mode = PresentationMode::None;
|
|
}
|
|
|
|
self.presentation_mode = PresentationMode::Raw;
|
|
}
|
|
|
|
#[napi]
|
|
pub fn columns() {
|
|
todo!()
|
|
}
|
|
|
|
#[napi]
|
|
pub fn bind(&mut self, args: Option<Vec<JsUnknown>>) -> napi::Result<Self> {
|
|
self.check_and_bind(args)?;
|
|
self.binded = true;
|
|
|
|
Ok(self.clone())
|
|
}
|
|
|
|
/// Check if the Statement is already binded by the `bind()` method
|
|
/// and bind values do variables. The expected type for args is `Option<Vec<JsUnknown>>`
|
|
fn check_and_bind(
|
|
&self,
|
|
args: Option<Vec<JsUnknown>>,
|
|
) -> napi::Result<RefMut<'_, limbo_core::Statement>> {
|
|
let mut stmt = self.inner.borrow_mut();
|
|
stmt.reset();
|
|
if let Some(args) = args {
|
|
if self.binded {
|
|
return Err(napi::Error::new(
|
|
napi::Status::InvalidArg,
|
|
"This statement already has bound parameters",
|
|
));
|
|
}
|
|
|
|
for (i, elem) in args.into_iter().enumerate() {
|
|
let value = from_js_value(elem)?;
|
|
stmt.bind_at(NonZeroUsize::new(i + 1).unwrap(), value);
|
|
}
|
|
}
|
|
|
|
Ok(stmt)
|
|
}
|
|
}
|
|
|
|
#[napi(iterator)]
|
|
pub struct IteratorStatement {
|
|
stmt: Rc<RefCell<limbo_core::Statement>>,
|
|
database: Database,
|
|
env: Env,
|
|
presentation_mode: PresentationMode,
|
|
}
|
|
|
|
impl Generator for IteratorStatement {
|
|
type Yield = JsUnknown;
|
|
|
|
type Next = ();
|
|
|
|
type Return = ();
|
|
|
|
fn next(&mut self, _: Option<Self::Next>) -> Option<Self::Yield> {
|
|
let mut stmt = self.stmt.borrow_mut();
|
|
|
|
match stmt.step().ok()? {
|
|
limbo_core::StepResult::Row => {
|
|
let row = stmt.row().unwrap();
|
|
|
|
match self.presentation_mode {
|
|
PresentationMode::Raw => {
|
|
let mut raw_array = self.env.create_array(row.len() as u32).ok()?;
|
|
for (idx, value) in row.get_values().enumerate() {
|
|
let js_value = to_js_value(&self.env, value);
|
|
raw_array.set(idx as u32, js_value).ok()?;
|
|
}
|
|
|
|
Some(raw_array.coerce_to_object().ok()?.into_unknown())
|
|
}
|
|
PresentationMode::Pluck => {
|
|
let (_, value) = row.get_values().enumerate().next()?;
|
|
to_js_value(&self.env, value).ok()
|
|
}
|
|
PresentationMode::None => {
|
|
let mut js_row = self.env.create_object().ok()?;
|
|
for (idx, value) in row.get_values().enumerate() {
|
|
let key = stmt.get_column_name(idx);
|
|
let js_value = to_js_value(&self.env, value);
|
|
js_row.set_named_property(&key, js_value).ok()?;
|
|
}
|
|
|
|
Some(js_row.into_unknown())
|
|
}
|
|
}
|
|
}
|
|
limbo_core::StepResult::Done => None,
|
|
limbo_core::StepResult::IO => {
|
|
self.database.io.run_once().ok()?;
|
|
None // clearly it's incorrect, it should return to user
|
|
}
|
|
limbo_core::StepResult::Interrupt | limbo_core::StepResult::Busy => None,
|
|
}
|
|
}
|
|
}
|
|
|
|
fn to_js_value(env: &napi::Env, value: &limbo_core::Value) -> napi::Result<JsUnknown> {
|
|
match value {
|
|
limbo_core::Value::Null => Ok(env.get_null()?.into_unknown()),
|
|
limbo_core::Value::Integer(i) => Ok(env.create_int64(*i)?.into_unknown()),
|
|
limbo_core::Value::Float(f) => Ok(env.create_double(*f)?.into_unknown()),
|
|
limbo_core::Value::Text(s) => Ok(env.create_string(s.as_str())?.into_unknown()),
|
|
limbo_core::Value::Blob(b) => Ok(env.create_buffer_copy(b.as_slice())?.into_unknown()),
|
|
}
|
|
}
|
|
|
|
fn from_js_value(value: JsUnknown) -> napi::Result<limbo_core::Value> {
|
|
match value.get_type()? {
|
|
napi::ValueType::Undefined | napi::ValueType::Null | napi::ValueType::Unknown => {
|
|
Ok(limbo_core::Value::Null)
|
|
}
|
|
napi::ValueType::Boolean => {
|
|
let b = value.coerce_to_bool()?.get_value()?;
|
|
Ok(limbo_core::Value::Integer(b as i64))
|
|
}
|
|
napi::ValueType::Number => {
|
|
let num = value.coerce_to_number()?.get_double()?;
|
|
if num.fract() == 0.0 {
|
|
Ok(limbo_core::Value::Integer(num as i64))
|
|
} else {
|
|
Ok(limbo_core::Value::Float(num))
|
|
}
|
|
}
|
|
napi::ValueType::String => {
|
|
let s = value.coerce_to_string()?;
|
|
Ok(limbo_core::Value::Text(s.into_utf8()?.as_str()?.into()))
|
|
}
|
|
napi::ValueType::Symbol
|
|
| napi::ValueType::Object
|
|
| napi::ValueType::Function
|
|
| napi::ValueType::External => Err(napi::Error::new(
|
|
napi::Status::GenericFailure,
|
|
"Unsupported type",
|
|
)),
|
|
}
|
|
}
|
|
|
|
struct DatabaseFile {
|
|
file: Arc<dyn limbo_core::File>,
|
|
}
|
|
|
|
unsafe impl Send for DatabaseFile {}
|
|
unsafe impl Sync for DatabaseFile {}
|
|
|
|
impl DatabaseFile {
|
|
pub fn new(file: Arc<dyn limbo_core::File>) -> Self {
|
|
Self { file }
|
|
}
|
|
}
|
|
|
|
impl limbo_core::DatabaseStorage for DatabaseFile {
|
|
fn read_page(&self, page_idx: usize, c: Arc<limbo_core::Completion>) -> limbo_core::Result<()> {
|
|
let r = match *c {
|
|
limbo_core::Completion::Read(ref r) => r,
|
|
_ => unreachable!(),
|
|
};
|
|
let size = r.buf().len();
|
|
assert!(page_idx > 0);
|
|
if !(512..=65536).contains(&size) || size & (size - 1) != 0 {
|
|
return Err(limbo_core::LimboError::NotADB);
|
|
}
|
|
let pos = (page_idx - 1) * size;
|
|
self.file.pread(pos, c)?;
|
|
Ok(())
|
|
}
|
|
|
|
fn write_page(
|
|
&self,
|
|
page_idx: usize,
|
|
buffer: Arc<std::cell::RefCell<limbo_core::Buffer>>,
|
|
c: Arc<limbo_core::Completion>,
|
|
) -> limbo_core::Result<()> {
|
|
let size = buffer.borrow().len();
|
|
let pos = (page_idx - 1) * size;
|
|
self.file.pwrite(pos, buffer, c)?;
|
|
Ok(())
|
|
}
|
|
|
|
fn sync(&self, c: Arc<limbo_core::Completion>) -> limbo_core::Result<()> {
|
|
self.file.sync(c)
|
|
}
|
|
|
|
fn size(&self) -> limbo_core::Result<u64> {
|
|
self.file.size()
|
|
}
|
|
}
|
|
|
|
#[inline]
|
|
pub fn into_napi_error(limbo_error: LimboError) -> napi::Error {
|
|
napi::Error::new(napi::Status::GenericFailure, format!("{limbo_error}"))
|
|
}
|