185 lines
5.7 KiB
C++
185 lines
5.7 KiB
C++
// 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 <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "everestconnection.h"
|
|
#include "extern-plugininfo.h"
|
|
#include "everestevse.h"
|
|
#include "everestjsonrpcclient.h"
|
|
|
|
EverestConnection::EverestConnection(quint16 port, QObject *parent)
|
|
: QObject{parent},
|
|
m_port{port}
|
|
{
|
|
m_client = new EverestJsonRpcClient(this);
|
|
|
|
connect(m_client, &EverestJsonRpcClient::availableChanged, this, &EverestConnection::availableChanged);
|
|
connect(m_client, &EverestJsonRpcClient::availableChanged, this, [this](bool available){
|
|
if (available) {
|
|
qCDebug(dcEverest()) << "The JsonRpc client is now available" << this;
|
|
m_reconnectTimer.stop();
|
|
} else {
|
|
qCDebug(dcEverest()) << "The JsonRpc client is not available any more" << this;
|
|
if (m_monitor->reachable()) {
|
|
// Start the reconnect timer
|
|
qCDebug(dcEverest()) << "Starting reconnect timer for JsonRpc client to" << m_client->serverUrl().toString();
|
|
m_reconnectTimer.start();
|
|
}
|
|
}
|
|
});
|
|
|
|
// Reconnect timer in case the network device is reachable but the websocketserver not yet
|
|
m_reconnectTimer.setInterval(5000);
|
|
m_reconnectTimer.setSingleShot(false);
|
|
connect(&m_reconnectTimer, &QTimer::timeout, this, [this](){
|
|
if (m_client->available())
|
|
return;
|
|
|
|
if (!m_running) {
|
|
qCDebug(dcEverest()) << "The everest client is not running. Ignoring event...";
|
|
return;
|
|
}
|
|
|
|
m_client->connectToServer(buildUrl());
|
|
});
|
|
}
|
|
|
|
bool EverestConnection::available() const
|
|
{
|
|
return m_client->available();
|
|
}
|
|
|
|
EverestJsonRpcClient *EverestConnection::client() const
|
|
{
|
|
return m_client;
|
|
}
|
|
|
|
EverestEvse *EverestConnection::getEvse(Thing *thing)
|
|
{
|
|
return m_everestEvses.value(thing);
|
|
}
|
|
|
|
void EverestConnection::addThing(Thing *thing)
|
|
{
|
|
qCDebug(dcEverest()) << "Adding thing" << thing->name() << "to connection" << m_client->serverUrl().toString();
|
|
EverestEvse *evse = new EverestEvse(m_client, thing);
|
|
m_everestEvses.insert(thing, evse);
|
|
}
|
|
|
|
void EverestConnection::removeThing(Thing *thing)
|
|
{
|
|
qCDebug(dcEverest()) << "Remove thing" << thing->name() << "from connection" << m_client->serverUrl().toString();
|
|
m_everestEvses.take(thing)->deleteLater();
|
|
}
|
|
|
|
NetworkDeviceMonitor *EverestConnection::monitor() const
|
|
{
|
|
return m_monitor;
|
|
}
|
|
|
|
void EverestConnection::setMonitor(NetworkDeviceMonitor *monitor)
|
|
{
|
|
if (!monitor && m_monitor)
|
|
disconnect(m_monitor, &NetworkDeviceMonitor::reachableChanged, this, &EverestConnection::onMonitorReachableChanged);
|
|
|
|
m_monitor = monitor;
|
|
if (m_monitor) {
|
|
connect(m_monitor, &NetworkDeviceMonitor::reachableChanged, this, &EverestConnection::onMonitorReachableChanged);
|
|
}
|
|
}
|
|
|
|
void EverestConnection::start()
|
|
{
|
|
qCDebug(dcEverest()) << "Starting" << this;
|
|
m_running = true;
|
|
|
|
if (m_monitor) {
|
|
if (m_monitor->reachable()) {
|
|
QUrl url = buildUrl();
|
|
qCDebug(dcEverest()) << "Connecting" << this;
|
|
if (m_client->available())
|
|
m_client->disconnectFromServer();
|
|
|
|
m_client->connectToServer(url);
|
|
} else {
|
|
qCDebug(dcEverest()) << "Monitor is not reachable yet" << this;
|
|
}
|
|
} else {
|
|
qCDebug(dcEverest()) << "Connecting" << this;
|
|
m_client->connectToServer(buildUrl());
|
|
|
|
// Note: on connected this will be stopped, otherwise we want the timer running
|
|
m_reconnectTimer.start();
|
|
}
|
|
}
|
|
|
|
void EverestConnection::stop()
|
|
{
|
|
qCDebug(dcEverest()) << "Stopping" << this;
|
|
m_running = false;
|
|
m_reconnectTimer.stop();
|
|
m_client->disconnectFromServer();
|
|
}
|
|
|
|
void EverestConnection::onMonitorReachableChanged(bool reachable)
|
|
{
|
|
qCDebug(dcEverest()) << "Network monitor for" << m_monitor << (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 JsonRpc client
|
|
QUrl url = buildUrl();
|
|
qCDebug(dcEverest()) << "Connecting JsonRpc client to" << url.toString();
|
|
if (m_client->available())
|
|
m_client->disconnectFromServer();
|
|
|
|
m_client->connectToServer(url);
|
|
} else {
|
|
m_reconnectTimer.stop();
|
|
}
|
|
}
|
|
|
|
QUrl EverestConnection::buildUrl() const
|
|
{
|
|
QUrl url;
|
|
|
|
if (!m_monitor)
|
|
return url;
|
|
|
|
url.setScheme("ws");
|
|
url.setHost(m_monitor->networkDeviceInfo().address().toString());
|
|
url.setPort(m_port);
|
|
return url;
|
|
}
|
|
|
|
QDebug operator<<(QDebug debug, EverestConnection *connection)
|
|
{
|
|
QDebugStateSaver saver(debug);
|
|
debug.noquote().nospace() << "EverestConnection(" << connection->client()->serverUrl().toString() << ")";
|
|
return debug;
|
|
}
|