0
|
1 /**
|
|
2 * Palantir - A Lightweight, RESTful DICOM Store
|
|
3 * Copyright (C) 2012 Medical Physics Department, CHU of Liege,
|
|
4 * Belgium
|
|
5 *
|
17
|
6 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
7 *
|
|
8 * Redistribution and use in source and binary forms, with or without
|
|
9 * modification, are permitted provided that the following conditions are
|
|
10 * met:
|
0
|
11 *
|
17
|
12 * * Redistributions of source code must retain the above copyright
|
|
13 * notice, this list of conditions and the following disclaimer.
|
|
14 * * Redistributions in binary form must reproduce the above
|
|
15 * copyright notice, this list of conditions and the following disclaimer
|
|
16 * in the documentation and/or other materials provided with the
|
|
17 * distribution.
|
|
18 * * Neither the name of Google Inc., the name of the CHU of Liege,
|
|
19 * nor the names of its contributors may be used to endorse or promote
|
|
20 * products derived from this software without specific prior written
|
|
21 * permission.
|
|
22 *
|
|
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
0
|
34 **/
|
|
35
|
|
36
|
|
37 #include "Transaction.h"
|
|
38
|
|
39 namespace Palantir
|
|
40 {
|
|
41 namespace SQLite
|
|
42 {
|
|
43 Transaction::Transaction(Connection& connection) :
|
|
44 connection_(connection),
|
|
45 isOpen_(false)
|
|
46 {
|
|
47 }
|
|
48
|
|
49 Transaction::~Transaction()
|
|
50 {
|
|
51 if (isOpen_)
|
|
52 {
|
|
53 connection_.RollbackTransaction();
|
|
54 }
|
|
55 }
|
|
56
|
|
57 void Transaction::Begin()
|
|
58 {
|
|
59 if (isOpen_)
|
|
60 {
|
|
61 throw PalantirException("SQLite: Beginning a transaction twice!");
|
|
62 }
|
|
63
|
|
64 isOpen_ = connection_.BeginTransaction();
|
|
65 if (!isOpen_)
|
|
66 {
|
|
67 throw PalantirException("SQLite: Unable to create a transaction");
|
|
68 }
|
|
69 }
|
|
70
|
|
71 void Transaction::Rollback()
|
|
72 {
|
|
73 if (!isOpen_)
|
|
74 {
|
|
75 throw PalantirException("SQLite: Attempting to roll back a nonexistent transaction. "
|
|
76 "Did you remember to call Begin()?");
|
|
77 }
|
|
78
|
|
79 isOpen_ = false;
|
|
80
|
|
81 connection_.RollbackTransaction();
|
|
82 }
|
|
83
|
|
84 void Transaction::Commit()
|
|
85 {
|
|
86 if (!isOpen_)
|
|
87 {
|
|
88 throw PalantirException("SQLite: Attempting to roll back a nonexistent transaction. "
|
|
89 "Did you remember to call Begin()?");
|
|
90 }
|
|
91
|
|
92 isOpen_ = false;
|
|
93
|
|
94 if (!connection_.CommitTransaction())
|
|
95 {
|
|
96 throw PalantirException("SQLite: Failure when committing the transaction");
|
|
97 }
|
|
98 }
|
|
99 }
|
|
100 }
|