2013-08-17 15:39:29 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Qt includes
|
|
|
|
#include <QSet>
|
|
|
|
|
|
|
|
// Hyperion includes
|
2018-12-27 23:11:32 +01:00
|
|
|
#include <utils/Components.h>
|
2016-07-11 17:08:22 +02:00
|
|
|
#include <utils/Logger.h>
|
2018-12-27 23:11:32 +01:00
|
|
|
#include <utils/settings.h>
|
2013-08-17 15:39:29 +02:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
class QTcpServer;
|
|
|
|
class QTcpSocket;
|
2013-08-17 15:39:29 +02:00
|
|
|
class JsonClientConnection;
|
2018-12-27 23:11:32 +01:00
|
|
|
class BonjourServiceRegister;
|
|
|
|
class NetOrigin;
|
2013-08-17 15:39:29 +02:00
|
|
|
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
|
|
|
/// This class creates a TCP server which accepts connections wich can then send
|
|
|
|
/// in JSON encoded commands. This interface to Hyperion is used by hyperion-remote
|
|
|
|
/// to control the leds
|
|
|
|
///
|
2013-08-17 15:39:29 +02:00
|
|
|
class JsonServer : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2013-09-09 04:54:13 +02:00
|
|
|
/// JsonServer constructor
|
2018-12-27 23:11:32 +01:00
|
|
|
/// @param The configuration
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2018-12-27 23:11:32 +01:00
|
|
|
JsonServer(const QJsonDocument& config);
|
2020-08-08 23:12:43 +02:00
|
|
|
~JsonServer() override;
|
2013-08-17 15:39:29 +02:00
|
|
|
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2013-09-09 04:54:13 +02:00
|
|
|
/// @return the port number on which this TCP listens for incoming connections
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2013-08-17 15:39:29 +02:00
|
|
|
uint16_t getPort() const;
|
|
|
|
|
2017-06-24 11:52:22 +02:00
|
|
|
|
2013-08-17 15:39:29 +02:00
|
|
|
private slots:
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2013-09-09 04:54:13 +02:00
|
|
|
/// Slot which is called when a client tries to create a new connection
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2013-08-17 15:39:29 +02:00
|
|
|
void newConnection();
|
|
|
|
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2013-09-09 04:54:13 +02:00
|
|
|
/// Slot which is called when a client closes a connection
|
2013-08-31 14:36:54 +02:00
|
|
|
///
|
2020-08-08 13:09:15 +02:00
|
|
|
void closedConnection();
|
2013-08-17 15:39:29 +02:00
|
|
|
|
2017-06-24 11:52:22 +02:00
|
|
|
public slots:
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief Handle settings update from Hyperion Settingsmanager emit or this constructor
|
2019-02-03 14:36:57 +01:00
|
|
|
/// @param type settings type from enum
|
2018-12-27 23:11:32 +01:00
|
|
|
/// @param config configuration object
|
|
|
|
///
|
2020-08-08 13:09:15 +02:00
|
|
|
void handleSettingsUpdate(settings::type type, const QJsonDocument& config);
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2013-08-17 15:39:29 +02:00
|
|
|
private:
|
2013-08-31 14:36:54 +02:00
|
|
|
/// The TCP server object
|
2018-12-27 23:11:32 +01:00
|
|
|
QTcpServer * _server;
|
2013-08-17 15:39:29 +02:00
|
|
|
|
2013-08-31 14:36:54 +02:00
|
|
|
/// List with open connections
|
2013-08-17 15:39:29 +02:00
|
|
|
QSet<JsonClientConnection *> _openConnections;
|
2016-07-31 22:21:35 +02:00
|
|
|
|
|
|
|
/// the logger instance
|
2016-07-11 17:08:22 +02:00
|
|
|
Logger * _log;
|
2017-06-17 23:29:04 +02:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
NetOrigin* _netOrigin;
|
|
|
|
|
|
|
|
/// port
|
|
|
|
uint16_t _port = 0;
|
|
|
|
|
|
|
|
BonjourServiceRegister * _serviceRegister = nullptr;
|
|
|
|
|
|
|
|
void start();
|
|
|
|
void stop();
|
2013-08-17 15:39:29 +02:00
|
|
|
};
|