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.
2022-08-26 00:28:56 +02:00

117 lines
6.0 KiB
C++

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2022, 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 General Public License Usage
* Alternatively, this project may be redistributed and/or modified under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, GNU 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 General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* this project. If not, see <https://www.gnu.org/licenses/>.
*
* 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 "zwavenode.h"
#include <QDebug>
ZWaveNode::ZWaveNode(QObject *parent):
QObject{parent}
{
}
QDebug operator<<(QDebug debug, ZWaveNode *node)
{
debug.nospace().noquote() << "\nNode ID: " << node->nodeId() << (node->name().isEmpty() ? "" : ", " + node->name()) << " Z-Wave Version: " << node->version() << (node->isZWavePlusDevice() ? "+" : "") << "\n"
<< "├ Type: " << node->nodeType() << "\n"
<< "├ Role: " << node->role() << "\n"
<< "├ DeviceType: " << node->deviceType() << ", Plus DeviceType: " << node->plusDeviceType() << "\n"
<< "├ Manufacturer: " << node->manufacturerName() << " (" << QString("0x%1").arg(node->manufacturerId(), 4, 16, QChar('0')) << ")\n"
<< "├ Product: " << node->productName() << " (" << QString("0x%1").arg(node->productId(), 4, 16, QChar('0')) << "), Product type: " << QString("0x%1").arg(node->productType(), 4, 16, QChar('0')) << "\n";
QMap<int,QList<ZWaveValue>> byInstance;
foreach (const ZWaveValue &value, node->values()) {
byInstance[value.instance()].append(value);
}
for (int i = 0; i < byInstance.count(); i++) {
int instance = byInstance.keys().at(i);
bool isLastInstance = i == byInstance.count() - 1;
if (isLastInstance) {
debug.nospace().noquote() << "└ Instance: " << instance << "\n";
} else {
debug.nospace().noquote() << "├ Instance: " << instance << "\n";
}
QMap<ZWaveValue::Genre, QList<ZWaveValue>> byGenre;
foreach (const ZWaveValue &value, byInstance[instance]) {
byGenre[value.genre()].append(value);
}
QString instancePrefix = (isLastInstance ? " " : "");
for (int j = 0; j < byGenre.count(); j++) {
ZWaveValue::Genre genre = byGenre.keys().at(j);
bool isLastGenre = j == byGenre.count() - 1;
if (isLastGenre) {
debug.nospace().noquote() << instancePrefix << "" << genre << "\n";
} else {
debug.nospace().noquote() << instancePrefix << "" << genre << "\n";
}
QList<ZWaveValue> sorted = byGenre[genre];
std::sort(sorted.begin(), sorted.end(), [](const ZWaveValue &left, const ZWaveValue &right){
return left.index() < right.index();
});
QString genrePrefix = instancePrefix + (isLastGenre ? " " : "");
for (int k = 0; k < sorted.count(); k++) {
const ZWaveValue &value = sorted.at(k);
bool isLastIndex = k == sorted.count() - 1;
if (isLastIndex) {
debug.nospace().noquote() << genrePrefix << "└ Index: " << value.index() << ", ID: " << value.id() << "\n";
} else {
debug.nospace().noquote() << genrePrefix << "├ Index: " << value.index() << ", ID: " << value.id() << "\n";
}
QString indexPrefix = genrePrefix + (isLastIndex ? " " : "");
debug.nospace().noquote() << indexPrefix << "├ Types: " << value.type() << ", " << value.commandClass() << "\n";
if (value.type() == ZWaveValue::TypeList) {
debug.nospace().noquote() << indexPrefix << "├ Value: " << value.value().toStringList() << "\n";
debug.nospace().noquote() << indexPrefix << "│ └ Selection: " << value.valueListSelection() << " (" << value.value().toList().at(value.valueListSelection()).toString() << ")\n";
} else {
debug.nospace().noquote() << indexPrefix << "├ Value: " << value.value().toString() << "\n";
}
QStringList descriptionLines = value.description().trimmed().split("\n");
for (int l = 0; l < descriptionLines.count(); l++) {
bool isFirstDescription = l == 0;
bool isLastDescription = l == descriptionLines.count() - 1;
QString line = descriptionLines.at(l);
if (isFirstDescription) {
debug.nospace().noquote() << indexPrefix << "└ Description: " << line.trimmed() << "\n";
} else if (isLastDescription) {
debug.nospace().noquote() << indexPrefix << "" << line.trimmed() << "\n";
} else {
debug.nospace().noquote() << indexPrefix << "" << line.trimmed() << "\n";
}
}
}
}
}
return debug;
}