2016-05-18 08:53:53 +08:00
|
|
|
use std::ops::Deref;
|
2018-08-11 18:48:21 +08:00
|
|
|
use {Connection, Result};
|
2014-10-20 07:56:41 +08:00
|
|
|
|
2015-12-13 03:17:43 +08:00
|
|
|
/// Old name for `TransactionBehavior`. `SqliteTransactionBehavior` is deprecated.
|
2016-05-30 08:36:20 +08:00
|
|
|
#[deprecated(since = "0.6.0", note = "Use TransactionBehavior instead")]
|
2015-12-13 03:17:43 +08:00
|
|
|
pub type SqliteTransactionBehavior = TransactionBehavior;
|
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.
|
2018-08-11 18:48:21 +08:00
|
|
|
#[derive(Copy, Clone)]
|
2015-12-13 03:17:43 +08:00
|
|
|
pub enum TransactionBehavior {
|
2015-12-13 03:22:50 +08:00
|
|
|
Deferred,
|
|
|
|
Immediate,
|
|
|
|
Exclusive,
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
/// Options for how a Transaction or Savepoint should behave when it is dropped.
|
2018-08-11 18:48:21 +08:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq)]
|
2016-05-19 05:38:09 +08:00
|
|
|
pub enum DropBehavior {
|
|
|
|
/// Roll back the changes. This is the default.
|
|
|
|
Rollback,
|
|
|
|
|
|
|
|
/// Commit the changes.
|
|
|
|
Commit,
|
|
|
|
|
|
|
|
/// Do not commit or roll back changes - this will leave the transaction or savepoint
|
|
|
|
/// open, so should be used with care.
|
|
|
|
Ignore,
|
2018-01-12 08:52:32 +08:00
|
|
|
|
|
|
|
/// Panic. Used to enforce intentional behavior during development.
|
|
|
|
Panic,
|
2016-05-19 05:38:09 +08:00
|
|
|
}
|
|
|
|
|
2015-12-13 03:17:43 +08:00
|
|
|
/// Old name for `Transaction`. `SqliteTransaction` is deprecated.
|
2016-05-30 08:36:20 +08:00
|
|
|
#[deprecated(since = "0.6.0", note = "Use Transaction instead")]
|
2015-12-13 03:17:43 +08:00
|
|
|
pub type SqliteTransaction<'conn> = Transaction<'conn>;
|
|
|
|
|
2014-11-04 06:11:00 +08:00
|
|
|
/// Represents a transaction on a database connection.
|
|
|
|
///
|
|
|
|
/// ## Note
|
|
|
|
///
|
2016-05-19 05:38:09 +08:00
|
|
|
/// Transactions will roll back by default. Use `commit` method to explicitly commit the
|
|
|
|
/// transaction, or use `set_drop_behavior` to change what happens when the transaction
|
|
|
|
/// is dropped.
|
2014-11-04 06:11:00 +08:00
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust,no_run
|
2015-12-13 03:06:03 +08:00
|
|
|
/// # use rusqlite::{Connection, Result};
|
2016-08-15 18:41:15 +08:00
|
|
|
/// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) }
|
|
|
|
/// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) }
|
2016-05-20 03:25:39 +08:00
|
|
|
/// fn perform_queries(conn: &mut Connection) -> Result<()> {
|
2014-11-04 06:11:00 +08:00
|
|
|
/// let tx = try!(conn.transaction());
|
|
|
|
///
|
2016-05-20 03:25:39 +08:00
|
|
|
/// try!(do_queries_part_1(&tx)); // tx causes rollback if this fails
|
|
|
|
/// try!(do_queries_part_2(&tx)); // tx causes rollback if this fails
|
2014-11-04 06:11:00 +08:00
|
|
|
///
|
|
|
|
/// tx.commit()
|
|
|
|
/// }
|
|
|
|
/// ```
|
2015-12-13 03:17:43 +08:00
|
|
|
pub struct Transaction<'conn> {
|
2015-12-13 02:50:12 +08:00
|
|
|
conn: &'conn Connection,
|
2016-05-19 05:38:09 +08:00
|
|
|
drop_behavior: DropBehavior,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents a savepoint on a database connection.
|
|
|
|
///
|
|
|
|
/// ## Note
|
|
|
|
///
|
|
|
|
/// Savepoints will roll back by default. Use `commit` method to explicitly commit the
|
|
|
|
/// savepoint, or use `set_drop_behavior` to change what happens when the savepoint
|
|
|
|
/// is dropped.
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust,no_run
|
|
|
|
/// # use rusqlite::{Connection, Result};
|
2016-08-15 18:41:15 +08:00
|
|
|
/// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) }
|
|
|
|
/// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) }
|
2016-05-20 03:25:39 +08:00
|
|
|
/// fn perform_queries(conn: &mut Connection) -> Result<()> {
|
2016-05-19 05:38:09 +08:00
|
|
|
/// let sp = try!(conn.savepoint());
|
|
|
|
///
|
2016-05-20 03:25:39 +08:00
|
|
|
/// try!(do_queries_part_1(&sp)); // sp causes rollback if this fails
|
|
|
|
/// try!(do_queries_part_2(&sp)); // sp causes rollback if this fails
|
2016-05-19 05:38:09 +08:00
|
|
|
///
|
|
|
|
/// sp.commit()
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub struct Savepoint<'conn> {
|
|
|
|
conn: &'conn Connection,
|
|
|
|
name: String,
|
2014-10-20 07:56:41 +08:00
|
|
|
depth: u32,
|
2016-05-19 05:38:09 +08:00
|
|
|
drop_behavior: DropBehavior,
|
|
|
|
committed: bool,
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2015-12-13 03:17:43 +08:00
|
|
|
impl<'conn> Transaction<'conn> {
|
2014-11-04 06:11:00 +08:00
|
|
|
/// Begin a new transaction. Cannot be nested; see `savepoint` for nested transactions.
|
2017-12-31 18:15:41 +08:00
|
|
|
// Even though we don't mutate the connection, we take a `&mut Connection`
|
|
|
|
// so as to prevent nested or concurrent transactions on the same
|
|
|
|
// connection.
|
2016-05-18 08:53:53 +08:00
|
|
|
pub fn new(conn: &mut Connection, behavior: TransactionBehavior) -> Result<Transaction> {
|
2014-10-24 05:57:02 +08:00
|
|
|
let query = match behavior {
|
2015-12-13 03:22:50 +08:00
|
|
|
TransactionBehavior::Deferred => "BEGIN DEFERRED",
|
|
|
|
TransactionBehavior::Immediate => "BEGIN IMMEDIATE",
|
|
|
|
TransactionBehavior::Exclusive => "BEGIN EXCLUSIVE",
|
2014-10-20 07:56:41 +08:00
|
|
|
};
|
2018-08-11 18:48:21 +08:00
|
|
|
conn.execute_batch(query).map(move |_| Transaction {
|
|
|
|
conn,
|
|
|
|
drop_behavior: DropBehavior::Rollback,
|
|
|
|
})
|
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
|
2015-12-13 03:06:03 +08:00
|
|
|
/// # use rusqlite::{Connection, Result};
|
2016-08-15 18:41:15 +08:00
|
|
|
/// # fn perform_queries_part_1_succeeds(_conn: &Connection) -> bool { true }
|
2016-05-20 03:25:39 +08:00
|
|
|
/// fn perform_queries(conn: &mut Connection) -> Result<()> {
|
|
|
|
/// let mut tx = try!(conn.transaction());
|
2014-11-04 06:11:00 +08:00
|
|
|
///
|
|
|
|
/// {
|
|
|
|
/// let sp = try!(tx.savepoint());
|
2016-05-20 03:25:39 +08:00
|
|
|
/// if perform_queries_part_1_succeeds(&sp) {
|
2014-11-04 06:11:00 +08:00
|
|
|
/// try!(sp.commit());
|
|
|
|
/// }
|
|
|
|
/// // otherwise, sp will rollback
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// tx.commit()
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-05-19 05:38:09 +08:00
|
|
|
pub fn savepoint(&mut self) -> Result<Savepoint> {
|
|
|
|
Savepoint::with_depth(self.conn, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new savepoint with a custom savepoint name. See `savepoint()`.
|
|
|
|
pub fn savepoint_with_name<T: Into<String>>(&mut self, name: T) -> Result<Savepoint> {
|
|
|
|
Savepoint::with_depth_and_name(self.conn, 1, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the current setting for what happens to the transaction when it is dropped.
|
|
|
|
pub fn drop_behavior(&self) -> DropBehavior {
|
|
|
|
self.drop_behavior
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Configure the transaction to perform the specified action when it is dropped.
|
|
|
|
pub fn set_drop_behavior(&mut self, drop_behavior: DropBehavior) {
|
|
|
|
self.drop_behavior = drop_behavior
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A convenience method which consumes and commits a transaction.
|
|
|
|
pub fn commit(mut self) -> Result<()> {
|
|
|
|
self.commit_()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn commit_(&mut self) -> Result<()> {
|
2018-07-28 00:13:11 +08:00
|
|
|
self.conn.execute_batch("COMMIT")?;
|
|
|
|
Ok(())
|
2016-05-19 05:38:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A convenience method which consumes and rolls back a transaction.
|
|
|
|
pub fn rollback(mut self) -> Result<()> {
|
|
|
|
self.rollback_()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rollback_(&mut self) -> Result<()> {
|
2018-07-28 00:13:11 +08:00
|
|
|
self.conn.execute_batch("ROLLBACK")?;
|
|
|
|
Ok(())
|
2016-05-19 05:38:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Consumes the transaction, committing or rolling back according to the current setting
|
|
|
|
/// (see `drop_behavior`).
|
|
|
|
///
|
|
|
|
/// Functionally equivalent to the `Drop` implementation, but allows callers to see any
|
|
|
|
/// errors that occur.
|
|
|
|
pub fn finish(mut self) -> Result<()> {
|
|
|
|
self.finish_()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn finish_(&mut self) -> Result<()> {
|
2018-07-28 22:04:42 +08:00
|
|
|
if self.conn.is_autocommit() {
|
2016-05-19 05:38:09 +08:00
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
match self.drop_behavior() {
|
2018-07-28 00:17:30 +08:00
|
|
|
DropBehavior::Commit => self.commit_().or_else(|_| self.rollback_()),
|
2016-05-19 05:38:09 +08:00
|
|
|
DropBehavior::Rollback => self.rollback_(),
|
|
|
|
DropBehavior::Ignore => Ok(()),
|
2018-01-12 08:52:32 +08:00
|
|
|
DropBehavior::Panic => panic!("Transaction dropped unexpectedly."),
|
2016-05-19 05:38:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'conn> Deref for Transaction<'conn> {
|
|
|
|
type Target = Connection;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Connection {
|
|
|
|
self.conn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(unused_must_use)]
|
|
|
|
impl<'conn> Drop for Transaction<'conn> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
self.finish_();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'conn> Savepoint<'conn> {
|
2018-08-11 18:48:21 +08:00
|
|
|
fn with_depth_and_name<T: Into<String>>(
|
|
|
|
conn: &Connection,
|
|
|
|
depth: u32,
|
|
|
|
name: T,
|
|
|
|
) -> Result<Savepoint> {
|
2016-05-19 05:38:09 +08:00
|
|
|
let name = name.into();
|
2017-04-08 01:43:24 +08:00
|
|
|
conn.execute_batch(&format!("SAVEPOINT {}", name))
|
2018-08-11 18:48:21 +08:00
|
|
|
.map(|_| Savepoint {
|
|
|
|
conn,
|
|
|
|
name,
|
|
|
|
depth,
|
|
|
|
drop_behavior: DropBehavior::Rollback,
|
|
|
|
committed: false,
|
2017-04-08 01:43:24 +08:00
|
|
|
})
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
fn with_depth(conn: &Connection, depth: u32) -> Result<Savepoint> {
|
|
|
|
let name = format!("_rusqlite_sp_{}", depth);
|
|
|
|
Savepoint::with_depth_and_name(conn, depth, name)
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
/// Begin a new savepoint. Can be nested.
|
|
|
|
pub fn new(conn: &mut Connection) -> Result<Savepoint> {
|
|
|
|
Savepoint::with_depth(conn, 0)
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
/// Begin a new savepoint with a user-provided savepoint name.
|
|
|
|
pub fn with_name<T: Into<String>>(conn: &mut Connection, name: T) -> Result<Savepoint> {
|
|
|
|
Savepoint::with_depth_and_name(conn, 0, name)
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
/// Begin a nested savepoint.
|
|
|
|
pub fn savepoint(&mut self) -> Result<Savepoint> {
|
|
|
|
Savepoint::with_depth(self.conn, self.depth + 1)
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
/// Begin a nested savepoint with a user-provided savepoint name.
|
|
|
|
pub fn savepoint_with_name<T: Into<String>>(&mut self, name: T) -> Result<Savepoint> {
|
|
|
|
Savepoint::with_depth_and_name(self.conn, self.depth + 1, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the current setting for what happens to the savepoint when it is dropped.
|
|
|
|
pub fn drop_behavior(&self) -> DropBehavior {
|
|
|
|
self.drop_behavior
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Configure the savepoint to perform the specified action when it is dropped.
|
|
|
|
pub fn set_drop_behavior(&mut self, drop_behavior: DropBehavior) {
|
|
|
|
self.drop_behavior = drop_behavior
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A convenience method which consumes and commits a savepoint.
|
2015-12-13 03:06:03 +08:00
|
|
|
pub fn commit(mut self) -> Result<()> {
|
2014-10-20 07:56:41 +08:00
|
|
|
self.commit_()
|
|
|
|
}
|
|
|
|
|
2015-12-13 03:06:03 +08:00
|
|
|
fn commit_(&mut self) -> Result<()> {
|
2018-08-11 18:48:21 +08:00
|
|
|
self.conn.execute_batch(&format!("RELEASE {}", self.name))?;
|
2018-07-28 00:13:11 +08:00
|
|
|
self.committed = true;
|
|
|
|
Ok(())
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
/// A convenience method which rolls back a savepoint.
|
|
|
|
///
|
|
|
|
/// ## Note
|
|
|
|
///
|
|
|
|
/// Unlike `Transaction`s, savepoints remain active after they have been rolled back,
|
|
|
|
/// and can be rolled back again or committed.
|
2016-05-19 03:25:57 +08:00
|
|
|
pub fn rollback(&mut self) -> Result<()> {
|
2017-04-08 01:43:24 +08:00
|
|
|
self.conn
|
|
|
|
.execute_batch(&format!("ROLLBACK TO {}", self.name))
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
/// Consumes the savepoint, committing or rolling back according to the current setting
|
|
|
|
/// (see `drop_behavior`).
|
2014-11-04 06:11:00 +08:00
|
|
|
///
|
|
|
|
/// Functionally equivalent to the `Drop` implementation, but allows callers to see any
|
|
|
|
/// errors that occur.
|
2015-12-13 03:06:03 +08:00
|
|
|
pub fn finish(mut self) -> Result<()> {
|
2014-10-20 07:56:41 +08:00
|
|
|
self.finish_()
|
|
|
|
}
|
|
|
|
|
2015-12-13 03:06:03 +08:00
|
|
|
fn finish_(&mut self) -> Result<()> {
|
2016-05-19 05:38:09 +08:00
|
|
|
if self.committed {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
match self.drop_behavior() {
|
2018-07-28 00:17:30 +08:00
|
|
|
DropBehavior::Commit => self.commit_().or_else(|_| self.rollback()),
|
2016-05-19 05:38:09 +08:00
|
|
|
DropBehavior::Rollback => self.rollback(),
|
|
|
|
DropBehavior::Ignore => Ok(()),
|
2018-01-12 08:52:32 +08:00
|
|
|
DropBehavior::Panic => panic!("Savepoint dropped unexpectedly."),
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
impl<'conn> Deref for Savepoint<'conn> {
|
2016-05-18 08:53:53 +08:00
|
|
|
type Target = Connection;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Connection {
|
|
|
|
self.conn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-20 07:56:41 +08:00
|
|
|
#[allow(unused_must_use)]
|
2016-05-19 05:38:09 +08:00
|
|
|
impl<'conn> Drop for Savepoint<'conn> {
|
2014-10-20 07:56:41 +08:00
|
|
|
fn drop(&mut self) {
|
|
|
|
self.finish_();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 05:38:09 +08:00
|
|
|
impl Connection {
|
|
|
|
/// Begin a new transaction with the default behavior (DEFERRED).
|
|
|
|
///
|
|
|
|
/// The transaction defaults to rolling back when it is dropped. If you want the transaction to
|
|
|
|
/// commit, you must call `commit` or `set_drop_behavior(DropBehavior::Commit)`.
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust,no_run
|
|
|
|
/// # use rusqlite::{Connection, Result};
|
2016-08-15 18:41:15 +08:00
|
|
|
/// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) }
|
|
|
|
/// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) }
|
2016-05-20 03:25:39 +08:00
|
|
|
/// fn perform_queries(conn: &mut Connection) -> Result<()> {
|
2016-05-19 05:38:09 +08:00
|
|
|
/// let tx = try!(conn.transaction());
|
|
|
|
///
|
2016-05-20 03:25:39 +08:00
|
|
|
/// try!(do_queries_part_1(&tx)); // tx causes rollback if this fails
|
|
|
|
/// try!(do_queries_part_2(&tx)); // tx causes rollback if this fails
|
2016-05-19 05:38:09 +08:00
|
|
|
///
|
|
|
|
/// tx.commit()
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Will return `Err` if the underlying SQLite call fails.
|
|
|
|
pub fn transaction(&mut self) -> Result<Transaction> {
|
|
|
|
Transaction::new(self, TransactionBehavior::Deferred)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Begin a new transaction with a specified behavior.
|
|
|
|
///
|
|
|
|
/// See `transaction`.
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Will return `Err` if the underlying SQLite call fails.
|
2018-08-11 18:48:21 +08:00
|
|
|
pub fn transaction_with_behavior(
|
|
|
|
&mut self,
|
|
|
|
behavior: TransactionBehavior,
|
|
|
|
) -> Result<Transaction> {
|
2016-05-19 05:38:09 +08:00
|
|
|
Transaction::new(self, behavior)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Begin a new savepoint with the default behavior (DEFERRED).
|
|
|
|
///
|
|
|
|
/// The savepoint defaults to rolling back when it is dropped. If you want the savepoint to
|
|
|
|
/// commit, you must call `commit` or `set_drop_behavior(DropBehavior::Commit)`.
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust,no_run
|
|
|
|
/// # use rusqlite::{Connection, Result};
|
2016-08-15 18:41:15 +08:00
|
|
|
/// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) }
|
|
|
|
/// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) }
|
2016-05-20 03:25:39 +08:00
|
|
|
/// fn perform_queries(conn: &mut Connection) -> Result<()> {
|
2016-05-19 05:38:09 +08:00
|
|
|
/// let sp = try!(conn.savepoint());
|
|
|
|
///
|
2016-05-20 03:25:39 +08:00
|
|
|
/// try!(do_queries_part_1(&sp)); // sp causes rollback if this fails
|
|
|
|
/// try!(do_queries_part_2(&sp)); // sp causes rollback if this fails
|
2016-05-19 05:38:09 +08:00
|
|
|
///
|
|
|
|
/// sp.commit()
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Will return `Err` if the underlying SQLite call fails.
|
|
|
|
pub fn savepoint(&mut self) -> Result<Savepoint> {
|
|
|
|
Savepoint::new(self)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Begin a new savepoint with a specified name.
|
|
|
|
///
|
|
|
|
/// See `savepoint`.
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Will return `Err` if the underlying SQLite call fails.
|
|
|
|
pub fn savepoint_with_name<T: Into<String>>(&mut self, name: T) -> Result<Savepoint> {
|
|
|
|
Savepoint::with_name(self, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-20 07:56:41 +08:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2016-05-19 05:38:09 +08:00
|
|
|
use super::DropBehavior;
|
2018-08-11 18:48:21 +08:00
|
|
|
use Connection;
|
2014-10-20 07:56:41 +08:00
|
|
|
|
2015-12-13 02:50:12 +08:00
|
|
|
fn checked_memory_handle() -> Connection {
|
|
|
|
let db = Connection::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() {
|
2016-05-18 08:53:53 +08:00
|
|
|
let mut db = checked_memory_handle();
|
2014-10-20 07:56:41 +08:00
|
|
|
{
|
2016-05-18 08:53:53 +08:00
|
|
|
let tx = db.transaction().unwrap();
|
|
|
|
tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap();
|
2014-10-20 07:56:41 +08:00
|
|
|
// default: rollback
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let mut tx = db.transaction().unwrap();
|
2016-05-18 08:53:53 +08:00
|
|
|
tx.execute_batch("INSERT INTO foo VALUES(2)").unwrap();
|
2016-05-19 05:38:09 +08:00
|
|
|
tx.set_drop_behavior(DropBehavior::Commit)
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
{
|
2016-05-18 08:53:53 +08:00
|
|
|
let tx = db.transaction().unwrap();
|
2018-08-11 18:48:21 +08:00
|
|
|
assert_eq!(
|
|
|
|
2i32,
|
|
|
|
tx.query_row::<i32, _>("SELECT SUM(x) FROM foo", &[], |r| r.get(0))
|
|
|
|
.unwrap()
|
|
|
|
);
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_explicit_rollback_commit() {
|
2016-05-18 08:53:53 +08:00
|
|
|
let mut db = checked_memory_handle();
|
2014-10-20 07:56:41 +08:00
|
|
|
{
|
2016-05-19 03:25:57 +08:00
|
|
|
let mut tx = db.transaction().unwrap();
|
|
|
|
{
|
|
|
|
let mut sp = tx.savepoint().unwrap();
|
|
|
|
sp.execute_batch("INSERT INTO foo VALUES(1)").unwrap();
|
|
|
|
sp.rollback().unwrap();
|
|
|
|
sp.execute_batch("INSERT INTO foo VALUES(2)").unwrap();
|
|
|
|
sp.commit().unwrap();
|
|
|
|
}
|
|
|
|
tx.commit().unwrap();
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
{
|
|
|
|
let tx = db.transaction().unwrap();
|
2016-05-19 03:25:57 +08:00
|
|
|
tx.execute_batch("INSERT INTO foo VALUES(4)").unwrap();
|
2014-10-20 07:56:41 +08:00
|
|
|
tx.commit().unwrap();
|
|
|
|
}
|
|
|
|
{
|
2016-05-18 08:53:53 +08:00
|
|
|
let tx = db.transaction().unwrap();
|
2018-08-11 18:48:21 +08:00
|
|
|
assert_eq!(
|
|
|
|
6i32,
|
|
|
|
tx.query_row::<i32, _>("SELECT SUM(x) FROM foo", &[], |r| r.get(0))
|
|
|
|
.unwrap()
|
|
|
|
);
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_savepoint() {
|
2016-05-18 08:53:53 +08:00
|
|
|
let mut db = checked_memory_handle();
|
2014-10-20 07:56:41 +08:00
|
|
|
{
|
|
|
|
let mut tx = db.transaction().unwrap();
|
2016-05-18 08:53:53 +08:00
|
|
|
tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap();
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(1, &tx);
|
2016-05-19 05:38:09 +08:00
|
|
|
tx.set_drop_behavior(DropBehavior::Commit);
|
2014-10-20 07:56:41 +08:00
|
|
|
{
|
|
|
|
let mut sp1 = tx.savepoint().unwrap();
|
2016-05-18 08:53:53 +08:00
|
|
|
sp1.execute_batch("INSERT INTO foo VALUES(2)").unwrap();
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(3, &sp1);
|
|
|
|
// will rollback sp1
|
2014-10-20 07:56:41 +08:00
|
|
|
{
|
2016-05-18 08:53:53 +08:00
|
|
|
let mut sp2 = sp1.savepoint().unwrap();
|
|
|
|
sp2.execute_batch("INSERT INTO foo VALUES(4)").unwrap();
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(7, &sp2);
|
2014-10-20 07:56:41 +08:00
|
|
|
// will rollback sp2
|
|
|
|
{
|
|
|
|
let sp3 = sp2.savepoint().unwrap();
|
2016-05-18 08:53:53 +08:00
|
|
|
sp3.execute_batch("INSERT INTO foo VALUES(8)").unwrap();
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(15, &sp3);
|
2014-10-20 07:56:41 +08:00
|
|
|
sp3.commit().unwrap();
|
|
|
|
// committed sp3, but will be erased by sp2 rollback
|
|
|
|
}
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(15, &sp2);
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(3, &sp1);
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(1, &tx);
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
2016-05-18 09:19:44 +08:00
|
|
|
assert_current_sum(1, &db);
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|
2016-05-19 05:38:09 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ignore_drop_behavior() {
|
|
|
|
let mut db = checked_memory_handle();
|
|
|
|
|
|
|
|
let mut tx = db.transaction().unwrap();
|
|
|
|
{
|
|
|
|
let mut sp1 = tx.savepoint().unwrap();
|
|
|
|
insert(1, &sp1);
|
|
|
|
sp1.rollback().unwrap();
|
|
|
|
insert(2, &sp1);
|
|
|
|
{
|
|
|
|
let mut sp2 = sp1.savepoint().unwrap();
|
|
|
|
sp2.set_drop_behavior(DropBehavior::Ignore);
|
|
|
|
insert(4, &sp2);
|
|
|
|
}
|
|
|
|
assert_current_sum(6, &sp1);
|
|
|
|
sp1.commit().unwrap();
|
|
|
|
}
|
|
|
|
assert_current_sum(6, &tx);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_savepoint_names() {
|
|
|
|
let mut db = checked_memory_handle();
|
|
|
|
|
|
|
|
{
|
|
|
|
let mut sp1 = db.savepoint_with_name("my_sp").unwrap();
|
|
|
|
insert(1, &sp1);
|
|
|
|
assert_current_sum(1, &sp1);
|
|
|
|
{
|
|
|
|
let mut sp2 = sp1.savepoint_with_name("my_sp").unwrap();
|
|
|
|
sp2.set_drop_behavior(DropBehavior::Commit);
|
|
|
|
insert(2, &sp2);
|
|
|
|
assert_current_sum(3, &sp2);
|
|
|
|
sp2.rollback().unwrap();
|
|
|
|
assert_current_sum(1, &sp2);
|
|
|
|
insert(4, &sp2);
|
|
|
|
}
|
|
|
|
assert_current_sum(5, &sp1);
|
|
|
|
sp1.rollback().unwrap();
|
|
|
|
{
|
|
|
|
let mut sp2 = sp1.savepoint_with_name("my_sp").unwrap();
|
|
|
|
sp2.set_drop_behavior(DropBehavior::Ignore);
|
|
|
|
insert(8, &sp2);
|
|
|
|
}
|
|
|
|
assert_current_sum(8, &sp1);
|
|
|
|
sp1.commit().unwrap();
|
|
|
|
}
|
|
|
|
assert_current_sum(8, &db);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn insert(x: i32, conn: &Connection) {
|
|
|
|
conn.execute("INSERT INTO foo VALUES(?)", &[&x]).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn assert_current_sum(x: i32, conn: &Connection) {
|
2018-08-11 18:48:21 +08:00
|
|
|
let i = conn
|
|
|
|
.query_row::<i32, _>("SELECT SUM(x) FROM foo", &[], |r| r.get(0))
|
2017-04-08 01:43:24 +08:00
|
|
|
.unwrap();
|
2016-05-19 05:38:09 +08:00
|
|
|
assert_eq!(x, i);
|
|
|
|
}
|
2014-10-20 07:56:41 +08:00
|
|
|
}
|