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