1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
/**
* Orthanc - A Lightweight, RESTful DICOM Store
* Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
* Department, University Hospital of Liege, Belgium
* Copyright (C) 2017-2023 Osimis S.A., Belgium
* Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
#pragma once
#include "IDatabaseFactory.h"
#include "StatementLocation.h"
#include <Compatibility.h> // For std::unique_ptr<>
#include <Enumerations.h>
#include <memory>
namespace OrthancDatabases
{
/**
* WARNING: In PostgreSQL releases <= 3.3 and in MySQL releases <=
* 3.0, this class was protected by a mutex. It is now assumed that
* locking must be implemented at a higher level.
*
* This class maintains a list of precompiled statements. At any
* time, this class handles 0 or 1 active transaction.
*
* "DatabaseManager" takes a "IDatabaseFactory" as input, in order
* to be able to automatically re-open the database connection if
* the latter gets lost.
**/
class DatabaseManager : public boost::noncopyable
{
private:
typedef std::map<StatementLocation, IPrecompiledStatement*> CachedStatements;
std::unique_ptr<IDatabaseFactory> factory_;
std::unique_ptr<IDatabase> database_;
std::unique_ptr<ITransaction> transaction_;
CachedStatements cachedStatements_;
Dialect dialect_;
void CloseIfUnavailable(Orthanc::ErrorCode e);
IPrecompiledStatement* LookupCachedStatement(const StatementLocation& location) const;
IPrecompiledStatement& CacheStatement(const StatementLocation& location,
const Query& query);
ITransaction& GetTransaction();
void ReleaseImplicitTransaction();
public:
explicit DatabaseManager(IDatabaseFactory* factory); // Takes ownership
~DatabaseManager()
{
Close();
}
IDatabase& GetDatabase();
Dialect GetDialect() const;
void Close();
void StartTransaction(TransactionType type);
void CommitTransaction();
void RollbackTransaction();
// This class is only used in the "StorageBackend" and in
// "IDatabaseBackend::ConfigureDatabase()"
class Transaction : public boost::noncopyable
{
private:
DatabaseManager& manager_;
IDatabase& database_;
bool active_;
public:
explicit Transaction(DatabaseManager& manager,
TransactionType type);
~Transaction();
void Commit();
void Rollback();
/**
* WARNING: Don't call "GetDatabaseTransaction().Commit()" and
* "GetDatabaseTransaction().Rollback()", but use the "Commit()"
* and "Rollback()" methods above.
**/
ITransaction& GetDatabaseTransaction()
{
return manager_.GetTransaction();
}
};
class StatementBase : public boost::noncopyable
{
private:
DatabaseManager& manager_;
ITransaction& transaction_;
std::unique_ptr<Query> query_;
std::unique_ptr<IResult> result_;
IResult& GetResult() const;
protected:
DatabaseManager& GetManager() const
{
return manager_;
}
ITransaction& GetTransaction() const
{
return transaction_;
}
void SetQuery(Query* query);
void SetResult(IResult* result);
void ClearResult()
{
result_.reset();
}
Query* ReleaseQuery()
{
return query_.release();
}
public:
explicit StatementBase(DatabaseManager& manager);
virtual ~StatementBase();
// Used only by SQLite
IDatabase& GetDatabase()
{
return manager_.GetDatabase();
}
void SetReadOnly(bool readOnly);
void SetParameterType(const std::string& parameter,
ValueType type);
bool IsDone() const;
void Next();
size_t GetResultFieldsCount() const;
void SetResultFieldType(size_t field,
ValueType type);
const IValue& GetResultField(size_t index) const;
int32_t ReadInteger32(size_t field) const;
int64_t ReadInteger64(size_t field) const;
std::string ReadString(size_t field) const;
void PrintResult(std::ostream& stream)
{
IResult::Print(stream, GetResult());
}
};
/**
* WARNING: At any given time, there must be at most 1 object of
* the "CachedStatement" class in the scope, otherwise error
* "Cannot execute more than one statement in an implicit
* transaction" is generated if no explicit transaction is
* present.
**/
class CachedStatement : public StatementBase
{
private:
StatementLocation location_;
IPrecompiledStatement* statement_;
public:
CachedStatement(const StatementLocation& location,
DatabaseManager& manager,
const std::string& sql);
void Execute()
{
Dictionary parameters;
Execute(parameters);
}
void Execute(const Dictionary& parameters);
};
class StandaloneStatement : public StatementBase
{
private:
std::unique_ptr<IPrecompiledStatement> statement_;
public:
StandaloneStatement(DatabaseManager& manager,
const std::string& sql);
virtual ~StandaloneStatement();
void Execute()
{
Dictionary parameters;
Execute(parameters);
}
void Execute(const Dictionary& parameters);
};
};
}
|