2019-02-02 22:17:20 +08:00
|
|
|
//! Configure database connections
|
|
|
|
|
|
|
|
use std::os::raw::c_int;
|
|
|
|
|
2021-07-04 21:52:31 +08:00
|
|
|
use crate::error::check;
|
2019-02-02 22:17:20 +08:00
|
|
|
use crate::ffi;
|
|
|
|
use crate::{Connection, Result};
|
|
|
|
|
|
|
|
/// Database Connection Configuration Options
|
2020-05-17 17:21:10 +08:00
|
|
|
/// See [Database Connection Configuration Options](https://sqlite.org/c3ref/c_dbconfig_enable_fkey.html) for details.
|
2019-02-02 22:17:20 +08:00
|
|
|
#[repr(i32)]
|
|
|
|
#[allow(non_snake_case, non_camel_case_types)]
|
2020-04-07 03:01:39 +08:00
|
|
|
#[non_exhaustive]
|
2021-03-26 04:06:46 +08:00
|
|
|
#[allow(clippy::upper_case_acronyms)]
|
2019-02-02 22:17:20 +08:00
|
|
|
pub enum DbConfig {
|
|
|
|
//SQLITE_DBCONFIG_MAINDBNAME = 1000, /* const char* */
|
|
|
|
//SQLITE_DBCONFIG_LOOKASIDE = 1001, /* void* int int */
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Enable or disable the enforcement of foreign key constraints.
|
2022-09-03 02:04:18 +08:00
|
|
|
SQLITE_DBCONFIG_ENABLE_FKEY = ffi::SQLITE_DBCONFIG_ENABLE_FKEY,
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Enable or disable triggers.
|
2022-09-03 02:04:18 +08:00
|
|
|
SQLITE_DBCONFIG_ENABLE_TRIGGER = ffi::SQLITE_DBCONFIG_ENABLE_TRIGGER,
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Enable or disable the fts3_tokenizer() function which is part of the
|
|
|
|
/// FTS3 full-text search engine extension.
|
2022-09-03 02:04:18 +08:00
|
|
|
SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER = ffi::SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, // 3.12.0
|
2019-02-02 22:17:20 +08:00
|
|
|
//SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION = 1005,
|
2020-05-17 17:21:10 +08:00
|
|
|
/// In WAL mode, enable or disable the checkpoint operation before closing
|
|
|
|
/// the connection.
|
2020-01-27 00:03:48 +08:00
|
|
|
SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE = 1006, // 3.16.2
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Activates or deactivates the query planner stability guarantee (QPSG).
|
|
|
|
SQLITE_DBCONFIG_ENABLE_QPSG = 1007, // 3.20.0
|
|
|
|
/// Includes or excludes output for any operations performed by trigger
|
|
|
|
/// programs from the output of EXPLAIN QUERY PLAN commands.
|
|
|
|
SQLITE_DBCONFIG_TRIGGER_EQP = 1008, // 3.22.0
|
2022-01-17 00:16:39 +08:00
|
|
|
/// Activates or deactivates the "reset" flag for a database connection.
|
|
|
|
/// Run VACUUM with this flag set to reset the database.
|
2022-03-18 02:58:02 +08:00
|
|
|
SQLITE_DBCONFIG_RESET_DATABASE = 1009, // 3.24.0
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Activates or deactivates the "defensive" flag for a database connection.
|
2020-01-27 00:03:48 +08:00
|
|
|
SQLITE_DBCONFIG_DEFENSIVE = 1010, // 3.26.0
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Activates or deactivates the "writable_schema" flag.
|
2020-01-27 00:03:48 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
|
|
|
SQLITE_DBCONFIG_WRITABLE_SCHEMA = 1011, // 3.28.0
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Activates or deactivates the legacy behavior of the ALTER TABLE RENAME
|
|
|
|
/// command.
|
2020-01-27 00:03:48 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
|
|
|
SQLITE_DBCONFIG_LEGACY_ALTER_TABLE = 1012, // 3.29
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Activates or deactivates the legacy double-quoted string literal
|
|
|
|
/// misfeature for DML statements only.
|
2020-01-27 00:03:48 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
|
|
|
SQLITE_DBCONFIG_DQS_DML = 1013, // 3.29.0
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Activates or deactivates the legacy double-quoted string literal
|
|
|
|
/// misfeature for DDL statements.
|
2020-01-27 00:03:48 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
|
|
|
SQLITE_DBCONFIG_DQS_DDL = 1014, // 3.29.0
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Enable or disable views.
|
2020-02-09 18:47:01 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
|
|
|
SQLITE_DBCONFIG_ENABLE_VIEW = 1015, // 3.30.0
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Activates or deactivates the legacy file format flag.
|
2020-02-09 18:47:01 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
|
|
|
SQLITE_DBCONFIG_LEGACY_FILE_FORMAT = 1016, // 3.31.0
|
2020-05-17 17:21:10 +08:00
|
|
|
/// Tells SQLite to assume that database schemas (the contents of the
|
|
|
|
/// sqlite_master tables) are untainted by malicious content.
|
2020-02-09 18:47:01 +08:00
|
|
|
#[cfg(feature = "modern_sqlite")]
|
|
|
|
SQLITE_DBCONFIG_TRUSTED_SCHEMA = 1017, // 3.31.0
|
2019-02-02 22:17:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Connection {
|
|
|
|
/// Returns the current value of a `config`.
|
|
|
|
///
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_FKEY`: return `false` or `true` to indicate
|
2019-02-22 03:48:09 +08:00
|
|
|
/// whether FK enforcement is off or on
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_TRIGGER`: return `false` or `true` to indicate
|
2019-02-22 03:48:09 +08:00
|
|
|
/// whether triggers are disabled or enabled
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER`: return `false` or `true` to
|
|
|
|
/// indicate whether `fts3_tokenizer` are disabled or enabled
|
|
|
|
/// - `SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE`: return `false` to indicate
|
2019-02-22 03:48:09 +08:00
|
|
|
/// checkpoints-on-close are not disabled or `true` if they are
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_QPSG`: return `false` or `true` to indicate
|
2019-02-22 03:48:09 +08:00
|
|
|
/// whether the QPSG is disabled or enabled
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_TRIGGER_EQP`: return `false` to indicate
|
2019-02-22 03:48:09 +08:00
|
|
|
/// output-for-trigger are not disabled or `true` if it is
|
2020-11-04 11:10:23 +08:00
|
|
|
#[inline]
|
2019-02-02 22:17:20 +08:00
|
|
|
pub fn db_config(&self, config: DbConfig) -> Result<bool> {
|
|
|
|
let c = self.db.borrow();
|
|
|
|
unsafe {
|
|
|
|
let mut val = 0;
|
2021-07-04 21:52:31 +08:00
|
|
|
check(ffi::sqlite3_db_config(
|
2019-02-02 22:17:20 +08:00
|
|
|
c.db(),
|
|
|
|
config as c_int,
|
|
|
|
-1,
|
2021-07-04 21:52:31 +08:00
|
|
|
&mut val,
|
|
|
|
))?;
|
2019-02-02 22:17:20 +08:00
|
|
|
Ok(val != 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Make configuration changes to a database connection
|
|
|
|
///
|
2022-02-26 16:55:17 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_FKEY`: `false` to disable FK enforcement,
|
|
|
|
/// `true` to enable FK enforcement
|
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_TRIGGER`: `false` to disable triggers, `true`
|
|
|
|
/// to enable triggers
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER`: `false` to disable
|
|
|
|
/// `fts3_tokenizer()`, `true` to enable `fts3_tokenizer()`
|
|
|
|
/// - `SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE`: `false` (the default) to enable
|
2019-02-22 03:48:09 +08:00
|
|
|
/// checkpoints-on-close, `true` to disable them
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_ENABLE_QPSG`: `false` to disable the QPSG, `true` to
|
2019-02-22 03:48:09 +08:00
|
|
|
/// enable QPSG
|
2022-01-06 02:19:13 +08:00
|
|
|
/// - `SQLITE_DBCONFIG_TRIGGER_EQP`: `false` to disable output for trigger
|
2019-02-22 03:48:09 +08:00
|
|
|
/// programs, `true` to enable it
|
2020-11-04 11:10:23 +08:00
|
|
|
#[inline]
|
2019-02-02 22:17:20 +08:00
|
|
|
pub fn set_db_config(&self, config: DbConfig, new_val: bool) -> Result<bool> {
|
|
|
|
let c = self.db.borrow_mut();
|
|
|
|
unsafe {
|
|
|
|
let mut val = 0;
|
2021-07-04 21:52:31 +08:00
|
|
|
check(ffi::sqlite3_db_config(
|
2019-02-02 22:17:20 +08:00
|
|
|
c.db(),
|
|
|
|
config as c_int,
|
2022-10-02 17:34:58 +08:00
|
|
|
new_val as c_int,
|
2021-07-04 21:52:31 +08:00
|
|
|
&mut val,
|
|
|
|
))?;
|
2019-02-02 22:17:20 +08:00
|
|
|
Ok(val != 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::DbConfig;
|
2020-11-06 05:14:00 +08:00
|
|
|
use crate::{Connection, Result};
|
2019-02-02 22:17:20 +08:00
|
|
|
|
|
|
|
#[test]
|
2020-11-06 05:14:00 +08:00
|
|
|
fn test_db_config() -> Result<()> {
|
|
|
|
let db = Connection::open_in_memory()?;
|
2019-02-02 22:17:20 +08:00
|
|
|
|
2020-11-06 05:14:00 +08:00
|
|
|
let opposite = !db.db_config(DbConfig::SQLITE_DBCONFIG_ENABLE_FKEY)?;
|
2019-02-22 03:48:09 +08:00
|
|
|
assert_eq!(
|
|
|
|
db.set_db_config(DbConfig::SQLITE_DBCONFIG_ENABLE_FKEY, opposite),
|
|
|
|
Ok(opposite)
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
db.db_config(DbConfig::SQLITE_DBCONFIG_ENABLE_FKEY),
|
|
|
|
Ok(opposite)
|
|
|
|
);
|
2019-02-02 22:17:20 +08:00
|
|
|
|
2020-11-06 05:14:00 +08:00
|
|
|
let opposite = !db.db_config(DbConfig::SQLITE_DBCONFIG_ENABLE_TRIGGER)?;
|
2019-02-22 03:48:09 +08:00
|
|
|
assert_eq!(
|
|
|
|
db.set_db_config(DbConfig::SQLITE_DBCONFIG_ENABLE_TRIGGER, opposite),
|
|
|
|
Ok(opposite)
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
db.db_config(DbConfig::SQLITE_DBCONFIG_ENABLE_TRIGGER),
|
|
|
|
Ok(opposite)
|
|
|
|
);
|
2020-11-06 05:14:00 +08:00
|
|
|
Ok(())
|
2019-02-02 22:17:20 +08:00
|
|
|
}
|
|
|
|
}
|