manage our memory better
This commit is contained in:
parent
d2fec1cce9
commit
849a74fdc3
@ -32,9 +32,10 @@ class Advertiser : public QObject {
|
|||||||
Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port,
|
Advertiser(QString p_ip, int p_port, int p_ws_port, int p_local_port,
|
||||||
QString p_name, QString p_description,
|
QString p_name, QString p_description,
|
||||||
QObject* parent = nullptr);
|
QObject* parent = nullptr);
|
||||||
|
~Advertiser();
|
||||||
void contactMasterServer();
|
void contactMasterServer();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void readData();
|
void readData();
|
||||||
|
@ -31,6 +31,7 @@ class AOClient : public QObject {
|
|||||||
public:
|
public:
|
||||||
AOClient(Server* p_server, QTcpSocket* p_socket, QObject* parent = nullptr);
|
AOClient(Server* p_server, QTcpSocket* p_socket, QObject* parent = nullptr);
|
||||||
~AOClient();
|
~AOClient();
|
||||||
|
void cleanup();
|
||||||
|
|
||||||
QString getHwid();
|
QString getHwid();
|
||||||
void setHwid(QString p_hwid);
|
void setHwid(QString p_hwid);
|
||||||
|
@ -45,7 +45,6 @@ class ConfigManager {
|
|||||||
bool loadServerSettings(server_settings* settings);
|
bool loadServerSettings(server_settings* settings);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QSettings* config;
|
|
||||||
bool fileExists(QFileInfo *file);
|
bool fileExists(QFileInfo *file);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -39,6 +39,8 @@ class Server : public QObject {
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
Server(int p_port, int p_ws_port, QObject* parent = nullptr);
|
Server(int p_port, int p_ws_port, QObject* parent = nullptr);
|
||||||
|
~Server();
|
||||||
|
|
||||||
void start();
|
void start();
|
||||||
AOClient* getClient(QString ipid);
|
AOClient* getClient(QString ipid);
|
||||||
void updateCharsTaken(AreaData* area);
|
void updateCharsTaken(AreaData* area);
|
||||||
|
@ -27,7 +27,7 @@ class WSClient : public QObject {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent = nullptr);
|
WSClient(QTcpSocket* p_tcp_socket, QWebSocket* p_web_socket, QObject* parent = nullptr);
|
||||||
|
~WSClient();
|
||||||
public slots:
|
public slots:
|
||||||
void onTcpData();
|
void onTcpData();
|
||||||
void onWsData(QString message);
|
void onWsData(QString message);
|
||||||
|
@ -29,9 +29,10 @@ class WSProxy : public QObject {
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
WSProxy(int p_local_port, int p_ws_port, QObject* parent);
|
WSProxy(int p_local_port, int p_ws_port, QObject* parent);
|
||||||
void start();
|
~WSProxy();
|
||||||
|
|
||||||
public slots:
|
void start();
|
||||||
|
public slots:
|
||||||
void wsConnected();
|
void wsConnected();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -77,3 +77,8 @@ void Advertiser::socketDisconnected()
|
|||||||
// TODO: fire a signal here, i18n
|
// TODO: fire a signal here, i18n
|
||||||
qDebug("Connection to master server lost");
|
qDebug("Connection to master server lost");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Advertiser::~Advertiser()
|
||||||
|
{
|
||||||
|
socket->deleteLater();
|
||||||
|
}
|
||||||
|
@ -301,4 +301,9 @@ void AOClient::setHwid(QString p_hwid)
|
|||||||
|
|
||||||
QString AOClient::getIpid() { return ipid; }
|
QString AOClient::getIpid() { return ipid; }
|
||||||
|
|
||||||
|
void AOClient::cleanup() {
|
||||||
|
socket->disconnectFromHost();
|
||||||
|
socket->deleteLater();
|
||||||
|
}
|
||||||
|
|
||||||
AOClient::~AOClient() {}
|
AOClient::~AOClient() {}
|
||||||
|
@ -17,14 +17,12 @@
|
|||||||
//////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////
|
||||||
#include "include/config_manager.h"
|
#include "include/config_manager.h"
|
||||||
|
|
||||||
ConfigManager::ConfigManager()
|
ConfigManager::ConfigManager() { }
|
||||||
{
|
|
||||||
config = new QSettings("config/config.ini", QSettings::IniFormat);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validate and set up the config
|
// Validate and set up the config
|
||||||
bool ConfigManager::initConfig()
|
bool ConfigManager::initConfig()
|
||||||
{
|
{
|
||||||
|
QSettings config("config/config.ini", QSettings::IniFormat);
|
||||||
QFileInfo config_dir_info("config/");
|
QFileInfo config_dir_info("config/");
|
||||||
if (!config_dir_info.exists() || !config_dir_info.isDir()) {
|
if (!config_dir_info.exists() || !config_dir_info.isDir()) {
|
||||||
qCritical() << "Config directory doesn't exist!";
|
qCritical() << "Config directory doesn't exist!";
|
||||||
@ -56,9 +54,9 @@ bool ConfigManager::initConfig()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
config->beginGroup("Info");
|
config.beginGroup("Info");
|
||||||
QString config_version = config->value("version", "none").toString();
|
QString config_version = config.value("version", "none").toString();
|
||||||
config->endGroup();
|
config.endGroup();
|
||||||
if (config_version == "none") {
|
if (config_version == "none") {
|
||||||
QFileInfo check_file("config/config.ini");
|
QFileInfo check_file("config/config.ini");
|
||||||
if (!fileExists(&check_file)) {
|
if (!fileExists(&check_file)) {
|
||||||
@ -92,6 +90,7 @@ bool ConfigManager::initConfig()
|
|||||||
// Ensure version continuity with config versions
|
// Ensure version continuity with config versions
|
||||||
bool ConfigManager::updateConfig(int current_version)
|
bool ConfigManager::updateConfig(int current_version)
|
||||||
{
|
{
|
||||||
|
QSettings config("config/config.ini", QSettings::IniFormat);
|
||||||
if (current_version > CONFIG_VERSION) {
|
if (current_version > CONFIG_VERSION) {
|
||||||
// Config version is newer than the latest version, and the config is
|
// 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
|
// 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
|
case 0: // Version 0 doesn't actually exist, but we should check for it
|
||||||
// just in case
|
// just in case
|
||||||
case 1:
|
case 1:
|
||||||
config->beginGroup("Info");
|
config.beginGroup("Info");
|
||||||
config->setValue("version", CONFIG_VERSION);
|
config.setValue("version", CONFIG_VERSION);
|
||||||
config->endGroup();
|
config.endGroup();
|
||||||
break; // This is the newest version, and nothing more needs to be
|
break; // This is the newest version, and nothing more needs to be
|
||||||
// done
|
// done
|
||||||
}
|
}
|
||||||
@ -124,36 +123,37 @@ bool ConfigManager::updateConfig(int current_version)
|
|||||||
// Validate and retriever settings related to advertising and the server
|
// Validate and retriever settings related to advertising and the server
|
||||||
bool ConfigManager::loadServerSettings(server_settings* settings)
|
bool ConfigManager::loadServerSettings(server_settings* settings)
|
||||||
{
|
{
|
||||||
|
QSettings config("config/config.ini", QSettings::IniFormat);
|
||||||
bool port_conversion_success;
|
bool port_conversion_success;
|
||||||
bool ws_port_conversion_success;
|
bool ws_port_conversion_success;
|
||||||
bool local_port_conversion_success;
|
bool local_port_conversion_success;
|
||||||
config->beginGroup("Options");
|
config.beginGroup("Options");
|
||||||
settings->ms_ip =
|
settings->ms_ip =
|
||||||
config->value("ms_ip", "master.aceattorneyonline.com").toString();
|
config.value("ms_ip", "master.aceattorneyonline.com").toString();
|
||||||
settings->port =
|
settings->port =
|
||||||
config->value("port", "27016").toInt(&port_conversion_success);
|
config.value("port", "27016").toInt(&port_conversion_success);
|
||||||
settings->ws_port =
|
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 =
|
settings->local_port =
|
||||||
config->value("port", "27016").toInt(&local_port_conversion_success);
|
config.value("port", "27016").toInt(&local_port_conversion_success);
|
||||||
settings->name = config->value("server_name", "My First Server").toString();
|
settings->name = config.value("server_name", "My First Server").toString();
|
||||||
settings->description =
|
settings->description =
|
||||||
config->value("server_description", "This is my flashy new server")
|
config.value("server_description", "This is my flashy new server")
|
||||||
.toString();
|
.toString();
|
||||||
config->endGroup();
|
config.endGroup();
|
||||||
if (!port_conversion_success || !ws_port_conversion_success ||
|
if (!port_conversion_success || !ws_port_conversion_success ||
|
||||||
!local_port_conversion_success) {
|
!local_port_conversion_success) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
config->beginGroup("Options");
|
config.beginGroup("Options");
|
||||||
// Will be true of false depending on the key
|
// Will be true of false depending on the key
|
||||||
settings->advertise_server =
|
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;
|
settings->ws_port = -1;
|
||||||
config->endGroup();
|
config.endGroup();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
14
src/main.cpp
14
src/main.cpp
@ -19,17 +19,25 @@
|
|||||||
#include "include/server.h"
|
#include "include/server.h"
|
||||||
#include "include/config_manager.h"
|
#include "include/config_manager.h"
|
||||||
|
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
Advertiser* advertiser;
|
Advertiser* advertiser;
|
||||||
Server* server;
|
Server* server;
|
||||||
|
|
||||||
|
void cleanup() {
|
||||||
|
server->deleteLater();
|
||||||
|
advertiser->deleteLater();
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
QCoreApplication::setApplicationName("akashi");
|
QCoreApplication::setApplicationName("akashi");
|
||||||
QCoreApplication::setApplicationVersion("0.0.1");
|
QCoreApplication::setApplicationVersion("0.0.1");
|
||||||
|
std::atexit(cleanup);
|
||||||
|
|
||||||
qDebug("Main application started");
|
qDebug("Main application started");
|
||||||
|
|
||||||
@ -42,7 +50,8 @@ int main(int argc, char* argv[])
|
|||||||
if (!config_valid) {
|
if (!config_valid) {
|
||||||
qCritical() << "config.ini is invalid!";
|
qCritical() << "config.ini is invalid!";
|
||||||
qCritical() << "Exiting server due to configuration issue.";
|
qCritical() << "Exiting server due to configuration issue.";
|
||||||
return EXIT_FAILURE;
|
exit(EXIT_FAILURE);
|
||||||
|
QCoreApplication::quit();
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
@ -62,7 +71,8 @@ int main(int argc, char* argv[])
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
qCritical() << "Exiting server due to configuration issue.";
|
qCritical() << "Exiting server due to configuration issue.";
|
||||||
return EXIT_FAILURE;
|
exit(EXIT_FAILURE);
|
||||||
|
QCoreApplication::quit();
|
||||||
}
|
}
|
||||||
|
|
||||||
return app.exec();
|
return app.exec();
|
||||||
|
@ -132,3 +132,13 @@ AOClient* Server::getClient(QString ipid)
|
|||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Server::~Server()
|
||||||
|
{
|
||||||
|
for (AOClient* client : clients) {
|
||||||
|
client->cleanup();
|
||||||
|
client->deleteLater();
|
||||||
|
}
|
||||||
|
server->deleteLater();
|
||||||
|
proxy->deleteLater();
|
||||||
|
}
|
||||||
|
@ -49,8 +49,11 @@ void WSClient::onWsDisconnect()
|
|||||||
|
|
||||||
void WSClient::onTcpDisconnect()
|
void WSClient::onTcpDisconnect()
|
||||||
{
|
{
|
||||||
qDebug() << "deleted";
|
|
||||||
web_socket->close();
|
web_socket->close();
|
||||||
|
}
|
||||||
|
|
||||||
|
WSClient::~WSClient()
|
||||||
|
{
|
||||||
tcp_socket->deleteLater();
|
tcp_socket->deleteLater();
|
||||||
web_socket->deleteLater();
|
web_socket->deleteLater();
|
||||||
}
|
}
|
||||||
|
@ -54,3 +54,8 @@ void WSProxy::wsConnected()
|
|||||||
|
|
||||||
new_tcp->connectToHost(QHostAddress::LocalHost, local_port);
|
new_tcp->connectToHost(QHostAddress::LocalHost, local_port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
WSProxy::~WSProxy()
|
||||||
|
{
|
||||||
|
server->deleteLater();
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user