/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to src/transaction.cc

  • Committer: Tim Marston
  • Date: 2015-02-26 08:59:36 UTC
  • Revision ID: tim@ed.am-20150226085936-xe43in8bfz6f6nxb
fixed some missing/incorrect includes

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * transaction.cc
3
3
 *
4
 
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
 
4
 * Copyright (C) 2009 Tim Marston <tim@ed.am>
5
5
 *
6
6
 * This file is part of sqlite3cc (hereafter referred to as "this program").
7
 
 * See http://www.waxworlds.org/edam/software/sqlite3cc for more information.
8
 
 *
9
 
 * This program is free software: you can redistribute it and/or modify
10
 
 * it under the terms of the GNU Lesser General Public License as published
11
 
 * by the Free Software Foundation, either version 3 of the License, or
12
 
 * (at your option) any later version.
13
 
 *
14
 
 * This program is distributed in the hope that it will be useful,
15
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
 * GNU Lesser General Public License for more details.
 
7
 * See http://ed.am/dev/sqlite3cc for more information.
 
8
 *
 
9
 * This program is free software: you can redistribute it and/or modify it under
 
10
 * the terms of the GNU Lesser General Public License as published by the Free
 
11
 * Software Foundation, either version 3 of the License, or (at your option) any
 
12
 * later version.
 
13
 *
 
14
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
15
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
16
 * FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
 
17
 * details.
18
18
 *
19
19
 * You should have received a copy of the GNU Lesser General Public License
20
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
21
 */
22
22
 
23
23
#include <sqlite3cc/transaction.h>
24
 
#include <sqlite3cc/database.h>
 
24
#include <sqlite3cc/connection.h>
25
25
#include <sqlite3cc/exception.h>
26
26
#include <boost/thread.hpp>
27
27
#include <boost/lexical_cast.hpp>
28
28
 
29
29
 
30
 
sqlite::basic_transaction::basic_transaction(
31
 
        database &database )
 
30
sqlite::detail::basic_transaction::basic_transaction(
 
31
        connection &connection )
32
32
        :
33
 
        _database( database )
34
 
{
35
 
}
36
 
 
37
 
 
38
 
void sqlite::basic_transaction::begin()
39
 
{
40
 
        _database.exec( "BEGIN" );
41
 
}
42
 
 
43
 
 
44
 
void sqlite::basic_transaction::commit()
45
 
{
46
 
        _database.exec( "COMMIT" );
47
 
}
48
 
 
49
 
 
50
 
void sqlite::basic_transaction::invalidate_queries()
51
 
{
52
 
        while( sqlite3_stmt *handle = sqlite3_next_stmt( _database._handle, NULL ) )
53
 
                if( int code = sqlite3_finalize( handle ) )
54
 
                        throw sqlite_error( _database, code );
55
 
}
56
 
 
57
 
 
58
 
void sqlite::basic_transaction::rollback()
59
 
{
60
 
        // we must invalidate any active queries when rolling back
61
 
        invalidate_queries();
62
 
        _database.exec( "ROLLBACK" );
 
33
        _connection( connection )
 
34
{
 
35
}
 
36
 
 
37
 
 
38
void sqlite::detail::basic_transaction::begin()
 
39
{
 
40
        _connection.exec( "BEGIN" );
 
41
}
 
42
 
 
43
 
 
44
void sqlite::detail::basic_transaction::commit()
 
45
{
 
46
        // we must reset any active queries when committing
 
47
        reset_active_queries();
 
48
        _connection.exec( "COMMIT" );
 
49
}
 
50
 
 
51
 
 
52
void sqlite::detail::basic_transaction::reset_active_queries()
 
53
{
 
54
        sqlite3_stmt *old_handle = NULL;
 
55
        while( sqlite3_stmt *handle =
 
56
                sqlite3_next_stmt( _connection._handle, old_handle ) )
 
57
        {
 
58
                int code = sqlite3_reset( handle );
 
59
                if( code != SQLITE_OK ) throw sqlite_error( _connection, code );
 
60
                old_handle = handle;
 
61
        }
 
62
}
 
63
 
 
64
 
 
65
void sqlite::detail::basic_transaction::rollback()
 
66
{
 
67
        // we must reset any active queries when rolling back
 
68
        reset_active_queries();
 
69
        _connection.exec( "ROLLBACK" );
63
70
}
64
71
 
65
72
 
66
73
sqlite::immediate_transaction::immediate_transaction(
67
 
        database &database )
 
74
        connection &connection )
68
75
        :
69
 
        basic_transaction( database )
 
76
        basic_transaction( connection )
70
77
{
71
78
}
72
79
 
73
80
 
74
81
void sqlite::immediate_transaction::begin()
75
82
{
76
 
        _database.exec( "BEGIN IMMEDIATE" );
 
83
        _connection.exec( "BEGIN IMMEDIATE" );
77
84
}
78
85
 
79
86
 
80
87
sqlite::exclusive_transaction::exclusive_transaction(
81
 
        database &database )
 
88
        connection &connection )
82
89
        :
83
 
        basic_transaction( database )
 
90
        basic_transaction( connection )
84
91
{
85
92
}
86
93
 
87
94
 
88
95
void sqlite::exclusive_transaction::begin()
89
96
{
90
 
        _database.exec( "BEGIN EXCLUSIVE" );
 
97
        _connection.exec( "BEGIN EXCLUSIVE" );
91
98
}
92
99
 
93
100
 
94
101
sqlite::recursive_transaction::recursive_transaction(
95
 
        database &database )
 
102
        connection &connection )
96
103
        :
97
 
        basic_transaction( database )
 
104
        basic_transaction( connection )
98
105
{
99
106
        static unsigned long long i = 0;
100
107
        static boost::mutex mutex;
109
116
 
110
117
void sqlite::recursive_transaction::begin()
111
118
{
112
 
        _database.exec( "SAVEPOINT " + _sp_name );
 
119
        _connection.exec( "SAVEPOINT " + _sp_name );
113
120
}
114
121
 
115
122
 
116
123
void sqlite::recursive_transaction::commit()
117
124
{
118
 
        _database.exec( "RELEASE " + _sp_name );
 
125
        // we must reset any active queries when committing
 
126
        reset_active_queries();
 
127
        _connection.exec( "RELEASE " + _sp_name );
119
128
}
120
129
 
121
130
 
122
131
void sqlite::recursive_transaction::rollback()
123
132
{
124
 
        // we must invalidate any active queries when rolling back
125
 
        invalidate_queries();
126
 
        _database.exec( "ROLLBACK TO " + _sp_name );
 
133
        // we must reset any active queries when rolling back
 
134
        reset_active_queries();
 
135
        _connection.exec( "ROLLBACK TO " + _sp_name );
127
136
 
128
137
        // we have rolled back this transaction's savepoint, but the savepoint will
129
138
        // remain on the transaction stack unless we also release it
130
 
        _database.exec( "RELEASE " + _sp_name );
 
139
        _connection.exec( "RELEASE " + _sp_name );
131
140
}