2013-08-17 15:39:29 +02:00
|
|
|
// system includes
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
// project includes
|
|
|
|
#include <jsonserver/JsonServer.h>
|
|
|
|
#include "JsonClientConnection.h"
|
|
|
|
|
|
|
|
JsonServer::JsonServer(Hyperion *hyperion, uint16_t port) :
|
|
|
|
QObject(),
|
|
|
|
_hyperion(hyperion),
|
|
|
|
_server(),
|
|
|
|
_openConnections()
|
|
|
|
{
|
|
|
|
if (!_server.listen(QHostAddress::Any, port))
|
|
|
|
{
|
2016-03-23 17:40:34 +01:00
|
|
|
throw std::runtime_error("JSONSERVER ERROR: could not bind to port");
|
2013-08-17 15:39:29 +02:00
|
|
|
}
|
|
|
|
|
2016-02-18 10:32:38 +01:00
|
|
|
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 ) {
|
2016-03-23 17:40:34 +01:00
|
|
|
throw std::runtime_error("JSONSERVER ERROR: Loop between proto server and forwarder detected. Fix your config!");
|
2016-02-18 10:32:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-17 15:39:29 +02:00
|
|
|
// Set trigger for incoming connections
|
|
|
|
connect(&_server, SIGNAL(newConnection()), this, SLOT(newConnection()));
|
2013-08-17 19:20:19 +02:00
|
|
|
|
|
|
|
// make sure the resources are loaded (they may be left out after static linking
|
2013-08-22 20:31:57 +02:00
|
|
|
Q_INIT_RESOURCE(JsonSchemas);
|
2013-08-17 15:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2016-03-23 17:40:34 +01:00
|
|
|
std::cout << "JSONSERVER INFO: New connection" << std::endl;
|
2013-08-18 12:21:07 +02:00
|
|
|
JsonClientConnection * connection = new JsonClientConnection(socket, _hyperion);
|
2013-08-17 15:39:29 +02:00
|
|
|
_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)
|
|
|
|
{
|
2016-03-23 17:40:34 +01:00
|
|
|
std::cout << "JSONSERVER INFO: Connection closed" << std::endl;
|
2013-08-17 15:39:29 +02:00
|
|
|
_openConnections.remove(connection);
|
|
|
|
|
|
|
|
// schedule to delete the connection object
|
|
|
|
connection->deleteLater();
|
|
|
|
}
|