// SPDX-License-Identifier: LGPL-3.0-or-later
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright (C) 2013 - 2024, nymea GmbH
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
*
* This file is part of nymea.
*
* nymea is free software: you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* nymea is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with nymea. If not, see .
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef MQTTBROKER_H
#define MQTTBROKER_H
#include
#include
#include
#include
#include "nymeaconfiguration.h"
class MqttServer;
namespace nymeaserver {
class NymeaMqttAuthorizer;
class MqttBroker : public QObject
{
Q_OBJECT
public:
explicit MqttBroker(QObject *parent = nullptr);
~MqttBroker();
bool startServer(const ServerConfiguration &config, const QSslConfiguration &sslConfiguration = QSslConfiguration());
bool isRunning(const QString &configId) const;
bool isRunning() const;
QList configurations() const;
void stopServer(const QString &configId);
QList policies();
MqttPolicy policy(const QString &clientId);
void updatePolicy(const MqttPolicy &policy);
void updatePolicies(const QList &policies);
bool removePolicy(const QString &clientId);
void publish(const QString &topic, const QByteArray &payload);
private slots:
void onClientConnected(int serverAddressId, const QString &clientId, const QString &username, const QHostAddress &clientAddress);
void onClientDisconnected(const QString &clientId);
void onPublishReceived(const QString &clientId, quint16 packetId, const QString &topic, const QByteArray &payload);
void onClientSubscribed(const QString &clientId, const QString &topicFilter, Mqtt::QoS requestedQoS);
void onClientUnsubscribed(const QString &clientId, const QString &topicFilter);
signals:
void clientConnected(const QString &clientId);
void clientDisconnected(const QString &clientId);
void publishReceived(const QString &clientId, const QString &topic, const QByteArray &payload);
void clientSubscribed(const QString &clientId, const QString &topicFilter);
void clientUnsubscribed(const QString &clientId, const QString &topicFilter);
void policyAdded(const MqttPolicy &policy);
void policyChanged(const MqttPolicy &policy);
void policyRemoved(const MqttPolicy &policy);
private:
MqttServer* m_server = nullptr;
NymeaMqttAuthorizer *m_authorizer = nullptr;
QHash m_configs;
QHash m_policies;
friend class NymeaMqttAuthorizer;
};
}
#endif // MQTTBROKER_H