This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2025-11-17 16:42:41 +01:00

91 lines
3.2 KiB
C++

// 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 <https://www.gnu.org/licenses/>.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef MQTTBROKER_H
#define MQTTBROKER_H
#include <QObject>
#include <QHostAddress>
#include <QSslConfiguration>
#include <mqtt.h>
#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<ServerConfiguration> configurations() const;
void stopServer(const QString &configId);
QList<MqttPolicy> policies();
MqttPolicy policy(const QString &clientId);
void updatePolicy(const MqttPolicy &policy);
void updatePolicies(const QList<MqttPolicy> &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<int, ServerConfiguration> m_configs;
QHash<QString, MqttPolicy> m_policies;
friend class NymeaMqttAuthorizer;
};
}
#endif // MQTTBROKER_H