Add basic constructor

This commit is contained in:
Salanto 2021-08-24 23:43:35 +02:00
parent 055ef2e6a4
commit 4d20facc33
3 changed files with 28 additions and 1 deletions

View File

@ -41,7 +41,8 @@ public:
*/
enum class LogType {
MODCALL,
FULL
FULL,
SQL
};
Q_ENUM(LogType)
};

View File

@ -23,6 +23,9 @@
#include <QQueue>
#include <QDateTime>
#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.
@ -105,6 +108,21 @@ private:
* @details This QMap uses the area name as the index key to access its respective buffer.
*/
QMap<QString, QQueue<QString>> m_bufferMap;
/**
* @brief Pointer to modcall writer. Handles QQueue delogging into area specific file.
*/
WriterModcall* writerModcall;
/**
* @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

View File

@ -21,6 +21,14 @@ ULogger::ULogger(QObject* parent) :
QObject(parent)
{
switch (ConfigManager::loggingType()) {
case DataTypes::LogType::MODCALL :
writerModcall = new WriterModcall;
case DataTypes::LogType::FULL :
writerFull = new WriterFull;
case DataTypes::LogType::SQL :
writerSQL = new WriterSQL;
}
}
void ULogger::logIC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid,