Mercurial > hg > orthanc-databases
annotate Framework/PostgreSQL/PostgreSQLTransaction.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 | d2b5d9c92214 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 "PostgreSQLTransaction.h" | |
24 | |
25 #include "PostgreSQLStatement.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 namespace OrthancDatabases | |
32 { | |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
33 PostgreSQLTransaction::PostgreSQLTransaction(PostgreSQLDatabase& database, |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
34 TransactionType type) : |
0 | 35 database_(database), |
214
ab96698c73a3
removed useless information about read-only in ITransaction and IPrecompiledStatement
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
36 isOpen_(false) |
0 | 37 { |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
38 Begin(type); |
0 | 39 } |
40 | |
41 | |
42 PostgreSQLTransaction::~PostgreSQLTransaction() | |
43 { | |
44 if (isOpen_) | |
45 { | |
234
d1b124d116c1
PostgreSQL index plugin handles retries for collisions between multiple writers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
216
diff
changeset
|
46 LOG(INFO) << "PostgreSQL: An active PostgreSQL transaction was dismissed"; |
0 | 47 |
48 try | |
49 { | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
50 database_.ExecuteMultiLines("ABORT"); |
0 | 51 } |
52 catch (Orthanc::OrthancException&) | |
53 { | |
46
6a574d810b98
Compatibility with MySQL 8.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
54 // Ignore possible exceptions due to connection loss |
0 | 55 } |
56 } | |
57 } | |
58 | |
59 | |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
60 void PostgreSQLTransaction::Begin(TransactionType type) |
0 | 61 { |
62 if (isOpen_) | |
63 { | |
64 LOG(ERROR) << "PostgreSQL: Beginning a transaction twice!"; | |
65 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
66 } | |
67 | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
68 database_.ExecuteMultiLines("BEGIN"); |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
69 |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
70 switch (type) |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
71 { |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
72 case TransactionType_ReadWrite: |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
73 database_.ExecuteMultiLines("SET TRANSACTION ISOLATION LEVEL SERIALIZABLE READ WRITE"); |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
74 break; |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
75 |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
76 case TransactionType_ReadOnly: |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
77 database_.ExecuteMultiLines("SET TRANSACTION ISOLATION LEVEL SERIALIZABLE READ ONLY"); |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
78 break; |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
79 |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
80 default: |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
81 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
82 } |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
83 |
0 | 84 isOpen_ = true; |
85 } | |
86 | |
87 | |
88 void PostgreSQLTransaction::Rollback() | |
89 { | |
90 if (!isOpen_) | |
91 { | |
92 LOG(ERROR) << "PostgreSQL: Attempting to rollback a nonexistent transaction. " | |
93 << "Did you remember to call Begin()?"; | |
94 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
95 } | |
96 | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
97 database_.ExecuteMultiLines("ABORT"); |
0 | 98 isOpen_ = false; |
99 } | |
100 | |
101 | |
102 void PostgreSQLTransaction::Commit() | |
103 { | |
104 if (!isOpen_) | |
105 { | |
106 LOG(ERROR) << "PostgreSQL: Attempting to roll back a nonexistent transaction. " | |
107 << "Did you remember to call Begin()?"; | |
108 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
109 } | |
110 | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
111 database_.ExecuteMultiLines("COMMIT"); |
0 | 112 isOpen_ = false; |
113 } | |
114 | |
115 | |
116 IResult* PostgreSQLTransaction::Execute(IPrecompiledStatement& statement, | |
117 const Dictionary& parameters) | |
118 { | |
214
ab96698c73a3
removed useless information about read-only in ITransaction and IPrecompiledStatement
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
119 return dynamic_cast<PostgreSQLStatement&>(statement).Execute(*this, parameters); |
0 | 120 } |
121 | |
122 | |
123 void PostgreSQLTransaction::ExecuteWithoutResult(IPrecompiledStatement& statement, | |
124 const Dictionary& parameters) | |
125 { | |
126 dynamic_cast<PostgreSQLStatement&>(statement).ExecuteWithoutResult(*this, parameters); | |
127 } | |
128 } |