mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 20:44:23 +01:00
289 lines
9.1 KiB
Rust
289 lines
9.1 KiB
Rust
use anyhow::Result;
|
|
use errors::*;
|
|
use limbo_core::IO;
|
|
use pyo3::prelude::*;
|
|
use pyo3::types::PyList;
|
|
use pyo3::types::PyTuple;
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
mod errors;
|
|
|
|
#[pyclass]
|
|
#[derive(Clone, Debug)]
|
|
struct Description {
|
|
#[pyo3(get)]
|
|
name: String,
|
|
#[pyo3(get)]
|
|
type_code: String,
|
|
#[pyo3(get)]
|
|
display_size: Option<String>,
|
|
#[pyo3(get)]
|
|
internal_size: Option<String>,
|
|
#[pyo3(get)]
|
|
precision: Option<String>,
|
|
#[pyo3(get)]
|
|
scale: Option<String>,
|
|
#[pyo3(get)]
|
|
null_ok: Option<String>,
|
|
}
|
|
|
|
impl IntoPy<Py<PyTuple>> for Description {
|
|
fn into_py(self, py: Python<'_>) -> Py<PyTuple> {
|
|
PyTuple::new_bound(
|
|
py,
|
|
vec![
|
|
self.name.into_py(py),
|
|
self.type_code.into_py(py),
|
|
self.display_size.into_py(py),
|
|
self.internal_size.into_py(py),
|
|
self.precision.into_py(py),
|
|
self.scale.into_py(py),
|
|
self.null_ok.into_py(py),
|
|
],
|
|
)
|
|
.into()
|
|
}
|
|
}
|
|
|
|
#[pyclass]
|
|
pub struct Cursor {
|
|
/// This read/write attribute specifies the number of rows to fetch at a time with `.fetchmany()`.
|
|
/// It defaults to `1`, meaning it fetches a single row at a time.
|
|
#[pyo3(get)]
|
|
arraysize: i64,
|
|
|
|
conn: Connection,
|
|
|
|
/// The `.description` attribute is a read-only sequence of 7-item, each describing a column in the result set:
|
|
///
|
|
/// - `name`: The column's name (always present).
|
|
/// - `type_code`: The data type code (always present).
|
|
/// - `display_size`: Column's display size (optional).
|
|
/// - `internal_size`: Column's internal size (optional).
|
|
/// - `precision`: Numeric precision (optional).
|
|
/// - `scale`: Numeric scale (optional).
|
|
/// - `null_ok`: Indicates if null values are allowed (optional).
|
|
///
|
|
/// The `name` and `type_code` fields are mandatory; others default to `None` if not applicable.
|
|
///
|
|
/// This attribute is `None` for operations that do not return rows or if no `.execute*()` method has been invoked.
|
|
#[pyo3(get)]
|
|
description: Option<Description>,
|
|
|
|
/// Read-only attribute that provides the number of modified rows for `INSERT`, `UPDATE`, `DELETE`,
|
|
/// and `REPLACE` statements; it is `-1` for other statements, including CTE queries.
|
|
/// It is only updated by the `execute()` and `executemany()` methods after the statement has run to completion.
|
|
/// This means any resulting rows must be fetched for `rowcount` to be updated.
|
|
#[pyo3(get)]
|
|
rowcount: i64,
|
|
|
|
smt: Option<Arc<Mutex<limbo_core::Statement>>>,
|
|
}
|
|
|
|
// SAFETY: The limbo_core crate guarantees that `Cursor` is thread-safe.
|
|
unsafe impl Send for Cursor {}
|
|
|
|
#[pymethods]
|
|
impl Cursor {
|
|
#[pyo3(signature = (sql, parameters=None))]
|
|
pub fn execute(&mut self, sql: &str, parameters: Option<Py<PyTuple>>) -> Result<Self> {
|
|
let stmt_is_dml = stmt_is_dml(sql);
|
|
|
|
let conn_lock =
|
|
self.conn.conn.lock().map_err(|_| {
|
|
PyErr::new::<OperationalError, _>("Failed to acquire connection lock")
|
|
})?;
|
|
|
|
let statement = conn_lock.prepare(sql).map_err(|e| {
|
|
PyErr::new::<ProgrammingError, _>(format!("Failed to prepare statement: {:?}", e))
|
|
})?;
|
|
|
|
self.smt = Some(Arc::new(Mutex::new(statement)));
|
|
|
|
// TODO: use stmt_is_dml to set rowcount
|
|
if stmt_is_dml {
|
|
todo!()
|
|
}
|
|
|
|
Ok(Cursor {
|
|
smt: self.smt.clone(),
|
|
conn: self.conn.clone(),
|
|
description: self.description.clone(),
|
|
rowcount: self.rowcount,
|
|
arraysize: self.arraysize,
|
|
})
|
|
}
|
|
|
|
pub fn fetchone(&mut self, py: Python) -> Result<Option<PyObject>> {
|
|
if let Some(smt) = &self.smt {
|
|
let mut smt_lock = smt.lock().map_err(|_| {
|
|
PyErr::new::<OperationalError, _>("Failed to acquire statement lock")
|
|
})?;
|
|
loop {
|
|
match smt_lock.step().map_err(|e| {
|
|
PyErr::new::<OperationalError, _>(format!("Step error: {:?}", e))
|
|
})? {
|
|
limbo_core::RowResult::Row(row) => {
|
|
let py_row = row_to_py(py, &row);
|
|
return Ok(Some(py_row));
|
|
}
|
|
limbo_core::RowResult::IO => {
|
|
self.conn.io.run_once().map_err(|e| {
|
|
PyErr::new::<OperationalError, _>(format!("IO error: {:?}", e))
|
|
})?;
|
|
}
|
|
limbo_core::RowResult::Done => {
|
|
return Ok(None);
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
Err(PyErr::new::<ProgrammingError, _>("No statement prepared for execution").into())
|
|
}
|
|
}
|
|
|
|
pub fn fetchall(&mut self, py: Python) -> Result<Vec<PyObject>> {
|
|
let mut results = Vec::new();
|
|
|
|
if let Some(smt) = &self.smt {
|
|
let mut smt_lock = smt.lock().map_err(|_| {
|
|
PyErr::new::<OperationalError, _>("Failed to acquire statement lock")
|
|
})?;
|
|
|
|
loop {
|
|
match smt_lock.step().map_err(|e| {
|
|
PyErr::new::<OperationalError, _>(format!("Step error: {:?}", e))
|
|
})? {
|
|
limbo_core::RowResult::Row(row) => {
|
|
let py_row = row_to_py(py, &row);
|
|
results.push(py_row);
|
|
}
|
|
limbo_core::RowResult::IO => {
|
|
self.conn.io.run_once().map_err(|e| {
|
|
PyErr::new::<OperationalError, _>(format!("IO error: {:?}", e))
|
|
})?;
|
|
}
|
|
limbo_core::RowResult::Done => {
|
|
return Ok(results);
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
Err(PyErr::new::<ProgrammingError, _>("No statement prepared for execution").into())
|
|
}
|
|
}
|
|
|
|
pub fn close(&self) -> Result<()> {
|
|
todo!()
|
|
}
|
|
|
|
#[pyo3(signature = (sql, parameters=None))]
|
|
pub fn executemany(&self, sql: &str, parameters: Option<Py<PyList>>) {
|
|
todo!()
|
|
}
|
|
|
|
#[pyo3(signature = (size=None))]
|
|
pub fn fetchmany(&self, size: Option<i64>) {
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
fn stmt_is_dml(sql: &str) -> bool {
|
|
let sql = sql.trim();
|
|
let sql = sql.to_uppercase();
|
|
sql.starts_with("INSERT") || sql.starts_with("UPDATE") || sql.starts_with("DELETE")
|
|
}
|
|
|
|
#[pyclass]
|
|
#[derive(Clone)]
|
|
pub struct Connection {
|
|
conn: Arc<Mutex<limbo_core::Connection>>,
|
|
io: Arc<limbo_core::PlatformIO>,
|
|
}
|
|
|
|
// SAFETY: The limbo_core crate guarantees that `Connection` is thread-safe.
|
|
unsafe impl Send for Connection {}
|
|
|
|
#[pymethods]
|
|
impl Connection {
|
|
pub fn cursor(&self) -> Result<Cursor> {
|
|
Ok(Cursor {
|
|
arraysize: 1,
|
|
conn: self.clone(),
|
|
description: None,
|
|
rowcount: -1,
|
|
smt: None,
|
|
})
|
|
}
|
|
|
|
pub fn close(&self) {
|
|
drop(self.conn.clone());
|
|
}
|
|
|
|
pub fn commit(&self) {
|
|
todo!()
|
|
}
|
|
|
|
pub fn rollback(&self) {
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
#[pyfunction]
|
|
pub fn connect(path: &str) -> Result<Connection> {
|
|
let io = Arc::new(limbo_core::PlatformIO::new().map_err(|e| {
|
|
PyErr::new::<InterfaceError, _>(format!("IO initialization failed: {:?}", e))
|
|
})?);
|
|
let db = limbo_core::Database::open_file(io.clone(), path)
|
|
.map_err(|e| PyErr::new::<DatabaseError, _>(format!("Failed to open database: {:?}", e)))?;
|
|
let conn: limbo_core::Connection = db.connect();
|
|
Ok(Connection {
|
|
conn: Arc::new(Mutex::new(conn)),
|
|
io,
|
|
})
|
|
}
|
|
|
|
fn row_to_py(py: Python, row: &limbo_core::Row) -> PyObject {
|
|
let py_values: Vec<PyObject> = row
|
|
.values
|
|
.iter()
|
|
.map(|value| match value {
|
|
limbo_core::Value::Null => py.None(),
|
|
limbo_core::Value::Integer(i) => i.to_object(py),
|
|
limbo_core::Value::Float(f) => f.to_object(py),
|
|
limbo_core::Value::Text(s) => s.to_object(py),
|
|
limbo_core::Value::Blob(b) => b.to_object(py),
|
|
})
|
|
.collect();
|
|
|
|
PyTuple::new_bound(py, &py_values).to_object(py)
|
|
}
|
|
|
|
#[pymodule]
|
|
fn _limbo(m: &Bound<PyModule>) -> PyResult<()> {
|
|
m.add("__version__", env!("CARGO_PKG_VERSION"))?;
|
|
m.add_class::<Connection>()?;
|
|
m.add_class::<Cursor>()?;
|
|
m.add_function(wrap_pyfunction!(connect, m)?)?;
|
|
m.add("Warning", m.py().get_type_bound::<Warning>())?;
|
|
m.add("Error", m.py().get_type_bound::<Error>())?;
|
|
m.add("InterfaceError", m.py().get_type_bound::<InterfaceError>())?;
|
|
m.add("DatabaseError", m.py().get_type_bound::<DatabaseError>())?;
|
|
m.add("DataError", m.py().get_type_bound::<DataError>())?;
|
|
m.add(
|
|
"OperationalError",
|
|
m.py().get_type_bound::<OperationalError>(),
|
|
)?;
|
|
m.add("IntegrityError", m.py().get_type_bound::<IntegrityError>())?;
|
|
m.add("InternalError", m.py().get_type_bound::<InternalError>())?;
|
|
m.add(
|
|
"ProgrammingError",
|
|
m.py().get_type_bound::<ProgrammingError>(),
|
|
)?;
|
|
m.add(
|
|
"NotSupportedError",
|
|
m.py().get_type_bound::<NotSupportedError>(),
|
|
)?;
|
|
Ok(())
|
|
}
|