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
|
// file : odb/sqlite/transaction-impl.cxx
// copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#include <sqlite3.h>
#include <odb/sqlite/database.hxx>
#include <odb/sqlite/connection.hxx>
#include <odb/sqlite/statement.hxx>
#include <odb/sqlite/statement-cache.hxx>
#include <odb/sqlite/transaction-impl.hxx>
namespace odb
{
namespace sqlite
{
transaction_impl::
transaction_impl (database_type& db, lock l)
: odb::transaction_impl (db), lock_ (l)
{
}
transaction_impl::
transaction_impl (connection_ptr c, lock l)
: odb::transaction_impl (c->database (), *c),
connection_ (c),
lock_ (l)
{
}
transaction_impl::
~transaction_impl ()
{
}
void transaction_impl::
start ()
{
// Grab a connection if we don't already have one.
//
if (connection_ == 0)
{
connection_ = static_cast<database_type&> (database_).connection ();
odb::transaction_impl::connection_ = connection_.get ();
}
statement_cache& sc (connection_->statement_cache ());
switch (lock_)
{
case deferred:
{
sc.begin_statement ().execute ();
break;
}
case immediate:
{
sc.begin_immediate_statement ().execute ();
break;
}
case exclusive:
{
sc.begin_exclusive_statement ().execute ();
break;
}
}
}
// In SQLite, when a commit fails (e.g., because of the deferred
// foreign key constraint violation), the transaction may not
// be automatically rolled back. So we have to do it ourselves.
//
struct commit_guard
{
commit_guard (connection& c): c_ (&c) {}
void release () {c_ = 0;}
~commit_guard ()
{
if (c_ != 0 && sqlite3_get_autocommit (c_->handle ()) == 0)
{
// This is happening while another exception is active.
//
try
{
c_->statement_cache ().rollback_statement ().execute ();
}
catch (...) {}
}
}
private:
connection* c_;
};
void transaction_impl::
commit ()
{
// Invalidate query results.
//
connection_->invalidate_results ();
// Reset active statements. Active statements will prevent COMMIT
// from completing (write statements) or releasing the locks (read
// statements). Normally, a statement is automatically reset on
// completion, however, if an exception is thrown, that may not
// happen.
//
connection_->clear ();
{
commit_guard cg (*connection_);
connection_->statement_cache ().commit_statement ().execute ();
cg.release ();
}
// Release the connection.
//
connection_.reset ();
}
void transaction_impl::
rollback ()
{
// Invalidate query results.
//
connection_->invalidate_results ();
// Reset active statements. Active statements will prevent ROLLBACK
// from completing (write statements) or releasing the locks (read
// statements). Normally, a statement is automatically reset on
// completion, however, if an exception is thrown, that may not
// happen.
//
connection_->clear ();
connection_->statement_cache ().rollback_statement ().execute ();
// Release the connection.
//
connection_.reset ();
}
}
}
|