2016-02-15 18:25:18 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// STL includes
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
// QT includes
|
|
|
|
#include <QList>
|
|
|
|
#include <QStringList>
|
2016-02-15 20:53:03 +01:00
|
|
|
#include <QHostAddress>
|
2018-12-27 23:11:32 +01:00
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonDocument>
|
2016-02-15 18:25:18 +01:00
|
|
|
|
|
|
|
// Utils includes
|
|
|
|
#include <utils/ColorRgb.h>
|
2018-12-27 23:11:32 +01:00
|
|
|
#include <utils/settings.h>
|
|
|
|
#include <utils/Logger.h>
|
2019-02-03 14:36:57 +01:00
|
|
|
#include <utils/Components.h>
|
|
|
|
#include <utils/Image.h>
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2019-02-03 14:36:57 +01:00
|
|
|
// Hyperion includes
|
|
|
|
#include <hyperion/PriorityMuxer.h>
|
|
|
|
|
|
|
|
// Forward declaration
|
2018-12-27 23:11:32 +01:00
|
|
|
class Hyperion;
|
2019-02-03 14:36:57 +01:00
|
|
|
class QTcpSocket;
|
|
|
|
class FlatBufferConnection;
|
2018-12-27 23:11:32 +01:00
|
|
|
|
|
|
|
class MessageForwarder : public QObject
|
2016-02-15 18:25:18 +01:00
|
|
|
{
|
2018-12-27 23:11:32 +01:00
|
|
|
Q_OBJECT
|
2016-02-15 18:25:18 +01:00
|
|
|
public:
|
2019-02-03 14:36:57 +01:00
|
|
|
MessageForwarder(Hyperion* hyperion);
|
2016-02-15 18:25:18 +01:00
|
|
|
~MessageForwarder();
|
2018-12-27 23:11:32 +01:00
|
|
|
|
2017-03-04 22:17:42 +01:00
|
|
|
void addJsonSlave(QString slave);
|
|
|
|
void addProtoSlave(QString slave);
|
2016-02-19 13:31:08 +01:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
private slots:
|
|
|
|
///
|
|
|
|
/// @brief Handle settings update from Hyperion Settingsmanager emit or this constructor
|
|
|
|
/// @param type settingyType from enum
|
|
|
|
/// @param config configuration object
|
|
|
|
///
|
2019-02-03 14:36:57 +01:00
|
|
|
void handleSettingsUpdate(const settings::type &type, const QJsonDocument &config);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Handle component state change MessageForwarder
|
|
|
|
/// @param component The component from enum
|
|
|
|
/// @param enable The new state
|
|
|
|
///
|
|
|
|
void componentStateChanged(const hyperion::Components component, bool enable);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Handle priority updates from Priority Muxer
|
|
|
|
/// @param priority The new visible priority
|
|
|
|
///
|
|
|
|
void handlePriorityChanges(const quint8 &priority);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Forward message to all json slaves
|
|
|
|
/// @param message The JSON message to send
|
|
|
|
///
|
|
|
|
void forwardJsonMessage(const QJsonObject &message);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Forward image to all proto slaves
|
|
|
|
/// @param image The PROTO image to send
|
|
|
|
///
|
2019-02-17 15:26:11 +01:00
|
|
|
void forwardProtoMessage(const QString& name, const Image<ColorRgb> &image);
|
2019-02-03 14:36:57 +01:00
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Forward message to a single json slave
|
|
|
|
/// @param message The JSON message to send
|
|
|
|
/// @param socket The TCP-Socket with the connection to the slave
|
|
|
|
///
|
|
|
|
void sendJsonMessage(const QJsonObject &message, QTcpSocket *socket);
|
2016-02-15 18:25:18 +01:00
|
|
|
|
|
|
|
private:
|
2019-02-03 14:36:57 +01:00
|
|
|
/// Hyperion instance
|
|
|
|
Hyperion *_hyperion;
|
|
|
|
|
|
|
|
/// Logger instance
|
|
|
|
Logger *_log;
|
|
|
|
|
|
|
|
/// Muxer instance
|
|
|
|
PriorityMuxer *_muxer;
|
|
|
|
|
|
|
|
// JSON connection for forwarding
|
2018-12-27 23:11:32 +01:00
|
|
|
QStringList _jsonSlaves;
|
2019-02-03 14:36:57 +01:00
|
|
|
|
|
|
|
/// Proto connection for forwarding
|
|
|
|
QStringList _protoSlaves;
|
|
|
|
QList<FlatBufferConnection*> _forwardClients;
|
|
|
|
|
|
|
|
/// Flag if forwarder is enabled
|
|
|
|
bool _forwarder_enabled = true;
|
|
|
|
|
|
|
|
const int _priority;
|
2016-02-15 18:25:18 +01:00
|
|
|
};
|