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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
|
/**
* Orthanc - A Lightweight, RESTful DICOM Store
* Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege,
* Belgium
*
* Copyright (c) 2012 The Chromium Authors. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc., the name of the CHU of Liege,
* nor the names of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**/
#include "../PrecompiledHeaders.h"
#include "Connection.h"
#include <memory>
#include <cassert>
#include <sqlite3.h>
#include <string.h>
#include <glog/logging.h>
namespace Orthanc
{
namespace SQLite
{
Connection::Connection() :
db_(NULL),
transactionNesting_(0),
needsRollback_(false)
{
}
Connection::~Connection()
{
Close();
}
void Connection::CheckIsOpen() const
{
if (!db_)
{
throw OrthancException("SQLite: The database is not opened");
}
}
void Connection::Open(const std::string& path)
{
if (db_)
{
throw OrthancException("SQLite: Connection is already open");
}
int err = sqlite3_open(path.c_str(), &db_);
if (err != SQLITE_OK)
{
Close();
db_ = NULL;
throw OrthancException("SQLite: Unable to open the database");
}
// Execute PRAGMAs at this point
// http://www.sqlite.org/pragma.html
Execute("PRAGMA FOREIGN_KEYS=ON;");
Execute("PRAGMA RECURSIVE_TRIGGERS=ON;");
}
void Connection::OpenInMemory()
{
Open(":memory:");
}
void Connection::Close()
{
ClearCache();
if (db_)
{
sqlite3_close(db_);
db_ = NULL;
}
}
void Connection::ClearCache()
{
for (CachedStatements::iterator
it = cachedStatements_.begin();
it != cachedStatements_.end(); ++it)
{
delete it->second;
}
cachedStatements_.clear();
}
StatementReference& Connection::GetCachedStatement(const StatementId& id,
const char* sql)
{
CachedStatements::iterator i = cachedStatements_.find(id);
if (i != cachedStatements_.end())
{
if (i->second->GetReferenceCount() >= 1)
{
throw OrthancException("SQLite: This cached statement is already being referred to");
}
return *i->second;
}
else
{
StatementReference* statement = new StatementReference(db_, sql);
cachedStatements_[id] = statement;
return *statement;
}
}
bool Connection::Execute(const char* sql)
{
VLOG(1) << "SQLite::Connection::Execute " << sql;
CheckIsOpen();
int error = sqlite3_exec(db_, sql, NULL, NULL, NULL);
if (error == SQLITE_ERROR)
{
throw OrthancException("SQLite Execute error: " + std::string(sqlite3_errmsg(db_)));
}
else
{
return error == SQLITE_OK;
}
}
int Connection::ExecuteAndReturnErrorCode(const char* sql)
{
CheckIsOpen();
return sqlite3_exec(db_, sql, NULL, NULL, NULL);
}
// Info querying -------------------------------------------------------------
bool Connection::IsSQLValid(const char* sql)
{
sqlite3_stmt* stmt = NULL;
if (sqlite3_prepare_v2(db_, sql, -1, &stmt, NULL) != SQLITE_OK)
return false;
sqlite3_finalize(stmt);
return true;
}
bool Connection::DoesTableOrIndexExist(const char* name,
const char* type) const
{
// Our SQL is non-mutating, so this cast is OK.
Statement statement(const_cast<Connection&>(*this),
"SELECT name FROM sqlite_master WHERE type=? AND name=?");
statement.BindString(0, type);
statement.BindString(1, name);
return statement.Step(); // Table exists if any row was returned.
}
bool Connection::DoesTableExist(const char* table_name) const
{
return DoesTableOrIndexExist(table_name, "table");
}
bool Connection::DoesIndexExist(const char* index_name) const
{
return DoesTableOrIndexExist(index_name, "index");
}
bool Connection::DoesColumnExist(const char* table_name, const char* column_name) const
{
std::string sql("PRAGMA TABLE_INFO(");
sql.append(table_name);
sql.append(")");
// Our SQL is non-mutating, so this cast is OK.
Statement statement(const_cast<Connection&>(*this), sql.c_str());
while (statement.Step()) {
if (!statement.ColumnString(1).compare(column_name))
return true;
}
return false;
}
int64_t Connection::GetLastInsertRowId() const
{
return sqlite3_last_insert_rowid(db_);
}
int Connection::GetLastChangeCount() const
{
return sqlite3_changes(db_);
}
int Connection::GetErrorCode() const
{
return sqlite3_errcode(db_);
}
int Connection::GetLastErrno() const
{
int err = 0;
if (SQLITE_OK != sqlite3_file_control(db_, NULL, SQLITE_LAST_ERRNO, &err))
return -2;
return err;
}
const char* Connection::GetErrorMessage() const
{
return sqlite3_errmsg(db_);
}
bool Connection::BeginTransaction()
{
if (needsRollback_)
{
assert(transactionNesting_ > 0);
// When we're going to rollback, fail on this begin and don't actually
// mark us as entering the nested transaction.
return false;
}
bool success = true;
if (!transactionNesting_)
{
needsRollback_ = false;
Statement begin(*this, SQLITE_FROM_HERE, "BEGIN TRANSACTION");
if (!begin.Run())
return false;
}
transactionNesting_++;
return success;
}
void Connection::RollbackTransaction()
{
if (!transactionNesting_)
{
throw OrthancException("Rolling back a nonexistent transaction");
}
transactionNesting_--;
if (transactionNesting_ > 0)
{
// Mark the outermost transaction as needing rollback.
needsRollback_ = true;
return;
}
DoRollback();
}
bool Connection::CommitTransaction()
{
if (!transactionNesting_)
{
throw OrthancException("Committing a nonexistent transaction");
}
transactionNesting_--;
if (transactionNesting_ > 0)
{
// Mark any nested transactions as failing after we've already got one.
return !needsRollback_;
}
if (needsRollback_)
{
DoRollback();
return false;
}
Statement commit(*this, SQLITE_FROM_HERE, "COMMIT");
return commit.Run();
}
void Connection::DoRollback()
{
Statement rollback(*this, SQLITE_FROM_HERE, "ROLLBACK");
rollback.Run();
needsRollback_ = false;
}
static void ScalarFunctionCaller(sqlite3_context* rawContext,
int argc,
sqlite3_value** argv)
{
FunctionContext context(rawContext, argc, argv);
void* payload = sqlite3_user_data(rawContext);
assert(payload != NULL);
IScalarFunction& func = *reinterpret_cast<IScalarFunction*>(payload);
func.Compute(context);
}
static void ScalarFunctionDestroyer(void* payload)
{
assert(payload != NULL);
delete reinterpret_cast<IScalarFunction*>(payload);
}
IScalarFunction* Connection::Register(IScalarFunction* func)
{
int err = sqlite3_create_function_v2(db_,
func->GetName(),
func->GetCardinality(),
SQLITE_UTF8,
func,
ScalarFunctionCaller,
NULL,
NULL,
ScalarFunctionDestroyer);
if (err != SQLITE_OK)
{
delete func;
throw OrthancException("SQLite: Unable to register a function");
}
return func;
}
void Connection::FlushToDisk()
{
VLOG(1) << "SQLite::Connection::FlushToDisk";
int err = sqlite3_wal_checkpoint(db_, NULL);
if (err != SQLITE_OK)
{
throw OrthancException("SQLite: Unable to flush the database");
}
}
}
}
|