Add slot definitions, fix small oversight in QQueue oopsie

This commit is contained in:
Salanto 2021-08-24 19:17:37 +02:00
parent f8fd854f3f
commit f2a4f2d3e3
2 changed files with 23 additions and 27 deletions

View File

@ -45,45 +45,40 @@ public slots:
/** /**
* @brief Adds an IC log entry to the area buffer and writes it to the respective log format. * @brief Adds an IC log entry to the area buffer and writes it to the respective log format.
* @param MessageLog containing client information and the actual message.
*/ */
void logIC(); void logIC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid, const QString& f_areaName);
/** /**
* @brief Adds an OOC log entry to the area buffer and writes it to the respective log format. * @brief Adds an OOC log entry to the area buffer and writes it to the respective log format.
* @param MessageLog containing client information and the actual message.
*/ */
void logOOC(); void logOOC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid, const QString& f_areaName);
/** /**
* @brief Adds an login attempt to the area buffer and writes it to the respective log format. * @brief Adds an login attempt to the area buffer and writes it to the respective log format.
* @param LoginLog containing info about the login attempt.
*/ */
void logLogin(); void logLogin(const QString& f_charName, const QString& f_oocName, const QString& f_moderatorName,
const QString& f_ipid, bool& f_sucees);
/** /**
* @brief Adds a command usage to the area buffer and writes it to the respective log format. * @brief Adds a command usage to the area buffer and writes it to the respective log format.
* @param ComandLog containing information about the command and parameter used.
*/ */
void logCMD(); void logCMD(const QString& f_charName, const QString& f_oocName, const QString f_command, const QString f_Args);
/** /**
* @brief Adds a player kick to the area buffer and writes it to the respective log format. * @brief Adds a player kick to the area buffer and writes it to the respective log format.
* @param ModerativeLog containing information about the client kicked and who kicked them.
*/ */
void logKick(); void logKick(const QString& f_moderator, const QString& f_targetIPID, const QString& f_targetName, const QString f_targetOOCName);
/** /**
* @brief Adds a player ban to the area buffer and writes it to the respective log format. * @brief Adds a player ban to the area buffer and writes it to the respective log format.
* @param ModerativeLog containing information about the client banned and who banned them.
*/ */
void logBan(); void logBan(const QString& f_moderator, const QString& f_targetIPID, const QString& f_targetName, const QString f_targetOOCName,
const QDateTime& duration);
/** /**
* @brief Logs any connection attempt to the server, wether sucessful or not. * @brief Logs any connection attempt to the server, wether sucessful or not.
* @param ConnectionLog containing information on who connected and if the connection was successful.
*/ */
void logConnectionAttempt(); void logConnectionAttempt(const QString &ip_address, const QString &ipid, const QString &hdid);
private: private:

View File

@ -23,52 +23,53 @@ ULogger::ULogger(QObject* parent) :
} }
void ULogger::logIC() void ULogger::logIC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid, const QString& f_areaName)
{ {
} }
void ULogger::logOOC() void ULogger::logOOC(const QString& f_charName, const QString& f_oocName, const QString& f_ipid, const QString& f_areaName)
{ {
} }
void ULogger::logLogin() void ULogger::logLogin(const QString& f_charName, const QString& f_oocName, const QString& f_moderatorName,
const QString& f_ipid, bool& f_sucees)
{ {
} }
void ULogger::logCMD() void ULogger::logCMD(const QString& f_charName, const QString& f_oocName, const QString f_command, const QString f_Args)
{ {
} }
void ULogger::logKick() void ULogger::logKick(const QString& f_moderator, const QString& f_targetIPID, const QString& f_targetName, const QString f_targetOOCName)
{ {
} }
void ULogger::logBan() void ULogger::logBan(const QString &f_moderator, const QString &f_targetIPID, const QString &f_targetName, const QString f_targetOOCName, const QDateTime &duration)
{ {
} }
void ULogger::logConnectionAttempt() void ULogger::logConnectionAttempt(const QString& ip_address, const QString& ipid, const QString& hdid)
{ {
} }
void ULogger::updateAreaBuffer(const QString& f_areaName, const QString& f_entry) void ULogger::updateAreaBuffer(const QString& f_areaName, const QString& f_entry)
{ {
QQueue<QString>f_buffer = m_bufferMap.value(f_areaName); QQueue<QString>l_buffer = m_bufferMap.value(f_areaName);
if (f_buffer.length() < ConfigManager::logBuffer()) { if (l_buffer.length() <= ConfigManager::logBuffer()) {
f_buffer.enqueue(f_entry); l_buffer.enqueue(f_entry);
} }
else { else {
f_buffer.dequeue(); l_buffer.dequeue();
f_buffer.enqueue(f_entry); l_buffer.enqueue(f_entry);
} }
m_bufferMap.insert(f_areaName, f_buffer); m_bufferMap.insert(f_areaName, l_buffer);
} }
QQueue<QString> ULogger::buffer(const QString& f_areaName) QQueue<QString> ULogger::buffer(const QString& f_areaName)