1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
use crate::{Connection, Result}; use std::ops::Deref; /// Options for transaction behavior. See [BEGIN /// TRANSACTION](http://www.sqlite.org/lang_transaction.html) for details. #[derive(Copy, Clone)] pub enum TransactionBehavior { Deferred, Immediate, Exclusive, } /// Options for how a Transaction or Savepoint should behave when it is dropped. #[derive(Copy, Clone, Debug, PartialEq, Eq)] 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, /// Panic. Used to enforce intentional behavior during development. Panic, } /// Represents a transaction on a database connection. /// /// ## Note /// /// 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. /// /// ## Example /// /// ```rust,no_run /// # use rusqlite::{Connection, Result}; /// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) } /// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) } /// fn perform_queries(conn: &mut Connection) -> Result<()> { /// let tx = conn.transaction()?; /// /// do_queries_part_1(&tx)?; // tx causes rollback if this fails /// do_queries_part_2(&tx)?; // tx causes rollback if this fails /// /// tx.commit() /// } /// ``` #[derive(Debug)] pub struct Transaction<'conn> { conn: &'conn Connection, 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}; /// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) } /// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) } /// fn perform_queries(conn: &mut Connection) -> Result<()> { /// let sp = conn.savepoint()?; /// /// do_queries_part_1(&sp)?; // sp causes rollback if this fails /// do_queries_part_2(&sp)?; // sp causes rollback if this fails /// /// sp.commit() /// } /// ``` pub struct Savepoint<'conn> { conn: &'conn Connection, name: String, depth: u32, drop_behavior: DropBehavior, committed: bool, } impl Transaction<'_> { /// Begin a new transaction. Cannot be nested; see `savepoint` for nested /// transactions. /// 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. pub fn new(conn: &mut Connection, behavior: TransactionBehavior) -> Result<Transaction<'_>> { let query = match behavior { TransactionBehavior::Deferred => "BEGIN DEFERRED", TransactionBehavior::Immediate => "BEGIN IMMEDIATE", TransactionBehavior::Exclusive => "BEGIN EXCLUSIVE", }; conn.execute_batch(query).map(move |_| Transaction { conn, drop_behavior: DropBehavior::Rollback, }) } /// 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::{Connection, Result}; /// # fn perform_queries_part_1_succeeds(_conn: &Connection) -> bool { true } /// fn perform_queries(conn: &mut Connection) -> Result<()> { /// let mut tx = conn.transaction()?; /// /// { /// let sp = tx.savepoint()?; /// if perform_queries_part_1_succeeds(&sp) { /// sp.commit()?; /// } /// // otherwise, sp will rollback /// } /// /// tx.commit() /// } /// ``` 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<()> { self.conn.execute_batch("COMMIT")?; Ok(()) } /// A convenience method which consumes and rolls back a transaction. pub fn rollback(mut self) -> Result<()> { self.rollback_() } fn rollback_(&mut self) -> Result<()> { self.conn.execute_batch("ROLLBACK")?; Ok(()) } /// 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<()> { if self.conn.is_autocommit() { return Ok(()); } match self.drop_behavior() { DropBehavior::Commit => self.commit_().or_else(|_| self.rollback_()), DropBehavior::Rollback => self.rollback_(), DropBehavior::Ignore => Ok(()), DropBehavior::Panic => panic!("Transaction dropped unexpectedly."), } } } impl Deref for Transaction<'_> { type Target = Connection; fn deref(&self) -> &Connection { self.conn } } #[allow(unused_must_use)] impl Drop for Transaction<'_> { fn drop(&mut self) { self.finish_(); } } impl Savepoint<'_> { fn with_depth_and_name<T: Into<String>>( conn: &Connection, depth: u32, name: T, ) -> Result<Savepoint<'_>> { let name = name.into(); conn.execute_batch(&format!("SAVEPOINT {}", name)) .map(|_| Savepoint { conn, name, depth, drop_behavior: DropBehavior::Rollback, committed: false, }) } fn with_depth(conn: &Connection, depth: u32) -> Result<Savepoint<'_>> { let name = format!("_rusqlite_sp_{}", depth); Savepoint::with_depth_and_name(conn, depth, name) } /// Begin a new savepoint. Can be nested. pub fn new(conn: &mut Connection) -> Result<Savepoint<'_>> { Savepoint::with_depth(conn, 0) } /// 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) } /// Begin a nested savepoint. pub fn savepoint(&mut self) -> Result<Savepoint<'_>> { Savepoint::with_depth(self.conn, self.depth + 1) } /// 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. pub fn commit(mut self) -> Result<()> { self.commit_() } fn commit_(&mut self) -> Result<()> { self.conn.execute_batch(&format!("RELEASE {}", self.name))?; self.committed = true; Ok(()) } /// 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. pub fn rollback(&mut self) -> Result<()> { self.conn .execute_batch(&format!("ROLLBACK TO {}", self.name)) } /// Consumes the savepoint, 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<()> { if self.committed { return Ok(()); } match self.drop_behavior() { DropBehavior::Commit => self.commit_().or_else(|_| self.rollback()), DropBehavior::Rollback => self.rollback(), DropBehavior::Ignore => Ok(()), DropBehavior::Panic => panic!("Savepoint dropped unexpectedly."), } } } impl Deref for Savepoint<'_> { type Target = Connection; fn deref(&self) -> &Connection { self.conn } } #[allow(unused_must_use)] impl Drop for Savepoint<'_> { fn drop(&mut self) { self.finish_(); } } 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}; /// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) } /// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) } /// fn perform_queries(conn: &mut Connection) -> Result<()> { /// let tx = conn.transaction()?; /// /// do_queries_part_1(&tx)?; // tx causes rollback if this fails /// do_queries_part_2(&tx)?; // tx causes rollback if this fails /// /// 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. pub fn transaction_with_behavior( &mut self, behavior: TransactionBehavior, ) -> Result<Transaction<'_>> { 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}; /// # fn do_queries_part_1(_conn: &Connection) -> Result<()> { Ok(()) } /// # fn do_queries_part_2(_conn: &Connection) -> Result<()> { Ok(()) } /// fn perform_queries(conn: &mut Connection) -> Result<()> { /// let sp = conn.savepoint()?; /// /// do_queries_part_1(&sp)?; // sp causes rollback if this fails /// do_queries_part_2(&sp)?; // sp causes rollback if this fails /// /// 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) } } #[cfg(test)] mod test { use super::DropBehavior; use crate::{Connection, NO_PARAMS}; fn checked_memory_handle() -> Connection { let db = Connection::open_in_memory().unwrap(); db.execute_batch("CREATE TABLE foo (x INTEGER)").unwrap(); db } #[test] fn test_drop() { let mut db = checked_memory_handle(); { let tx = db.transaction().unwrap(); tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap(); // default: rollback } { let mut tx = db.transaction().unwrap(); tx.execute_batch("INSERT INTO foo VALUES(2)").unwrap(); tx.set_drop_behavior(DropBehavior::Commit) } { let tx = db.transaction().unwrap(); assert_eq!( 2i32, tx.query_row::<i32, _, _>("SELECT SUM(x) FROM foo", NO_PARAMS, |r| r.get(0)) .unwrap() ); } } #[test] fn test_explicit_rollback_commit() { let mut db = checked_memory_handle(); { 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(); } { let tx = db.transaction().unwrap(); tx.execute_batch("INSERT INTO foo VALUES(4)").unwrap(); tx.commit().unwrap(); } { let tx = db.transaction().unwrap(); assert_eq!( 6i32, tx.query_row::<i32, _, _>("SELECT SUM(x) FROM foo", NO_PARAMS, |r| r.get(0)) .unwrap() ); } } #[test] fn test_savepoint() { let mut db = checked_memory_handle(); { let mut tx = db.transaction().unwrap(); tx.execute_batch("INSERT INTO foo VALUES(1)").unwrap(); assert_current_sum(1, &tx); tx.set_drop_behavior(DropBehavior::Commit); { let mut sp1 = tx.savepoint().unwrap(); sp1.execute_batch("INSERT INTO foo VALUES(2)").unwrap(); assert_current_sum(3, &sp1); // will rollback sp1 { let mut sp2 = sp1.savepoint().unwrap(); sp2.execute_batch("INSERT INTO foo VALUES(4)").unwrap(); assert_current_sum(7, &sp2); // will rollback sp2 { let sp3 = sp2.savepoint().unwrap(); sp3.execute_batch("INSERT INTO foo VALUES(8)").unwrap(); assert_current_sum(15, &sp3); sp3.commit().unwrap(); // committed sp3, but will be erased by sp2 rollback } assert_current_sum(15, &sp2); } assert_current_sum(3, &sp1); } assert_current_sum(1, &tx); } assert_current_sum(1, &db); } #[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); } #[test] fn test_rc() { use std::rc::Rc; let mut conn = Connection::open_in_memory().unwrap(); let rc_txn = Rc::new(conn.transaction().unwrap()); // This will compile only if Transaction is Debug Rc::try_unwrap(rc_txn).unwrap(); } fn insert(x: i32, conn: &Connection) { conn.execute("INSERT INTO foo VALUES(?)", &[x]).unwrap(); } fn assert_current_sum(x: i32, conn: &Connection) { let i = conn .query_row::<i32, _, _>("SELECT SUM(x) FROM foo", NO_PARAMS, |r| r.get(0)) .unwrap(); assert_eq!(x, i); } }