Add QElapsedTimer to track server uptime

Had no better place to put it without making it needlessly complicated.
This commit is contained in:
Salanto 2021-08-12 21:33:13 +02:00
parent 893b3f6cb1
commit 51ca518aeb
2 changed files with 19 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#include <QSettings>
#include <QUrl>
#include <QMetaEnum>
#include <QElapsedTimer>
/**
* @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;
};

View File

@ -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);