You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
4.1 KiB
131 lines
4.1 KiB
/* |
|
* Copyright 2007 Glenn Ergeerts <glenn.ergeerts@telenet.be> |
|
* Copyright 2012 Glenn Ergeerts <marco.gulino@gmail.com> |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU Library General Public License as |
|
* published by the Free Software Foundation; either version 2, 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 General Public License for more details |
|
* |
|
* You should have received a copy of the GNU Library General Public |
|
* License along with this program; if not, write to the |
|
* Free Software Foundation, Inc., |
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
*/ |
|
|
|
#include "fetchsqlite.h" |
|
#include <QFile> |
|
#include <QDebug> |
|
#include "bookmarks_debug.h" |
|
#include "bookmarksrunner_defs.h" |
|
#include <QSqlQuery> |
|
#include <QSqlError> |
|
#include <QSqlRecord> |
|
#include <QMutexLocker> |
|
#include <thread> |
|
#include <sstream> |
|
|
|
FetchSqlite::FetchSqlite(const QString &originalFilePath, const QString ©To, QObject *parent) : |
|
QObject(parent), m_databaseFile(copyTo) |
|
{ |
|
QFile originalFile(originalFilePath); |
|
QFile(copyTo).remove(); |
|
bool couldCopy = originalFile.copy(copyTo); |
|
if(!couldCopy) { |
|
//qDebug() << "error copying favicon database from " << originalFile.fileName() << " to " << copyTo; |
|
//qDebug() << originalFile.errorString(); |
|
} |
|
} |
|
|
|
FetchSqlite::~FetchSqlite() |
|
{ |
|
QFile(m_databaseFile).remove(); |
|
} |
|
|
|
void FetchSqlite::prepare() |
|
{ |
|
} |
|
|
|
void FetchSqlite::teardown() |
|
{ |
|
QString connectionPrefix = m_databaseFile + "-"; |
|
|
|
const auto connections = QSqlDatabase::connectionNames(); |
|
for (auto c : connections) { |
|
if (c.startsWith(connectionPrefix)) { |
|
qCDebug(RUNNER_BOOKMARKS) << "Closing connection" << c; |
|
QSqlDatabase::removeDatabase(c); |
|
} |
|
} |
|
} |
|
|
|
static QSqlDatabase openDbConnection(const QString& databaseFile) { |
|
// create a thread unique connection name based on the DB filename and thread id |
|
auto connection = databaseFile + "-"; |
|
std::stringstream s; |
|
s << std::this_thread::get_id(); |
|
connection += QString::fromStdString(s.str()); |
|
|
|
// Try to reuse the previous connection |
|
auto db = QSqlDatabase::database(connection); |
|
if (db.isValid()) { |
|
qCDebug(RUNNER_BOOKMARKS) << "Reusing connection" << connection; |
|
return db; |
|
} |
|
|
|
// Otherwise, create, configure and open a new one |
|
db = QSqlDatabase::addDatabase(QStringLiteral("QSQLITE"), connection); |
|
db.setHostName(QStringLiteral("localhost")); |
|
db.setDatabaseName(databaseFile); |
|
db.open(); |
|
qCDebug(RUNNER_BOOKMARKS) << "Opened connection" << connection; |
|
|
|
return db; |
|
} |
|
|
|
QList<QVariantMap> FetchSqlite::query(const QString &sql, QMap<QString, QVariant> bindObjects) |
|
{ |
|
QMutexLocker lock(&m_mutex); |
|
|
|
auto db = openDbConnection(m_databaseFile); |
|
|
|
//qDebug() << "query: " << sql; |
|
QSqlQuery query(db); |
|
query.prepare(sql); |
|
foreach(const QString &variableName, bindObjects.keys()) { |
|
query.bindValue(variableName, bindObjects.value(variableName)); |
|
//qDebug() << "* Bound " << variableName << " to " << query.boundValue(variableName); |
|
} |
|
|
|
if(!query.exec()) { |
|
QSqlError error = db.lastError(); |
|
//qDebug() << "query failed: " << error.text() << " (" << error.type() << ", " << error.number() << ")"; |
|
//qDebug() << query.lastQuery(); |
|
} |
|
|
|
QList<QVariantMap> result; |
|
while(query.next()) { |
|
QVariantMap recordValues; |
|
QSqlRecord record = query.record(); |
|
for(int field=0; field<record.count(); field++) { |
|
QVariant value = record.value(field); |
|
recordValues.insert(record.fieldName(field), value ); |
|
} |
|
result << recordValues; |
|
} |
|
|
|
return result; |
|
} |
|
|
|
QStringList FetchSqlite::tables(QSql::TableType type) |
|
{ |
|
QMutexLocker lock(&m_mutex); |
|
|
|
auto db = openDbConnection(m_databaseFile); |
|
return db.tables(type); |
|
}
|
|
|