Add more log datatypes, define slots for log processing and area buffer

This commit is contained in:
Salanto 2021-08-23 22:52:13 +02:00
parent 5b3e420214
commit 685a66e8f4
3 changed files with 119 additions and 6 deletions

View File

@ -17,7 +17,12 @@
//////////////////////////////////////////////////////////////////////////////////////
#ifndef U_LOGGER_H
#define U_LOGGER_H
#include <QObject>
#include <QMap>
#include <QQueue>
#include "include/config_manager.h"
#include "include/logger/u_logger_datatypes.h"
class ULogger : public QObject
{
@ -26,6 +31,26 @@ public:
ULogger(QObject* parent = nullptr);
virtual ~ULogger();
public slots:
void logIC(MessageLog f_log);
void logOOC(MessageLog f_log);
void logLogin(LoginLog f_log);
void logCMD(CommandLog f_log);
void logKick(ModerativeLog f_log);
void logBan(ModerativeLog f_log);
void logConnectionAttempt(ConnectionLog f_log);
private:
void updateAreaBuffer(const QString& f_area, const QString& f_entry);
/**
* @brief QMap of all available area buffers.
*
* @details This QMap uses the area name as the index key to access its respective buffer.
*/
QMap<QString, QQueue<QString>> m_bufferMap;
};
#endif //U_LOGGER_H

View File

@ -21,21 +21,27 @@
#include <QString>
#include "include/area_data.h"
/**
* @brief Convenience class to transport IC and OOC messages to the logger.
*/
class MessageLog {
public:
explicit MessageLog();
struct m_content {
QString charname;
QString oocname;
int charID;
QString IPID;
QString HDID;
QString charName;
QString oocName;
QString ipid;
QString hdid;
QString message;
AreaData* area;
};
};
/**
* @brief Convenience class to transport information of moderator actions to the logger
*
* @details The only two moderator commands who take advantage of this are ban and kick.
*/
class ModerativeLog {
public:
explicit ModerativeLog();
@ -45,8 +51,55 @@ public:
QString hdid;
QString targetName;
QString targetOOCName;
QString targetIPID;
QString targetHDID;
AreaData* area;
};
};
/**
* @brief Convenience class to transport command usage information to the logger.
*/
class CommandLog {
public:
explicit CommandLog();
struct m_content {
QString charName;
QString oocName;
QString ipid;
QString hdid;
QString command;
QString cmdArgs;
AreaData* area;
};
};
/**
* @brief Convenience class to transport login attempt information to the logger.
*/
class LoginLog {
explicit LoginLog();
struct m_content {
QString charName;
QString oocName;
QString ipid;
QString hdid;
bool success;
QString modname;
};
};
/**
* @brief Convenience class to transport connection event information to the logger.
*/
class ConnectionLog {
explicit ConnectionLog();
struct m_conntent {
QString ip_address;
QString hdid;
QString ipid;
bool success;
};
};
#endif // U_LOGGER_DATATYPES_H

View File

@ -22,3 +22,38 @@ ULogger::ULogger(QObject* parent) :
{
}
void ULogger::logIC(MessageLog f_log)
{
}
void ULogger::logOOC(MessageLog f_log)
{
}
void ULogger::logLogin(LoginLog f_log)
{
}
void ULogger::logCMD(CommandLog f_log)
{
}
void ULogger::logKick(ModerativeLog f_log)
{
}
void ULogger::logBan(ModerativeLog f_log)
{
}
void ULogger::logConnectionAttempt(ConnectionLog f_log)
{
}