2020-04-06 13:15:27 +08:00
|
|
|
//! `feature = "session"` [Session Extension](https://sqlite.org/sessionintro.html)
|
2019-01-13 19:46:19 +08:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
|
|
|
use std::ffi::CStr;
|
|
|
|
use std::io::{Read, Write};
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::os::raw::{c_char, c_int, c_uchar, c_void};
|
|
|
|
use std::panic::{catch_unwind, RefUnwindSafe};
|
|
|
|
use std::ptr;
|
|
|
|
use std::slice::{from_raw_parts, from_raw_parts_mut};
|
|
|
|
|
2019-03-10 19:58:20 +08:00
|
|
|
use fallible_streaming_iterator::FallibleStreamingIterator;
|
|
|
|
|
2019-01-13 19:46:19 +08:00
|
|
|
use crate::error::error_from_sqlite_code;
|
|
|
|
use crate::ffi;
|
|
|
|
use crate::hooks::Action;
|
|
|
|
use crate::types::ValueRef;
|
2019-03-10 19:58:20 +08:00
|
|
|
use crate::{errmsg_to_string, str_to_cstring, Connection, DatabaseName, Result};
|
2019-01-13 19:46:19 +08:00
|
|
|
|
|
|
|
// https://sqlite.org/session.html
|
|
|
|
|
2020-04-11 21:03:24 +08:00
|
|
|
/// `feature = "session"` An instance of this object is a session that can be
|
|
|
|
/// used to record changes to a database.
|
2019-01-13 19:46:19 +08:00
|
|
|
pub struct Session<'conn> {
|
|
|
|
phantom: PhantomData<&'conn ()>,
|
|
|
|
s: *mut ffi::sqlite3_session,
|
|
|
|
filter: Option<Box<dyn Fn(&str) -> bool>>,
|
|
|
|
}
|
|
|
|
|
2019-02-03 18:02:38 +08:00
|
|
|
impl Session<'_> {
|
2019-01-13 19:46:19 +08:00
|
|
|
/// Create a new session object
|
2019-02-03 18:02:38 +08:00
|
|
|
pub fn new<'conn>(db: &'conn Connection) -> Result<Session<'conn>> {
|
2019-01-13 19:46:19 +08:00
|
|
|
Session::new_with_name(db, DatabaseName::Main)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new session object
|
2019-02-03 18:02:38 +08:00
|
|
|
pub fn new_with_name<'conn>(
|
|
|
|
db: &'conn Connection,
|
|
|
|
name: DatabaseName<'_>,
|
|
|
|
) -> Result<Session<'conn>> {
|
2019-01-13 19:46:19 +08:00
|
|
|
let name = name.to_cstring()?;
|
|
|
|
|
|
|
|
let db = db.db.borrow_mut().db;
|
|
|
|
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut s: *mut ffi::sqlite3_session = ptr::null_mut();
|
|
|
|
check!(unsafe { ffi::sqlite3session_create(db, name.as_ptr(), &mut s) });
|
2019-01-13 19:46:19 +08:00
|
|
|
|
|
|
|
Ok(Session {
|
|
|
|
phantom: PhantomData,
|
|
|
|
s,
|
|
|
|
filter: None,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set a table filter
|
|
|
|
pub fn table_filter<F>(&mut self, filter: Option<F>)
|
|
|
|
where
|
|
|
|
F: Fn(&str) -> bool + Send + RefUnwindSafe + 'static,
|
|
|
|
{
|
|
|
|
unsafe extern "C" fn call_boxed_closure<F>(
|
|
|
|
p_arg: *mut c_void,
|
|
|
|
tbl_str: *const c_char,
|
|
|
|
) -> c_int
|
|
|
|
where
|
|
|
|
F: Fn(&str) -> bool + RefUnwindSafe,
|
|
|
|
{
|
|
|
|
use std::str;
|
|
|
|
|
|
|
|
let boxed_filter: *mut F = p_arg as *mut F;
|
|
|
|
let tbl_name = {
|
|
|
|
let c_slice = CStr::from_ptr(tbl_str).to_bytes();
|
2020-04-15 00:07:01 +08:00
|
|
|
str::from_utf8(c_slice)
|
2019-01-13 19:46:19 +08:00
|
|
|
};
|
2020-04-15 00:07:01 +08:00
|
|
|
if let Ok(true) =
|
|
|
|
catch_unwind(|| (*boxed_filter)(tbl_name.expect("non-utf8 table name")))
|
|
|
|
{
|
2019-01-13 19:46:19 +08:00
|
|
|
1
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match filter {
|
|
|
|
Some(filter) => {
|
|
|
|
let boxed_filter = Box::new(filter);
|
|
|
|
unsafe {
|
|
|
|
ffi::sqlite3session_table_filter(
|
|
|
|
self.s,
|
|
|
|
Some(call_boxed_closure::<F>),
|
|
|
|
&*boxed_filter as *const F as *mut _,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
self.filter = Some(boxed_filter);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
unsafe { ffi::sqlite3session_table_filter(self.s, None, ptr::null_mut()) }
|
|
|
|
self.filter = None;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Attach a table. `None` means all tables.
|
|
|
|
pub fn attach(&mut self, table: Option<&str>) -> Result<()> {
|
|
|
|
let table = if let Some(table) = table {
|
2020-04-14 17:04:19 +08:00
|
|
|
Some(str_to_cstring(table)?)
|
2019-01-13 19:46:19 +08:00
|
|
|
} else {
|
2020-04-14 17:04:19 +08:00
|
|
|
None
|
2019-01-13 19:46:19 +08:00
|
|
|
};
|
2020-04-14 17:04:19 +08:00
|
|
|
let table = table.as_ref().map(|s| s.as_ptr()).unwrap_or(ptr::null());
|
2019-01-13 19:46:19 +08:00
|
|
|
unsafe { check!(ffi::sqlite3session_attach(self.s, table)) };
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generate a Changeset
|
|
|
|
pub fn changeset(&mut self) -> Result<Changeset> {
|
|
|
|
let mut n = 0;
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut cs: *mut c_void = ptr::null_mut();
|
|
|
|
check!(unsafe { ffi::sqlite3session_changeset(self.s, &mut n, &mut cs) });
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(Changeset { cs, n })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Write the set of changes represented by this session to `output`.
|
|
|
|
pub fn changeset_strm(&mut self, output: &mut dyn Write) -> Result<()> {
|
|
|
|
let output_ref = &output;
|
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3session_changeset_strm(
|
|
|
|
self.s,
|
|
|
|
Some(x_output),
|
|
|
|
output_ref as *const &mut dyn Write as *mut c_void,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generate a Patchset
|
|
|
|
pub fn patchset(&mut self) -> Result<Changeset> {
|
|
|
|
let mut n = 0;
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut ps: *mut c_void = ptr::null_mut();
|
|
|
|
check!(unsafe { ffi::sqlite3session_patchset(self.s, &mut n, &mut ps) });
|
2019-01-13 19:46:19 +08:00
|
|
|
// TODO Validate: same struct
|
|
|
|
Ok(Changeset { cs: ps, n })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Write the set of patches represented by this session to `output`.
|
|
|
|
pub fn patchset_strm(&mut self, output: &mut dyn Write) -> Result<()> {
|
|
|
|
let output_ref = &output;
|
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3session_patchset_strm(
|
|
|
|
self.s,
|
|
|
|
Some(x_output),
|
|
|
|
output_ref as *const &mut dyn Write as *mut c_void,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Load the difference between tables.
|
|
|
|
pub fn diff(&mut self, from: DatabaseName<'_>, table: &str) -> Result<()> {
|
|
|
|
let from = from.to_cstring()?;
|
2020-04-14 17:04:19 +08:00
|
|
|
let table = str_to_cstring(table)?;
|
|
|
|
let table = table.as_ptr();
|
2019-01-13 19:46:19 +08:00
|
|
|
unsafe {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut errmsg = ptr::null_mut();
|
|
|
|
let r =
|
|
|
|
ffi::sqlite3session_diff(self.s, from.as_ptr(), table, &mut errmsg as *mut *mut _);
|
2019-01-13 19:46:19 +08:00
|
|
|
if r != ffi::SQLITE_OK {
|
2020-04-07 10:53:55 +08:00
|
|
|
let errmsg: *mut c_char = errmsg;
|
2019-01-13 19:46:19 +08:00
|
|
|
let message = errmsg_to_string(&*errmsg);
|
|
|
|
ffi::sqlite3_free(errmsg as *mut ::std::os::raw::c_void);
|
|
|
|
return Err(error_from_sqlite_code(r, Some(message)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test if a changeset has recorded any changes
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
unsafe { ffi::sqlite3session_isempty(self.s) != 0 }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Query the current state of the session
|
|
|
|
pub fn is_enabled(&self) -> bool {
|
|
|
|
unsafe { ffi::sqlite3session_enable(self.s, -1) != 0 }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Enable or disable the recording of changes
|
|
|
|
pub fn set_enabled(&mut self, enabled: bool) {
|
|
|
|
unsafe {
|
|
|
|
ffi::sqlite3session_enable(self.s, if enabled { 1 } else { 0 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Query the current state of the indirect flag
|
|
|
|
pub fn is_indirect(&self) -> bool {
|
|
|
|
unsafe { ffi::sqlite3session_indirect(self.s, -1) != 0 }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set or clear the indirect change flag
|
|
|
|
pub fn set_indirect(&mut self, indirect: bool) {
|
|
|
|
unsafe {
|
|
|
|
ffi::sqlite3session_indirect(self.s, if indirect { 1 } else { 0 });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 18:02:38 +08:00
|
|
|
impl Drop for Session<'_> {
|
2019-01-13 19:46:19 +08:00
|
|
|
fn drop(&mut self) {
|
|
|
|
if self.filter.is_some() {
|
|
|
|
self.table_filter(None::<fn(&str) -> bool>);
|
|
|
|
}
|
|
|
|
unsafe { ffi::sqlite3session_delete(self.s) };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Invert a changeset
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn invert_strm(input: &mut dyn Read, output: &mut dyn Write) -> Result<()> {
|
|
|
|
let input_ref = &input;
|
|
|
|
let output_ref = &output;
|
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3changeset_invert_strm(
|
|
|
|
Some(x_input),
|
|
|
|
input_ref as *const &mut dyn Read as *mut c_void,
|
|
|
|
Some(x_output),
|
|
|
|
output_ref as *const &mut dyn Write as *mut c_void,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Combine two changesets
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn concat_strm(
|
|
|
|
input_a: &mut dyn Read,
|
|
|
|
input_b: &mut dyn Read,
|
|
|
|
output: &mut dyn Write,
|
|
|
|
) -> Result<()> {
|
|
|
|
let input_a_ref = &input_a;
|
|
|
|
let input_b_ref = &input_b;
|
|
|
|
let output_ref = &output;
|
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3changeset_concat_strm(
|
|
|
|
Some(x_input),
|
|
|
|
input_a_ref as *const &mut dyn Read as *mut c_void,
|
|
|
|
Some(x_input),
|
|
|
|
input_b_ref as *const &mut dyn Read as *mut c_void,
|
|
|
|
Some(x_output),
|
|
|
|
output_ref as *const &mut dyn Write as *mut c_void,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Changeset or Patchset
|
2019-01-13 19:46:19 +08:00
|
|
|
pub struct Changeset {
|
|
|
|
cs: *mut c_void,
|
|
|
|
n: c_int,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Changeset {
|
|
|
|
/// Invert a changeset
|
|
|
|
pub fn invert(&self) -> Result<Changeset> {
|
|
|
|
let mut n = 0;
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut cs = ptr::null_mut();
|
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3changeset_invert(self.n, self.cs, &mut n, &mut cs as *mut *mut _)
|
|
|
|
});
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(Changeset { cs, n })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create an iterator to traverse a changeset
|
2019-02-02 18:08:04 +08:00
|
|
|
pub fn iter(&self) -> Result<ChangesetIter<'_>> {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut it = ptr::null_mut();
|
|
|
|
check!(unsafe { ffi::sqlite3changeset_start(&mut it as *mut *mut _, self.n, self.cs) });
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(ChangesetIter {
|
|
|
|
phantom: PhantomData,
|
|
|
|
it,
|
|
|
|
item: None,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Concatenate two changeset objects
|
|
|
|
pub fn concat(a: &Changeset, b: &Changeset) -> Result<Changeset> {
|
|
|
|
let mut n = 0;
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut cs = ptr::null_mut();
|
2019-07-11 03:10:12 +08:00
|
|
|
check!(unsafe {
|
2020-04-07 10:53:55 +08:00
|
|
|
ffi::sqlite3changeset_concat(a.n, a.cs, b.n, b.cs, &mut n, &mut cs as *mut *mut _)
|
2019-07-11 03:10:12 +08:00
|
|
|
});
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(Changeset { cs, n })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Changeset {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
ffi::sqlite3_free(self.cs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Cursor for iterating over the elements of a changeset
|
|
|
|
/// or patchset.
|
2019-01-13 19:46:19 +08:00
|
|
|
pub struct ChangesetIter<'changeset> {
|
|
|
|
phantom: PhantomData<&'changeset ()>,
|
|
|
|
it: *mut ffi::sqlite3_changeset_iter,
|
|
|
|
item: Option<ChangesetItem>,
|
|
|
|
}
|
|
|
|
|
2019-02-03 18:02:38 +08:00
|
|
|
impl ChangesetIter<'_> {
|
2019-01-13 19:46:19 +08:00
|
|
|
/// Create an iterator on `input`
|
2019-11-02 21:53:32 +08:00
|
|
|
pub fn start_strm<'input>(input: &&'input mut dyn Read) -> Result<ChangesetIter<'input>> {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut it = ptr::null_mut();
|
2019-01-13 19:46:19 +08:00
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3changeset_start_strm(
|
2020-04-07 10:53:55 +08:00
|
|
|
&mut it as *mut *mut _,
|
2019-01-13 19:46:19 +08:00
|
|
|
Some(x_input),
|
2019-11-02 21:53:32 +08:00
|
|
|
input as *const &mut dyn Read as *mut c_void,
|
2019-01-13 19:46:19 +08:00
|
|
|
)
|
|
|
|
});
|
|
|
|
Ok(ChangesetIter {
|
|
|
|
phantom: PhantomData,
|
|
|
|
it,
|
|
|
|
item: None,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 18:02:38 +08:00
|
|
|
impl FallibleStreamingIterator for ChangesetIter<'_> {
|
2019-01-13 19:46:19 +08:00
|
|
|
type Error = crate::error::Error;
|
|
|
|
type Item = ChangesetItem;
|
|
|
|
|
|
|
|
fn advance(&mut self) -> Result<()> {
|
|
|
|
let rc = unsafe { ffi::sqlite3changeset_next(self.it) };
|
|
|
|
match rc {
|
|
|
|
ffi::SQLITE_ROW => {
|
|
|
|
self.item = Some(ChangesetItem { it: self.it });
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
ffi::SQLITE_DONE => {
|
|
|
|
self.item = None;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
code => Err(error_from_sqlite_code(code, None)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get(&self) -> Option<&ChangesetItem> {
|
|
|
|
self.item.as_ref()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"`
|
2019-01-13 19:46:19 +08:00
|
|
|
pub struct Operation<'item> {
|
|
|
|
table_name: &'item str,
|
|
|
|
number_of_columns: i32,
|
|
|
|
code: Action,
|
|
|
|
indirect: bool,
|
|
|
|
}
|
|
|
|
|
2019-02-03 18:02:38 +08:00
|
|
|
impl Operation<'_> {
|
2020-05-17 17:43:29 +08:00
|
|
|
/// Returns the table name.
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn table_name(&self) -> &str {
|
|
|
|
self.table_name
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:43:29 +08:00
|
|
|
/// Returns the number of columns in table
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn number_of_columns(&self) -> i32 {
|
|
|
|
self.number_of_columns
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:43:29 +08:00
|
|
|
/// Returns the action code.
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn code(&self) -> Action {
|
|
|
|
self.code
|
|
|
|
}
|
|
|
|
|
2020-05-17 17:43:29 +08:00
|
|
|
/// Returns `true` for an 'indirect' change.
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn indirect(&self) -> bool {
|
|
|
|
self.indirect
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 18:02:38 +08:00
|
|
|
impl Drop for ChangesetIter<'_> {
|
2019-01-13 19:46:19 +08:00
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
ffi::sqlite3changeset_finalize(self.it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-11 21:03:24 +08:00
|
|
|
/// `feature = "session"` An item passed to a conflict-handler by
|
|
|
|
/// `Connection::apply`, or an item generated by `ChangesetIter::next`.
|
2019-01-13 19:46:19 +08:00
|
|
|
// TODO enum ? Delete, Insert, Update, ...
|
|
|
|
pub struct ChangesetItem {
|
|
|
|
it: *mut ffi::sqlite3_changeset_iter,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ChangesetItem {
|
|
|
|
/// Obtain conflicting row values
|
|
|
|
///
|
|
|
|
/// May only be called with an `SQLITE_CHANGESET_DATA` or
|
|
|
|
/// `SQLITE_CHANGESET_CONFLICT` conflict handler callback.
|
|
|
|
pub fn conflict(&self, col: usize) -> Result<ValueRef<'_>> {
|
|
|
|
unsafe {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut p_value: *mut ffi::sqlite3_value = ptr::null_mut();
|
2019-01-13 19:46:19 +08:00
|
|
|
check!(ffi::sqlite3changeset_conflict(
|
|
|
|
self.it,
|
|
|
|
col as i32,
|
2020-04-07 10:53:55 +08:00
|
|
|
&mut p_value,
|
2019-01-13 19:46:19 +08:00
|
|
|
));
|
|
|
|
Ok(ValueRef::from_value(p_value))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Determine the number of foreign key constraint violations
|
|
|
|
///
|
|
|
|
/// May only be called with an `SQLITE_CHANGESET_FOREIGN_KEY` conflict
|
|
|
|
/// handler callback.
|
|
|
|
pub fn fk_conflicts(&self) -> Result<i32> {
|
|
|
|
unsafe {
|
|
|
|
let mut p_out = 0;
|
|
|
|
check!(ffi::sqlite3changeset_fk_conflicts(self.it, &mut p_out));
|
|
|
|
Ok(p_out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Obtain new.* Values
|
|
|
|
///
|
|
|
|
/// May only be called if the type of change is either `SQLITE_UPDATE` or
|
|
|
|
/// `SQLITE_INSERT`.
|
|
|
|
pub fn new_value(&self, col: usize) -> Result<ValueRef<'_>> {
|
|
|
|
unsafe {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut p_value: *mut ffi::sqlite3_value = ptr::null_mut();
|
|
|
|
check!(ffi::sqlite3changeset_new(self.it, col as i32, &mut p_value,));
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(ValueRef::from_value(p_value))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Obtain old.* Values
|
|
|
|
///
|
|
|
|
/// May only be called if the type of change is either `SQLITE_DELETE` or
|
|
|
|
/// `SQLITE_UPDATE`.
|
|
|
|
pub fn old_value(&self, col: usize) -> Result<ValueRef<'_>> {
|
|
|
|
unsafe {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut p_value: *mut ffi::sqlite3_value = ptr::null_mut();
|
|
|
|
check!(ffi::sqlite3changeset_old(self.it, col as i32, &mut p_value,));
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(ValueRef::from_value(p_value))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Obtain the current operation
|
|
|
|
pub fn op(&self) -> Result<Operation<'_>> {
|
|
|
|
let mut number_of_columns = 0;
|
|
|
|
let mut code = 0;
|
|
|
|
let mut indirect = 0;
|
|
|
|
let tab = unsafe {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut pz_tab: *const c_char = ptr::null();
|
2019-01-13 19:46:19 +08:00
|
|
|
check!(ffi::sqlite3changeset_op(
|
|
|
|
self.it,
|
2020-04-07 10:53:55 +08:00
|
|
|
&mut pz_tab,
|
2019-01-13 19:46:19 +08:00
|
|
|
&mut number_of_columns,
|
|
|
|
&mut code,
|
|
|
|
&mut indirect
|
|
|
|
));
|
|
|
|
CStr::from_ptr(pz_tab)
|
|
|
|
};
|
|
|
|
let table_name = tab.to_str()?;
|
|
|
|
Ok(Operation {
|
|
|
|
table_name,
|
|
|
|
number_of_columns,
|
|
|
|
code: Action::from(code),
|
|
|
|
indirect: indirect != 0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Obtain the primary key definition of a table
|
|
|
|
pub fn pk(&self) -> Result<&[u8]> {
|
|
|
|
let mut number_of_columns = 0;
|
|
|
|
unsafe {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut pks: *mut c_uchar = ptr::null_mut();
|
2019-01-13 19:46:19 +08:00
|
|
|
check!(ffi::sqlite3changeset_pk(
|
|
|
|
self.it,
|
2020-04-07 10:53:55 +08:00
|
|
|
&mut pks,
|
2019-01-13 19:46:19 +08:00
|
|
|
&mut number_of_columns
|
|
|
|
));
|
|
|
|
Ok(from_raw_parts(pks, number_of_columns as usize))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Used to combine two or more changesets or
|
2019-01-13 19:46:19 +08:00
|
|
|
/// patchsets
|
|
|
|
pub struct Changegroup {
|
|
|
|
cg: *mut ffi::sqlite3_changegroup,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Changegroup {
|
2020-05-17 17:43:29 +08:00
|
|
|
/// Create a new change group.
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn new() -> Result<Self> {
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut cg = ptr::null_mut();
|
|
|
|
check!(unsafe { ffi::sqlite3changegroup_new(&mut cg) });
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(Changegroup { cg })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a changeset
|
|
|
|
pub fn add(&mut self, cs: &Changeset) -> Result<()> {
|
|
|
|
check!(unsafe { ffi::sqlite3changegroup_add(self.cg, cs.n, cs.cs) });
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a changeset read from `input` to this change group.
|
|
|
|
pub fn add_stream(&mut self, input: &mut dyn Read) -> Result<()> {
|
|
|
|
let input_ref = &input;
|
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3changegroup_add_strm(
|
|
|
|
self.cg,
|
|
|
|
Some(x_input),
|
|
|
|
input_ref as *const &mut dyn Read as *mut c_void,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Obtain a composite Changeset
|
|
|
|
pub fn output(&mut self) -> Result<Changeset> {
|
|
|
|
let mut n = 0;
|
2020-04-07 10:53:55 +08:00
|
|
|
let mut output: *mut c_void = ptr::null_mut();
|
|
|
|
check!(unsafe { ffi::sqlite3changegroup_output(self.cg, &mut n, &mut output) });
|
2019-01-13 19:46:19 +08:00
|
|
|
Ok(Changeset { cs: output, n })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Write the combined set of changes to `output`.
|
|
|
|
pub fn output_strm(&mut self, output: &mut dyn Write) -> Result<()> {
|
|
|
|
let output_ref = &output;
|
|
|
|
check!(unsafe {
|
|
|
|
ffi::sqlite3changegroup_output_strm(
|
|
|
|
self.cg,
|
|
|
|
Some(x_output),
|
|
|
|
output_ref as *const &mut dyn Write as *mut c_void,
|
|
|
|
)
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Changegroup {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
ffi::sqlite3changegroup_delete(self.cg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Connection {
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Apply a changeset to a database
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn apply<F, C>(&self, cs: &Changeset, filter: Option<F>, conflict: C) -> Result<()>
|
|
|
|
where
|
|
|
|
F: Fn(&str) -> bool + Send + RefUnwindSafe + 'static,
|
|
|
|
C: Fn(ConflictType, ChangesetItem) -> ConflictAction + Send + RefUnwindSafe + 'static,
|
|
|
|
{
|
|
|
|
let db = self.db.borrow_mut().db;
|
|
|
|
|
|
|
|
let filtered = filter.is_some();
|
|
|
|
let tuple = &mut (filter, conflict);
|
|
|
|
check!(unsafe {
|
|
|
|
if filtered {
|
|
|
|
ffi::sqlite3changeset_apply(
|
|
|
|
db,
|
|
|
|
cs.n,
|
|
|
|
cs.cs,
|
|
|
|
Some(call_filter::<F, C>),
|
|
|
|
Some(call_conflict::<F, C>),
|
|
|
|
tuple as *mut (Option<F>, C) as *mut c_void,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
ffi::sqlite3changeset_apply(
|
|
|
|
db,
|
|
|
|
cs.n,
|
|
|
|
cs.cs,
|
|
|
|
None,
|
|
|
|
Some(call_conflict::<F, C>),
|
|
|
|
tuple as *mut (Option<F>, C) as *mut c_void,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Apply a changeset to a database
|
2019-01-13 19:46:19 +08:00
|
|
|
pub fn apply_strm<F, C>(
|
|
|
|
&self,
|
|
|
|
input: &mut dyn Read,
|
|
|
|
filter: Option<F>,
|
|
|
|
conflict: C,
|
|
|
|
) -> Result<()>
|
|
|
|
where
|
|
|
|
F: Fn(&str) -> bool + Send + RefUnwindSafe + 'static,
|
|
|
|
C: Fn(ConflictType, ChangesetItem) -> ConflictAction + Send + RefUnwindSafe + 'static,
|
|
|
|
{
|
|
|
|
let input_ref = &input;
|
|
|
|
let db = self.db.borrow_mut().db;
|
|
|
|
|
|
|
|
let filtered = filter.is_some();
|
|
|
|
let tuple = &mut (filter, conflict);
|
|
|
|
check!(unsafe {
|
|
|
|
if filtered {
|
|
|
|
ffi::sqlite3changeset_apply_strm(
|
|
|
|
db,
|
|
|
|
Some(x_input),
|
|
|
|
input_ref as *const &mut dyn Read as *mut c_void,
|
|
|
|
Some(call_filter::<F, C>),
|
|
|
|
Some(call_conflict::<F, C>),
|
|
|
|
tuple as *mut (Option<F>, C) as *mut c_void,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
ffi::sqlite3changeset_apply_strm(
|
|
|
|
db,
|
|
|
|
Some(x_input),
|
|
|
|
input_ref as *const &mut dyn Read as *mut c_void,
|
|
|
|
None,
|
|
|
|
Some(call_conflict::<F, C>),
|
|
|
|
tuple as *mut (Option<F>, C) as *mut c_void,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Constants passed to the conflict handler
|
2020-05-17 17:43:29 +08:00
|
|
|
/// See [here](https://sqlite.org/session.html#SQLITE_CHANGESET_CONFLICT) for details.
|
|
|
|
#[allow(missing_docs)]
|
2019-02-02 18:04:46 +08:00
|
|
|
#[repr(i32)]
|
2019-01-13 19:46:19 +08:00
|
|
|
#[derive(Debug, PartialEq)]
|
2020-04-07 03:01:39 +08:00
|
|
|
#[non_exhaustive]
|
2019-01-13 19:46:19 +08:00
|
|
|
pub enum ConflictType {
|
|
|
|
UNKNOWN = -1,
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_CHANGESET_DATA = ffi::SQLITE_CHANGESET_DATA,
|
|
|
|
SQLITE_CHANGESET_NOTFOUND = ffi::SQLITE_CHANGESET_NOTFOUND,
|
|
|
|
SQLITE_CHANGESET_CONFLICT = ffi::SQLITE_CHANGESET_CONFLICT,
|
|
|
|
SQLITE_CHANGESET_CONSTRAINT = ffi::SQLITE_CHANGESET_CONSTRAINT,
|
|
|
|
SQLITE_CHANGESET_FOREIGN_KEY = ffi::SQLITE_CHANGESET_FOREIGN_KEY,
|
2019-01-13 19:46:19 +08:00
|
|
|
}
|
|
|
|
impl From<i32> for ConflictType {
|
|
|
|
fn from(code: i32) -> ConflictType {
|
|
|
|
match code {
|
|
|
|
ffi::SQLITE_CHANGESET_DATA => ConflictType::SQLITE_CHANGESET_DATA,
|
|
|
|
ffi::SQLITE_CHANGESET_NOTFOUND => ConflictType::SQLITE_CHANGESET_NOTFOUND,
|
|
|
|
ffi::SQLITE_CHANGESET_CONFLICT => ConflictType::SQLITE_CHANGESET_CONFLICT,
|
|
|
|
ffi::SQLITE_CHANGESET_CONSTRAINT => ConflictType::SQLITE_CHANGESET_CONSTRAINT,
|
|
|
|
ffi::SQLITE_CHANGESET_FOREIGN_KEY => ConflictType::SQLITE_CHANGESET_FOREIGN_KEY,
|
|
|
|
_ => ConflictType::UNKNOWN,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:15:27 +08:00
|
|
|
/// `feature = "session"` Constants returned by the conflict handler
|
2020-05-17 17:50:32 +08:00
|
|
|
/// See [here](https://sqlite.org/session.html#SQLITE_CHANGESET_ABORT) for details.
|
|
|
|
#[allow(missing_docs)]
|
2019-02-02 18:04:46 +08:00
|
|
|
#[repr(i32)]
|
2019-01-13 19:46:19 +08:00
|
|
|
#[derive(Debug, PartialEq)]
|
2020-04-07 03:01:39 +08:00
|
|
|
#[non_exhaustive]
|
2019-01-13 19:46:19 +08:00
|
|
|
pub enum ConflictAction {
|
2019-02-02 18:04:46 +08:00
|
|
|
SQLITE_CHANGESET_OMIT = ffi::SQLITE_CHANGESET_OMIT,
|
|
|
|
SQLITE_CHANGESET_REPLACE = ffi::SQLITE_CHANGESET_REPLACE,
|
|
|
|
SQLITE_CHANGESET_ABORT = ffi::SQLITE_CHANGESET_ABORT,
|
2019-01-13 19:46:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn call_filter<F, C>(p_ctx: *mut c_void, tbl_str: *const c_char) -> c_int
|
|
|
|
where
|
|
|
|
F: Fn(&str) -> bool + Send + RefUnwindSafe + 'static,
|
|
|
|
C: Fn(ConflictType, ChangesetItem) -> ConflictAction + Send + RefUnwindSafe + 'static,
|
|
|
|
{
|
|
|
|
use std::str;
|
|
|
|
|
|
|
|
let tuple: *mut (Option<F>, C) = p_ctx as *mut (Option<F>, C);
|
|
|
|
let tbl_name = {
|
|
|
|
let c_slice = CStr::from_ptr(tbl_str).to_bytes();
|
2020-04-15 00:07:01 +08:00
|
|
|
str::from_utf8(c_slice)
|
2019-01-13 19:46:19 +08:00
|
|
|
};
|
|
|
|
match *tuple {
|
|
|
|
(Some(ref filter), _) => {
|
2020-04-15 00:07:01 +08:00
|
|
|
if let Ok(true) = catch_unwind(|| filter(tbl_name.expect("illegal table name"))) {
|
2019-01-13 19:46:19 +08:00
|
|
|
1
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => unimplemented!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn call_conflict<F, C>(
|
|
|
|
p_ctx: *mut c_void,
|
|
|
|
e_conflict: c_int,
|
|
|
|
p: *mut ffi::sqlite3_changeset_iter,
|
|
|
|
) -> c_int
|
|
|
|
where
|
|
|
|
F: Fn(&str) -> bool + Send + RefUnwindSafe + 'static,
|
|
|
|
C: Fn(ConflictType, ChangesetItem) -> ConflictAction + Send + RefUnwindSafe + 'static,
|
|
|
|
{
|
|
|
|
let tuple: *mut (Option<F>, C) = p_ctx as *mut (Option<F>, C);
|
|
|
|
let conflict_type = ConflictType::from(e_conflict);
|
|
|
|
let item = ChangesetItem { it: p };
|
|
|
|
if let Ok(action) = catch_unwind(|| (*tuple).1(conflict_type, item)) {
|
|
|
|
action as c_int
|
|
|
|
} else {
|
|
|
|
ffi::SQLITE_CHANGESET_ABORT
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn x_input(p_in: *mut c_void, data: *mut c_void, len: *mut c_int) -> c_int {
|
|
|
|
if p_in.is_null() {
|
|
|
|
return ffi::SQLITE_MISUSE;
|
|
|
|
}
|
2019-11-01 16:57:56 +08:00
|
|
|
let bytes: &mut [u8] = from_raw_parts_mut(data as *mut u8, *len as usize);
|
2019-01-13 19:46:19 +08:00
|
|
|
let input = p_in as *mut &mut dyn Read;
|
|
|
|
match (*input).read(bytes) {
|
|
|
|
Ok(n) => {
|
|
|
|
*len = n as i32; // TODO Validate: n = 0 may not mean the reader will always no longer be able to
|
|
|
|
// produce bytes.
|
|
|
|
ffi::SQLITE_OK
|
|
|
|
}
|
|
|
|
Err(_) => ffi::SQLITE_IOERR_READ, // TODO check if err is a (ru)sqlite Error => propagate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn x_output(p_out: *mut c_void, data: *const c_void, len: c_int) -> c_int {
|
|
|
|
if p_out.is_null() {
|
|
|
|
return ffi::SQLITE_MISUSE;
|
|
|
|
}
|
|
|
|
// The sessions module never invokes an xOutput callback with the third
|
|
|
|
// parameter set to a value less than or equal to zero.
|
|
|
|
let bytes: &[u8] = from_raw_parts(data as *const u8, len as usize);
|
|
|
|
let output = p_out as *mut &mut dyn Write;
|
|
|
|
match (*output).write_all(bytes) {
|
|
|
|
Ok(_) => ffi::SQLITE_OK,
|
|
|
|
Err(_) => ffi::SQLITE_IOERR_WRITE, // TODO check if err is a (ru)sqlite Error => propagate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2019-03-10 19:58:20 +08:00
|
|
|
use fallible_streaming_iterator::FallibleStreamingIterator;
|
2019-11-02 21:53:32 +08:00
|
|
|
use std::io::Read;
|
2019-03-20 03:45:04 +08:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
2019-01-13 19:46:19 +08:00
|
|
|
|
|
|
|
use super::{Changeset, ChangesetIter, ConflictAction, ConflictType, Session};
|
|
|
|
use crate::hooks::Action;
|
2019-03-10 19:58:20 +08:00
|
|
|
use crate::Connection;
|
2019-01-13 19:46:19 +08:00
|
|
|
|
|
|
|
fn one_changeset() -> Changeset {
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
db.execute_batch("CREATE TABLE foo(t TEXT PRIMARY KEY NOT NULL);")
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut session = Session::new(&db).unwrap();
|
|
|
|
assert!(session.is_empty());
|
|
|
|
|
|
|
|
session.attach(None).unwrap();
|
|
|
|
db.execute("INSERT INTO foo (t) VALUES (?);", &["bar"])
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
session.changeset().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn one_changeset_strm() -> Vec<u8> {
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
db.execute_batch("CREATE TABLE foo(t TEXT PRIMARY KEY NOT NULL);")
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut session = Session::new(&db).unwrap();
|
|
|
|
assert!(session.is_empty());
|
|
|
|
|
|
|
|
session.attach(None).unwrap();
|
|
|
|
db.execute("INSERT INTO foo (t) VALUES (?);", &["bar"])
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut output = Vec::new();
|
|
|
|
session.changeset_strm(&mut output).unwrap();
|
|
|
|
output
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_changeset() {
|
|
|
|
let changeset = one_changeset();
|
|
|
|
let mut iter = changeset.iter().unwrap();
|
|
|
|
let item = iter.next().unwrap();
|
|
|
|
assert!(item.is_some());
|
|
|
|
|
|
|
|
let item = item.unwrap();
|
|
|
|
let op = item.op().unwrap();
|
|
|
|
assert_eq!("foo", op.table_name());
|
|
|
|
assert_eq!(1, op.number_of_columns());
|
|
|
|
assert_eq!(Action::SQLITE_INSERT, op.code());
|
|
|
|
assert_eq!(false, op.indirect());
|
|
|
|
|
|
|
|
let pk = item.pk().unwrap();
|
|
|
|
assert_eq!(&[1], pk);
|
|
|
|
|
|
|
|
let new_value = item.new_value(0).unwrap();
|
|
|
|
assert_eq!(Ok("bar"), new_value.as_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_changeset_strm() {
|
|
|
|
let output = one_changeset_strm();
|
|
|
|
assert!(!output.is_empty());
|
|
|
|
assert_eq!(14, output.len());
|
|
|
|
|
2019-11-02 21:53:32 +08:00
|
|
|
let input: &mut dyn Read = &mut output.as_slice();
|
|
|
|
let mut iter = ChangesetIter::start_strm(&input).unwrap();
|
2019-01-13 19:46:19 +08:00
|
|
|
let item = iter.next().unwrap();
|
|
|
|
assert!(item.is_some());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_changeset_apply() {
|
|
|
|
let changeset = one_changeset();
|
|
|
|
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
db.execute_batch("CREATE TABLE foo(t TEXT PRIMARY KEY NOT NULL);")
|
|
|
|
.unwrap();
|
|
|
|
|
2019-08-10 02:01:44 +08:00
|
|
|
lazy_static::lazy_static! {
|
2019-02-02 18:10:08 +08:00
|
|
|
static ref CALLED: AtomicBool = AtomicBool::new(false);
|
2019-01-13 19:46:19 +08:00
|
|
|
}
|
|
|
|
db.apply(
|
|
|
|
&changeset,
|
|
|
|
None::<fn(&str) -> bool>,
|
|
|
|
|_conflict_type, _item| {
|
2019-02-02 18:10:08 +08:00
|
|
|
CALLED.store(true, Ordering::Relaxed);
|
2019-01-13 19:46:19 +08:00
|
|
|
ConflictAction::SQLITE_CHANGESET_OMIT
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
2019-02-02 18:10:08 +08:00
|
|
|
assert!(!CALLED.load(Ordering::Relaxed));
|
2019-01-13 19:46:19 +08:00
|
|
|
let check = db
|
2019-01-26 15:17:45 +08:00
|
|
|
.query_row("SELECT 1 FROM foo WHERE t = ?", &["bar"], |row| {
|
|
|
|
row.get::<_, i32>(0)
|
|
|
|
})
|
2019-01-13 19:46:19 +08:00
|
|
|
.unwrap();
|
|
|
|
assert_eq!(1, check);
|
|
|
|
|
|
|
|
// conflict expected when same changeset applied again on the same db
|
|
|
|
db.apply(
|
|
|
|
&changeset,
|
|
|
|
None::<fn(&str) -> bool>,
|
|
|
|
|conflict_type, item| {
|
2019-02-02 18:10:08 +08:00
|
|
|
CALLED.store(true, Ordering::Relaxed);
|
2019-01-13 19:46:19 +08:00
|
|
|
assert_eq!(ConflictType::SQLITE_CHANGESET_CONFLICT, conflict_type);
|
|
|
|
let conflict = item.conflict(0).unwrap();
|
|
|
|
assert_eq!(Ok("bar"), conflict.as_str());
|
|
|
|
ConflictAction::SQLITE_CHANGESET_OMIT
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.unwrap();
|
2019-02-02 18:10:08 +08:00
|
|
|
assert!(CALLED.load(Ordering::Relaxed));
|
2019-01-13 19:46:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_changeset_apply_strm() {
|
|
|
|
let output = one_changeset_strm();
|
|
|
|
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
db.execute_batch("CREATE TABLE foo(t TEXT PRIMARY KEY NOT NULL);")
|
|
|
|
.unwrap();
|
|
|
|
|
2019-11-02 21:53:32 +08:00
|
|
|
let mut input = output.as_slice();
|
2019-01-13 19:46:19 +08:00
|
|
|
db.apply_strm(
|
2019-11-02 17:42:13 +08:00
|
|
|
&mut input,
|
2019-01-13 19:46:19 +08:00
|
|
|
None::<fn(&str) -> bool>,
|
|
|
|
|_conflict_type, _item| ConflictAction::SQLITE_CHANGESET_OMIT,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let check = db
|
2019-01-26 15:17:45 +08:00
|
|
|
.query_row("SELECT 1 FROM foo WHERE t = ?", &["bar"], |row| {
|
|
|
|
row.get::<_, i32>(0)
|
|
|
|
})
|
2019-01-13 19:46:19 +08:00
|
|
|
.unwrap();
|
|
|
|
assert_eq!(1, check);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_session_empty() {
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
db.execute_batch("CREATE TABLE foo(t TEXT PRIMARY KEY NOT NULL);")
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut session = Session::new(&db).unwrap();
|
|
|
|
assert!(session.is_empty());
|
|
|
|
|
|
|
|
session.attach(None).unwrap();
|
|
|
|
db.execute("INSERT INTO foo (t) VALUES (?);", &["bar"])
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert!(!session.is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_session_set_enabled() {
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
|
|
|
|
let mut session = Session::new(&db).unwrap();
|
|
|
|
assert!(session.is_enabled());
|
|
|
|
session.set_enabled(false);
|
|
|
|
assert!(!session.is_enabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_session_set_indirect() {
|
|
|
|
let db = Connection::open_in_memory().unwrap();
|
|
|
|
|
|
|
|
let mut session = Session::new(&db).unwrap();
|
|
|
|
assert!(!session.is_indirect());
|
|
|
|
session.set_indirect(true);
|
|
|
|
assert!(session.is_indirect());
|
|
|
|
}
|
|
|
|
}
|