mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-25 02:21:37 +08:00
Merge pull request #1362 from gwenn/loadable_extension
Loadable extension
This commit is contained in:
commit
8388eacf81
5
.github/workflows/main.yml
vendored
5
.github/workflows/main.yml
vendored
@ -65,6 +65,11 @@ jobs:
|
|||||||
- run: cargo test --features 'bundled-full session buildtime_bindgen' --all-targets --workspace --verbose
|
- run: cargo test --features 'bundled-full session buildtime_bindgen' --all-targets --workspace --verbose
|
||||||
- run: cargo test --features 'bundled-full session buildtime_bindgen' --doc --workspace --verbose
|
- run: cargo test --features 'bundled-full session buildtime_bindgen' --doc --workspace --verbose
|
||||||
|
|
||||||
|
- name: loadable extension
|
||||||
|
run: |
|
||||||
|
cargo build --example loadable_extension --features "loadable_extension modern_sqlite functions vtab trace"
|
||||||
|
cargo run --example load_extension --features "load_extension bundled functions vtab trace"
|
||||||
|
|
||||||
# TODO: move into own action for better caching
|
# TODO: move into own action for better caching
|
||||||
- name: Static build
|
- name: Static build
|
||||||
# Do we expect this to work / should we test with gnu toolchain?
|
# Do we expect this to work / should we test with gnu toolchain?
|
||||||
|
10
Cargo.toml
10
Cargo.toml
@ -50,6 +50,7 @@ bundled-sqlcipher = ["libsqlite3-sys/bundled-sqlcipher", "bundled"]
|
|||||||
bundled-sqlcipher-vendored-openssl = ["libsqlite3-sys/bundled-sqlcipher-vendored-openssl", "bundled-sqlcipher"]
|
bundled-sqlcipher-vendored-openssl = ["libsqlite3-sys/bundled-sqlcipher-vendored-openssl", "bundled-sqlcipher"]
|
||||||
buildtime_bindgen = ["libsqlite3-sys/buildtime_bindgen"]
|
buildtime_bindgen = ["libsqlite3-sys/buildtime_bindgen"]
|
||||||
limits = []
|
limits = []
|
||||||
|
loadable_extension = ["libsqlite3-sys/loadable_extension"]
|
||||||
hooks = []
|
hooks = []
|
||||||
i128_blob = []
|
i128_blob = []
|
||||||
sqlcipher = ["libsqlite3-sys/sqlcipher"]
|
sqlcipher = ["libsqlite3-sys/sqlcipher"]
|
||||||
@ -159,6 +160,15 @@ harness = false
|
|||||||
name = "exec"
|
name = "exec"
|
||||||
harness = false
|
harness = false
|
||||||
|
|
||||||
|
[[example]]
|
||||||
|
name = "loadable_extension"
|
||||||
|
crate-type = ["cdylib"]
|
||||||
|
required-features = ["loadable_extension", "modern_sqlite", "functions", "vtab", "trace"]
|
||||||
|
|
||||||
|
[[example]]
|
||||||
|
name = "load_extension"
|
||||||
|
required-features = ["load_extension", "bundled", "functions", "vtab", "trace"]
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = ["modern-full", "rusqlite-macros"]
|
features = ["modern-full", "rusqlite-macros"]
|
||||||
all-features = false
|
all-features = false
|
||||||
|
22
examples/load_extension.rs
Normal file
22
examples/load_extension.rs
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
//! Ensure loadable_extension.rs works.
|
||||||
|
|
||||||
|
use rusqlite::{Connection, Result};
|
||||||
|
|
||||||
|
fn main() -> Result<()> {
|
||||||
|
let db = Connection::open_in_memory()?;
|
||||||
|
|
||||||
|
unsafe {
|
||||||
|
db.load_extension_enable()?;
|
||||||
|
#[cfg(not(windows))]
|
||||||
|
db.load_extension("target/debug/examples/libloadable_extension", None)?;
|
||||||
|
#[cfg(windows)]
|
||||||
|
db.load_extension("target/debug/examples/loadable_extension", None)?;
|
||||||
|
db.load_extension_disable()?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let str = db.query_row("SELECT rusqlite_test_function()", [], |row| {
|
||||||
|
row.get::<_, String>(0)
|
||||||
|
})?;
|
||||||
|
assert_eq!(&str, "Rusqlite extension loaded correctly!");
|
||||||
|
Ok(())
|
||||||
|
}
|
50
examples/loadable_extension.rs
Normal file
50
examples/loadable_extension.rs
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
//! Adaptation of https://sqlite.org/loadext.html#programming_loadable_extensions
|
||||||
|
use std::os::raw::{c_char, c_int};
|
||||||
|
|
||||||
|
use rusqlite::ffi;
|
||||||
|
use rusqlite::functions::FunctionFlags;
|
||||||
|
use rusqlite::types::{ToSqlOutput, Value};
|
||||||
|
use rusqlite::{to_sqlite_error, Connection, Result};
|
||||||
|
|
||||||
|
/// # build
|
||||||
|
/// ```sh
|
||||||
|
/// cargo build --example loadable_extension --features "loadable_extension modern_sqlite functions vtab trace"
|
||||||
|
/// ```
|
||||||
|
/// # test
|
||||||
|
/// ```sh
|
||||||
|
/// sqlite> .log on
|
||||||
|
/// sqlite> .load target/debug/examples/libloadable_extension.so
|
||||||
|
/// (28) Rusqlite extension initialized
|
||||||
|
/// sqlite> SELECT rusqlite_test_function();
|
||||||
|
/// Rusqlite extension loaded correctly!
|
||||||
|
/// ```
|
||||||
|
#[allow(clippy::not_unsafe_ptr_arg_deref)]
|
||||||
|
#[no_mangle]
|
||||||
|
pub extern "C" fn sqlite3_extension_init(
|
||||||
|
db: *mut ffi::sqlite3,
|
||||||
|
pz_err_msg: *mut *mut c_char,
|
||||||
|
p_api: *mut ffi::sqlite3_api_routines,
|
||||||
|
) -> c_int {
|
||||||
|
if p_api.is_null() {
|
||||||
|
return ffi::SQLITE_ERROR;
|
||||||
|
} else if let Err(err) = extension_init(db, p_api) {
|
||||||
|
return unsafe { to_sqlite_error(&err, pz_err_msg) };
|
||||||
|
}
|
||||||
|
ffi::SQLITE_OK
|
||||||
|
}
|
||||||
|
|
||||||
|
fn extension_init(db: *mut ffi::sqlite3, p_api: *mut ffi::sqlite3_api_routines) -> Result<()> {
|
||||||
|
let db = unsafe { Connection::extension_init2(db, p_api)? };
|
||||||
|
db.create_scalar_function(
|
||||||
|
"rusqlite_test_function",
|
||||||
|
0,
|
||||||
|
FunctionFlags::SQLITE_DETERMINISTIC,
|
||||||
|
|_ctx| {
|
||||||
|
Ok(ToSqlOutput::Owned(Value::Text(
|
||||||
|
"Rusqlite extension loaded correctly!".to_string(),
|
||||||
|
)))
|
||||||
|
},
|
||||||
|
)?;
|
||||||
|
rusqlite::trace::log(ffi::SQLITE_WARNING, "Rusqlite extension initialized");
|
||||||
|
Ok(())
|
||||||
|
}
|
@ -2,7 +2,7 @@
|
|||||||
name = "libsqlite3-sys"
|
name = "libsqlite3-sys"
|
||||||
version = "0.26.0"
|
version = "0.26.0"
|
||||||
authors = ["The rusqlite developers"]
|
authors = ["The rusqlite developers"]
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
repository = "https://github.com/rusqlite/rusqlite"
|
repository = "https://github.com/rusqlite/rusqlite"
|
||||||
description = "Native bindings to the libsqlite3 library"
|
description = "Native bindings to the libsqlite3 library"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -23,6 +23,7 @@ min_sqlite_version_3_14_0 = ["pkg-config", "vcpkg"]
|
|||||||
# Bundle only the bindings file. Note that this does nothing if
|
# Bundle only the bindings file. Note that this does nothing if
|
||||||
# `buildtime_bindgen` is enabled.
|
# `buildtime_bindgen` is enabled.
|
||||||
bundled_bindings = []
|
bundled_bindings = []
|
||||||
|
loadable_extension = ["prettyplease", "quote", "syn"]
|
||||||
# sqlite3_unlock_notify >= 3.6.12
|
# sqlite3_unlock_notify >= 3.6.12
|
||||||
unlock_notify = []
|
unlock_notify = []
|
||||||
# 3.13.0
|
# 3.13.0
|
||||||
@ -48,3 +49,9 @@ bindgen = { version = "0.69", optional = true, default-features = false, feature
|
|||||||
pkg-config = { version = "0.3.19", optional = true }
|
pkg-config = { version = "0.3.19", optional = true }
|
||||||
cc = { version = "1.0", optional = true }
|
cc = { version = "1.0", optional = true }
|
||||||
vcpkg = { version = "0.2", optional = true }
|
vcpkg = { version = "0.2", optional = true }
|
||||||
|
# for loadable_extension:
|
||||||
|
prettyplease = {version = "0.2", optional = true }
|
||||||
|
# like bindgen
|
||||||
|
quote = { version = "1", optional = true, default-features = false }
|
||||||
|
# like bindgen
|
||||||
|
syn = { version = "2.0", optional = true, features = ["full", "extra-traits", "visit-mut"] }
|
||||||
|
6956
libsqlite3-sys/bindgen-bindings/bindgen_3.14.0_ext.rs
Normal file
6956
libsqlite3-sys/bindgen-bindings/bindgen_3.14.0_ext.rs
Normal file
File diff suppressed because it is too large
Load Diff
@ -28,8 +28,12 @@ fn is_compiler(compiler_name: &str) -> bool {
|
|||||||
|
|
||||||
/// Copy bindgen file from `dir` to `out_path`.
|
/// Copy bindgen file from `dir` to `out_path`.
|
||||||
fn copy_bindings<T: AsRef<Path>>(dir: &str, bindgen_name: &str, out_path: T) {
|
fn copy_bindings<T: AsRef<Path>>(dir: &str, bindgen_name: &str, out_path: T) {
|
||||||
std::fs::copy(format!("{dir}/{bindgen_name}"), out_path)
|
let from = if cfg!(feature = "loadable_extension") {
|
||||||
.expect("Could not copy bindings to output directory");
|
format!("{dir}/{bindgen_name}_ext.rs")
|
||||||
|
} else {
|
||||||
|
format!("{dir}/{bindgen_name}.rs")
|
||||||
|
};
|
||||||
|
std::fs::copy(from, out_path).expect("Could not copy bindings to output directory");
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
@ -38,12 +42,14 @@ fn main() {
|
|||||||
if cfg!(feature = "in_gecko") {
|
if cfg!(feature = "in_gecko") {
|
||||||
// When inside mozilla-central, we are included into the build with
|
// When inside mozilla-central, we are included into the build with
|
||||||
// sqlite3.o directly, so we don't want to provide any linker arguments.
|
// sqlite3.o directly, so we don't want to provide any linker arguments.
|
||||||
copy_bindings("sqlite3", "bindgen_bundled_version.rs", out_path);
|
copy_bindings("sqlite3", "bindgen_bundled_version", out_path);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
println!("cargo:rerun-if-env-changed=LIBSQLITE3_SYS_USE_PKG_CONFIG");
|
println!("cargo:rerun-if-env-changed=LIBSQLITE3_SYS_USE_PKG_CONFIG");
|
||||||
if env::var_os("LIBSQLITE3_SYS_USE_PKG_CONFIG").map_or(false, |s| s != "0") {
|
if env::var_os("LIBSQLITE3_SYS_USE_PKG_CONFIG").map_or(false, |s| s != "0")
|
||||||
|
|| cfg!(feature = "loadable_extension")
|
||||||
|
{
|
||||||
build_linked::main(&out_dir, &out_path);
|
build_linked::main(&out_dir, &out_path);
|
||||||
} else if cfg!(all(
|
} else if cfg!(all(
|
||||||
feature = "sqlcipher",
|
feature = "sqlcipher",
|
||||||
@ -106,7 +112,7 @@ mod build_bundled {
|
|||||||
}
|
}
|
||||||
#[cfg(not(feature = "buildtime_bindgen"))]
|
#[cfg(not(feature = "buildtime_bindgen"))]
|
||||||
{
|
{
|
||||||
super::copy_bindings(lib_name, "bindgen_bundled_version.rs", out_path);
|
super::copy_bindings(lib_name, "bindgen_bundled_version", out_path);
|
||||||
}
|
}
|
||||||
println!("cargo:rerun-if-changed={lib_name}/sqlite3.c");
|
println!("cargo:rerun-if-changed={lib_name}/sqlite3.c");
|
||||||
println!("cargo:rerun-if-changed=sqlite3/wasm32-wasi-vfs.c");
|
println!("cargo:rerun-if-changed=sqlite3/wasm32-wasi-vfs.c");
|
||||||
@ -344,11 +350,28 @@ impl From<HeaderLocation> for String {
|
|||||||
prefix, prefix
|
prefix, prefix
|
||||||
)
|
)
|
||||||
});
|
});
|
||||||
header.push_str("/sqlite3.h");
|
header.push_str(if cfg!(feature = "loadable_extension") {
|
||||||
|
"/sqlite3ext.h"
|
||||||
|
} else {
|
||||||
|
"/sqlite3.h"
|
||||||
|
});
|
||||||
header
|
header
|
||||||
}
|
}
|
||||||
HeaderLocation::Wrapper => "wrapper.h".into(),
|
HeaderLocation::Wrapper => if cfg!(feature = "loadable_extension") {
|
||||||
HeaderLocation::FromPath(path) => format!("{}/sqlite3.h", path),
|
"wrapper_ext.h"
|
||||||
|
} else {
|
||||||
|
"wrapper.h"
|
||||||
|
}
|
||||||
|
.into(),
|
||||||
|
HeaderLocation::FromPath(path) => format!(
|
||||||
|
"{}/{}",
|
||||||
|
path,
|
||||||
|
if cfg!(feature = "loadable_extension") {
|
||||||
|
"sqlite3ext.h"
|
||||||
|
} else {
|
||||||
|
"sqlite3.h"
|
||||||
|
}
|
||||||
|
),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -375,12 +398,13 @@ mod build_linked {
|
|||||||
// on buildtime_bindgen instead, but this is still supported as we
|
// on buildtime_bindgen instead, but this is still supported as we
|
||||||
// have runtime version checks and there are good reasons to not
|
// have runtime version checks and there are good reasons to not
|
||||||
// want to run bindgen.
|
// want to run bindgen.
|
||||||
super::copy_bindings(lib_name(), "bindgen_bundled_version.rs", out_path);
|
super::copy_bindings(lib_name(), "bindgen_bundled_version", out_path);
|
||||||
} else {
|
} else {
|
||||||
bindings::write_to_out_dir(header, out_path);
|
bindings::write_to_out_dir(header, out_path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
fn find_link_mode() -> &'static str {
|
fn find_link_mode() -> &'static str {
|
||||||
// If the user specifies SQLITE3_STATIC (or SQLCIPHER_STATIC), do static
|
// If the user specifies SQLITE3_STATIC (or SQLCIPHER_STATIC), do static
|
||||||
// linking, unless it's explicitly set to 0.
|
// linking, unless it's explicitly set to 0.
|
||||||
@ -404,9 +428,11 @@ mod build_linked {
|
|||||||
// `links=` value in our Cargo.toml) to get this value. This might be
|
// `links=` value in our Cargo.toml) to get this value. This might be
|
||||||
// useful if you need to ensure whatever crypto library sqlcipher relies
|
// useful if you need to ensure whatever crypto library sqlcipher relies
|
||||||
// on is available, for example.
|
// on is available, for example.
|
||||||
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
println!("cargo:link-target={link_lib}");
|
println!("cargo:link-target={link_lib}");
|
||||||
|
|
||||||
if win_target() && cfg!(feature = "winsqlite3") {
|
if win_target() && cfg!(feature = "winsqlite3") {
|
||||||
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
println!("cargo:rustc-link-lib=dylib={link_lib}");
|
println!("cargo:rustc-link-lib=dylib={link_lib}");
|
||||||
return HeaderLocation::Wrapper;
|
return HeaderLocation::Wrapper;
|
||||||
}
|
}
|
||||||
@ -416,6 +442,7 @@ mod build_linked {
|
|||||||
// Try to use pkg-config to determine link commands
|
// Try to use pkg-config to determine link commands
|
||||||
let pkgconfig_path = Path::new(&dir).join("pkgconfig");
|
let pkgconfig_path = Path::new(&dir).join("pkgconfig");
|
||||||
env::set_var("PKG_CONFIG_PATH", pkgconfig_path);
|
env::set_var("PKG_CONFIG_PATH", pkgconfig_path);
|
||||||
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
if pkg_config::Config::new().probe(link_lib).is_err() {
|
if pkg_config::Config::new().probe(link_lib).is_err() {
|
||||||
// Otherwise just emit the bare minimum link commands.
|
// Otherwise just emit the bare minimum link commands.
|
||||||
println!("cargo:rustc-link-lib={}={link_lib}", find_link_mode());
|
println!("cargo:rustc-link-lib={}={link_lib}", find_link_mode());
|
||||||
@ -443,6 +470,7 @@ mod build_linked {
|
|||||||
// request and hope that the library exists on the system paths. We used to
|
// request and hope that the library exists on the system paths. We used to
|
||||||
// output /usr/lib explicitly, but that can introduce other linking problems;
|
// output /usr/lib explicitly, but that can introduce other linking problems;
|
||||||
// see https://github.com/rusqlite/rusqlite/issues/207.
|
// see https://github.com/rusqlite/rusqlite/issues/207.
|
||||||
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
println!("cargo:rustc-link-lib={}={link_lib}", find_link_mode());
|
println!("cargo:rustc-link-lib={}={link_lib}", find_link_mode());
|
||||||
HeaderLocation::Wrapper
|
HeaderLocation::Wrapper
|
||||||
}
|
}
|
||||||
@ -470,7 +498,7 @@ mod bindings {
|
|||||||
|
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
static PREBUILT_BINDGENS: &[&str] = &["bindgen_3.14.0.rs"];
|
static PREBUILT_BINDGENS: &[&str] = &["bindgen_3.14.0"];
|
||||||
|
|
||||||
pub fn write_to_out_dir(_header: HeaderLocation, out_path: &Path) {
|
pub fn write_to_out_dir(_header: HeaderLocation, out_path: &Path) {
|
||||||
let name = PREBUILT_BINDGENS[PREBUILT_BINDGENS.len() - 1];
|
let name = PREBUILT_BINDGENS[PREBUILT_BINDGENS.len() - 1];
|
||||||
@ -522,7 +550,11 @@ mod bindings {
|
|||||||
.disable_nested_struct_naming()
|
.disable_nested_struct_naming()
|
||||||
.trust_clang_mangling(false)
|
.trust_clang_mangling(false)
|
||||||
.header(header.clone())
|
.header(header.clone())
|
||||||
.parse_callbacks(Box::new(SqliteTypeChooser))
|
.parse_callbacks(Box::new(SqliteTypeChooser));
|
||||||
|
if cfg!(feature = "loadable_extension") {
|
||||||
|
bindings = bindings.ignore_functions(); // see generate_functions
|
||||||
|
} else {
|
||||||
|
bindings = bindings
|
||||||
.blocklist_function("sqlite3_auto_extension")
|
.blocklist_function("sqlite3_auto_extension")
|
||||||
.raw_line(
|
.raw_line(
|
||||||
r#"extern "C" {
|
r#"extern "C" {
|
||||||
@ -551,6 +583,7 @@ mod bindings {
|
|||||||
) -> ::std::os::raw::c_int;
|
) -> ::std::os::raw::c_int;
|
||||||
}"#,
|
}"#,
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if cfg!(any(feature = "sqlcipher", feature = "bundled-sqlcipher")) {
|
if cfg!(any(feature = "sqlcipher", feature = "bundled-sqlcipher")) {
|
||||||
bindings = bindings.clang_arg("-DSQLITE_HAS_CODEC");
|
bindings = bindings.clang_arg("-DSQLITE_HAS_CODEC");
|
||||||
@ -621,11 +654,183 @@ mod bindings {
|
|||||||
.blocklist_item("__.*");
|
.blocklist_item("__.*");
|
||||||
}
|
}
|
||||||
|
|
||||||
bindings
|
let bindings = bindings
|
||||||
.layout_tests(false)
|
.layout_tests(false)
|
||||||
.generate()
|
.generate()
|
||||||
.unwrap_or_else(|_| panic!("could not run bindgen on header {}", header))
|
.unwrap_or_else(|_| panic!("could not run bindgen on header {}", header));
|
||||||
|
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
{
|
||||||
|
let mut output = Vec::new();
|
||||||
|
bindings
|
||||||
|
.write(Box::new(&mut output))
|
||||||
|
.expect("could not write output of bindgen");
|
||||||
|
let mut output = String::from_utf8(output).expect("bindgen output was not UTF-8?!");
|
||||||
|
super::loadable_extension::generate_functions(&mut output);
|
||||||
|
std::fs::write(out_path, output.as_bytes())
|
||||||
|
.unwrap_or_else(|_| panic!("Could not write to {:?}", out_path));
|
||||||
|
}
|
||||||
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
|
bindings
|
||||||
.write_to_file(out_path)
|
.write_to_file(out_path)
|
||||||
.unwrap_or_else(|_| panic!("Could not write to {:?}", out_path));
|
.unwrap_or_else(|_| panic!("Could not write to {:?}", out_path));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(all(feature = "buildtime_bindgen", feature = "loadable_extension"))]
|
||||||
|
mod loadable_extension {
|
||||||
|
/// try to generate similar rust code for all `#define sqlite3_xyz
|
||||||
|
/// sqlite3_api->abc` macros` in sqlite3ext.h
|
||||||
|
pub fn generate_functions(output: &mut String) {
|
||||||
|
// (1) parse sqlite3_api_routines fields from bindgen output
|
||||||
|
let ast: syn::File = syn::parse_str(output).expect("could not parse bindgen output");
|
||||||
|
let sqlite3_api_routines: syn::ItemStruct = ast
|
||||||
|
.items
|
||||||
|
.into_iter()
|
||||||
|
.find_map(|i| {
|
||||||
|
if let syn::Item::Struct(s) = i {
|
||||||
|
if s.ident == "sqlite3_api_routines" {
|
||||||
|
Some(s)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.expect("could not find sqlite3_api_routines");
|
||||||
|
let sqlite3_api_routines_ident = sqlite3_api_routines.ident;
|
||||||
|
let p_api = quote::format_ident!("p_api");
|
||||||
|
let mut stores = Vec::new();
|
||||||
|
let mut malloc = Vec::new();
|
||||||
|
// (2) `#define sqlite3_xyz sqlite3_api->abc` => `pub unsafe fn
|
||||||
|
// sqlite3_xyz(args) -> ty {...}` for each `abc` field:
|
||||||
|
for field in sqlite3_api_routines.fields {
|
||||||
|
let ident = field.ident.expect("unamed field");
|
||||||
|
let span = ident.span();
|
||||||
|
let name = ident.to_string();
|
||||||
|
if name == "vmprintf" || name == "xvsnprintf" || name == "str_vappendf" {
|
||||||
|
continue; // skip va_list
|
||||||
|
} else if name == "aggregate_count"
|
||||||
|
|| name == "expired"
|
||||||
|
|| name == "global_recover"
|
||||||
|
|| name == "thread_cleanup"
|
||||||
|
|| name == "transfer_bindings"
|
||||||
|
{
|
||||||
|
continue; // omit deprecated
|
||||||
|
}
|
||||||
|
let sqlite3_name = match name.as_ref() {
|
||||||
|
"xthreadsafe" => "sqlite3_threadsafe".to_owned(),
|
||||||
|
"interruptx" => "sqlite3_interrupt".to_owned(),
|
||||||
|
_ => {
|
||||||
|
format!("sqlite3_{name}")
|
||||||
|
}
|
||||||
|
};
|
||||||
|
let ptr_name =
|
||||||
|
syn::Ident::new(format!("__{}", sqlite3_name.to_uppercase()).as_ref(), span);
|
||||||
|
let sqlite3_fn_name = syn::Ident::new(&sqlite3_name, span);
|
||||||
|
let method =
|
||||||
|
extract_method(&field.ty).unwrap_or_else(|| panic!("unexpected type for {name}"));
|
||||||
|
let arg_names: syn::punctuated::Punctuated<&syn::Ident, syn::token::Comma> = method
|
||||||
|
.inputs
|
||||||
|
.iter()
|
||||||
|
.map(|i| &i.name.as_ref().unwrap().0)
|
||||||
|
.collect();
|
||||||
|
let args = &method.inputs;
|
||||||
|
// vtab_config/sqlite3_vtab_config: ok
|
||||||
|
let varargs = &method.variadic;
|
||||||
|
if varargs.is_some() && "db_config" != name && "log" != name && "vtab_config" != name {
|
||||||
|
continue; // skip ...
|
||||||
|
}
|
||||||
|
let ty = &method.output;
|
||||||
|
let tokens = if "db_config" == name {
|
||||||
|
quote::quote! {
|
||||||
|
static #ptr_name: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::new(::std::ptr::null_mut());
|
||||||
|
pub unsafe fn #sqlite3_fn_name(#args arg3: ::std::os::raw::c_int, arg4: *mut ::std::os::raw::c_int) #ty {
|
||||||
|
let ptr = #ptr_name.load(::std::sync::atomic::Ordering::Acquire);
|
||||||
|
assert!(!ptr.is_null(), "SQLite API not initialized");
|
||||||
|
let fun: unsafe extern "C" fn(#args #varargs) #ty = ::std::mem::transmute(ptr);
|
||||||
|
(fun)(#arg_names, arg3, arg4)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if "log" == name {
|
||||||
|
quote::quote! {
|
||||||
|
static #ptr_name: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::new(::std::ptr::null_mut());
|
||||||
|
pub unsafe fn #sqlite3_fn_name(#args arg3: *const ::std::os::raw::c_char) #ty {
|
||||||
|
let ptr = #ptr_name.load(::std::sync::atomic::Ordering::Acquire);
|
||||||
|
assert!(!ptr.is_null(), "SQLite API not initialized");
|
||||||
|
let fun: unsafe extern "C" fn(#args #varargs) #ty = ::std::mem::transmute(ptr);
|
||||||
|
(fun)(#arg_names, arg3)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
quote::quote! {
|
||||||
|
static #ptr_name: ::std::sync::atomic::AtomicPtr<()> = ::std::sync::atomic::AtomicPtr::new(::std::ptr::null_mut());
|
||||||
|
pub unsafe fn #sqlite3_fn_name(#args) #ty {
|
||||||
|
let ptr = #ptr_name.load(::std::sync::atomic::Ordering::Acquire);
|
||||||
|
assert!(!ptr.is_null(), "SQLite API not initialized or SQLite feature omitted");
|
||||||
|
let fun: unsafe extern "C" fn(#args #varargs) #ty = ::std::mem::transmute(ptr);
|
||||||
|
(fun)(#arg_names)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
output.push_str(&prettyplease::unparse(
|
||||||
|
&syn::parse2(tokens).expect("could not parse quote output"),
|
||||||
|
));
|
||||||
|
output.push('\n');
|
||||||
|
if name == "malloc" {
|
||||||
|
&mut malloc
|
||||||
|
} else {
|
||||||
|
&mut stores
|
||||||
|
}
|
||||||
|
.push(quote::quote! {
|
||||||
|
if let Some(fun) = (*#p_api).#ident {
|
||||||
|
#ptr_name.store(
|
||||||
|
fun as usize as *mut (),
|
||||||
|
::std::sync::atomic::Ordering::Release,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// (3) generate rust code similar to SQLITE_EXTENSION_INIT2 macro
|
||||||
|
let tokens = quote::quote! {
|
||||||
|
/// Like SQLITE_EXTENSION_INIT2 macro
|
||||||
|
pub unsafe fn rusqlite_extension_init2(#p_api: *mut #sqlite3_api_routines_ident) -> ::std::result::Result<(),crate::InitError> {
|
||||||
|
#(#malloc)* // sqlite3_malloc needed by to_sqlite_error
|
||||||
|
if let Some(fun) = (*#p_api).libversion_number {
|
||||||
|
let version = fun();
|
||||||
|
if SQLITE_VERSION_NUMBER > version {
|
||||||
|
return Err(crate::InitError::VersionMismatch{compile_time: SQLITE_VERSION_NUMBER, runtime: version});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return Err(crate::InitError::NullFunctionPointer);
|
||||||
|
}
|
||||||
|
#(#stores)*
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
};
|
||||||
|
output.push_str(&prettyplease::unparse(
|
||||||
|
&syn::parse2(tokens).expect("could not parse quote output"),
|
||||||
|
));
|
||||||
|
output.push('\n');
|
||||||
|
}
|
||||||
|
|
||||||
|
fn extract_method(ty: &syn::Type) -> Option<&syn::TypeBareFn> {
|
||||||
|
match ty {
|
||||||
|
syn::Type::Path(tp) => tp.path.segments.last(),
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
.map(|seg| match &seg.arguments {
|
||||||
|
syn::PathArguments::AngleBracketed(args) => args.args.first(),
|
||||||
|
_ => None,
|
||||||
|
})?
|
||||||
|
.map(|arg| match arg {
|
||||||
|
syn::GenericArgument::Type(t) => Some(t),
|
||||||
|
_ => None,
|
||||||
|
})?
|
||||||
|
.map(|ty| match ty {
|
||||||
|
syn::Type::BareFn(r) => Some(r),
|
||||||
|
_ => None,
|
||||||
|
})?
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* automatically generated by rust-bindgen 0.68.1 */
|
/* automatically generated by rust-bindgen 0.69.1 */
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub fn sqlite3_auto_extension(
|
pub fn sqlite3_auto_extension(
|
||||||
|
8430
libsqlite3-sys/sqlite3/bindgen_bundled_version_ext.rs
vendored
Normal file
8430
libsqlite3-sys/sqlite3/bindgen_bundled_version_ext.rs
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -273,3 +273,32 @@ pub fn code_to_str(code: c_int) -> &'static str {
|
|||||||
_ => "Unknown error code",
|
_ => "Unknown error code",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Loadable extension initialization error
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||||
|
#[non_exhaustive]
|
||||||
|
pub enum InitError {
|
||||||
|
/// Version mismatch between the extension and the SQLite3 library
|
||||||
|
VersionMismatch { compile_time: i32, runtime: i32 },
|
||||||
|
/// Invalid function pointer in one of sqlite3_api_routines fields
|
||||||
|
NullFunctionPointer,
|
||||||
|
}
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
impl ::std::fmt::Display for InitError {
|
||||||
|
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
||||||
|
match *self {
|
||||||
|
InitError::VersionMismatch {
|
||||||
|
compile_time,
|
||||||
|
runtime,
|
||||||
|
} => {
|
||||||
|
write!(f, "SQLite version mismatch: {runtime} < {compile_time}")
|
||||||
|
}
|
||||||
|
InitError::NullFunctionPointer => {
|
||||||
|
write!(f, "Some sqlite3_api_routines fields are null")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
impl error::Error for InitError {}
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
|
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
|
||||||
echo "$SCRIPT_DIR"
|
echo "$SCRIPT_DIR"
|
||||||
cd "$SCRIPT_DIR" || { echo "fatal error" >&2; exit 1; }
|
cd "$SCRIPT_DIR" || { echo "fatal error" >&2; exit 1; }
|
||||||
cargo clean
|
cargo clean -p libsqlite3-sys
|
||||||
mkdir -p "$SCRIPT_DIR/../target" "$SCRIPT_DIR/sqlite3"
|
TARGET_DIR="$SCRIPT_DIR/../target"
|
||||||
export SQLITE3_LIB_DIR="$SCRIPT_DIR/sqlite3"
|
export SQLITE3_LIB_DIR="$SCRIPT_DIR/sqlite3"
|
||||||
export SQLITE3_INCLUDE_DIR="$SQLITE3_LIB_DIR"
|
mkdir -p "$TARGET_DIR" "$SQLITE3_LIB_DIR"
|
||||||
|
|
||||||
# Download and extract amalgamation
|
# Download and extract amalgamation
|
||||||
SQLITE=sqlite-amalgamation-3440000
|
SQLITE=sqlite-amalgamation-3440000
|
||||||
@ -16,13 +16,25 @@ unzip -p "$SQLITE.zip" "$SQLITE/sqlite3.h" > "$SQLITE3_LIB_DIR/sqlite3.h"
|
|||||||
unzip -p "$SQLITE.zip" "$SQLITE/sqlite3ext.h" > "$SQLITE3_LIB_DIR/sqlite3ext.h"
|
unzip -p "$SQLITE.zip" "$SQLITE/sqlite3ext.h" > "$SQLITE3_LIB_DIR/sqlite3ext.h"
|
||||||
rm -f "$SQLITE.zip"
|
rm -f "$SQLITE.zip"
|
||||||
|
|
||||||
# Regenerate bindgen file for sqlite3
|
export SQLITE3_INCLUDE_DIR="$SQLITE3_LIB_DIR"
|
||||||
|
# Regenerate bindgen file for sqlite3.h
|
||||||
rm -f "$SQLITE3_LIB_DIR/bindgen_bundled_version.rs"
|
rm -f "$SQLITE3_LIB_DIR/bindgen_bundled_version.rs"
|
||||||
cargo update
|
cargo update
|
||||||
# Just to make sure there is only one bindgen.rs file in target dir
|
# Just to make sure there is only one bindgen.rs file in target dir
|
||||||
find "$SCRIPT_DIR/../target" -type f -name bindgen.rs -exec rm {} \;
|
find "$TARGET_DIR" -type f -name bindgen.rs -exec rm {} \;
|
||||||
env LIBSQLITE3_SYS_BUNDLING=1 cargo build --features "buildtime_bindgen session" --no-default-features
|
env LIBSQLITE3_SYS_BUNDLING=1 cargo build --features "buildtime_bindgen session" --no-default-features
|
||||||
find "$SCRIPT_DIR/../target" -type f -name bindgen.rs -exec mv {} "$SQLITE3_LIB_DIR/bindgen_bundled_version.rs" \;
|
find "$TARGET_DIR" -type f -name bindgen.rs -exec mv {} "$SQLITE3_LIB_DIR/bindgen_bundled_version.rs" \;
|
||||||
|
|
||||||
|
# Regenerate bindgen file for sqlite3ext.h
|
||||||
|
# some sqlite3_api_routines fields are function pointers with va_list arg but currently stable Rust doesn't support this type.
|
||||||
|
# FIXME how to generate portable bindings without :
|
||||||
|
sed -i.bk -e 's/va_list/void*/' "$SQLITE3_LIB_DIR/sqlite3ext.h"
|
||||||
|
rm -f "$SQLITE3_LIB_DIR/bindgen_bundled_version_ext.rs"
|
||||||
|
find "$TARGET_DIR" -type f -name bindgen.rs -exec rm {} \;
|
||||||
|
env LIBSQLITE3_SYS_BUNDLING=1 cargo build --features "buildtime_bindgen loadable_extension" --no-default-features
|
||||||
|
find "$TARGET_DIR" -type f -name bindgen.rs -exec mv {} "$SQLITE3_LIB_DIR/bindgen_bundled_version_ext.rs" \;
|
||||||
|
git checkout "$SQLITE3_LIB_DIR/sqlite3ext.h"
|
||||||
|
rm -f "$SQLITE3_LIB_DIR/sqlite3ext.h.bk"
|
||||||
|
|
||||||
# Sanity checks
|
# Sanity checks
|
||||||
cd "$SCRIPT_DIR/.." || { echo "fatal error" >&2; exit 1; }
|
cd "$SCRIPT_DIR/.." || { echo "fatal error" >&2; exit 1; }
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
|
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
|
||||||
echo "$SCRIPT_DIR"
|
echo "$SCRIPT_DIR"
|
||||||
cd "$SCRIPT_DIR" || { echo "fatal error" >&2; exit 1; }
|
cd "$SCRIPT_DIR" || { echo "fatal error" >&2; exit 1; }
|
||||||
cargo clean
|
cargo clean -p libsqlite3-sys
|
||||||
mkdir -p "$SCRIPT_DIR/../target" "$SCRIPT_DIR/sqlcipher"
|
mkdir -p "$SCRIPT_DIR/../target" "$SCRIPT_DIR/sqlcipher"
|
||||||
export SQLCIPHER_LIB_DIR="$SCRIPT_DIR/sqlcipher"
|
export SQLCIPHER_LIB_DIR="$SCRIPT_DIR/sqlcipher"
|
||||||
export SQLCIPHER_INCLUDE_DIR="$SQLCIPHER_LIB_DIR"
|
export SQLCIPHER_INCLUDE_DIR="$SQLCIPHER_LIB_DIR"
|
||||||
|
2
libsqlite3-sys/wrapper_ext.h
Normal file
2
libsqlite3-sys/wrapper_ext.h
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#include "sqlite3ext.h"
|
||||||
|
|
18
src/error.rs
18
src/error.rs
@ -141,6 +141,10 @@ pub enum Error {
|
|||||||
/// byte offset of the start of invalid token
|
/// byte offset of the start of invalid token
|
||||||
offset: c_int,
|
offset: c_int,
|
||||||
},
|
},
|
||||||
|
/// Loadable extension initialization error
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
#[cfg_attr(docsrs, doc(cfg(feature = "loadable_extension")))]
|
||||||
|
InitError(ffi::InitError),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PartialEq for Error {
|
impl PartialEq for Error {
|
||||||
@ -200,6 +204,8 @@ impl PartialEq for Error {
|
|||||||
offset: o2,
|
offset: o2,
|
||||||
},
|
},
|
||||||
) => e1 == e2 && m1 == m2 && s1 == s2 && o1 == o2,
|
) => e1 == e2 && m1 == m2 && s1 == s2 && o1 == o2,
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
(Error::InitError(e1), Error::InitError(e2)) => e1 == e2,
|
||||||
(..) => false,
|
(..) => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -241,6 +247,14 @@ impl From<FromSqlError> for Error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
impl From<ffi::InitError> for Error {
|
||||||
|
#[cold]
|
||||||
|
fn from(err: ffi::InitError) -> Error {
|
||||||
|
Error::InitError(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl fmt::Display for Error {
|
impl fmt::Display for Error {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
match *self {
|
match *self {
|
||||||
@ -311,6 +325,8 @@ impl fmt::Display for Error {
|
|||||||
ref sql,
|
ref sql,
|
||||||
..
|
..
|
||||||
} => write!(f, "{msg} in {sql} at offset {offset}"),
|
} => write!(f, "{msg} in {sql} at offset {offset}"),
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
Error::InitError(ref err) => err.fmt(f),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -360,6 +376,8 @@ impl error::Error for Error {
|
|||||||
Error::BlobSizeError => None,
|
Error::BlobSizeError => None,
|
||||||
#[cfg(feature = "modern_sqlite")]
|
#[cfg(feature = "modern_sqlite")]
|
||||||
Error::SqlInputError { ref error, .. } => Some(error),
|
Error::SqlInputError { ref error, .. } => Some(error),
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
Error::InitError(ref err) => Some(err),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@ use std::os::raw::{c_char, c_int};
|
|||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
use std::str;
|
use std::str;
|
||||||
use std::sync::atomic::{AtomicBool, Ordering};
|
use std::sync::atomic::AtomicBool;
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
|
|
||||||
use super::ffi;
|
use super::ffi;
|
||||||
@ -390,7 +390,7 @@ impl Drop for InnerConnection {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(any(target_arch = "wasm32")))]
|
#[cfg(not(any(target_arch = "wasm32", feature = "loadable_extension")))]
|
||||||
static SQLITE_INIT: std::sync::Once = std::sync::Once::new();
|
static SQLITE_INIT: std::sync::Once = std::sync::Once::new();
|
||||||
|
|
||||||
pub static BYPASS_SQLITE_INIT: AtomicBool = AtomicBool::new(false);
|
pub static BYPASS_SQLITE_INIT: AtomicBool = AtomicBool::new(false);
|
||||||
@ -440,7 +440,9 @@ fn ensure_safe_sqlite_threading_mode() -> Result<()> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
SQLITE_INIT.call_once(|| {
|
SQLITE_INIT.call_once(|| {
|
||||||
|
use std::sync::atomic::Ordering;
|
||||||
if BYPASS_SQLITE_INIT.load(Ordering::Relaxed) {
|
if BYPASS_SQLITE_INIT.load(Ordering::Relaxed) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
11
src/lib.rs
11
src/lib.rs
@ -952,6 +952,17 @@ impl Connection {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Like SQLITE_EXTENSION_INIT2 macro
|
||||||
|
#[cfg(feature = "loadable_extension")]
|
||||||
|
#[cfg_attr(docsrs, doc(cfg(feature = "loadable_extension")))]
|
||||||
|
pub unsafe fn extension_init2(
|
||||||
|
db: *mut ffi::sqlite3,
|
||||||
|
p_api: *mut ffi::sqlite3_api_routines,
|
||||||
|
) -> Result<Connection> {
|
||||||
|
ffi::rusqlite_extension_init2(p_api)?;
|
||||||
|
Connection::from_handle(db)
|
||||||
|
}
|
||||||
|
|
||||||
/// Create a `Connection` from a raw owned handle.
|
/// Create a `Connection` from a raw owned handle.
|
||||||
///
|
///
|
||||||
/// The returned connection will attempt to close the inner connection
|
/// The returned connection will attempt to close the inner connection
|
||||||
|
@ -8,8 +8,7 @@ use std::ptr;
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use super::ffi;
|
use super::ffi;
|
||||||
use crate::error::error_from_sqlite_code;
|
use crate::Connection;
|
||||||
use crate::{Connection, Result};
|
|
||||||
|
|
||||||
/// Set up the process-wide SQLite error logging callback.
|
/// Set up the process-wide SQLite error logging callback.
|
||||||
///
|
///
|
||||||
@ -25,7 +24,8 @@ use crate::{Connection, Result};
|
|||||||
/// * It must be threadsafe if SQLite is used in a multithreaded way.
|
/// * It must be threadsafe if SQLite is used in a multithreaded way.
|
||||||
///
|
///
|
||||||
/// cf [The Error And Warning Log](http://sqlite.org/errlog.html).
|
/// cf [The Error And Warning Log](http://sqlite.org/errlog.html).
|
||||||
pub unsafe fn config_log(callback: Option<fn(c_int, &str)>) -> Result<()> {
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
|
pub unsafe fn config_log(callback: Option<fn(c_int, &str)>) -> crate::Result<()> {
|
||||||
extern "C" fn log_callback(p_arg: *mut c_void, err: c_int, msg: *const c_char) {
|
extern "C" fn log_callback(p_arg: *mut c_void, err: c_int, msg: *const c_char) {
|
||||||
let c_slice = unsafe { CStr::from_ptr(msg).to_bytes() };
|
let c_slice = unsafe { CStr::from_ptr(msg).to_bytes() };
|
||||||
let callback: fn(c_int, &str) = unsafe { mem::transmute(p_arg) };
|
let callback: fn(c_int, &str) = unsafe { mem::transmute(p_arg) };
|
||||||
@ -48,7 +48,7 @@ pub unsafe fn config_log(callback: Option<fn(c_int, &str)>) -> Result<()> {
|
|||||||
if rc == ffi::SQLITE_OK {
|
if rc == ffi::SQLITE_OK {
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(error_from_sqlite_code(rc, None))
|
Err(crate::error::error_from_sqlite_code(rc, None))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
//! Ensure we reject connections when SQLite is in single-threaded mode, as it
|
//! Ensure we reject connections when SQLite is in single-threaded mode, as it
|
||||||
//! would violate safety if multiple Rust threads tried to use connections.
|
//! would violate safety if multiple Rust threads tried to use connections.
|
||||||
|
|
||||||
use rusqlite::ffi;
|
#[cfg(not(feature = "loadable_extension"))]
|
||||||
use rusqlite::Connection;
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_error_when_singlethread_mode() {
|
fn test_error_when_singlethread_mode() {
|
||||||
|
use rusqlite::ffi;
|
||||||
|
use rusqlite::Connection;
|
||||||
// put SQLite into single-threaded mode
|
// put SQLite into single-threaded mode
|
||||||
unsafe {
|
unsafe {
|
||||||
// Note: macOS system SQLite seems to return an error if you attempt to
|
// Note: macOS system SQLite seems to return an error if you attempt to
|
||||||
|
Loading…
Reference in New Issue
Block a user