Mercurial > hg > orthanc-databases
annotate Framework/MySQL/MySQLTransaction.cpp @ 317:be8b0ac774e2
removed suspicious changeset 294 (adb5e86645a6)
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 19 Jul 2021 15:16:20 +0200 |
parents | 35598014f140 |
children | 16aac0287485 |
rev | line source |
---|---|
0 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
193
3236894320d6
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
157
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #include "MySQLTransaction.h" | |
23 | |
24 #include "MySQLStatement.h" | |
25 | |
157
275e14f57f1e
replacing deprecated std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
152
diff
changeset
|
26 #include <Compatibility.h> // For std::unique_ptr<> |
152 | 27 #include <Logging.h> |
28 #include <OrthancException.h> | |
0 | 29 |
30 #include <memory> | |
31 | |
32 namespace OrthancDatabases | |
33 { | |
217
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
34 MySQLTransaction::MySQLTransaction(MySQLDatabase& db, |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
35 TransactionType type) : |
0 | 36 db_(db), |
37 active_(false) | |
38 { | |
217
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
39 switch (type) |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
40 { |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
41 case TransactionType_ReadWrite: |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
42 db_.ExecuteMultiLines("START TRANSACTION READ WRITE", false); |
217
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
43 break; |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
44 |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
45 case TransactionType_ReadOnly: |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
46 db_.ExecuteMultiLines("START TRANSACTION READ ONLY", false); |
217
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
47 break; |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
48 |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
49 default: |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
50 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
51 } |
ee5858d438dc
TransactionType given to MySQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
52 |
0 | 53 active_ = true; |
54 } | |
55 | |
56 | |
57 MySQLTransaction::~MySQLTransaction() | |
58 { | |
59 if (active_) | |
60 { | |
234
d1b124d116c1
PostgreSQL index plugin handles retries for collisions between multiple writers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
217
diff
changeset
|
61 LOG(INFO) << "An active MySQL transaction was dismissed"; |
0 | 62 |
63 try | |
64 { | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
65 db_.ExecuteMultiLines("ROLLBACK", false); |
0 | 66 } |
67 catch (Orthanc::OrthancException&) | |
68 { | |
46
6a574d810b98
Compatibility with MySQL 8.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
16
diff
changeset
|
69 // Ignore possible exceptions due to connection loss |
0 | 70 } |
71 } | |
72 } | |
73 | |
74 | |
75 void MySQLTransaction::Rollback() | |
76 { | |
77 if (active_) | |
78 { | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
79 db_.ExecuteMultiLines("ROLLBACK", false); |
0 | 80 active_ = false; |
81 } | |
82 else | |
83 { | |
84 LOG(ERROR) << "MySQL: This transaction is already finished"; | |
85 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
86 } | |
87 } | |
88 | |
89 | |
90 void MySQLTransaction::Commit() | |
91 { | |
92 if (active_) | |
93 { | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
94 db_.ExecuteMultiLines("COMMIT", false); |
0 | 95 active_ = false; |
96 } | |
97 else | |
98 { | |
99 LOG(ERROR) << "MySQL: This transaction is already finished"; | |
100 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
101 } | |
102 } | |
103 | |
104 | |
105 IResult* MySQLTransaction::Execute(IPrecompiledStatement& statement, | |
106 const Dictionary& parameters) | |
107 { | |
214
ab96698c73a3
removed useless information about read-only in ITransaction and IPrecompiledStatement
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
108 return dynamic_cast<MySQLStatement&>(statement).Execute(*this, parameters); |
0 | 109 } |
110 | |
111 | |
112 void MySQLTransaction::ExecuteWithoutResult(IPrecompiledStatement& statement, | |
113 const Dictionary& parameters) | |
114 { | |
115 dynamic_cast<MySQLStatement&>(statement).ExecuteWithoutResult(*this, parameters); | |
116 } | |
117 } |