mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c802505553
* cleanup: remove ambiled device as written at the forum this is no longer supported. All people should move to adalight. They just need to flash a new sketch. * fix typo * travis.ci * travis: move to ubuntu 14.04 * script try * add serialport * update .json files * . * . * . * update travis * fix * typo * fix * . * disable v4l2 on mac * disable email notification * update osx * maybe fix * . * disable osx and rm v4l2 * try osx * try fix * travis update * add oe systemd file * Proto * Json * fix * fix2 * fix3 * . * typo * update * revert runtime error
71 lines
1.8 KiB
C++
71 lines
1.8 KiB
C++
// system includes
|
|
#include <stdexcept>
|
|
|
|
// project includes
|
|
#include <jsonserver/JsonServer.h>
|
|
#include "JsonClientConnection.h"
|
|
|
|
JsonServer::JsonServer(uint16_t port) :
|
|
QObject(),
|
|
_hyperion(Hyperion::getInstance()),
|
|
_server(),
|
|
_openConnections(),
|
|
_log(Logger::getInstance("JSONSERVER"))
|
|
{
|
|
if (!_server.listen(QHostAddress::Any, port))
|
|
{
|
|
throw std::runtime_error("JSONSERVER ERROR: could not bind to port");
|
|
}
|
|
|
|
QList<MessageForwarder::JsonSlaveAddress> list = _hyperion->getForwarder()->getJsonSlaves();
|
|
for ( int i=0; i<list.size(); i++ )
|
|
{
|
|
if ( list.at(i).addr == QHostAddress::LocalHost && list.at(i).port == port ) {
|
|
throw std::runtime_error("JSONSERVER ERROR: Loop between proto server and forwarder detected. Fix your config!");
|
|
}
|
|
}
|
|
|
|
// Set trigger for incoming connections
|
|
connect(&_server, SIGNAL(newConnection()), this, SLOT(newConnection()));
|
|
|
|
// make sure the resources are loaded (they may be left out after static linking
|
|
Q_INIT_RESOURCE(JsonSchemas);
|
|
|
|
}
|
|
|
|
JsonServer::~JsonServer()
|
|
{
|
|
foreach (JsonClientConnection * connection, _openConnections) {
|
|
delete connection;
|
|
}
|
|
}
|
|
|
|
uint16_t JsonServer::getPort() const
|
|
{
|
|
return _server.serverPort();
|
|
}
|
|
|
|
void JsonServer::newConnection()
|
|
{
|
|
QTcpSocket * socket = _server.nextPendingConnection();
|
|
|
|
if (socket != nullptr)
|
|
{
|
|
Debug(_log, "New connection");
|
|
JsonClientConnection * connection = new JsonClientConnection(socket, _hyperion);
|
|
_openConnections.insert(connection);
|
|
|
|
// register slot for cleaning up after the connection closed
|
|
connect(connection, SIGNAL(connectionClosed(JsonClientConnection*)), this, SLOT(closedConnection(JsonClientConnection*)));
|
|
}
|
|
}
|
|
|
|
void JsonServer::closedConnection(JsonClientConnection *connection)
|
|
{
|
|
Debug(_log, "Connection closed");
|
|
_openConnections.remove(connection);
|
|
|
|
// schedule to delete the connection object
|
|
connection->deleteLater();
|
|
}
|