Remove SQL logger implementation
Out of scope for this PR which primary aim is to refactor the current logger to be area independant
This commit is contained in:
parent
56590668cf
commit
61a2aa4f09
@ -48,8 +48,7 @@ SOURCES += \
|
||||
src/http_advertiser.cpp \
|
||||
src/logger/u_logger.cpp \
|
||||
src/logger/writer_modcall.cpp \
|
||||
src/logger/writer_full.cpp \
|
||||
src/logger/writer_sql.cpp
|
||||
src/logger/writer_full.cpp
|
||||
|
||||
HEADERS += include/advertiser.h \
|
||||
include/aoclient.h \
|
||||
@ -65,5 +64,4 @@ HEADERS += include/advertiser.h \
|
||||
include/http_advertiser.h \
|
||||
include/logger/u_logger.h \
|
||||
include/logger/writer_modcall.h \
|
||||
include/logger/writer_full.h \
|
||||
include/logger/writer_sql.h
|
||||
include/logger/writer_full.h
|
||||
|
@ -42,7 +42,6 @@ public:
|
||||
enum class LogType {
|
||||
MODCALL,
|
||||
FULL,
|
||||
SQL
|
||||
};
|
||||
Q_ENUM(LogType)
|
||||
};
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "include/config_manager.h"
|
||||
#include "include/logger/writer_full.h"
|
||||
#include "include/logger/writer_modcall.h"
|
||||
#include "include/logger/writer_sql.h"
|
||||
|
||||
/**
|
||||
* @brief The Universal Logger class to provide a common place to handle, store and write logs to file.
|
||||
@ -122,11 +121,6 @@ private:
|
||||
* @brief Pointer to full writer. Handles single messages in one file.
|
||||
*/
|
||||
WriterFull* writerFull;
|
||||
|
||||
/**
|
||||
* @brief Pointer to SQL writer. Handles execution of log SQL queries.
|
||||
*/
|
||||
WriterSQL* writerSQL;
|
||||
};
|
||||
|
||||
#endif //U_LOGGER_H
|
||||
|
@ -1,73 +0,0 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef WRITER_SQL_H
|
||||
#define WRITER_SQL_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDir>
|
||||
#include <QSqlDatabase>
|
||||
#include <QSqlDriver>
|
||||
#include <QSqlError>
|
||||
#include <QSqlQuery>
|
||||
#include <QFileInfo>
|
||||
#include <QDebug>
|
||||
|
||||
/**
|
||||
* @brief A class to handle database interaction when executing SQL statements in SQL mode.
|
||||
*/
|
||||
class WriterSQL : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
/**
|
||||
* @brief Constructor for SQL logwriter
|
||||
*
|
||||
* @param QObject pointer to the parent object.
|
||||
*/
|
||||
WriterSQL(QObject* parent = nullptr);
|
||||
|
||||
/**
|
||||
* @brief Deconstructor for SQL logwriter. Closes the underlying database
|
||||
*/
|
||||
virtual ~WriterSQL();;
|
||||
|
||||
/**
|
||||
* @brief Function to execute SQL queries on the log database.
|
||||
* @param SQL query execute d on the log database.
|
||||
*/
|
||||
void execLogScript(QSqlQuery query);
|
||||
|
||||
private:
|
||||
|
||||
/**
|
||||
* @brief The name of the database connection driver.
|
||||
*/
|
||||
const QString DRIVER;
|
||||
|
||||
/**
|
||||
* @brief The backing database that stores user details.
|
||||
*/
|
||||
QSqlDatabase log_db;
|
||||
|
||||
/**
|
||||
* @brief Directory where logfiles will be stored.
|
||||
*/
|
||||
QDir l_dir;
|
||||
};
|
||||
|
||||
#endif //WRITER_SQL_H
|
@ -27,9 +27,6 @@ ULogger::ULogger(QObject* parent) :
|
||||
case DataTypes::LogType::FULL :
|
||||
writerFull = new WriterFull;
|
||||
break;
|
||||
case DataTypes::LogType::SQL :
|
||||
writerSQL = new WriterSQL;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -42,9 +39,6 @@ ULogger::~ULogger()
|
||||
case DataTypes::LogType::FULL :
|
||||
writerFull->deleteLater();
|
||||
break;
|
||||
case DataTypes::LogType::SQL :
|
||||
writerSQL->deleteLater();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,64 +0,0 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#include "include/logger/writer_sql.h"
|
||||
|
||||
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);
|
||||
if(!db_info.isReadable() || !db_info.isWritable())
|
||||
qCritical() << tr("Database Error: Missing permissions. Check if \"%1\" is writable.").arg(db_filename);
|
||||
|
||||
log_db = QSqlDatabase::addDatabase(DRIVER);
|
||||
log_db.setDatabaseName("logs/database/log.db");
|
||||
|
||||
if (!log_db.open())
|
||||
qCritical() << "Database Error:" << log_db.lastError();
|
||||
|
||||
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 connection_events ('event time' DATETIME DEFAULT CURRENT_TIMESTAMP, 'ipid' TEXT, 'ip_address' TEXT, 'hdid' TEXT);");
|
||||
create_connection_events_table.exec();
|
||||
}
|
||||
|
||||
WriterSQL::~WriterSQL()
|
||||
{
|
||||
log_db.close();
|
||||
}
|
||||
|
||||
void WriterSQL::execLogScript(QSqlQuery query)
|
||||
{
|
||||
query.exec();
|
||||
QSqlError error = query.lastError();
|
||||
if (error.isValid()) {
|
||||
qDebug() << "Database Error:" + error.text();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user