hyperion.ng/include/jsonserver/JsonServer.h

79 lines
1.6 KiB
C
Raw Normal View History

#pragma once
// Qt includes
#include <QSet>
// Hyperion includes
2018-12-27 23:11:32 +01:00
#include <utils/Components.h>
#include <utils/Logger.h>
2018-12-27 23:11:32 +01:00
#include <utils/settings.h>
2018-12-27 23:11:32 +01:00
class QTcpServer;
class QTcpSocket;
class JsonClientConnection;
2018-12-27 23:11:32 +01:00
class BonjourServiceRegister;
class NetOrigin;
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
///
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);
~JsonServer() override;
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
///
uint16_t getPort() const;
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
///
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();
public slots:
2018-12-27 23:11:32 +01:00
///
/// @brief Handle settings update from Hyperion Settingsmanager emit or this constructor
/// @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
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-31 14:36:54 +02:00
/// List with open connections
QSet<JsonClientConnection *> _openConnections;
/// the logger instance
Logger * _log;
2018-12-27 23:11:32 +01:00
NetOrigin* _netOrigin;
/// port
uint16_t _port = 0;
BonjourServiceRegister * _serviceRegister = nullptr;
void start();
void stop();
};