2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* RetroShare : RetroDb functionality
|
|
|
|
*
|
2013-04-20 09:39:02 -04:00
|
|
|
* Copyright 2012-2013 Christopher Evi-Parker
|
2012-03-18 10:06:36 -04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <time.h>
|
2012-06-07 05:23:01 -04:00
|
|
|
#include <inttypes.h>
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
#include "retrodb.h"
|
2013-04-20 09:39:02 -04:00
|
|
|
#include "rsdbbind.h"
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2012-08-25 11:48:55 -04:00
|
|
|
//#define RETRODB_DEBUG
|
2015-02-13 14:34:38 -05:00
|
|
|
|
|
|
|
#ifndef NO_SQLCIPHER
|
2013-06-13 17:21:33 -04:00
|
|
|
#define ENABLE_ENCRYPTED_DB
|
2015-02-13 14:34:38 -05:00
|
|
|
#endif
|
2012-08-21 17:32:07 -04:00
|
|
|
|
2012-03-18 10:06:36 -04:00
|
|
|
const int RetroDb::OPEN_READONLY = SQLITE_OPEN_READONLY;
|
|
|
|
const int RetroDb::OPEN_READWRITE = SQLITE_OPEN_READWRITE;
|
|
|
|
const int RetroDb::OPEN_READWRITE_CREATE = SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE;
|
|
|
|
|
2013-06-04 17:00:43 -04:00
|
|
|
RetroDb::RetroDb(const std::string &dbPath, int flags, const std::string& key) : mDb(NULL), mKey(key) {
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
int rc = sqlite3_open_v2(dbPath.c_str(), &mDb, flags, NULL);
|
|
|
|
|
|
|
|
if(rc){
|
|
|
|
std::cerr << "Can't open database, Error code: " << sqlite3_errmsg(mDb)
|
|
|
|
<< std::endl;
|
|
|
|
sqlite3_close(mDb);
|
2013-06-20 15:50:25 -04:00
|
|
|
mDb = NULL;
|
|
|
|
return;
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
2013-06-04 17:00:43 -04:00
|
|
|
|
|
|
|
#ifdef ENABLE_ENCRYPTED_DB
|
2013-06-20 15:50:25 -04:00
|
|
|
if(!mKey.empty())
|
|
|
|
{
|
|
|
|
rc = sqlite3_key(mDb, mKey.c_str(), mKey.size());
|
2013-06-04 17:00:43 -04:00
|
|
|
|
2013-06-20 15:50:25 -04:00
|
|
|
if(rc){
|
|
|
|
std::cerr << "Can't key database: " << sqlite3_errmsg(mDb)
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
sqlite3_close(mDb);
|
|
|
|
mDb = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2013-06-04 17:00:43 -04:00
|
|
|
|
2014-10-05 12:56:23 -04:00
|
|
|
char *err = NULL;
|
|
|
|
rc = sqlite3_exec(mDb, "PRAGMA cipher_migrate;", NULL, NULL, &err);
|
|
|
|
if (rc != SQLITE_OK)
|
|
|
|
{
|
|
|
|
std::cerr << "RetroDb::RetroDb(): Error upgrading database, error code: " << rc;
|
|
|
|
if (err)
|
|
|
|
{
|
|
|
|
std::cerr << ", " << err;
|
|
|
|
}
|
|
|
|
std::cerr << std::endl;
|
|
|
|
sqlite3_free(err);
|
|
|
|
}
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RetroDb::~RetroDb(){
|
|
|
|
|
2014-04-05 11:30:48 -04:00
|
|
|
sqlite3_close(mDb); // no-op if mDb is NULL (https://www.sqlite.org/c3ref/close.html)
|
|
|
|
mDb = NULL ;
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void RetroDb::closeDb(){
|
|
|
|
|
2014-04-05 11:30:48 -04:00
|
|
|
int rc= sqlite3_close(mDb);
|
2014-10-05 12:56:23 -04:00
|
|
|
mDb = NULL ;
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "RetroDb::closeDb(): Error code on close: " << rc << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TIME_LIMIT 3
|
|
|
|
|
|
|
|
bool RetroDb::execSQL(const std::string &query){
|
|
|
|
|
|
|
|
// prepare statement
|
|
|
|
sqlite3_stmt* stm = NULL;
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "Query: " << query << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int rc = sqlite3_prepare_v2(mDb, query.c_str(), query.length(), &stm, NULL);
|
|
|
|
|
|
|
|
// check if there are any errors
|
|
|
|
if(rc != SQLITE_OK){
|
|
|
|
std::cerr << "RetroDb::execSQL(): Error preparing statement\n";
|
|
|
|
std::cerr << "Error code: " << sqlite3_errmsg(mDb)
|
|
|
|
<< std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t delta = 3;
|
|
|
|
time_t stamp = time(NULL), now = 0;
|
|
|
|
bool timeOut = false, ok = false;
|
|
|
|
|
|
|
|
while(!timeOut){
|
|
|
|
|
|
|
|
rc = sqlite3_step(stm);
|
|
|
|
|
|
|
|
if(rc == SQLITE_DONE){
|
|
|
|
ok = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rc != SQLITE_BUSY){
|
|
|
|
ok = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
now = time(NULL);
|
|
|
|
delta = stamp - now;
|
|
|
|
|
|
|
|
if(delta > TIME_LIMIT){
|
|
|
|
ok = false;
|
|
|
|
timeOut = true;
|
|
|
|
}
|
|
|
|
// TODO add sleep so not to waste
|
|
|
|
// precious cycles
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!ok){
|
|
|
|
|
|
|
|
if(rc == SQLITE_BUSY){
|
|
|
|
std::cerr << "RetroDb::execSQL()\n" ;
|
|
|
|
std::cerr << "SQL timed out!" << std::endl;
|
|
|
|
}else{
|
|
|
|
std::cerr << "RetroDb::execSQL(): Error executing statement (code: " << rc << ")\n";
|
|
|
|
std::cerr << "Sqlite Error msg: " << sqlite3_errmsg(mDb)
|
|
|
|
<< std::endl;
|
2014-04-30 07:53:32 -04:00
|
|
|
std::cerr << "RetroDb::execSQL() Query: " << query << std::endl;
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// finalise statement or else db cannot be closed
|
|
|
|
sqlite3_finalize(stm);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
RetroCursor* RetroDb::sqlQuery(const std::string& tableName, const std::list<std::string>& columns,
|
|
|
|
const std::string& selection, const std::string& orderBy){
|
|
|
|
|
|
|
|
if(tableName.empty() || columns.empty()){
|
|
|
|
std::cerr << "RetroDb::sqlQuery(): No table or columns given" << std::endl;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string columnSelection; // the column names to return
|
|
|
|
sqlite3_stmt* stmt = NULL;
|
|
|
|
std::list<std::string>::const_iterator it = columns.begin();
|
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
for(; it != columns.end(); ++it){
|
2015-08-10 09:24:56 -04:00
|
|
|
if (it != columns.begin()) {
|
2012-03-18 10:06:36 -04:00
|
|
|
columnSelection += ",";
|
2015-08-10 09:24:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
columnSelection += *it;
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// construct query
|
|
|
|
// SELECT columnSelection FROM tableName WHERE selection
|
|
|
|
std::string sqlQuery = "SELECT " + columnSelection + " FROM " +
|
|
|
|
tableName;
|
|
|
|
|
|
|
|
// add selection clause if present
|
|
|
|
if(!selection.empty())
|
|
|
|
sqlQuery += " WHERE " + selection;
|
|
|
|
|
|
|
|
|
|
|
|
// add 'order by' clause if present
|
|
|
|
if(!orderBy.empty())
|
|
|
|
sqlQuery += " ORDER BY " + orderBy + ";";
|
|
|
|
else
|
|
|
|
sqlQuery += ";";
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "RetroDb::sqlQuery(): " << sqlQuery << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sqlite3_prepare_v2(mDb, sqlQuery.c_str(), sqlQuery.length(), &stmt, NULL);
|
|
|
|
return (new RetroCursor(stmt));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroDb::isOpen() const {
|
|
|
|
return (mDb==NULL ? false : true);
|
|
|
|
}
|
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
bool RetroDb::sqlInsert(const std::string &table, const std::string& /* nullColumnHack */, const ContentValue &cv){
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
std::map<std::string, uint8_t> keyTypeMap;
|
|
|
|
cv.getKeyTypeMap(keyTypeMap);
|
|
|
|
std::map<std::string, uint8_t>::iterator mit = keyTypeMap.begin();
|
|
|
|
|
|
|
|
// build columns part of insertion
|
|
|
|
std::string qColumns = table + "(";
|
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
for(; mit != keyTypeMap.end(); ++mit){
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
qColumns += mit->first;
|
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
++mit;
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
// add comma if more columns left
|
|
|
|
if(mit == keyTypeMap.end())
|
|
|
|
qColumns += ")"; // close bracket if at end
|
|
|
|
else
|
2013-04-20 09:39:02 -04:00
|
|
|
qColumns += ",";
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
--mit;
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// build values part of insertion
|
2013-04-20 09:39:02 -04:00
|
|
|
std::string qValues;
|
|
|
|
std::list<RetroBind*> paramBindings;
|
|
|
|
buildInsertQueryValue(keyTypeMap, cv, qValues, paramBindings);
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
// complete insertion query
|
|
|
|
std::string sqlQuery = "INSERT INTO " + qColumns + " " + qValues;
|
|
|
|
|
2014-05-04 08:48:42 -04:00
|
|
|
bool ok = execSQL_bind(sqlQuery, paramBindings);
|
2013-04-20 09:39:02 -04:00
|
|
|
|
2012-03-18 10:06:36 -04:00
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "RetroDb::sqlInsert(): " << sqlQuery << std::endl;
|
|
|
|
#endif
|
|
|
|
|
2014-05-04 08:48:42 -04:00
|
|
|
return ok;
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
2013-06-04 17:00:43 -04:00
|
|
|
std::string RetroDb::getKey() const
|
|
|
|
{
|
|
|
|
return mKey;
|
|
|
|
}
|
|
|
|
|
2015-08-15 11:06:06 -04:00
|
|
|
bool RetroDb::beginTransaction()
|
|
|
|
{
|
|
|
|
if (!isOpen()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return execSQL("BEGIN;");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroDb::commitTransaction()
|
|
|
|
{
|
|
|
|
if (!isOpen()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return execSQL("COMMIT;");
|
|
|
|
}
|
|
|
|
bool RetroDb::rollbackTransaction()
|
|
|
|
{
|
|
|
|
if (!isOpen()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return execSQL("ROLLBACK;");
|
|
|
|
}
|
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
bool RetroDb::execSQL_bind(const std::string &query, std::list<RetroBind*> ¶mBindings){
|
2012-05-21 18:07:43 -04:00
|
|
|
|
|
|
|
// prepare statement
|
|
|
|
sqlite3_stmt* stm = NULL;
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "Query: " << query << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int rc = sqlite3_prepare_v2(mDb, query.c_str(), query.length(), &stm, NULL);
|
|
|
|
|
|
|
|
// check if there are any errors
|
|
|
|
if(rc != SQLITE_OK){
|
2014-05-04 08:48:42 -04:00
|
|
|
std::cerr << "RetroDb::execSQL_bind(): Error preparing statement\n";
|
2012-05-21 18:07:43 -04:00
|
|
|
std::cerr << "Error code: " << sqlite3_errmsg(mDb)
|
|
|
|
<< std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
std::list<RetroBind*>::iterator lit = paramBindings.begin();
|
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
for(; lit != paramBindings.end(); ++lit){
|
2013-04-20 09:39:02 -04:00
|
|
|
RetroBind* rb = *lit;
|
|
|
|
|
|
|
|
if(!rb->bind(stm))
|
|
|
|
{
|
|
|
|
std::cerr << "\nBind failed for index: " << rb->getIndex()
|
|
|
|
<< std::endl;
|
|
|
|
}
|
2012-05-21 18:07:43 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
delete rb;
|
|
|
|
rb = NULL;
|
2012-05-21 18:07:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t delta = 3;
|
|
|
|
time_t stamp = time(NULL), now = 0;
|
|
|
|
bool timeOut = false, ok = false;
|
|
|
|
|
|
|
|
while(!timeOut){
|
|
|
|
|
|
|
|
rc = sqlite3_step(stm);
|
|
|
|
|
|
|
|
if(rc == SQLITE_DONE){
|
|
|
|
ok = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rc != SQLITE_BUSY){
|
|
|
|
ok = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
now = time(NULL);
|
|
|
|
delta = stamp - now;
|
|
|
|
|
|
|
|
if(delta > TIME_LIMIT){
|
|
|
|
ok = false;
|
|
|
|
timeOut = true;
|
|
|
|
}
|
|
|
|
// TODO add sleep so not to waste
|
|
|
|
// precious cycles
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!ok){
|
|
|
|
|
|
|
|
if(rc == SQLITE_BUSY){
|
2014-05-04 08:48:42 -04:00
|
|
|
std::cerr << "RetroDb::execSQL_bind()\n" ;
|
2012-05-21 18:07:43 -04:00
|
|
|
std::cerr << "SQL timed out!" << std::endl;
|
|
|
|
}else{
|
2014-05-04 08:48:42 -04:00
|
|
|
std::cerr << "RetroDb::execSQL_bind(): Error executing statement (code: " << rc << ")\n";
|
2012-05-21 18:07:43 -04:00
|
|
|
std::cerr << "Sqlite Error msg: " << sqlite3_errmsg(mDb)
|
|
|
|
<< std::endl;
|
2014-05-04 08:48:42 -04:00
|
|
|
std::cerr << "RetroDb::execSQL_bind() Query: " << query << std::endl;
|
2012-05-21 18:07:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// finalise statement or else db cannot be closed
|
|
|
|
sqlite3_finalize(stm);
|
|
|
|
return ok;
|
|
|
|
}
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
void RetroDb::buildInsertQueryValue(const std::map<std::string, uint8_t> keyTypeMap,
|
|
|
|
const ContentValue& cv, std::string& parameter,
|
|
|
|
std::list<RetroBind*>& paramBindings)
|
|
|
|
{
|
|
|
|
std::map<std::string, uint8_t>::const_iterator mit = keyTypeMap.begin();
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
parameter = "VALUES(";
|
|
|
|
int index = 0;
|
2014-10-24 18:07:26 -04:00
|
|
|
for(mit=keyTypeMap.begin(); mit!=keyTypeMap.end(); ++mit)
|
2013-04-20 09:39:02 -04:00
|
|
|
{
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
uint8_t type = mit->second;
|
|
|
|
std::string key = mit->first;
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
RetroBind* rb = NULL;
|
|
|
|
if(ContentValue::BOOL_TYPE == type)
|
|
|
|
{
|
|
|
|
bool value;
|
|
|
|
cv.getAsBool(key, value);
|
|
|
|
rb = new RsBoolBind(value, ++index);
|
|
|
|
}
|
|
|
|
else if( ContentValue::DOUBLE_TYPE == type)
|
|
|
|
{
|
|
|
|
double value;
|
|
|
|
cv.getAsDouble(key, value);
|
|
|
|
rb = new RsDoubleBind(value, ++index);
|
|
|
|
}
|
|
|
|
else if( ContentValue::DATA_TYPE == type)
|
|
|
|
{
|
|
|
|
char* value;
|
|
|
|
uint32_t len;
|
|
|
|
cv.getAsData(key, len, value);
|
|
|
|
rb = new RsBlobBind(value, len, ++index);
|
|
|
|
}
|
|
|
|
else if ( ContentValue::STRING_TYPE == type)
|
|
|
|
{
|
|
|
|
std::string value;
|
|
|
|
cv.getAsString(key, value);
|
|
|
|
rb = new RsStringBind(value, ++index);
|
|
|
|
}
|
|
|
|
else if ( ContentValue::INT32_TYPE == type)
|
|
|
|
{
|
|
|
|
int32_t value = 0;
|
|
|
|
cv.getAsInt32(key, value);
|
|
|
|
rb = new RsInt32Bind(value, ++index);
|
|
|
|
}
|
|
|
|
else if( ContentValue::INT64_TYPE == type)
|
|
|
|
{
|
|
|
|
int64_t value = 0;
|
|
|
|
cv.getAsInt64(key, value);
|
|
|
|
rb = new RsInt64bind(value, ++index);
|
|
|
|
}
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
if(rb)
|
|
|
|
{
|
|
|
|
paramBindings.push_back(rb);
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
++mit;
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
if(mit == keyTypeMap.end())
|
|
|
|
parameter += "?";
|
|
|
|
else
|
|
|
|
parameter += "?,";
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
--mit;
|
2013-04-20 09:39:02 -04:00
|
|
|
}
|
|
|
|
}
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
parameter += ")";
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void RetroDb::buildUpdateQueryValue(const std::map<std::string, uint8_t> keyTypeMap,
|
|
|
|
const ContentValue& cv, std::string& parameter,
|
|
|
|
std::list<RetroBind*>& paramBindings)
|
|
|
|
{
|
|
|
|
std::map<std::string, uint8_t>::const_iterator mit = keyTypeMap.begin();
|
|
|
|
|
|
|
|
int index = 0;
|
2014-10-24 18:07:26 -04:00
|
|
|
for(mit=keyTypeMap.begin(); mit!=keyTypeMap.end(); ++mit)
|
2013-04-20 09:39:02 -04:00
|
|
|
{
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
uint8_t type = mit->second;
|
|
|
|
std::string key = mit->first;
|
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
RetroBind* rb = NULL;
|
|
|
|
if(ContentValue::BOOL_TYPE == type)
|
2012-03-18 10:06:36 -04:00
|
|
|
{
|
|
|
|
bool value;
|
|
|
|
cv.getAsBool(key, value);
|
2013-04-20 09:39:02 -04:00
|
|
|
rb = new RsBoolBind(value, ++index);
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
2012-08-21 17:32:07 -04:00
|
|
|
else if( ContentValue::DOUBLE_TYPE == type)
|
2012-03-18 10:06:36 -04:00
|
|
|
{
|
|
|
|
double value;
|
|
|
|
cv.getAsDouble(key, value);
|
2013-04-20 09:39:02 -04:00
|
|
|
rb = new RsDoubleBind(value, ++index);
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
2012-08-21 17:32:07 -04:00
|
|
|
else if( ContentValue::DATA_TYPE == type)
|
2012-03-18 10:06:36 -04:00
|
|
|
{
|
|
|
|
char* value;
|
|
|
|
uint32_t len;
|
|
|
|
cv.getAsData(key, len, value);
|
2013-04-20 09:39:02 -04:00
|
|
|
rb = new RsBlobBind(value, len, ++index);
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
2013-04-20 09:39:02 -04:00
|
|
|
else if ( ContentValue::STRING_TYPE == type)
|
2012-03-18 10:06:36 -04:00
|
|
|
{
|
|
|
|
std::string value;
|
|
|
|
cv.getAsString(key, value);
|
2013-04-20 09:39:02 -04:00
|
|
|
rb = new RsStringBind(value, ++index);
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
2013-04-20 09:39:02 -04:00
|
|
|
else if ( ContentValue::INT32_TYPE == type)
|
2012-03-18 10:06:36 -04:00
|
|
|
{
|
2013-04-20 09:39:02 -04:00
|
|
|
int32_t value = 0;
|
2012-03-18 10:06:36 -04:00
|
|
|
cv.getAsInt32(key, value);
|
2013-04-20 09:39:02 -04:00
|
|
|
rb = new RsInt32Bind(value, ++index);
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
2012-08-21 17:32:07 -04:00
|
|
|
else if( ContentValue::INT64_TYPE == type)
|
2012-03-18 10:06:36 -04:00
|
|
|
{
|
2013-04-20 09:39:02 -04:00
|
|
|
int64_t value = 0;
|
2012-03-18 10:06:36 -04:00
|
|
|
cv.getAsInt64(key, value);
|
2013-04-20 09:39:02 -04:00
|
|
|
rb = new RsInt64bind(value, ++index);
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
2012-08-21 17:32:07 -04:00
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
if(rb)
|
|
|
|
{
|
|
|
|
paramBindings.push_back(rb);
|
2012-03-18 10:06:36 -04:00
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
++mit;
|
2013-04-20 09:39:02 -04:00
|
|
|
|
|
|
|
if(mit == keyTypeMap.end())
|
|
|
|
parameter += key + "=?";
|
|
|
|
else
|
|
|
|
parameter += key + "=?,";
|
|
|
|
|
2014-10-24 18:07:26 -04:00
|
|
|
--mit;
|
2013-04-20 09:39:02 -04:00
|
|
|
}
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
2013-04-20 09:39:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroDb::sqlDelete(const std::string &tableName, const std::string &whereClause, const std::string &/*whereArgs*/){
|
|
|
|
|
|
|
|
std::string sqlQuery = "DELETE FROM " + tableName;
|
|
|
|
|
|
|
|
if(!whereClause.empty()){
|
|
|
|
sqlQuery += " WHERE " + whereClause + ";";
|
|
|
|
}else
|
|
|
|
sqlQuery += ";";
|
|
|
|
|
|
|
|
return execSQL(sqlQuery);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool RetroDb::sqlUpdate(const std::string &tableName, std::string whereClause, const ContentValue& cv){
|
|
|
|
|
|
|
|
std::string sqlQuery = "UPDATE " + tableName + " SET ";
|
|
|
|
|
|
|
|
|
|
|
|
std::map<std::string, uint8_t> keyTypeMap;
|
|
|
|
std::map<std::string, uint8_t>::iterator mit;
|
|
|
|
cv.getKeyTypeMap(keyTypeMap);
|
|
|
|
|
|
|
|
// build SET part of update
|
|
|
|
std::string qValues;
|
|
|
|
std::list<RetroBind*> paramBindings;
|
|
|
|
buildUpdateQueryValue(keyTypeMap, cv, qValues, paramBindings);
|
|
|
|
|
2012-03-18 10:06:36 -04:00
|
|
|
if(qValues.empty())
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
sqlQuery += qValues;
|
|
|
|
|
|
|
|
// complete update
|
|
|
|
if(!whereClause.empty()){
|
|
|
|
sqlQuery += " WHERE " + whereClause + ";";
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
sqlQuery += ";";
|
|
|
|
}
|
|
|
|
|
|
|
|
// execute query
|
2013-04-20 09:39:02 -04:00
|
|
|
return execSQL_bind(sqlQuery, paramBindings);
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/********************** RetroCursor ************************/
|
|
|
|
|
|
|
|
RetroCursor::RetroCursor(sqlite3_stmt *stmt)
|
|
|
|
: mStmt(NULL), mCount(0), mPosCounter(0) {
|
|
|
|
|
|
|
|
open(stmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
RetroCursor::~RetroCursor(){
|
|
|
|
|
|
|
|
// finalise statement
|
|
|
|
if(mStmt){
|
|
|
|
sqlite3_finalize(mStmt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroCursor::moveToFirst(){
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "RetroCursor::moveToFirst()\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(!isOpen())
|
2012-06-03 14:09:38 -04:00
|
|
|
return false;
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
// reset statement
|
|
|
|
int rc = sqlite3_reset(mStmt);
|
|
|
|
|
|
|
|
if(rc != SQLITE_OK){
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "Error code: " << rc << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = sqlite3_step(mStmt);
|
|
|
|
|
|
|
|
if(rc == SQLITE_ROW){
|
|
|
|
mPosCounter = 0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "Error code: " << rc << std::endl;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroCursor::moveToLast(){
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "RetroCursor::moveToLast()\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(!isOpen())
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
// go to begining
|
|
|
|
int rc = sqlite3_reset(mStmt);
|
|
|
|
|
|
|
|
if(rc != SQLITE_OK)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
rc = sqlite3_step(mStmt);
|
|
|
|
|
|
|
|
while(rc == SQLITE_ROW){
|
|
|
|
rc = sqlite3_step(mStmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rc != SQLITE_DONE){
|
|
|
|
std::cerr << "Error executing statement (code: " << rc << ")\n"
|
|
|
|
<< std::endl;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}else{
|
|
|
|
mPosCounter = mCount;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int RetroCursor::getResultCount() const {
|
|
|
|
|
|
|
|
if(isOpen())
|
|
|
|
return mCount;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2014-09-20 15:58:07 -04:00
|
|
|
int RetroCursor::columnCount() const {
|
|
|
|
|
|
|
|
if(isOpen())
|
|
|
|
return sqlite3_data_count(mStmt);
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
2012-03-18 10:06:36 -04:00
|
|
|
|
|
|
|
bool RetroCursor::isOpen() const {
|
|
|
|
return !(mStmt == NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroCursor::close(){
|
|
|
|
|
|
|
|
if(!isOpen())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
int rc = sqlite3_finalize(mStmt);
|
|
|
|
mStmt = NULL;
|
|
|
|
mPosCounter = 0;
|
|
|
|
mCount = 0;
|
|
|
|
|
|
|
|
return (rc == SQLITE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroCursor::open(sqlite3_stmt *stm){
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "RetroCursor::open() \n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(isOpen())
|
|
|
|
close();
|
|
|
|
|
|
|
|
mStmt = stm;
|
|
|
|
|
|
|
|
// ensure statement is valid
|
|
|
|
int rc = sqlite3_reset(mStmt);
|
|
|
|
|
|
|
|
if(rc == SQLITE_OK){
|
|
|
|
|
|
|
|
while((rc = sqlite3_step(mStmt)) == SQLITE_ROW)
|
|
|
|
mCount++;
|
|
|
|
|
|
|
|
sqlite3_reset(mStmt);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
std::cerr << "Error Opening cursor (code: " << rc << ")\n";
|
|
|
|
close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroCursor::moveToNext(){
|
|
|
|
|
|
|
|
#ifdef RETRODB_DEBUG
|
|
|
|
std::cerr << "RetroCursor::moveToNext()\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(!isOpen())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
int rc = sqlite3_step(mStmt);
|
|
|
|
|
|
|
|
if(rc == SQLITE_ROW){
|
|
|
|
mPosCounter++;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}else if(rc == SQLITE_DONE){ // no more results
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if(rc == SQLITE_BUSY){ // should not enter here
|
|
|
|
std::cerr << "RetroDb::moveToNext()\n" ;
|
|
|
|
std::cerr << "Busy!, possible multiple accesses to Db" << std::endl
|
|
|
|
<< "serious error";
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}else{
|
|
|
|
std::cerr << "Error executing statement (code: " << rc << ")\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t RetroCursor::getPosition() const {
|
|
|
|
|
|
|
|
if(isOpen())
|
|
|
|
return mPosCounter;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int32_t RetroCursor::getInt32(int columnIndex){
|
|
|
|
return sqlite3_column_int(mStmt, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t RetroCursor::getInt64(int columnIndex){
|
|
|
|
return sqlite3_column_int64(mStmt, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RetroCursor::getBool(int columnIndex){
|
|
|
|
return sqlite3_column_int(mStmt, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
double RetroCursor::getDouble(int columnIndex){
|
|
|
|
return sqlite3_column_double(mStmt, columnIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RetroCursor::getString(int columnIndex, std::string &str){
|
2014-04-20 05:12:26 -04:00
|
|
|
str.clear();
|
2012-03-18 10:06:36 -04:00
|
|
|
char* raw_str = (char*)sqlite3_column_text(mStmt, columnIndex);
|
|
|
|
if(raw_str != NULL)
|
2013-04-18 13:26:37 -04:00
|
|
|
{
|
2012-03-18 10:06:36 -04:00
|
|
|
str.assign(raw_str);
|
2013-04-18 13:26:37 -04:00
|
|
|
#ifdef RADIX_STRING
|
|
|
|
char* buffer = NULL;
|
|
|
|
size_t buffLen;
|
|
|
|
Radix64::decode(str, buffer, buffLen);
|
|
|
|
str.clear();
|
|
|
|
if(buffLen != 0)
|
|
|
|
{
|
|
|
|
str.assign(buffer, buffLen);
|
|
|
|
delete[] buffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
str.clear();
|
|
|
|
#endif
|
|
|
|
}
|
2014-04-21 06:13:35 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
str.clear();
|
|
|
|
}
|
2012-03-18 10:06:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const void* RetroCursor::getData(int columnIndex, uint32_t &datSize){
|
|
|
|
|
|
|
|
const void* val = sqlite3_column_blob(mStmt, columnIndex);
|
|
|
|
datSize = sqlite3_column_bytes(mStmt, columnIndex);
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|