// SPDX-License-Identifier: GPL-3.0-or-later /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2013 - 2024, nymea GmbH * Copyright (C) 2024 - 2025, chargebyte austria GmbH * * This file is part of nymea-plugins. * * nymea-plugins is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * nymea-plugins 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with nymea-plugins. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "everestmqttclient.h" #include "extern-plugininfo.h" EverestMqttClient::EverestMqttClient(QObject *parent) : QObject{parent} { m_client = new MqttClient("nymea-" + QUuid::createUuid().toString().left(8), 300, QString(), QByteArray(), Mqtt::QoS0, false, this); connect(m_client, &MqttClient::disconnected, this, [this](){ qCDebug(dcEverest()) << "The MQTT client is now disconnected" << this; if (m_monitor->reachable()) { // Start the reconnect timer qCDebug(dcEverest()) << "Starting reconnect timer for mqtt connection to" << m_monitor->networkDeviceInfo().address().toString(); m_reconnectTimer.start(); } }); connect(m_client, &MqttClient::connected, this, [this](){ qCDebug(dcEverest()) << "The MQTT client is now connected" << this; m_reconnectTimer.stop(); }); connect(m_client, &MqttClient::error, this, [this](QAbstractSocket::SocketError socketError){ qCWarning(dcEverest()) << "An MQTT error occurred on" << this << socketError; }); // Reconnect timer is only required for IP based connections, otherwise we have the NetworkDeviceMonitor m_reconnectTimer.setInterval(5000); m_reconnectTimer.setSingleShot(false); connect(&m_reconnectTimer, &QTimer::timeout, this, [this](){ if (m_client->isConnected()) return; if (!m_running) { qCDebug(dcEverest()) << "The everest client is not running. Ignoring event..."; return; } m_client->connectToHost(m_monitor->networkDeviceInfo().address().toString(), m_port); }); } EverestMqttClient::~EverestMqttClient() { foreach (EverestMqtt *everest, m_everests) { removeThing(everest->thing()); } } MqttClient *EverestMqttClient::client() const { return m_client; } Things EverestMqttClient::things() const { return m_everests.keys(); } void EverestMqttClient::addThing(Thing *thing) { if (m_everests.contains(thing)) { qCWarning(dcEverest()) << "The" << thing << "has already been added to the everest client. " "Please report a bug if you see this message."; // TODO: maybe cleanup and recreate the client due to reconfigure return; } EverestMqtt *everest = new EverestMqtt(m_client, thing, this); m_everests.insert(thing, everest); } void EverestMqttClient::removeThing(Thing *thing) { if (!m_everests.contains(thing)) { qCWarning(dcEverest()) << "The" << thing << "has already been removed from the everest client. " "Please report a bug if you see this message."; return; } EverestMqtt *everest = m_everests.take(thing); everest->deinitialize(); everest->deleteLater(); } EverestMqtt *EverestMqttClient::getEverest(Thing *thing) const { if (!m_everests.contains(thing)) return nullptr; return m_everests.value(thing); } NetworkDeviceMonitor *EverestMqttClient::monitor() const { return m_monitor; } void EverestMqttClient::setMonitor(NetworkDeviceMonitor *monitor) { m_monitor = monitor; connect(m_monitor, &NetworkDeviceMonitor::reachableChanged, this, &EverestMqttClient::onMonitorReachableChanged); } void EverestMqttClient::start() { qCDebug(dcEverest()) << "Starting" << this; m_running = true; if (m_monitor) { if (m_monitor->reachable()) { qCDebug(dcEverest()) << "Connecting MQTT client to" << m_monitor->networkDeviceInfo(); if (m_client->isConnected()) m_client->disconnectFromHost(); m_client->connectToHost(m_monitor->networkDeviceInfo().address().toString(), m_port); } } else { qCDebug(dcEverest()) << "Connecting MQTT client to" << m_monitor->networkDeviceInfo().address().toString(); m_client->connectToHost(m_monitor->networkDeviceInfo().address().toString(), m_port); // Note: on connected this will be stopped, otherwise we want the timer running m_reconnectTimer.start(); } } void EverestMqttClient::stop() { qCDebug(dcEverest()) << "Stopping" << this; m_running = false; m_reconnectTimer.stop(); m_client->disconnectFromHost(); } void EverestMqttClient::onMonitorReachableChanged(bool reachable) { qCDebug(dcEverest()) << "Network monitor for" << m_monitor->macAddress().toString() << (reachable ? " is now reachable" : "is not reachable any more"); if (!m_running) { qCDebug(dcEverest()) << "The everest client is not running. Ignoring event..."; return; } if (reachable) { // The monitor is reachable which means we have a verfied IP, (re)connecting the mqtt client qCDebug(dcEverest()) << "Connecting MQTT client to" << m_monitor->networkDeviceInfo(); if (m_client->isConnected()) m_client->disconnectFromHost(); m_client->connectToHost(m_monitor->networkDeviceInfo().address().toString(), m_port); } else { m_reconnectTimer.stop(); } } QDebug operator<<(QDebug debug, EverestMqttClient *everestClient) { QDebugStateSaver saver(debug); debug.nospace() << "EverestMqttClient("; switch(everestClient->monitor()->monitorMode()) { case NetworkDeviceInfo::MonitorModeMac: debug.nospace() << everestClient->monitor()->networkDeviceInfo().macAddressInfos().constFirst() << ", "; debug.nospace() << everestClient->monitor()->networkDeviceInfo().address().toString() << ", "; break; case NetworkDeviceInfo::MonitorModeHostName: debug.nospace() << everestClient->monitor()->networkDeviceInfo().hostName() << ", "; debug.nospace() << everestClient->monitor()->networkDeviceInfo().address().toString() << ", "; break; case NetworkDeviceInfo::MonitorModeIp: debug.nospace() << everestClient->monitor()->networkDeviceInfo().address().toString() << ", "; break; } debug.nospace() << "MQTT connected: " << everestClient->client()->isConnected() << ")"; return debug; }