Add more log datatypes, define slots for log processing and area buffer
This commit is contained in:
parent
5b3e420214
commit
685a66e8f4
@ -17,7 +17,12 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////
|
||||||
#ifndef U_LOGGER_H
|
#ifndef U_LOGGER_H
|
||||||
#define U_LOGGER_H
|
#define U_LOGGER_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
#include <QMap>
|
||||||
|
#include <QQueue>
|
||||||
|
#include "include/config_manager.h"
|
||||||
|
#include "include/logger/u_logger_datatypes.h"
|
||||||
|
|
||||||
class ULogger : public QObject
|
class ULogger : public QObject
|
||||||
{
|
{
|
||||||
@ -26,6 +31,26 @@ public:
|
|||||||
ULogger(QObject* parent = nullptr);
|
ULogger(QObject* parent = nullptr);
|
||||||
virtual ~ULogger();
|
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
|
#endif //U_LOGGER_H
|
||||||
|
@ -21,21 +21,27 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include "include/area_data.h"
|
#include "include/area_data.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Convenience class to transport IC and OOC messages to the logger.
|
||||||
|
*/
|
||||||
class MessageLog {
|
class MessageLog {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
explicit MessageLog();
|
explicit MessageLog();
|
||||||
struct m_content {
|
struct m_content {
|
||||||
QString charname;
|
QString charName;
|
||||||
QString oocname;
|
QString oocName;
|
||||||
int charID;
|
QString ipid;
|
||||||
QString IPID;
|
QString hdid;
|
||||||
QString HDID;
|
|
||||||
QString message;
|
QString message;
|
||||||
AreaData* area;
|
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 {
|
class ModerativeLog {
|
||||||
public:
|
public:
|
||||||
explicit ModerativeLog();
|
explicit ModerativeLog();
|
||||||
@ -45,8 +51,55 @@ public:
|
|||||||
QString hdid;
|
QString hdid;
|
||||||
QString targetName;
|
QString targetName;
|
||||||
QString targetOOCName;
|
QString targetOOCName;
|
||||||
|
QString targetIPID;
|
||||||
|
QString targetHDID;
|
||||||
AreaData* area;
|
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
|
#endif // U_LOGGER_DATATYPES_H
|
||||||
|
@ -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)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user