hyperion.ng/include/jsonserver/JsonServer.h

72 lines
1.5 KiB
C
Raw Normal View History

#pragma once
// system includes
#include <cstdint>
// Qt includes
#include <QTcpServer>
#include <QSet>
#include <QTimer>
// Hyperion includes
#include <hyperion/Hyperion.h>
#include <utils/Logger.h>
class JsonClientConnection;
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
/// @param hyperion Hyperion instance
/// @param port port number on which to start listening for connections
2013-08-31 14:36:54 +02:00
///
JsonServer(uint16_t port = 19444);
~JsonServer();
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();
///
/// Slot which is called when a new forced serverinfo should be pushed
///
void pushReq();
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-09-09 22:35:28 +02:00
/// @param connection The Connection object which is being closed
2013-08-31 14:36:54 +02:00
///
void closedConnection(JsonClientConnection * connection);
private:
2013-08-31 14:36:54 +02:00
/// The TCP server object
QTcpServer _server;
/// Link to Hyperion to get hyperion state emiter
Hyperion * _hyperion;
2013-08-31 14:36:54 +02:00
/// List with open connections
QSet<JsonClientConnection *> _openConnections;
/// the logger instance
Logger * _log;
QTimer _timer;
QTimer _blockTimer;
};