From f2a4f2d3e38089a67dd1a161774f53b044580600 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Tue, 24 Aug 2021 19:17:37 +0200 Subject: [PATCH] Add slot definitions, fix small oversight in QQueue oopsie --- core/include/logger/u_logger.h | 23 +++++++++-------------- core/src/logger/u_logger.cpp | 27 ++++++++++++++------------- 2 files changed, 23 insertions(+), 27 deletions(-) diff --git a/core/include/logger/u_logger.h b/core/include/logger/u_logger.h index 27b36a2..1072b04 100644 --- a/core/include/logger/u_logger.h +++ b/core/include/logger/u_logger.h @@ -45,45 +45,40 @@ public slots: /** * @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. - * @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. - * @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. - * @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. - * @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. - * @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. - * @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: diff --git a/core/src/logger/u_logger.cpp b/core/src/logger/u_logger.cpp index e60d285..f35033e 100644 --- a/core/src/logger/u_logger.cpp +++ b/core/src/logger/u_logger.cpp @@ -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) { - QQueuef_buffer = m_bufferMap.value(f_areaName); - if (f_buffer.length() < ConfigManager::logBuffer()) { - f_buffer.enqueue(f_entry); + QQueuel_buffer = m_bufferMap.value(f_areaName); + if (l_buffer.length() <= ConfigManager::logBuffer()) { + l_buffer.enqueue(f_entry); } else { - f_buffer.dequeue(); - f_buffer.enqueue(f_entry); + l_buffer.dequeue(); + l_buffer.enqueue(f_entry); } - m_bufferMap.insert(f_areaName, f_buffer); + m_bufferMap.insert(f_areaName, l_buffer); } QQueue ULogger::buffer(const QString& f_areaName)