fort/src/ui/db/databasemanager.cpp

323 lines
8.7 KiB
C++
Raw Normal View History

2017-12-01 14:13:06 +00:00
#include "databasemanager.h"
2017-12-06 13:40:58 +00:00
#include "../util/dateutil.h"
2017-12-01 14:13:06 +00:00
#include "../util/fileutil.h"
2017-12-04 13:55:03 +00:00
#include "databasesql.h"
2017-12-01 14:13:06 +00:00
#include "sqlite/sqlitedb.h"
2017-12-06 13:41:26 +00:00
#include "sqlite/sqliteengine.h"
2017-12-01 14:13:06 +00:00
#include "sqlite/sqlitestmt.h"
DatabaseManager::DatabaseManager(const QString &filePath,
QObject *parent) :
QObject(parent),
2017-12-06 09:45:31 +00:00
m_lastTrafHour(0),
m_lastTrafDay(0),
m_lastTrafMonth(0),
2017-12-01 14:13:06 +00:00
m_filePath(filePath),
m_sqliteDb(new SqliteDb())
{
SqliteEngine::initialize();
}
DatabaseManager::~DatabaseManager()
{
2017-12-06 13:41:26 +00:00
qDeleteAll(m_sqliteStmts);
2017-12-01 14:13:06 +00:00
delete m_sqliteDb;
SqliteEngine::shutdown();
}
bool DatabaseManager::initialize()
{
const bool fileExists = FileUtil::fileExists(m_filePath);
if (!m_sqliteDb->open(m_filePath))
return false;
2017-12-04 13:55:03 +00:00
m_sqliteDb->execute(DatabaseSql::sqlPragmas);
2017-12-01 14:13:06 +00:00
return fileExists || createTables();
}
2017-12-08 02:38:02 +00:00
void DatabaseManager::logProcNew(const QString &appPath, bool &isNew)
2017-12-01 14:13:06 +00:00
{
2017-12-06 13:40:58 +00:00
qint64 appId = getAppId(appPath);
if (appId == 0) {
appId = createAppId(appPath);
isNew = true;
}
2017-12-01 14:13:06 +00:00
2017-12-08 02:38:02 +00:00
m_appPaths.prepend(appPath);
m_appIds.prepend(appId);
2017-12-01 14:13:06 +00:00
}
2017-12-08 02:38:02 +00:00
void DatabaseManager::logStatTraf(quint16 procCount, const quint8 *procBits,
const quint32 *trafBytes)
2017-12-01 14:13:06 +00:00
{
QVector<quint16> delProcIndexes;
2017-12-06 13:40:58 +00:00
const qint64 unixTime = DateUtil::getUnixTime();
2017-12-04 13:55:03 +00:00
2017-12-06 13:40:58 +00:00
const qint32 trafHour = DateUtil::getUnixHour(unixTime);
2017-12-06 09:45:31 +00:00
const bool isNewHour = (trafHour != m_lastTrafHour);
2017-12-04 13:55:03 +00:00
2017-12-06 13:40:58 +00:00
const qint32 trafDay = isNewHour ? DateUtil::getUnixDay(unixTime)
2017-12-06 09:45:31 +00:00
: m_lastTrafDay;
const bool isNewDay = (trafDay != m_lastTrafDay);
2017-12-04 13:55:03 +00:00
2017-12-06 13:40:58 +00:00
const qint32 trafMonth = isNewDay ? DateUtil::getUnixMonth(unixTime)
2017-12-06 09:45:31 +00:00
: m_lastTrafMonth;
const bool isNewMonth = (trafMonth != m_lastTrafMonth);
2017-12-04 13:55:03 +00:00
SqliteStmt *stmtInsertAppHour = nullptr;
SqliteStmt *stmtInsertAppDay = nullptr;
SqliteStmt *stmtInsertAppMonth = nullptr;
SqliteStmt *stmtInsertHour = nullptr;
SqliteStmt *stmtInsertDay = nullptr;
SqliteStmt *stmtInsertMonth = nullptr;
if (isNewHour) {
2017-12-06 09:45:31 +00:00
m_lastTrafHour = trafHour;
2017-12-04 13:55:03 +00:00
stmtInsertAppHour = getSqliteStmt(DatabaseSql::sqlInsertTrafficAppHour);
stmtInsertHour = getSqliteStmt(DatabaseSql::sqlInsertTrafficHour);
2017-12-06 09:45:31 +00:00
stmtInsertAppHour->bindInt(1, trafHour);
stmtInsertHour->bindInt(1, trafHour);
2017-12-04 13:55:03 +00:00
if (isNewDay) {
2017-12-06 09:45:31 +00:00
m_lastTrafDay = trafDay;
2017-12-04 13:55:03 +00:00
stmtInsertAppDay = getSqliteStmt(DatabaseSql::sqlInsertTrafficAppDay);
stmtInsertDay = getSqliteStmt(DatabaseSql::sqlInsertTrafficDay);
2017-12-01 14:13:06 +00:00
2017-12-06 09:45:31 +00:00
stmtInsertAppDay->bindInt(1, trafDay);
stmtInsertDay->bindInt(1, trafDay);
2017-12-01 14:13:06 +00:00
2017-12-04 13:55:03 +00:00
if (isNewMonth) {
2017-12-06 09:45:31 +00:00
m_lastTrafMonth = trafMonth;
2017-12-04 13:55:03 +00:00
stmtInsertAppMonth = getSqliteStmt(DatabaseSql::sqlInsertTrafficAppMonth);
stmtInsertMonth = getSqliteStmt(DatabaseSql::sqlInsertTrafficMonth);
2017-12-06 09:45:31 +00:00
stmtInsertAppMonth->bindInt(1, trafMonth);
stmtInsertMonth->bindInt(1, trafMonth);
2017-12-04 13:55:03 +00:00
}
}
}
SqliteStmt *stmtUpdateAppHour = getSqliteStmt(DatabaseSql::sqlUpdateTrafficAppHour);
SqliteStmt *stmtUpdateAppDay = getSqliteStmt(DatabaseSql::sqlUpdateTrafficAppDay);
SqliteStmt *stmtUpdateAppMonth = getSqliteStmt(DatabaseSql::sqlUpdateTrafficAppMonth);
SqliteStmt *stmtUpdateHour = getSqliteStmt(DatabaseSql::sqlUpdateTrafficHour);
SqliteStmt *stmtUpdateDay = getSqliteStmt(DatabaseSql::sqlUpdateTrafficDay);
SqliteStmt *stmtUpdateMonth = getSqliteStmt(DatabaseSql::sqlUpdateTrafficMonth);
2017-12-05 03:24:48 +00:00
SqliteStmt *stmtUpdateAppTotal = getSqliteStmt(DatabaseSql::sqlUpdateTrafficAppTotal);
2017-12-06 09:45:31 +00:00
stmtUpdateAppHour->bindInt(1, trafHour);
stmtUpdateAppDay->bindInt(1, trafDay);
stmtUpdateAppMonth->bindInt(1, trafMonth);
2017-12-04 13:55:03 +00:00
2017-12-06 09:45:31 +00:00
stmtUpdateHour->bindInt(1, trafHour);
stmtUpdateDay->bindInt(1, trafDay);
stmtUpdateMonth->bindInt(1, trafMonth);
2017-12-01 14:13:06 +00:00
m_sqliteDb->beginTransaction();
for (quint16 procIndex = 0; procIndex < procCount; ++procIndex) {
const bool active = procBits[procIndex / 8] & (1 << (procIndex & 7));
if (!active) {
delProcIndexes.append(procIndex);
}
const quint32 *procTrafBytes = &trafBytes[procIndex * 2];
const quint32 inBytes = procTrafBytes[0];
const quint32 outBytes = procTrafBytes[1];
2017-12-04 13:55:03 +00:00
if (!(isNewHour || inBytes || outBytes))
continue;
const qint64 appId = m_appIds.at(procIndex);
// Insert zero bytes
if (isNewHour) {
insertTraffic(stmtInsertAppHour, appId);
insertTraffic(stmtInsertHour);
2017-12-01 14:13:06 +00:00
2017-12-04 13:55:03 +00:00
if (isNewDay) {
insertTraffic(stmtInsertAppDay, appId);
insertTraffic(stmtInsertDay);
2017-12-01 14:13:06 +00:00
2017-12-04 13:55:03 +00:00
if (isNewMonth) {
insertTraffic(stmtInsertAppMonth, appId);
insertTraffic(stmtInsertMonth);
}
}
2017-12-01 14:13:06 +00:00
}
2017-12-04 13:55:03 +00:00
// Update bytes
updateTraffic(stmtUpdateAppHour, inBytes, outBytes, appId);
updateTraffic(stmtUpdateAppDay, inBytes, outBytes, appId);
updateTraffic(stmtUpdateAppMonth, inBytes, outBytes, appId);
updateTraffic(stmtUpdateHour, inBytes, outBytes);
updateTraffic(stmtUpdateDay, inBytes, outBytes);
updateTraffic(stmtUpdateMonth, inBytes, outBytes);
2017-12-05 03:24:48 +00:00
// Update total bytes
stmtUpdateAppTotal->bindInt64(1, appId);
updateTraffic(stmtUpdateAppTotal, inBytes, outBytes);
2017-12-01 14:13:06 +00:00
}
m_sqliteDb->commitTransaction();
// Delete inactive processes
{
int i = delProcIndexes.size();
while (--i >= 0) {
const quint16 procIndex = delProcIndexes.at(i);
2017-12-08 02:38:02 +00:00
m_appPaths.removeAt(procIndex);
2017-12-01 14:13:06 +00:00
m_appIds.removeAt(procIndex);
}
}
}
2017-12-08 02:38:02 +00:00
void DatabaseManager::logClear()
{
m_appPaths.clear();
m_appIds.clear();
}
2017-12-01 14:13:06 +00:00
bool DatabaseManager::createTables()
{
m_sqliteDb->beginTransaction();
const bool res = m_sqliteDb->execute(DatabaseSql::sqlCreateTables);
m_sqliteDb->commitTransaction();
return res;
2017-12-01 14:13:06 +00:00
}
2017-12-06 13:40:58 +00:00
qint64 DatabaseManager::getAppId(const QString &appPath)
2017-12-01 14:13:06 +00:00
{
qint64 appId = 0;
2017-12-06 13:40:58 +00:00
SqliteStmt *stmt = getSqliteStmt(DatabaseSql::sqlSelectAppId);
2017-12-01 14:13:06 +00:00
2017-12-06 13:40:58 +00:00
stmt->bindText(1, appPath);
if (stmt->step() == SqliteStmt::StepRow) {
appId = stmt->columnInt64();
2017-12-01 14:13:06 +00:00
}
2017-12-06 13:40:58 +00:00
stmt->reset();
2017-12-01 14:13:06 +00:00
2017-12-06 13:40:58 +00:00
return appId;
}
2017-12-01 14:13:06 +00:00
2017-12-06 13:40:58 +00:00
qint64 DatabaseManager::createAppId(const QString &appPath)
{
qint64 appId = 0;
2017-12-05 03:24:48 +00:00
2017-12-06 13:40:58 +00:00
SqliteStmt *stmt = getSqliteStmt(DatabaseSql::sqlInsertAppId);
const qint64 unixTime = DateUtil::getUnixTime();
stmt->bindText(1, appPath);
stmt->bindInt64(2, unixTime);
stmt->bindInt64(3, DateUtil::getUnixHour(unixTime));
if (stmt->step() == SqliteStmt::StepDone) {
appId = m_sqliteDb->lastInsertRowid();
2017-12-01 14:13:06 +00:00
}
2017-12-06 13:40:58 +00:00
stmt->reset();
2017-12-01 14:13:06 +00:00
return appId;
}
2017-12-08 02:38:02 +00:00
void DatabaseManager::getAppList(QStringList &list, QVector<qint64> &appIds)
2017-12-05 05:06:15 +00:00
{
SqliteStmt *stmt = getSqliteStmt(DatabaseSql::sqlSelectAppPaths);
2017-12-05 12:50:10 +00:00
2017-12-05 05:06:15 +00:00
while (stmt->step() == SqliteStmt::StepRow) {
2017-12-08 02:38:02 +00:00
appIds.append(stmt->columnInt64(0));
list.append(stmt->columnText(1));
2017-12-05 05:06:15 +00:00
}
stmt->reset();
}
2017-12-04 13:55:03 +00:00
void DatabaseManager::insertTraffic(SqliteStmt *stmt, qint64 appId)
{
if (appId != 0) {
stmt->bindInt64(2, appId);
}
stmt->step();
stmt->reset();
}
void DatabaseManager::updateTraffic(SqliteStmt *stmt, quint32 inBytes,
2017-12-06 09:45:31 +00:00
quint32 outBytes, qint64 appId)
2017-12-04 13:55:03 +00:00
{
stmt->bindInt64(2, inBytes);
stmt->bindInt64(3, outBytes);
if (appId != 0) {
stmt->bindInt64(4, appId);
}
stmt->step();
stmt->reset();
}
2017-12-06 13:40:58 +00:00
qint32 DatabaseManager::getMinTrafTime(const char *sql, qint64 appId)
2017-12-04 13:55:03 +00:00
{
2017-12-06 13:40:58 +00:00
qint32 trafTime = 0;
SqliteStmt *stmt = getSqliteStmt(sql);
if (appId != 0) {
stmt->bindInt64(1, appId);
}
if (stmt->step() == SqliteStmt::StepRow) {
trafTime = stmt->columnInt();
}
stmt->reset();
2017-12-04 13:55:03 +00:00
2017-12-06 13:40:58 +00:00
return trafTime;
2017-12-04 13:55:03 +00:00
}
void DatabaseManager::getTraffic(const char *sql, qint64 &inBytes,
qint64 &outBytes, qint64 appId)
{
SqliteStmt *stmt = getSqliteStmt(sql);
if (appId != 0) {
stmt->bindInt64(1, appId);
}
if (stmt->step() == SqliteStmt::StepRow) {
inBytes = stmt->columnInt64(0);
outBytes = stmt->columnInt64(1);
}
stmt->reset();
}
2017-12-06 13:40:58 +00:00
SqliteStmt *DatabaseManager::getSqliteStmt(const char *sql)
2017-12-04 13:55:03 +00:00
{
2017-12-06 13:40:58 +00:00
SqliteStmt *stmt = m_sqliteStmts.value(sql);
2017-12-04 13:55:03 +00:00
2017-12-06 13:40:58 +00:00
if (stmt == nullptr) {
stmt = new SqliteStmt();
stmt->prepare(m_sqliteDb->db(), sql, SqliteStmt::PreparePersistent);
m_sqliteStmts.insert(sql, stmt);
}
return stmt;
2017-12-04 13:55:03 +00:00
}