2013-08-17 15:39:29 +02:00
|
|
|
// system includes
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
// project includes
|
|
|
|
#include <jsonserver/JsonServer.h>
|
|
|
|
#include "JsonClientConnection.h"
|
|
|
|
|
2017-06-24 11:52:22 +02:00
|
|
|
// hyperion include
|
|
|
|
#include <hyperion/MessageForwarder.h>
|
|
|
|
|
|
|
|
// qt includes
|
|
|
|
#include <QTcpSocket>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QByteArray>
|
|
|
|
|
2016-07-31 22:21:35 +02:00
|
|
|
JsonServer::JsonServer(uint16_t port)
|
|
|
|
: QObject()
|
|
|
|
, _server()
|
2017-06-17 23:29:04 +02:00
|
|
|
, _hyperion(Hyperion::getInstance())
|
2016-07-31 22:21:35 +02:00
|
|
|
, _openConnections()
|
|
|
|
, _log(Logger::getInstance("JSONSERVER"))
|
2013-08-17 15:39:29 +02:00
|
|
|
{
|
|
|
|
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-07-31 22:21:35 +02:00
|
|
|
QList<MessageForwarder::JsonSlaveAddress> list = Hyperion::getInstance()->getForwarder()->getJsonSlaves();
|
2016-02-18 10:32:38 +01:00
|
|
|
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
|
|
|
|
2017-06-24 11:52:22 +02:00
|
|
|
// receive state of forwarder
|
|
|
|
connect(_hyperion, &Hyperion::componentStateChanged, this, &JsonServer::componentStateChanged);
|
|
|
|
|
|
|
|
// initial connect TODO get initial state from config to stop messing
|
|
|
|
connect(_hyperion, &Hyperion::forwardJsonMessage, this, &JsonServer::forwardJsonMessage);
|
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)
|
|
|
|
{
|
2017-06-17 23:29:04 +02:00
|
|
|
Debug(_log, "New connection from: %s ",socket->localAddress().toString().toStdString().c_str());
|
2016-07-31 22:21:35 +02:00
|
|
|
JsonClientConnection * connection = new JsonClientConnection(socket);
|
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-07-11 17:08:22 +02:00
|
|
|
Debug(_log, "Connection closed");
|
2013-08-17 15:39:29 +02:00
|
|
|
_openConnections.remove(connection);
|
|
|
|
|
|
|
|
// schedule to delete the connection object
|
|
|
|
connection->deleteLater();
|
|
|
|
}
|
2017-06-17 23:29:04 +02:00
|
|
|
|
2017-06-24 11:52:22 +02:00
|
|
|
void JsonServer::componentStateChanged(const hyperion::Components component, bool enable)
|
|
|
|
{
|
|
|
|
if (component == hyperion::COMP_FORWARDER && _forwarder_enabled != enable)
|
|
|
|
{
|
|
|
|
_forwarder_enabled = enable;
|
|
|
|
Info(_log, "forwarder change state to %s", (enable ? "enabled" : "disabled") );
|
|
|
|
if(_forwarder_enabled)
|
|
|
|
{
|
|
|
|
connect(_hyperion, &Hyperion::forwardJsonMessage, this, &JsonServer::forwardJsonMessage);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
disconnect(_hyperion, &Hyperion::forwardJsonMessage, this, &JsonServer::forwardJsonMessage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void JsonServer::forwardJsonMessage(const QJsonObject &message)
|
|
|
|
{
|
|
|
|
QTcpSocket client;
|
|
|
|
QList<MessageForwarder::JsonSlaveAddress> list = _hyperion->getForwarder()->getJsonSlaves();
|
|
|
|
|
|
|
|
for ( int i=0; i<list.size(); i++ )
|
|
|
|
{
|
|
|
|
client.connectToHost(list.at(i).addr, list.at(i).port);
|
|
|
|
if ( client.waitForConnected(500) )
|
|
|
|
{
|
|
|
|
sendMessage(message,&client);
|
|
|
|
client.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void JsonServer::sendMessage(const QJsonObject & message, QTcpSocket * socket)
|
2017-06-17 23:29:04 +02:00
|
|
|
{
|
2017-06-24 11:52:22 +02:00
|
|
|
// serialize message
|
|
|
|
QJsonDocument writer(message);
|
|
|
|
QByteArray serializedMessage = writer.toJson(QJsonDocument::Compact) + "\n";
|
|
|
|
|
|
|
|
// write message
|
|
|
|
socket->write(serializedMessage);
|
|
|
|
if (!socket->waitForBytesWritten())
|
2017-06-17 23:29:04 +02:00
|
|
|
{
|
2017-06-24 11:52:22 +02:00
|
|
|
Debug(_log, "Error while writing data to host");
|
|
|
|
return;
|
2017-06-17 23:29:04 +02:00
|
|
|
}
|
2017-06-24 11:52:22 +02:00
|
|
|
|
|
|
|
// read reply data
|
|
|
|
QByteArray serializedReply;
|
|
|
|
while (!serializedReply.contains('\n'))
|
2017-06-17 23:29:04 +02:00
|
|
|
{
|
2017-06-24 11:52:22 +02:00
|
|
|
// receive reply
|
|
|
|
if (!socket->waitForReadyRead())
|
|
|
|
{
|
|
|
|
Debug(_log, "Error while writing data from host");
|
|
|
|
return;
|
2017-06-17 23:29:04 +02:00
|
|
|
}
|
2017-06-24 11:52:22 +02:00
|
|
|
|
|
|
|
serializedReply += socket->readAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse reply data
|
|
|
|
QJsonParseError error;
|
|
|
|
QJsonDocument reply = QJsonDocument::fromJson(serializedReply ,&error);
|
|
|
|
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
|
|
|
{
|
|
|
|
Error(_log, "Error while parsing reply: invalid json");
|
|
|
|
return;
|
2017-06-17 23:29:04 +02:00
|
|
|
}
|
2017-06-24 11:52:22 +02:00
|
|
|
|
2017-06-17 23:29:04 +02:00
|
|
|
}
|