/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright 2013 - 2021, nymea GmbH * Contact: contact@nymea.io * * This file is part of nymea. * This project including source code and documentation is protected by * copyright law, and remains the property of nymea GmbH. All rights, including * reproduction, publication, editing and translation, are reserved. The use of * this project is subject to the terms of a license agreement to be concluded * with nymea GmbH in accordance with the terms of use of nymea GmbH, available * under https://nymea.io/license * * GNU Lesser General Public License Usage * Alternatively, this project may be redistributed and/or modified under the * terms of the GNU Lesser General Public License as published by the Free * Software Foundation; version 3. This project 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 this project. If not, see . * * For any further details and any questions please contact us under * contact@nymea.io or see our FAQ/Licensing Information on * https://nymea.io/license/faq * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "kebadiscovery.h" #include "kecontactdatalayer.h" #include "extern-plugininfo.h" #include #include KebaDiscovery::KebaDiscovery(KeContactDataLayer *kebaDataLayer, NetworkDeviceDiscovery *networkDeviceDiscovery, QObject *parent) : QObject(parent), m_kebaDataLayer(kebaDataLayer), m_networkDeviceDiscovery(networkDeviceDiscovery) { // Timer for waiting if network devices responded to the "report 1 request" m_responseTimer.setInterval(2000); m_responseTimer.setSingleShot(true); connect(&m_responseTimer, &QTimer::timeout, this, [=](){ qCInfo(dcKeba()) << "Discovery: Finished successfully. Found" << m_results.count() << "Keba Wallbox"; emit discoveryFinished(); }); // Read data from the keba data layer and verify if it is a keba report connect (m_kebaDataLayer, &KeContactDataLayer::datagramReceived, this, [=](const QHostAddress &address, const QByteArray &datagram){ // Just continue if this is a new address we have no result for if (alreadyDiscovered(address)) { qCDebug(dcKeba()) << "Discovery: Skipping datagram from already discovered Keba on" << address.toString(); return; } // Try to convert the received data to a json document QJsonParseError error; QJsonDocument jsonDoc = QJsonDocument::fromJson(datagram, &error); if (error.error != QJsonParseError::NoError) { qCWarning(dcKeba()) << "Discovery: Received data from the keba data link but failed to parse the data as JSON:" << datagram << ":" << error.errorString(); return; } // Verify JSON data QVariantMap dataMap = jsonDoc.toVariant().toMap(); if (!dataMap.contains("ID") || !dataMap.contains("Serial") || !dataMap.contains("Product") || !dataMap.contains("Firmware")) { qCDebug(dcKeba()) << "Discovery: Received valid JSON data on data layer but they don't seem to be what we are listening for:" << qUtf8Printable(jsonDoc.toJson()); return; } if (dataMap.value("ID").toInt() != 1) { qCDebug(dcKeba()) << "Discovery: Received valid Keba JSON data on data layer but this is not a report 1 we requested for:" << qUtf8Printable(jsonDoc.toJson()); return; } // We have received a report 1 datagram, let's add it to the result NetworkDeviceInfo networkDeviceInfo = m_verifiedNetworkDeviceInfos.get(address); if (networkDeviceInfo.isValid()) { KebaDiscoveryResult result; result.networkDeviceInfo = networkDeviceInfo; result.product = dataMap.value("Product").toString(); result.serialNumber = dataMap.value("Serial").toString(); result.firmwareVersion = dataMap.value("Firmware").toString(); m_results.append(result); qCDebug(dcKeba()) << "Discovery: -->" << networkDeviceInfo << networkDeviceInfo.macAddress() << result.product << result.serialNumber << result.firmwareVersion; } }); } KebaDiscovery::~KebaDiscovery() { qCDebug(dcKeba()) << "Discovery: Destructing"; } void KebaDiscovery::startDiscovery() { // Clean up cleanup(); qCInfo(dcKeba()) << "Discovery: Start searching for Keba wallboxes in the network..."; NetworkDeviceDiscoveryReply *discoveryReply = m_networkDeviceDiscovery->discover(); // Check any already discovered infos.. foreach (const NetworkDeviceInfo &networkDeviceInfo, discoveryReply->networkDeviceInfos()) { sendReportRequest(networkDeviceInfo); } // Imedialty check any new device gets discovered connect(discoveryReply, &NetworkDeviceDiscoveryReply::networkDeviceInfoAdded, this, &KebaDiscovery::sendReportRequest); // Check what might be left on finished connect(discoveryReply, &NetworkDeviceDiscoveryReply::finished, discoveryReply, &NetworkDeviceDiscoveryReply::deleteLater); connect(discoveryReply, &NetworkDeviceDiscoveryReply::finished, this, [=](){ qCDebug(dcKeba()) << "Discovery: Network discovery finished. Found" << discoveryReply->networkDeviceInfos().count() << "network devices"; m_networkDeviceInfos = discoveryReply->networkDeviceInfos(); qCDebug(dcKeba()) << "Discovery: Network discovery finished. Start finishing discovery..."; // Send a report request to nework device info not sent already... foreach (const NetworkDeviceInfo &networkDeviceInfo, m_networkDeviceInfos) { if (!m_verifiedNetworkDeviceInfos.contains(networkDeviceInfo)) { sendReportRequest(networkDeviceInfo); } } m_responseTimer.start(); }); } QList KebaDiscovery::discoveryResults() const { return m_results; } bool KebaDiscovery::alreadyDiscovered(const QHostAddress &address) { foreach (const KebaDiscoveryResult &result, m_results) { if (result.networkDeviceInfo.address() == address) { return true; } } return false; } void KebaDiscovery::cleanup() { m_networkDeviceInfos.clear(); m_verifiedNetworkDeviceInfos.clear(); m_results.clear(); } void KebaDiscovery::sendReportRequest(const NetworkDeviceInfo &networkDeviceInfo) { m_verifiedNetworkDeviceInfos.append(networkDeviceInfo); m_kebaDataLayer->write(networkDeviceInfo.address(), QByteArray("report 1\n")); }