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 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkSQLiteQuery.cxx,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*----------------------------------------------------------------------------
Copyright (c) Sandia Corporation
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
----------------------------------------------------------------------------*/
#include "vtkSQLiteQuery.h"
#include "vtkObjectFactory.h"
#include "vtkSQLiteDatabase.h"
#include "vtkStringArray.h"
#include "vtkVariant.h"
#include "vtkVariantArray.h"
#include <vtksqlite/vtk_sqlite3.h>
#include <assert.h>
#include <vtksys/ios/sstream>
#define BEGIN_TRANSACTION "BEGIN TRANSACTION"
#define COMMIT_TRANSACTION "COMMIT"
#define ROLLBACK_TRANSACTION "ROLLBACK"
vtkCxxRevisionMacro(vtkSQLiteQuery, "$Revision: 1.2 $");
vtkStandardNewMacro(vtkSQLiteQuery);
// ----------------------------------------------------------------------
vtkSQLiteQuery::vtkSQLiteQuery()
{
this->Statement = NULL;
this->InitialFetch = true;
this->LastErrorText = NULL;
this->TransactionInProgress = false;
}
// ----------------------------------------------------------------------
vtkSQLiteQuery::~vtkSQLiteQuery()
{
this->SetLastErrorText(NULL);
if (this->TransactionInProgress)
{
this->RollbackTransaction();
}
if (this->Statement != NULL)
{
if (this->Database != NULL)
{
vtk_sqlite3_finalize(this->Statement);
this->Statement = NULL;
}
}
}
// ----------------------------------------------------------------------
void vtkSQLiteQuery::PrintSelf(ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
// ----------------------------------------------------------------------
bool vtkSQLiteQuery::Execute()
{
if (this->Query == NULL)
{
vtkErrorMacro(<<"Cannot execute before a query has been set.");
return false;
}
if (this->Statement != NULL)
{
int finalizeStatus = vtk_sqlite3_finalize(this->Statement);
if (finalizeStatus != VTK_SQLITE_OK)
{
vtkWarningMacro(<<"Execute(): Finalize returned unexpected code "
<< finalizeStatus);
}
this->Statement = NULL;
}
vtkSQLiteDatabase *dbContainer =
vtkSQLiteDatabase::SafeDownCast(this->Database);
assert(dbContainer != NULL);
vtk_sqlite3 *db = dbContainer->SQLiteInstance;
const char *unused_statement;
int prepareStatus = vtk_sqlite3_prepare_v2(db,
this->Query,
strlen(this->Query),
&this->Statement,
&unused_statement);
if (prepareStatus != VTK_SQLITE_OK)
{
this->SetLastErrorText(vtk_sqlite3_errmsg(db));
vtkDebugMacro(<<"Execute(): vtk_sqlite3_prepare_v2() failed with error message "
<< this->GetLastErrorText());
this->Active = false;
return false;
}
vtkDebugMacro(<<"Execute(): Query ready to execute.");
this->InitialFetch = true;
int result = vtk_sqlite3_step(this->Statement);
this->InitialFetchResult = result;
if (result == VTK_SQLITE_DONE)
{
this->SetLastErrorText(NULL);
this->Active = true;
return true;
}
else if (result != VTK_SQLITE_ROW)
{
this->SetLastErrorText(vtk_sqlite3_errmsg(db));
vtkDebugMacro(<< "Execute(): vtk_sqlite3_step() returned error message "
<< this->GetLastErrorText());
this->Active = false;
return false;
}
this->SetLastErrorText(NULL);
this->Active = true;
return true;
}
// ----------------------------------------------------------------------
int vtkSQLiteQuery::GetNumberOfFields()
{
if (! this->Active)
{
vtkErrorMacro(<<"GetNumberOfFields(): Query is not active!");
return 0;
}
else
{
return vtk_sqlite3_column_count(this->Statement);
}
}
// ----------------------------------------------------------------------
const char * vtkSQLiteQuery::GetFieldName(int column)
{
if (! this->Active)
{
vtkErrorMacro(<<"GetFieldName(): Query is not active!");
return NULL;
}
else if (column < 0 || column >= this->GetNumberOfFields())
{
vtkErrorMacro(<<"GetFieldName(): Illegal field index "
<< column);
return NULL;
}
else
{
return vtk_sqlite3_column_name(this->Statement, column);
}
}
// ----------------------------------------------------------------------
int vtkSQLiteQuery::GetFieldType(int column)
{
if (! this->Active)
{
vtkErrorMacro(<<"GetFieldType(): Query is not active!");
return -1;
}
else if (column < 0 || column >= this->GetNumberOfFields())
{
vtkErrorMacro(<<"GetFieldType(): Illegal field index "
<< column);
return -1;
}
else
{
switch (vtk_sqlite3_column_type(this->Statement, column))
{
case VTK_SQLITE_INTEGER:
return VTK_INT;
case VTK_SQLITE_FLOAT:
return VTK_FLOAT;
case VTK_SQLITE_TEXT:
return VTK_STRING;
case VTK_SQLITE_BLOB:
return VTK_STRING; // until we have a BLOB type of our own
case VTK_SQLITE_NULL:
return VTK_VOID; // ??? what makes sense here?
default:
{
vtkErrorMacro(<<"GetFieldType(): Unknown data type "
<< vtk_sqlite3_column_type(this->Statement, column)
<<" from SQLite.");
return VTK_VOID;
}
}
}
}
// ----------------------------------------------------------------------
bool vtkSQLiteQuery::NextRow()
{
if (! this->IsActive())
{
vtkErrorMacro(<<"NextRow(): Query is not active!");
return false;
}
if (this->InitialFetch)
{
vtkDebugMacro(<<"NextRow(): Initial fetch being handled.");
this->InitialFetch = false;
if (this->InitialFetchResult == VTK_SQLITE_DONE)
{
return false;
}
else
{
return true;
}
}
else
{
int result = vtk_sqlite3_step(this->Statement);
if (result == VTK_SQLITE_DONE)
{
return false;
}
else if (result == VTK_SQLITE_ROW)
{
return true;
}
else
{
vtkSQLiteDatabase *dbContainer =
dynamic_cast<vtkSQLiteDatabase *>(this->Database);
assert(dbContainer != NULL);
vtk_sqlite3 *db = dbContainer->SQLiteInstance;
this->SetLastErrorText(vtk_sqlite3_errmsg(db));
vtkErrorMacro(<<"NextRow(): Database returned error code "
<< result << " with the following message: "
<< this->GetLastErrorText());
this->Active = false;
return false;
}
}
}
// ----------------------------------------------------------------------
vtkVariant vtkSQLiteQuery::DataValue(vtkIdType column)
{
if (this->IsActive() == false)
{
vtkWarningMacro(<<"DataValue() called on inactive query");
return vtkVariant();
}
else if (column < 0 || column >= this->GetNumberOfFields())
{
vtkWarningMacro(<<"DataValue() called with out-of-range column index "
<< column);
return vtkVariant();
}
else
{
switch (vtk_sqlite3_column_type(this->Statement, column))
{
case VTK_SQLITE_INTEGER:
return vtkVariant(vtk_sqlite3_column_int(this->Statement, column));
case VTK_SQLITE_FLOAT:
return vtkVariant(vtk_sqlite3_column_double(this->Statement, column));
case VTK_SQLITE_TEXT:
{
vtksys_ios::ostringstream str;
str << vtk_sqlite3_column_text(this->Statement, column);
return vtkVariant(vtkStdString(str.str()));
}
case VTK_SQLITE_BLOB:
{
// XXX BLOB support has not been properly exercised yet.
const char *blobData = reinterpret_cast<const char *>(vtk_sqlite3_column_text(this->Statement, column));
return vtkVariant(vtkStdString(blobData));
}
case VTK_SQLITE_NULL:
default:
return vtkVariant();
}
}
}
// ----------------------------------------------------------------------
const char * vtkSQLiteQuery::GetLastErrorText()
{
if (this->Database == NULL)
{
return "No database.";
}
else
{
return this->Database->GetLastErrorText();
}
}
// ----------------------------------------------------------------------
bool vtkSQLiteQuery::HasError()
{
if (this->Database == NULL)
{
return false;
}
if (this->Statement == NULL)
{
return false;
}
else
{
return (this->GetLastErrorText() != NULL);
}
}
// ----------------------------------------------------------------------
bool vtkSQLiteQuery::BeginTransaction()
{
if (this->TransactionInProgress)
{
vtkErrorMacro(<<"Cannot start a transaction. One is already in progress.");
return false;
}
vtkSQLiteDatabase *dbContainer = dynamic_cast<vtkSQLiteDatabase *>(this->Database);
assert(dbContainer != NULL);
vtk_sqlite3 *db = dbContainer->SQLiteInstance;
char *errorMessage = NULL;
int result = vtk_sqlite3_exec(db, BEGIN_TRANSACTION, NULL, NULL, &errorMessage);
if (result == VTK_SQLITE_OK)
{
this->TransactionInProgress = true;
this->SetLastErrorText(NULL);
vtkDebugMacro(<<"BeginTransaction() succeeded.");
return true;
}
else
{
vtkErrorMacro(<<"BeginTransaction(): sqlite3_exec returned unexpected result code " << result);
if (errorMessage)
{
vtkErrorMacro(<< " and error message " << errorMessage);
}
this->TransactionInProgress = false;
return false;
}
}
// ----------------------------------------------------------------------
bool vtkSQLiteQuery::CommitTransaction()
{
if (this->Statement)
{
vtk_sqlite3_finalize(this->Statement);
this->Statement = NULL;
}
if (!this->TransactionInProgress)
{
vtkErrorMacro(<<"Cannot commit. There is no transaction in progress.");
return false;
}
vtkSQLiteDatabase *dbContainer =
dynamic_cast<vtkSQLiteDatabase *>(this->Database);
assert(dbContainer != NULL);
vtk_sqlite3 *db = dbContainer->SQLiteInstance;
char *errorMessage = NULL;
int result = vtk_sqlite3_exec(db, COMMIT_TRANSACTION, NULL, NULL, &errorMessage);
if (result == VTK_SQLITE_OK)
{
this->TransactionInProgress = false;
this->SetLastErrorText(NULL);
vtkDebugMacro(<<"CommitTransaction() succeeded.");
return true;
}
else
{
vtkErrorMacro(<<"CommitTransaction(): sqlite3_exec returned unexpected result code " << result);
if (errorMessage)
{
this->SetLastErrorText(errorMessage);
vtkErrorMacro(<< " and error message " << errorMessage);
}
assert(1==0);
return false;
}
}
// ----------------------------------------------------------------------
bool vtkSQLiteQuery::RollbackTransaction()
{
if (!this->TransactionInProgress)
{
vtkErrorMacro(<<"Cannot rollback. There is no transaction in progress.");
return false;
}
vtkSQLiteDatabase *dbContainer =
dynamic_cast<vtkSQLiteDatabase *>(this->Database);
assert(dbContainer != NULL);
vtk_sqlite3 *db = dbContainer->SQLiteInstance;
char *errorMessage = NULL;
int result = vtk_sqlite3_exec(db, ROLLBACK_TRANSACTION, NULL, NULL, &errorMessage);
if (result == VTK_SQLITE_OK)
{
this->TransactionInProgress = false;
this->SetLastErrorText(NULL);
vtkDebugMacro(<<"RollbackTransaction() succeeded.");
return true;
}
else
{
vtkErrorMacro(<<"RollbackTransaction(): sqlite3_exec returned unexpected result code " << result);
if (errorMessage)
{
this->SetLastErrorText(errorMessage);
vtkErrorMacro(<< " and error message " << errorMessage);
}
return false;
}
}
|