mirror of
https://github.com/isar/rusqlite.git
synced 2025-04-05 23:07:46 +08:00
add static lifetime bound and compile test
This commit is contained in:
parent
64bb1e861f
commit
dd92f1d6df
@ -131,7 +131,7 @@ impl Connection {
|
|||||||
#[inline]
|
#[inline]
|
||||||
pub fn preupdate_hook<F>(&self, hook: Option<F>)
|
pub fn preupdate_hook<F>(&self, hook: Option<F>)
|
||||||
where
|
where
|
||||||
F: FnMut(Action, &str, &str, &PreUpdateCase) + Send,
|
F: FnMut(Action, &str, &str, &PreUpdateCase) + Send + 'static,
|
||||||
{
|
{
|
||||||
self.db.borrow_mut().preupdate_hook(hook);
|
self.db.borrow_mut().preupdate_hook(hook);
|
||||||
}
|
}
|
||||||
@ -143,9 +143,22 @@ impl InnerConnection {
|
|||||||
self.preupdate_hook(None::<fn(Action, &str, &str, &PreUpdateCase)>);
|
self.preupdate_hook(None::<fn(Action, &str, &str, &PreUpdateCase)>);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ```compile_fail
|
||||||
|
/// use rusqlite::{Connection, Result, hooks::PreUpdateCase};
|
||||||
|
/// fn main() -> Result<()> {
|
||||||
|
/// let db = Connection::open_in_memory()?;
|
||||||
|
/// {
|
||||||
|
/// let mut called = std::sync::atomic::AtomicBool::new(false);
|
||||||
|
/// db.preupdate_hook(Some(|action, db: &str, tbl: &str, case: &PreUpdateCase| {
|
||||||
|
/// called.store(true, std::sync::atomic::Ordering::Relaxed);
|
||||||
|
/// }));
|
||||||
|
/// }
|
||||||
|
/// db.execute_batch("CREATE TABLE foo AS SELECT 1 AS bar;")
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
fn preupdate_hook<F>(&mut self, hook: Option<F>)
|
fn preupdate_hook<F>(&mut self, hook: Option<F>)
|
||||||
where
|
where
|
||||||
F: FnMut(Action, &str, &str, &PreUpdateCase) + Send,
|
F: FnMut(Action, &str, &str, &PreUpdateCase) + Send + 'static,
|
||||||
{
|
{
|
||||||
unsafe extern "C" fn call_boxed_closure<F>(
|
unsafe extern "C" fn call_boxed_closure<F>(
|
||||||
p_arg: *mut c_void,
|
p_arg: *mut c_void,
|
||||||
@ -223,6 +236,8 @@ impl InnerConnection {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
|
use std::sync::atomic::{AtomicBool, Ordering};
|
||||||
|
|
||||||
use super::super::Action;
|
use super::super::Action;
|
||||||
use super::PreUpdateCase;
|
use super::PreUpdateCase;
|
||||||
use crate::{Connection, Result};
|
use crate::{Connection, Result};
|
||||||
@ -231,7 +246,8 @@ mod test {
|
|||||||
fn test_preupdate_hook_insert() -> Result<()> {
|
fn test_preupdate_hook_insert() -> Result<()> {
|
||||||
let db = Connection::open_in_memory()?;
|
let db = Connection::open_in_memory()?;
|
||||||
|
|
||||||
let mut called = false;
|
static CALLED: AtomicBool = AtomicBool::new(false);
|
||||||
|
|
||||||
db.preupdate_hook(Some(|action, db: &str, tbl: &str, case: &PreUpdateCase| {
|
db.preupdate_hook(Some(|action, db: &str, tbl: &str, case: &PreUpdateCase| {
|
||||||
assert_eq!(Action::SQLITE_INSERT, action);
|
assert_eq!(Action::SQLITE_INSERT, action);
|
||||||
assert_eq!("main", db);
|
assert_eq!("main", db);
|
||||||
@ -246,11 +262,11 @@ mod test {
|
|||||||
}
|
}
|
||||||
_ => panic!("wrong preupdate case"),
|
_ => panic!("wrong preupdate case"),
|
||||||
}
|
}
|
||||||
called = true;
|
CALLED.store(true, Ordering::Relaxed);
|
||||||
}));
|
}));
|
||||||
db.execute_batch("CREATE TABLE foo (t TEXT)")?;
|
db.execute_batch("CREATE TABLE foo (t TEXT)")?;
|
||||||
db.execute_batch("INSERT INTO foo VALUES ('lisa')")?;
|
db.execute_batch("INSERT INTO foo VALUES ('lisa')")?;
|
||||||
assert!(called);
|
assert!(CALLED.load(Ordering::Relaxed));
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -258,7 +274,7 @@ mod test {
|
|||||||
fn test_preupdate_hook_delete() -> Result<()> {
|
fn test_preupdate_hook_delete() -> Result<()> {
|
||||||
let db = Connection::open_in_memory()?;
|
let db = Connection::open_in_memory()?;
|
||||||
|
|
||||||
let mut called = false;
|
static CALLED: AtomicBool = AtomicBool::new(false);
|
||||||
|
|
||||||
db.execute_batch("CREATE TABLE foo (t TEXT)")?;
|
db.execute_batch("CREATE TABLE foo (t TEXT)")?;
|
||||||
db.execute_batch("INSERT INTO foo VALUES ('lisa')")?;
|
db.execute_batch("INSERT INTO foo VALUES ('lisa')")?;
|
||||||
@ -277,11 +293,11 @@ mod test {
|
|||||||
}
|
}
|
||||||
_ => panic!("wrong preupdate case"),
|
_ => panic!("wrong preupdate case"),
|
||||||
}
|
}
|
||||||
called = true;
|
CALLED.store(true, Ordering::Relaxed);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
db.execute_batch("DELETE from foo")?;
|
db.execute_batch("DELETE from foo")?;
|
||||||
assert!(called);
|
assert!(CALLED.load(Ordering::Relaxed));
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -289,7 +305,7 @@ mod test {
|
|||||||
fn test_preupdate_hook_update() -> Result<()> {
|
fn test_preupdate_hook_update() -> Result<()> {
|
||||||
let db = Connection::open_in_memory()?;
|
let db = Connection::open_in_memory()?;
|
||||||
|
|
||||||
let mut called = false;
|
static CALLED: AtomicBool = AtomicBool::new(false);
|
||||||
|
|
||||||
db.execute_batch("CREATE TABLE foo (t TEXT)")?;
|
db.execute_batch("CREATE TABLE foo (t TEXT)")?;
|
||||||
db.execute_batch("INSERT INTO foo VALUES ('lisa')")?;
|
db.execute_batch("INSERT INTO foo VALUES ('lisa')")?;
|
||||||
@ -323,11 +339,11 @@ mod test {
|
|||||||
}
|
}
|
||||||
_ => panic!("wrong preupdate case"),
|
_ => panic!("wrong preupdate case"),
|
||||||
}
|
}
|
||||||
called = true;
|
CALLED.store(true, Ordering::Relaxed);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
db.execute_batch("UPDATE foo SET t = 'janice'")?;
|
db.execute_batch("UPDATE foo SET t = 'janice'")?;
|
||||||
assert!(called);
|
assert!(CALLED.load(Ordering::Relaxed));
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user