2014-03-15 01:03:06 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
|
|
|
* Copyright (C) 2014 David Rosca <nowrep@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
|
|
|
#include "sqldatabase.h"
|
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
#include <QThread>
|
|
|
|
#include <QMutexLocker>
|
|
|
|
#include <QtConcurrent/QtConcurrent>
|
2014-03-15 01:03:06 +01:00
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
Q_GLOBAL_STATIC(SqlDatabase, qz_sql_database)
|
2014-03-15 01:03:06 +01:00
|
|
|
|
|
|
|
// SqlDatabase
|
|
|
|
SqlDatabase::SqlDatabase(QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SqlDatabase::~SqlDatabase()
|
|
|
|
{
|
2014-03-15 19:15:46 +01:00
|
|
|
// Close all databases
|
2014-03-15 01:03:06 +01:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
QSqlDatabase SqlDatabase::databaseForThread(QThread* thread)
|
2014-03-15 01:03:06 +01:00
|
|
|
{
|
2014-03-15 19:15:46 +01:00
|
|
|
QMutexLocker lock(&m_mutex);
|
2014-03-15 01:03:06 +01:00
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
if (!m_databases.contains(thread)) {
|
|
|
|
const QString threadStr = QString::number((quintptr) thread);
|
|
|
|
m_databases[thread] = QSqlDatabase::cloneDatabase(QSqlDatabase::database(), QL1S("QupZilla/") + threadStr);
|
|
|
|
m_databases[thread].open();
|
2014-03-15 01:03:06 +01:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
Q_ASSERT(m_databases[thread].isOpen());
|
2014-03-15 01:03:06 +01:00
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
return m_databases[thread];
|
2014-03-15 01:03:06 +01:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
QSqlQuery SqlDatabase::exec(const QSqlQuery &query)
|
2014-03-15 01:03:06 +01:00
|
|
|
{
|
2014-03-15 19:15:46 +01:00
|
|
|
QSqlQuery out(databaseForThread(QThread::currentThread()));
|
2014-03-15 01:03:06 +01:00
|
|
|
out.prepare(query.lastQuery());
|
|
|
|
|
|
|
|
const QList<QVariant> boundValues = query.boundValues().values();
|
|
|
|
|
|
|
|
foreach (const QVariant &variant, boundValues) {
|
|
|
|
out.addBindValue(variant);
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
out.exec();
|
2014-03-15 01:03:06 +01:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
QFuture<QSqlQuery> SqlDatabase::execAsync(const QSqlQuery &query)
|
2014-03-15 01:03:06 +01:00
|
|
|
{
|
2014-03-15 19:15:46 +01:00
|
|
|
return QtConcurrent::run(this, &SqlDatabase::exec, query);
|
2014-03-15 01:03:06 +01:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:15:46 +01:00
|
|
|
SqlDatabase* SqlDatabase::instance()
|
2014-03-15 01:03:06 +01:00
|
|
|
{
|
2014-03-15 19:15:46 +01:00
|
|
|
return qz_sql_database();
|
2014-03-15 01:03:06 +01:00
|
|
|
}
|