rusqlite/src/transaction.rs

252 lines
7.7 KiB
Rust
Raw Normal View History

2014-10-20 07:56:41 +08:00
use {SqliteResult, SqliteConnection};
2015-12-11 05:48:09 +08:00
pub use SqliteTransactionBehavior::{SqliteTransactionDeferred, SqliteTransactionImmediate,
SqliteTransactionExclusive};
2014-11-19 23:48:40 +08:00
2014-11-04 06:11:00 +08:00
/// Options for transaction behavior. See [BEGIN
/// TRANSACTION](http://www.sqlite.org/lang_transaction.html) for details.
2015-04-03 21:32:11 +08:00
#[derive(Copy,Clone)]
pub enum SqliteTransactionBehavior {
2014-10-20 07:56:41 +08:00
SqliteTransactionDeferred,
SqliteTransactionImmediate,
SqliteTransactionExclusive,
}
2014-11-04 06:11:00 +08:00
/// Represents a transaction on a database connection.
///
/// ## Note
///
/// Transactions will roll back by default. Use the `set_commit` or `commit` methods to commit the
/// transaction.
///
/// ## Example
///
/// ```rust,no_run
/// # use rusqlite::{SqliteConnection, SqliteResult};
/// # fn do_queries_part_1(conn: &SqliteConnection) -> SqliteResult<()> { Ok(()) }
/// # fn do_queries_part_2(conn: &SqliteConnection) -> SqliteResult<()> { Ok(()) }
/// fn perform_queries(conn: &SqliteConnection) -> SqliteResult<()> {
/// let tx = try!(conn.transaction());
///
/// try!(do_queries_part_1(conn)); // tx causes rollback if this fails
/// try!(do_queries_part_2(conn)); // tx causes rollback if this fails
///
/// tx.commit()
/// }
/// ```
2014-10-20 07:56:41 +08:00
pub struct SqliteTransaction<'conn> {
conn: &'conn SqliteConnection,
depth: u32,
commit: bool,
finished: bool,
}
impl<'conn> SqliteTransaction<'conn> {
2014-11-04 06:11:00 +08:00
/// Begin a new transaction. Cannot be nested; see `savepoint` for nested transactions.
2014-10-20 07:56:41 +08:00
pub fn new(conn: &SqliteConnection,
2015-12-11 05:48:09 +08:00
behavior: SqliteTransactionBehavior)
-> SqliteResult<SqliteTransaction> {
let query = match behavior {
2014-10-20 07:56:41 +08:00
SqliteTransactionDeferred => "BEGIN DEFERRED",
SqliteTransactionImmediate => "BEGIN IMMEDIATE",
SqliteTransactionExclusive => "BEGIN EXCLUSIVE",
};
conn.execute_batch(query).map(|_| {
2015-12-11 05:48:09 +08:00
SqliteTransaction {
conn: conn,
depth: 0,
commit: false,
finished: false,
}
2014-10-20 07:56:41 +08:00
})
}
2014-11-04 06:11:00 +08:00
/// Starts a new [savepoint](http://www.sqlite.org/lang_savepoint.html), allowing nested
/// transactions.
///
/// ## Note
///
/// Just like outer level transactions, savepoint transactions rollback by default.
///
/// ## Example
///
/// ```rust,no_run
/// # use rusqlite::{SqliteConnection, SqliteResult};
/// # fn perform_queries_part_1_succeeds(conn: &SqliteConnection) -> bool { true }
/// fn perform_queries(conn: &SqliteConnection) -> SqliteResult<()> {
/// let tx = try!(conn.transaction());
///
/// {
/// let sp = try!(tx.savepoint());
/// if perform_queries_part_1_succeeds(conn) {
/// try!(sp.commit());
/// }
/// // otherwise, sp will rollback
/// }
///
/// tx.commit()
/// }
/// ```
2014-10-20 07:56:41 +08:00
pub fn savepoint<'a>(&'a self) -> SqliteResult<SqliteTransaction<'a>> {
self.conn.execute_batch("SAVEPOINT sp").map(|_| {
2015-12-11 05:48:09 +08:00
SqliteTransaction {
conn: self.conn,
depth: self.depth + 1,
commit: false,
finished: false,
2014-10-20 07:56:41 +08:00
}
})
}
2014-11-04 06:11:00 +08:00
/// Returns whether or not the transaction is currently set to commit.
2014-10-20 07:56:41 +08:00
pub fn will_commit(&self) -> bool {
self.commit
}
2014-11-04 06:11:00 +08:00
/// Returns whether or not the transaction is currently set to rollback.
2014-10-20 07:56:41 +08:00
pub fn will_rollback(&self) -> bool {
!self.commit
}
2014-11-04 06:11:00 +08:00
/// Set the transaction to commit at its completion.
2014-10-20 07:56:41 +08:00
pub fn set_commit(&mut self) {
self.commit = true
}
2014-11-04 06:11:00 +08:00
/// Set the transaction to rollback at its completion.
2014-10-20 07:56:41 +08:00
pub fn set_rollback(&mut self) {
self.commit = false
}
2014-11-04 06:11:00 +08:00
/// A convenience method which consumes and commits a transaction.
2014-10-20 07:56:41 +08:00
pub fn commit(mut self) -> SqliteResult<()> {
self.commit_()
}
fn commit_(&mut self) -> SqliteResult<()> {
self.finished = true;
2015-12-11 05:48:09 +08:00
self.conn.execute_batch(if self.depth == 0 {
"COMMIT"
} else {
"RELEASE sp"
})
2014-10-20 07:56:41 +08:00
}
2014-11-04 06:11:00 +08:00
/// A convenience method which consumes and rolls back a transaction.
2014-10-20 07:56:41 +08:00
pub fn rollback(mut self) -> SqliteResult<()> {
self.rollback_()
}
fn rollback_(&mut self) -> SqliteResult<()> {
self.finished = true;
2015-12-11 05:48:09 +08:00
self.conn.execute_batch(if self.depth == 0 {
"ROLLBACK"
} else {
"ROLLBACK TO sp"
})
2014-10-20 07:56:41 +08:00
}
2014-11-04 06:11:00 +08:00
/// Consumes the transaction, committing or rolling back according to the current setting
/// (see `will_commit`, `will_rollback`).
///
/// Functionally equivalent to the `Drop` implementation, but allows callers to see any
/// errors that occur.
2014-10-20 07:56:41 +08:00
pub fn finish(mut self) -> SqliteResult<()> {
self.finish_()
}
fn finish_(&mut self) -> SqliteResult<()> {
match (self.finished, self.commit) {
(true, _) => Ok(()),
(false, true) => self.commit_(),
(false, false) => self.rollback_(),
}
}
}
#[allow(unused_must_use)]
impl<'conn> Drop for SqliteTransaction<'conn> {
fn drop(&mut self) {
self.finish_();
}
}
#[cfg(test)]
mod test {
use SqliteConnection;
fn checked_memory_handle() -> SqliteConnection {
let db = SqliteConnection::open_in_memory().unwrap();
2014-10-20 07:56:41 +08:00
db.execute_batch("CREATE TABLE foo (x INTEGER)").unwrap();
db
}
#[test]
fn test_drop() {
let db = checked_memory_handle();
{
let _tx = db.transaction().unwrap();
db.execute_batch("INSERT INTO foo VALUES(1)").unwrap();
// default: rollback
}
{
let mut tx = db.transaction().unwrap();
db.execute_batch("INSERT INTO foo VALUES(2)").unwrap();
tx.set_commit()
}
{
let _tx = db.transaction().unwrap();
2015-12-11 05:48:09 +08:00
assert_eq!(2i32,
db.query_row("SELECT SUM(x) FROM foo", &[], |r| r.get(0)).unwrap());
2014-10-20 07:56:41 +08:00
}
}
#[test]
fn test_explicit_rollback_commit() {
let db = checked_memory_handle();
{
let tx = db.transaction().unwrap();
db.execute_batch("INSERT INTO foo VALUES(1)").unwrap();
tx.rollback().unwrap();
}
{
let tx = db.transaction().unwrap();
db.execute_batch("INSERT INTO foo VALUES(2)").unwrap();
tx.commit().unwrap();
}
{
let _tx = db.transaction().unwrap();
2015-12-11 05:48:09 +08:00
assert_eq!(2i32,
db.query_row("SELECT SUM(x) FROM foo", &[], |r| r.get(0)).unwrap());
2014-10-20 07:56:41 +08:00
}
}
#[test]
fn test_savepoint() {
let db = checked_memory_handle();
{
let mut tx = db.transaction().unwrap();
db.execute_batch("INSERT INTO foo VALUES(1)").unwrap();
tx.set_commit();
{
let mut sp1 = tx.savepoint().unwrap();
db.execute_batch("INSERT INTO foo VALUES(2)").unwrap();
sp1.set_commit();
{
let sp2 = sp1.savepoint().unwrap();
db.execute_batch("INSERT INTO foo VALUES(4)").unwrap();
// will rollback sp2
{
let sp3 = sp2.savepoint().unwrap();
db.execute_batch("INSERT INTO foo VALUES(8)").unwrap();
sp3.commit().unwrap();
// committed sp3, but will be erased by sp2 rollback
}
}
}
}
2015-12-11 05:48:09 +08:00
assert_eq!(3i32,
db.query_row("SELECT SUM(x) FROM foo", &[], |r| r.get(0)).unwrap());
2014-10-20 07:56:41 +08:00
}
}