mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-27 03:51:38 +08:00
Update unsafety of C function pointers for new bindgen
This commit is contained in:
parent
e94a5b8411
commit
b883ab651d
@ -407,13 +407,12 @@ impl InnerConnection {
|
|||||||
where F: FnMut(&Context) -> Result<T>,
|
where F: FnMut(&Context) -> Result<T>,
|
||||||
T: ToResult
|
T: ToResult
|
||||||
{
|
{
|
||||||
extern "C" fn call_boxed_closure<F, T>(ctx: *mut sqlite3_context,
|
unsafe extern "C" fn call_boxed_closure<F, T>(ctx: *mut sqlite3_context,
|
||||||
argc: c_int,
|
argc: c_int,
|
||||||
argv: *mut *mut sqlite3_value)
|
argv: *mut *mut sqlite3_value)
|
||||||
where F: FnMut(&Context) -> Result<T>,
|
where F: FnMut(&Context) -> Result<T>,
|
||||||
T: ToResult
|
T: ToResult
|
||||||
{
|
{
|
||||||
unsafe {
|
|
||||||
let ctx = Context {
|
let ctx = Context {
|
||||||
ctx: ctx,
|
ctx: ctx,
|
||||||
args: slice::from_raw_parts(argv, argc as usize),
|
args: slice::from_raw_parts(argv, argc as usize),
|
||||||
@ -430,7 +429,6 @@ impl InnerConnection {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
let boxed_f: *mut F = Box::into_raw(Box::new(x_func));
|
let boxed_f: *mut F = Box::into_raw(Box::new(x_func));
|
||||||
let c_name = try!(str_to_cstring(fn_name));
|
let c_name = try!(str_to_cstring(fn_name));
|
||||||
|
12
src/trace.rs
12
src/trace.rs
@ -67,9 +67,9 @@ impl Connection {
|
|||||||
/// There can only be a single tracer defined for each database connection.
|
/// There can only be a single tracer defined for each database connection.
|
||||||
/// Setting a new tracer clears the old one.
|
/// Setting a new tracer clears the old one.
|
||||||
pub fn trace(&mut self, trace_fn: Option<fn(&str)>) {
|
pub fn trace(&mut self, trace_fn: Option<fn(&str)>) {
|
||||||
extern "C" fn trace_callback(p_arg: *mut c_void, z_sql: *const c_char) {
|
unsafe extern "C" fn trace_callback(p_arg: *mut c_void, z_sql: *const c_char) {
|
||||||
let trace_fn: fn(&str) = unsafe { mem::transmute(p_arg) };
|
let trace_fn: fn(&str) = mem::transmute(p_arg);
|
||||||
let c_slice = unsafe { CStr::from_ptr(z_sql).to_bytes() };
|
let c_slice = CStr::from_ptr(z_sql).to_bytes();
|
||||||
if let Ok(s) = str::from_utf8(c_slice) {
|
if let Ok(s) = str::from_utf8(c_slice) {
|
||||||
trace_fn(s);
|
trace_fn(s);
|
||||||
}
|
}
|
||||||
@ -91,11 +91,11 @@ impl Connection {
|
|||||||
/// There can only be a single profiler defined for each database connection.
|
/// There can only be a single profiler defined for each database connection.
|
||||||
/// Setting a new profiler clears the old one.
|
/// Setting a new profiler clears the old one.
|
||||||
pub fn profile(&mut self, profile_fn: Option<fn(&str, Duration)>) {
|
pub fn profile(&mut self, profile_fn: Option<fn(&str, Duration)>) {
|
||||||
extern "C" fn profile_callback(p_arg: *mut c_void,
|
unsafe extern "C" fn profile_callback(p_arg: *mut c_void,
|
||||||
z_sql: *const c_char,
|
z_sql: *const c_char,
|
||||||
nanoseconds: u64) {
|
nanoseconds: u64) {
|
||||||
let profile_fn: fn(&str, Duration) = unsafe { mem::transmute(p_arg) };
|
let profile_fn: fn(&str, Duration) = mem::transmute(p_arg);
|
||||||
let c_slice = unsafe { CStr::from_ptr(z_sql).to_bytes() };
|
let c_slice = CStr::from_ptr(z_sql).to_bytes();
|
||||||
if let Ok(s) = str::from_utf8(c_slice) {
|
if let Ok(s) = str::from_utf8(c_slice) {
|
||||||
const NANOS_PER_SEC: u64 = 1_000_000_000;
|
const NANOS_PER_SEC: u64 = 1_000_000_000;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user