Mercurial > hg > orthanc
annotate OrthancFramework/Sources/SQLite/Connection.h @ 5474:6cb91df32207 Orthanc-1.12.2
Orthanc-1.12.2
author | Alain Mazy <am@osimis.io> |
---|---|
date | Tue, 19 Dec 2023 10:05:57 +0100 |
parents | fddb5d8d0021 |
children | 48b8dae6dc77 |
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:
689
diff
changeset
|
3 * |
3063 | 4 * Copyright (C) 2012-2016 Sebastien Jodogne <s.jodogne@orthanc-labs.com>, |
1220
9b9026560a5f
SQLite wrapper is now fully independent of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
5 * Medical Physics Department, CHU of Liege, Belgium |
5185
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
6 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4870
diff
changeset
|
7 * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 8 * |
17 | 9 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
10 * | |
11 * Redistribution and use in source and binary forms, with or without | |
12 * modification, are permitted provided that the following conditions are | |
13 * met: | |
0 | 14 * |
17 | 15 * * Redistributions of source code must retain the above copyright |
16 * notice, this list of conditions and the following disclaimer. | |
17 * * Redistributions in binary form must reproduce the above | |
18 * copyright notice, this list of conditions and the following disclaimer | |
19 * in the documentation and/or other materials provided with the | |
20 * distribution. | |
21 * * Neither the name of Google Inc., the name of the CHU of Liege, | |
22 * nor the names of its contributors may be used to endorse or promote | |
23 * products derived from this software without specific prior written | |
24 * permission. | |
25 * | |
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
27 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
28 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
29 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
30 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
31 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
32 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
33 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
34 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
35 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
36 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
0 | 37 **/ |
38 | |
39 | |
40 #pragma once | |
41 | |
42 #include "Statement.h" | |
43 #include "IScalarFunction.h" | |
2302
f31dfb131dee
fix backward compatibility with SQLite < 3.19.0
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1900
diff
changeset
|
44 #include "SQLiteTypes.h" |
0 | 45 |
46 #include <string> | |
47 #include <map> | |
48 | |
5357
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
49 #if !defined(__ORTHANC_FILE__) |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
50 # if defined(_MSC_VER) |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
51 # pragma message("Warning: Macro __ORTHANC_FILE__ is not defined, this will leak the full path of the source files in the binaries") |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
52 # else |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
53 # warning Warning: Macro __ORTHANC_FILE__ is not defined, this will leak the full path of the source files in the binaries |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
54 # endif |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
55 # define __ORTHANC_FILE__ __FILE__ |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
56 #endif |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
57 |
fddb5d8d0021
Prevent the leak of the full path of the source files in the binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
58 #define SQLITE_FROM_HERE ::Orthanc::SQLite::StatementId(__ORTHANC_FILE__, __LINE__) |
0 | 59 |
59 | 60 namespace Orthanc |
0 | 61 { |
62 namespace SQLite | |
63 { | |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3063
diff
changeset
|
64 class ORTHANC_PUBLIC Connection : NonCopyable |
0 | 65 { |
66 friend class Statement; | |
67 friend class Transaction; | |
68 | |
69 private: | |
70 // All cached statements. Keeping a reference to these statements means that | |
71 // they'll remain active. | |
72 typedef std::map<StatementId, StatementReference*> CachedStatements; | |
73 CachedStatements cachedStatements_; | |
74 | |
75 // The actual sqlite database. Will be NULL before Init has been called or if | |
76 // Init resulted in an error. | |
77 sqlite3* db_; | |
78 | |
79 // Number of currently-nested transactions. | |
80 int transactionNesting_; | |
81 | |
82 // True if any of the currently nested transactions have been rolled back. | |
83 // When we get to the outermost transaction, this will determine if we do | |
84 // a rollback instead of a commit. | |
85 bool needsRollback_; | |
86 | |
87 void ClearCache(); | |
88 | |
89 void CheckIsOpen() const; | |
90 | |
91 sqlite3* GetWrappedObject() | |
92 { | |
93 return db_; | |
94 } | |
95 | |
96 StatementReference& GetCachedStatement(const StatementId& id, | |
97 const char* sql); | |
98 | |
99 bool DoesTableOrIndexExist(const char* name, | |
100 const char* type) const; | |
101 | |
102 void DoRollback(); | |
103 | |
104 public: | |
105 // The database is opened by calling Open[InMemory](). Any uncommitted | |
106 // transactions will be rolled back when this object is deleted. | |
107 Connection(); | |
108 ~Connection(); | |
109 | |
110 void Open(const std::string& path); | |
111 | |
112 void OpenInMemory(); | |
113 | |
114 void Close(); | |
115 | |
116 bool Execute(const char* sql); | |
117 | |
4304 | 118 bool Execute(const std::string& sql); |
0 | 119 |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
59
diff
changeset
|
120 void FlushToDisk(); |
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
59
diff
changeset
|
121 |
0 | 122 IScalarFunction* Register(IScalarFunction* func); // Takes the ownership of the function |
123 | |
124 // Info querying ------------------------------------------------------------- | |
125 | |
126 // Used to check a |sql| statement for syntactic validity. If the | |
127 // statement is valid SQL, returns true. | |
128 bool IsSQLValid(const char* sql); | |
129 | |
130 // Returns true if the given table exists. | |
131 bool DoesTableExist(const char* table_name) const; | |
132 | |
133 // Returns true if the given index exists. | |
134 bool DoesIndexExist(const char* index_name) const; | |
135 | |
136 // Returns true if a column with the given name exists in the given table. | |
137 bool DoesColumnExist(const char* table_name, const char* column_name) const; | |
138 | |
139 // Returns sqlite's internal ID for the last inserted row. Valid only | |
140 // immediately after an insert. | |
141 int64_t GetLastInsertRowId() const; | |
142 | |
143 // Returns sqlite's count of the number of rows modified by the last | |
144 // statement executed. Will be 0 if no statement has executed or the database | |
145 // is closed. | |
146 int GetLastChangeCount() const; | |
147 | |
148 // Errors -------------------------------------------------------------------- | |
149 | |
150 // Returns the error code associated with the last sqlite operation. | |
151 int GetErrorCode() const; | |
152 | |
153 // Returns the errno associated with GetErrorCode(). See | |
154 // SQLITE_LAST_ERRNO in SQLite documentation. | |
155 int GetLastErrno() const; | |
156 | |
157 // Returns a pointer to a statically allocated string associated with the | |
158 // last sqlite operation. | |
159 const char* GetErrorMessage() const; | |
160 | |
161 | |
162 // Diagnostics (for unit tests) ---------------------------------------------- | |
163 | |
164 int ExecuteAndReturnErrorCode(const char* sql); | |
165 | |
4304 | 166 bool HasCachedStatement(const StatementId& id) const; |
0 | 167 |
4304 | 168 int GetTransactionNesting() const; |
0 | 169 |
170 // Transactions -------------------------------------------------------------- | |
171 | |
172 bool BeginTransaction(); | |
173 void RollbackTransaction(); | |
206
4453a010d0db
flush to disk thread
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
59
diff
changeset
|
174 bool CommitTransaction(); |
0 | 175 }; |
176 } | |
177 } |