hyperion.ng/libsrc/jsonserver/JsonServer.cpp

117 lines
2.6 KiB
C++
Raw Normal View History

// system includes
#include <stdexcept>
// project includes
#include <jsonserver/JsonServer.h>
#include "JsonClientConnection.h"
// bonjour include
2018-12-27 23:11:32 +01:00
#include <bonjour/bonjourserviceregister.h>
// qt includes
2018-12-27 23:11:32 +01:00
#include <QTcpServer>
#include <QTcpSocket>
#include <QJsonDocument>
#include <QByteArray>
2018-12-27 23:11:32 +01:00
JsonServer::JsonServer(const QJsonDocument& config)
: QObject()
2018-12-27 23:11:32 +01:00
, _server(new QTcpServer(this))
, _openConnections()
, _log(Logger::getInstance("JSONSERVER"))
{
2018-12-27 23:11:32 +01:00
Debug(_log, "Created instance");
// Set trigger for incoming connections
2018-12-27 23:11:32 +01:00
connect(_server, SIGNAL(newConnection()), this, SLOT(newConnection()));
2018-12-27 23:11:32 +01:00
// init
handleSettingsUpdate(settings::JSONSERVER, config);
}
JsonServer::~JsonServer()
{
foreach (JsonClientConnection * connection, _openConnections) {
delete connection;
}
}
2018-12-27 23:11:32 +01:00
void JsonServer::start()
{
if(_server->isListening())
return;
if (!_server->listen(QHostAddress::Any, _port))
{
Error(_log,"Could not bind to port '%d', please use an available port", _port);
return;
}
Info(_log, "Started on port %d", _port);
if(_serviceRegister == nullptr)
{
_serviceRegister = new BonjourServiceRegister(this);
_serviceRegister->registerService("_hyperiond-json._tcp", _port);
}
else if( _serviceRegister->getPort() != _port)
{
delete _serviceRegister;
_serviceRegister = new BonjourServiceRegister(this);
2018-12-27 23:11:32 +01:00
_serviceRegister->registerService("_hyperiond-json._tcp", _port);
}
}
void JsonServer::stop()
{
if(!_server->isListening())
return;
_server->close();
Info(_log, "Stopped");
}
void JsonServer::handleSettingsUpdate(const settings::type& type, const QJsonDocument& config)
{
if(type == settings::JSONSERVER)
{
QJsonObject obj = config.object();
if(_port != obj["port"].toInt())
{
_port = obj["port"].toInt();
stop();
start();
}
}
}
uint16_t JsonServer::getPort() const
{
2018-12-27 23:11:32 +01:00
return _port;
}
void JsonServer::newConnection()
{
2018-12-27 23:11:32 +01:00
while(_server->hasPendingConnections())
{
2018-12-27 23:11:32 +01:00
if (QTcpSocket * socket = _server->nextPendingConnection())
{
Debug(_log, "New connection from: %s ",socket->localAddress().toString().toStdString().c_str());
JsonClientConnection * connection = new JsonClientConnection(socket);
_openConnections.insert(connection);
// register slot for cleaning up after the connection closed
connect(connection, &JsonClientConnection::connectionClosed, this, &JsonServer::closedConnection);
}
}
}
void JsonServer::closedConnection(void)
{
JsonClientConnection* connection = qobject_cast<JsonClientConnection*>(sender());
Debug(_log, "Connection closed");
_openConnections.remove(connection);
// schedule to delete the connection object
connection->deleteLater();
}