Mercurial > hg > orthanc-databases
annotate Framework/PostgreSQL/PostgreSQLTransaction.cpp @ 418:a7f0f27fe33c pg-transactions
wip: advisory lock around CreateInstance: not ok see WO-139
author | Alain Mazy <am@osimis.io> |
---|---|
date | Tue, 27 Jun 2023 15:17:39 +0200 |
parents | 15bfd9a76f8d |
children | f0976163dbe1 |
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 | |
389
3d6886f3e5b3
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
3d6886f3e5b3
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
6 * Copyright (C) 2021-2023 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: |
370
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
73 { |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
74 const std::string& statement = database_.GetReadWriteTransactionStatement(); |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
75 if (!statement.empty()) // if not defined, will use the default DB transaction isolation level |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
76 { |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
77 database_.ExecuteMultiLines(statement); |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
78 } |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
79 }; break; |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
80 |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
81 case TransactionType_ReadOnly: |
370
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
82 { |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
83 const std::string& statement = database_.GetReadOnlyTransactionStatement(); |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
84 if (!statement.empty()) // if not defined, will use the default DB transaction isolation level |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
85 { |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
86 database_.ExecuteMultiLines(statement); |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
87 } |
d2b5d9c92214
PG: test feature: configurable transaction isolation level
Alain Mazy <am@osimis.io>
parents:
359
diff
changeset
|
88 }; break; |
216
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
89 |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
90 default: |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
91 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
92 } |
fbb52129158a
TransactionType given to PostgreSQLTransaction constructor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
214
diff
changeset
|
93 |
0 | 94 isOpen_ = true; |
95 } | |
96 | |
97 | |
98 void PostgreSQLTransaction::Rollback() | |
99 { | |
100 if (!isOpen_) | |
101 { | |
102 LOG(ERROR) << "PostgreSQL: Attempting to rollback a nonexistent transaction. " | |
103 << "Did you remember to call Begin()?"; | |
104 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
105 } | |
106 | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
107 database_.ExecuteMultiLines("ABORT"); |
0 | 108 isOpen_ = false; |
109 } | |
110 | |
111 | |
112 void PostgreSQLTransaction::Commit() | |
113 { | |
114 if (!isOpen_) | |
115 { | |
116 LOG(ERROR) << "PostgreSQL: Attempting to roll back a nonexistent transaction. " | |
117 << "Did you remember to call Begin()?"; | |
118 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); | |
119 } | |
120 | |
237
35598014f140
refactoring to remove GlobalProperties.cpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
234
diff
changeset
|
121 database_.ExecuteMultiLines("COMMIT"); |
0 | 122 isOpen_ = false; |
123 } | |
124 | |
125 | |
126 IResult* PostgreSQLTransaction::Execute(IPrecompiledStatement& statement, | |
127 const Dictionary& parameters) | |
128 { | |
214
ab96698c73a3
removed useless information about read-only in ITransaction and IPrecompiledStatement
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
129 return dynamic_cast<PostgreSQLStatement&>(statement).Execute(*this, parameters); |
0 | 130 } |
131 | |
132 | |
133 void PostgreSQLTransaction::ExecuteWithoutResult(IPrecompiledStatement& statement, | |
134 const Dictionary& parameters) | |
135 { | |
136 dynamic_cast<PostgreSQLStatement&>(statement).ExecuteWithoutResult(*this, parameters); | |
137 } | |
138 } |