From 51ca518aeb54f419f4057e9f327751603b9bd022 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Thu, 12 Aug 2021 21:33:13 +0200 Subject: [PATCH] Add QElapsedTimer to track server uptime Had no better place to put it without making it needlessly complicated. --- core/include/config_manager.h | 11 +++++++++++ core/src/config_manager.cpp | 8 ++++++++ 2 files changed, 19 insertions(+) diff --git a/core/include/config_manager.h b/core/include/config_manager.h index 60e9a41..7f73c47 100644 --- a/core/include/config_manager.h +++ b/core/include/config_manager.h @@ -29,6 +29,7 @@ #include #include #include +#include /** * @brief The config file handler class. @@ -355,6 +356,11 @@ class ConfigManager { */ static QUrl advertiserHTTPIP(); + /** + * @brief Returns the uptime of the server in miliseconds. + */ + static qint64 uptime(); + /** * @brief Sets the server's authorization type. * @@ -424,6 +430,11 @@ private: * @param Name of the file to load. */ static QStringList loadConfigFile(const QString filename); + + /** + * @brief Pointer to QElapsedTimer to track the uptime of the server. + */ + static QElapsedTimer* uptimeTimer; }; diff --git a/core/src/config_manager.cpp b/core/src/config_manager.cpp index af4718f..085799b 100644 --- a/core/src/config_manager.cpp +++ b/core/src/config_manager.cpp @@ -85,6 +85,9 @@ bool ConfigManager::verifyServerConfig() m_commands->reprimands = (loadConfigFile("reprimands")); m_commands->gimps = (loadConfigFile("gimp")); + uptimeTimer = new QElapsedTimer; + uptimeTimer->start(); + return true; } @@ -421,6 +424,11 @@ QUrl ConfigManager::advertiserHTTPIP() return m_settings->value("ModernAdvertiser/ms_ip","").toUrl(); } +qint64 ConfigManager::uptime() +{ + return uptimeTimer->elapsed(); +} + void ConfigManager::setMotd(const QString f_motd) { m_settings->setValue("Options/motd", f_motd);