manage our memory better

This commit is contained in:
scatterflower 2020-09-02 15:36:10 -05:00
parent d2fec1cce9
commit 849a74fdc3
13 changed files with 72 additions and 30 deletions

View File

@ -32,9 +32,10 @@ class Advertiser : public QObject {
Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port,
QString p_name, QString p_description,
QObject* parent = nullptr);
~Advertiser();
void contactMasterServer();
signals:
signals:
public slots:
void readData();

View File

@ -31,6 +31,7 @@ class AOClient : public QObject {
public:
AOClient(Server* p_server, QTcpSocket* p_socket, QObject* parent = nullptr);
~AOClient();
void cleanup();
QString getHwid();
void setHwid(QString p_hwid);

View File

@ -45,7 +45,6 @@ class ConfigManager {
bool loadServerSettings(server_settings* settings);
private:
QSettings* config;
bool fileExists(QFileInfo *file);
};

View File

@ -39,6 +39,8 @@ class Server : public QObject {
public:
Server(int p_port, int p_ws_port, QObject* parent = nullptr);
~Server();
void start();
AOClient* getClient(QString ipid);
void updateCharsTaken(AreaData* area);

View File

@ -27,7 +27,7 @@ class WSClient : public QObject {
Q_OBJECT
public:
WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent = nullptr);
~WSClient();
public slots:
void onTcpData();
void onWsData(QString message);

View File

@ -29,9 +29,10 @@ class WSProxy : public QObject {
Q_OBJECT
public:
WSProxy(int p_local_port, int p_ws_port, QObject* parent);
void start();
~WSProxy();
public slots:
void start();
public slots:
void wsConnected();
private:

View File

@ -77,3 +77,8 @@ void Advertiser::socketDisconnected()
// TODO: fire a signal here, i18n
qDebug("Connection to master server lost");
}
Advertiser::~Advertiser()
{
socket->deleteLater();
}

View File

@ -301,4 +301,9 @@ void AOClient::setHwid(QString p_hwid)
QString AOClient::getIpid() { return ipid; }
void AOClient::cleanup() {
socket->disconnectFromHost();
socket->deleteLater();
}
AOClient::~AOClient() {}

View File

@ -17,14 +17,12 @@
//////////////////////////////////////////////////////////////////////////////////////
#include "include/config_manager.h"
ConfigManager::ConfigManager()
{
config = new QSettings("config/config.ini", QSettings::IniFormat);
}
ConfigManager::ConfigManager() { }
// Validate and set up the config
bool ConfigManager::initConfig()
{
QSettings config("config/config.ini", QSettings::IniFormat);
QFileInfo config_dir_info("config/");
if (!config_dir_info.exists() || !config_dir_info.isDir()) {
qCritical() << "Config directory doesn't exist!";
@ -56,9 +54,9 @@ bool ConfigManager::initConfig()
return false;
}
config->beginGroup("Info");
QString config_version = config->value("version", "none").toString();
config->endGroup();
config.beginGroup("Info");
QString config_version = config.value("version", "none").toString();
config.endGroup();
if (config_version == "none") {
QFileInfo check_file("config/config.ini");
if (!fileExists(&check_file)) {
@ -92,6 +90,7 @@ bool ConfigManager::initConfig()
// Ensure version continuity with config versions
bool ConfigManager::updateConfig(int current_version)
{
QSettings config("config/config.ini", QSettings::IniFormat);
if (current_version > CONFIG_VERSION) {
// Config version is newer than the latest version, and the config is
// invalid This could also mean the server is out of date, and the user
@ -111,9 +110,9 @@ bool ConfigManager::updateConfig(int current_version)
case 0: // Version 0 doesn't actually exist, but we should check for it
// just in case
case 1:
config->beginGroup("Info");
config->setValue("version", CONFIG_VERSION);
config->endGroup();
config.beginGroup("Info");
config.setValue("version", CONFIG_VERSION);
config.endGroup();
break; // This is the newest version, and nothing more needs to be
// done
}
@ -124,36 +123,37 @@ bool ConfigManager::updateConfig(int current_version)
// Validate and retriever settings related to advertising and the server
bool ConfigManager::loadServerSettings(server_settings* settings)
{
QSettings config("config/config.ini", QSettings::IniFormat);
bool port_conversion_success;
bool ws_port_conversion_success;
bool local_port_conversion_success;
config->beginGroup("Options");
config.beginGroup("Options");
settings->ms_ip =
config->value("ms_ip", "master.aceattorneyonline.com").toString();
config.value("ms_ip", "master.aceattorneyonline.com").toString();
settings->port =
config->value("port", "27016").toInt(&port_conversion_success);
config.value("port", "27016").toInt(&port_conversion_success);
settings->ws_port =
config->value("webao_port", "27017").toInt(&ws_port_conversion_success);
config.value("webao_port", "27017").toInt(&ws_port_conversion_success);
settings->local_port =
config->value("port", "27016").toInt(&local_port_conversion_success);
settings->name = config->value("server_name", "My First Server").toString();
config.value("port", "27016").toInt(&local_port_conversion_success);
settings->name = config.value("server_name", "My First Server").toString();
settings->description =
config->value("server_description", "This is my flashy new server")
config.value("server_description", "This is my flashy new server")
.toString();
config->endGroup();
config.endGroup();
if (!port_conversion_success || !ws_port_conversion_success ||
!local_port_conversion_success) {
return false;
}
else {
config->beginGroup("Options");
config.beginGroup("Options");
// Will be true of false depending on the key
settings->advertise_server =
(config->value("advertise", "true").toString() == "true");
(config.value("advertise", "true").toString() == "true");
if (config->value("webao_enable", "true").toString() != "true")
if (config.value("webao_enable", "true").toString() != "true")
settings->ws_port = -1;
config->endGroup();
config.endGroup();
return true;
}

View File

@ -19,17 +19,25 @@
#include "include/server.h"
#include "include/config_manager.h"
#include <cstdlib>
#include <QCoreApplication>
#include <QDebug>
Advertiser* advertiser;
Server* server;
void cleanup() {
server->deleteLater();
advertiser->deleteLater();
}
int main(int argc, char* argv[])
{
QCoreApplication app(argc, argv);
QCoreApplication::setApplicationName("akashi");
QCoreApplication::setApplicationVersion("0.0.1");
std::atexit(cleanup);
qDebug("Main application started");
@ -42,7 +50,8 @@ int main(int argc, char* argv[])
if (!config_valid) {
qCritical() << "config.ini is invalid!";
qCritical() << "Exiting server due to configuration issue.";
return EXIT_FAILURE;
exit(EXIT_FAILURE);
QCoreApplication::quit();
}
else {
@ -62,7 +71,8 @@ int main(int argc, char* argv[])
}
} else {
qCritical() << "Exiting server due to configuration issue.";
return EXIT_FAILURE;
exit(EXIT_FAILURE);
QCoreApplication::quit();
}
return app.exec();

View File

@ -132,3 +132,13 @@ AOClient* Server::getClient(QString ipid)
}
return nullptr;
}
Server::~Server()
{
for (AOClient* client : clients) {
client->cleanup();
client->deleteLater();
}
server->deleteLater();
proxy->deleteLater();
}

View File

@ -49,8 +49,11 @@ void WSClient::onWsDisconnect()
void WSClient::onTcpDisconnect()
{
qDebug() << "deleted";
web_socket->close();
}
WSClient::~WSClient()
{
tcp_socket->deleteLater();
web_socket->deleteLater();
}

View File

@ -54,3 +54,8 @@ void WSProxy::wsConnected()
new_tcp->connectToHost(QHostAddress::LocalHost, local_port);
}
WSProxy::~WSProxy()
{
server->deleteLater();
}