Mercurial > hg > orthanc
annotate Core/SQLite/Connection.cpp @ 1582:bd1889029cbb
encoding of exceptions
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 25 Aug 2015 17:39:38 +0200 |
parents | f967bdf8534e |
children | 9a3e03d6a4d5 |
rev | line source |
---|---|
0 | 1 /** |
59 | 2 * Orthanc - A Lightweight, RESTful DICOM Store |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
3 * |
1291
63d47b1fa239
upgrade to 2015 in SQLite
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1225
diff
changeset
|
4 * Copyright (C) 2012-2015 Sebastien Jodogne <s.jodogne@gmail.com>, |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
5 * Medical Physics Department, CHU of Liege, Belgium |
0 | 6 * |
17 | 7 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
8 * | |
9 * Redistribution and use in source and binary forms, with or without | |
10 * modification, are permitted provided that the following conditions are | |
11 * met: | |
0 | 12 * |
17 | 13 * * Redistributions of source code must retain the above copyright |
14 * notice, this list of conditions and the following disclaimer. | |
15 * * Redistributions in binary form must reproduce the above | |
16 * copyright notice, this list of conditions and the following disclaimer | |
17 * in the documentation and/or other materials provided with the | |
18 * distribution. | |
19 * * Neither the name of Google Inc., the name of the CHU of Liege, | |
20 * nor the names of its contributors may be used to endorse or promote | |
21 * products derived from this software without specific prior written | |
22 * permission. | |
23 * | |
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
0 | 35 **/ |
36 | |
37 | |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
38 #if ORTHANC_SQLITE_STANDALONE != 1 |
824
a811bdf8b8eb
precompiled headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
39 #include "../PrecompiledHeaders.h" |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
40 #endif |
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
41 |
0 | 42 #include "Connection.h" |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
43 #include "OrthancSQLiteException.h" |
0 | 44 |
45 #include <memory> | |
46 #include <cassert> | |
47 #include <string.h> | |
48 | |
1225 | 49 #if ORTHANC_SQLITE_STANDALONE != 1 |
1486
f967bdf8534e
refactoring to Logging.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1474
diff
changeset
|
50 #include "../Logging.h" |
1225 | 51 #endif |
52 | |
1474
3b68924ffb24
fix path to sqlite
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1291
diff
changeset
|
53 #include "sqlite3.h" |
3b68924ffb24
fix path to sqlite
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1291
diff
changeset
|
54 |
1225 | 55 |
59 | 56 namespace Orthanc |
0 | 57 { |
58 namespace SQLite | |
59 { | |
60 Connection::Connection() : | |
61 db_(NULL), | |
62 transactionNesting_(0), | |
63 needsRollback_(false) | |
64 { | |
65 } | |
66 | |
67 | |
68 Connection::~Connection() | |
69 { | |
70 Close(); | |
71 } | |
72 | |
73 | |
74 void Connection::CheckIsOpen() const | |
75 { | |
76 if (!db_) | |
77 { | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
78 throw OrthancSQLiteException(ErrorCode_SQLiteNotOpened); |
0 | 79 } |
80 } | |
81 | |
82 void Connection::Open(const std::string& path) | |
83 { | |
84 if (db_) | |
85 { | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
86 throw OrthancSQLiteException(ErrorCode_SQLiteAlreadyOpened); |
0 | 87 } |
88 | |
89 int err = sqlite3_open(path.c_str(), &db_); | |
90 if (err != SQLITE_OK) | |
91 { | |
92 Close(); | |
93 db_ = NULL; | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
94 throw OrthancSQLiteException(ErrorCode_SQLiteCannotOpen); |
0 | 95 } |
96 | |
97 // Execute PRAGMAs at this point | |
98 // http://www.sqlite.org/pragma.html | |
99 Execute("PRAGMA FOREIGN_KEYS=ON;"); | |
181
2dece1526c06
simplifying db schema
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
137
diff
changeset
|
100 Execute("PRAGMA RECURSIVE_TRIGGERS=ON;"); |
0 | 101 } |
102 | |
103 void Connection::OpenInMemory() | |
104 { | |
105 Open(":memory:"); | |
106 } | |
107 | |
108 void Connection::Close() | |
109 { | |
110 ClearCache(); | |
111 | |
112 if (db_) | |
113 { | |
114 sqlite3_close(db_); | |
115 db_ = NULL; | |
116 } | |
117 } | |
118 | |
119 void Connection::ClearCache() | |
120 { | |
121 for (CachedStatements::iterator | |
122 it = cachedStatements_.begin(); | |
656 | 123 it != cachedStatements_.end(); ++it) |
0 | 124 { |
125 delete it->second; | |
126 } | |
127 | |
128 cachedStatements_.clear(); | |
129 } | |
130 | |
131 | |
132 StatementReference& Connection::GetCachedStatement(const StatementId& id, | |
133 const char* sql) | |
134 { | |
135 CachedStatements::iterator i = cachedStatements_.find(id); | |
136 if (i != cachedStatements_.end()) | |
137 { | |
138 if (i->second->GetReferenceCount() >= 1) | |
139 { | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
140 throw OrthancSQLiteException(ErrorCode_SQLiteStatementAlreadyUsed); |
0 | 141 } |
142 | |
143 return *i->second; | |
144 } | |
145 else | |
146 { | |
147 StatementReference* statement = new StatementReference(db_, sql); | |
148 cachedStatements_[id] = statement; | |
149 return *statement; | |
150 } | |
151 } | |
152 | |
153 | |
154 bool Connection::Execute(const char* sql) | |
155 { | |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
156 #if ORTHANC_SQLITE_STANDALONE != 1 |
137
0e97abc7b950
fix of a bug in older versions of sqlite
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
59
diff
changeset
|
157 VLOG(1) << "SQLite::Connection::Execute " << sql; |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
158 #endif |
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
159 |
0 | 160 CheckIsOpen(); |
161 | |
162 int error = sqlite3_exec(db_, sql, NULL, NULL, NULL); | |
163 if (error == SQLITE_ERROR) | |
164 { | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
165 LOG(ERROR) << "SQLite execute error: " << sqlite3_errmsg(db_); |
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
166 throw OrthancSQLiteException(ErrorCode_SQLiteExecute); |
0 | 167 } |
168 else | |
169 { | |
170 return error == SQLITE_OK; | |
171 } | |
172 } | |
173 | |
174 int Connection::ExecuteAndReturnErrorCode(const char* sql) | |
175 { | |
176 CheckIsOpen(); | |
177 return sqlite3_exec(db_, sql, NULL, NULL, NULL); | |
178 } | |
179 | |
180 // Info querying ------------------------------------------------------------- | |
181 | |
182 bool Connection::IsSQLValid(const char* sql) | |
183 { | |
184 sqlite3_stmt* stmt = NULL; | |
185 if (sqlite3_prepare_v2(db_, sql, -1, &stmt, NULL) != SQLITE_OK) | |
186 return false; | |
187 | |
188 sqlite3_finalize(stmt); | |
189 return true; | |
190 } | |
191 | |
192 bool Connection::DoesTableOrIndexExist(const char* name, | |
193 const char* type) const | |
194 { | |
195 // Our SQL is non-mutating, so this cast is OK. | |
196 Statement statement(const_cast<Connection&>(*this), | |
197 "SELECT name FROM sqlite_master WHERE type=? AND name=?"); | |
198 statement.BindString(0, type); | |
199 statement.BindString(1, name); | |
200 return statement.Step(); // Table exists if any row was returned. | |
201 } | |
202 | |
203 bool Connection::DoesTableExist(const char* table_name) const | |
204 { | |
205 return DoesTableOrIndexExist(table_name, "table"); | |
206 } | |
207 | |
208 bool Connection::DoesIndexExist(const char* index_name) const | |
209 { | |
210 return DoesTableOrIndexExist(index_name, "index"); | |
211 } | |
212 | |
213 bool Connection::DoesColumnExist(const char* table_name, const char* column_name) const | |
214 { | |
215 std::string sql("PRAGMA TABLE_INFO("); | |
216 sql.append(table_name); | |
217 sql.append(")"); | |
218 | |
219 // Our SQL is non-mutating, so this cast is OK. | |
220 Statement statement(const_cast<Connection&>(*this), sql.c_str()); | |
221 | |
222 while (statement.Step()) { | |
223 if (!statement.ColumnString(1).compare(column_name)) | |
224 return true; | |
225 } | |
226 return false; | |
227 } | |
228 | |
229 int64_t Connection::GetLastInsertRowId() const | |
230 { | |
231 return sqlite3_last_insert_rowid(db_); | |
232 } | |
233 | |
234 int Connection::GetLastChangeCount() const | |
235 { | |
236 return sqlite3_changes(db_); | |
237 } | |
238 | |
239 int Connection::GetErrorCode() const | |
240 { | |
241 return sqlite3_errcode(db_); | |
242 } | |
243 | |
244 int Connection::GetLastErrno() const | |
245 { | |
246 int err = 0; | |
247 if (SQLITE_OK != sqlite3_file_control(db_, NULL, SQLITE_LAST_ERRNO, &err)) | |
248 return -2; | |
249 | |
250 return err; | |
251 } | |
252 | |
253 const char* Connection::GetErrorMessage() const | |
254 { | |
255 return sqlite3_errmsg(db_); | |
256 } | |
257 | |
258 | |
259 bool Connection::BeginTransaction() | |
260 { | |
261 if (needsRollback_) | |
262 { | |
263 assert(transactionNesting_ > 0); | |
264 | |
265 // When we're going to rollback, fail on this begin and don't actually | |
266 // mark us as entering the nested transaction. | |
267 return false; | |
268 } | |
269 | |
270 bool success = true; | |
271 if (!transactionNesting_) | |
272 { | |
273 needsRollback_ = false; | |
274 | |
275 Statement begin(*this, SQLITE_FROM_HERE, "BEGIN TRANSACTION"); | |
276 if (!begin.Run()) | |
277 return false; | |
278 } | |
279 transactionNesting_++; | |
280 return success; | |
281 } | |
282 | |
283 void Connection::RollbackTransaction() | |
284 { | |
285 if (!transactionNesting_) | |
286 { | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
287 throw OrthancSQLiteException(ErrorCode_SQLiteRollbackWithoutTransaction); |
0 | 288 } |
289 | |
290 transactionNesting_--; | |
291 | |
292 if (transactionNesting_ > 0) | |
293 { | |
294 // Mark the outermost transaction as needing rollback. | |
295 needsRollback_ = true; | |
296 return; | |
297 } | |
298 | |
299 DoRollback(); | |
300 } | |
301 | |
302 bool Connection::CommitTransaction() | |
303 { | |
304 if (!transactionNesting_) | |
305 { | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
306 throw OrthancSQLiteException(ErrorCode_SQLiteCommitWithoutTransaction); |
0 | 307 } |
308 transactionNesting_--; | |
309 | |
310 if (transactionNesting_ > 0) | |
311 { | |
312 // Mark any nested transactions as failing after we've already got one. | |
313 return !needsRollback_; | |
314 } | |
315 | |
316 if (needsRollback_) | |
317 { | |
318 DoRollback(); | |
319 return false; | |
320 } | |
321 | |
322 Statement commit(*this, SQLITE_FROM_HERE, "COMMIT"); | |
323 return commit.Run(); | |
324 } | |
325 | |
326 void Connection::DoRollback() | |
327 { | |
328 Statement rollback(*this, SQLITE_FROM_HERE, "ROLLBACK"); | |
329 rollback.Run(); | |
330 needsRollback_ = false; | |
331 } | |
332 | |
333 | |
334 | |
335 | |
336 | |
337 | |
338 static void ScalarFunctionCaller(sqlite3_context* rawContext, | |
339 int argc, | |
340 sqlite3_value** argv) | |
341 { | |
342 FunctionContext context(rawContext, argc, argv); | |
343 | |
344 void* payload = sqlite3_user_data(rawContext); | |
345 assert(payload != NULL); | |
346 | |
656 | 347 IScalarFunction& func = *reinterpret_cast<IScalarFunction*>(payload); |
0 | 348 func.Compute(context); |
349 } | |
350 | |
351 | |
352 static void ScalarFunctionDestroyer(void* payload) | |
353 { | |
354 assert(payload != NULL); | |
656 | 355 delete reinterpret_cast<IScalarFunction*>(payload); |
0 | 356 } |
357 | |
358 | |
359 IScalarFunction* Connection::Register(IScalarFunction* func) | |
360 { | |
361 int err = sqlite3_create_function_v2(db_, | |
362 func->GetName(), | |
363 func->GetCardinality(), | |
364 SQLITE_UTF8, | |
365 func, | |
366 ScalarFunctionCaller, | |
367 NULL, | |
368 NULL, | |
369 ScalarFunctionDestroyer); | |
370 | |
371 if (err != SQLITE_OK) | |
372 { | |
373 delete func; | |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
374 throw OrthancSQLiteException(ErrorCode_SQLiteRegisterFunction); |
0 | 375 } |
376 | |
377 return func; | |
378 } | |
379 | |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
380 |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
381 void Connection::FlushToDisk() |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
382 { |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
383 #if ORTHANC_SQLITE_STANDALONE != 1 |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
384 VLOG(1) << "SQLite::Connection::FlushToDisk"; |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
385 #endif |
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
386 |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
387 int err = sqlite3_wal_checkpoint(db_, NULL); |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
388 |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
389 if (err != SQLITE_OK) |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
390 { |
1582
bd1889029cbb
encoding of exceptions
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1486
diff
changeset
|
391 throw OrthancSQLiteException(ErrorCode_SQLiteFlush); |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
392 } |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
181
diff
changeset
|
393 } |
0 | 394 } |
395 } |