Add executing code and cleanup header

+ Correct path mistake in Modcall writer
This commit is contained in:
Salanto 2021-08-23 21:54:04 +02:00
parent a836d2f500
commit 5b3e420214
3 changed files with 21 additions and 7 deletions

View File

@ -64,11 +64,6 @@ private:
*/
QSqlDatabase log_db;
/**
* @brief Filename of the logfile used.
*/
QFile l_logfile;
/**
* @brief Directory where logfiles will be stored.
*/

View File

@ -33,7 +33,7 @@ WriterModcall::WriterModcall(QObject* parent) :
void WriterModcall::flush(const QString f_areaName, QQueue<QString> f_buffer)
{
l_logfile.setFileName(QString("logs/report_%1_%2.log").arg(f_areaName, (QDateTime::currentDateTime().toString("yyyy-MM-dd_hhmmss"))));
l_logfile.setFileName(QString("logs/modcall/report_%1_%2.log").arg(f_areaName, (QDateTime::currentDateTime().toString("yyyy-MM-dd_hhmmss"))));
if (l_logfile.open(QIODevice::WriteOnly | QIODevice::Append)) {
QTextStream file_stream(&l_logfile);

View File

@ -20,6 +20,16 @@
WriterSQL::WriterSQL(QObject* parent) :
QObject(parent), DRIVER("QSQLITE")
{
l_dir.setPath("logs/");
if (!l_dir.exists()) {
l_dir.mkpath(".");
}
l_dir.setPath("logs/database");
if (!l_dir.exists()) {
l_dir.mkpath(".");
}
const QString db_filename = "logs/database/log.db";
QFileInfo db_info(db_filename);
@ -35,7 +45,7 @@ WriterSQL::WriterSQL(QObject* parent) :
QSqlQuery create_chat_events_table("CREATE TABLE IF NOT EXISTS chat_events ('event_time' DATETIME DEFAULT CURRENT_TIMESTAMP, 'ipid' TEXT, 'room_name' TEXT,'event_type' TEXT, 'char_name' TEXT, 'ic_name' TEXT, 'message' TEXT NOT NULL);");
create_chat_events_table.exec();
QSqlQuery create_connection_events_table("CREATE TABLE IF NOT EXISTS users ('event time' DATETIME DEFAULT CURRENT_TIMESTAMP, 'ipid' TEXT, 'ip_address' TEXT, 'hdid' TEXT);");
QSqlQuery create_connection_events_table("CREATE TABLE IF NOT EXISTS connection_events ('event time' DATETIME DEFAULT CURRENT_TIMESTAMP, 'ipid' TEXT, 'ip_address' TEXT, 'hdid' TEXT);");
create_connection_events_table.exec();
}
@ -43,3 +53,12 @@ WriterSQL::~WriterSQL()
{
log_db.close();
}
void WriterSQL::execLogScript(QSqlQuery query)
{
query.exec();
QSqlError error = query.lastError();
if (error.isValid()) {
qDebug() << "Database Error:" + error.text();
}
}