170 lines
6.9 KiB
C++
170 lines
6.9 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* nymea-zigbee
|
|
* Zigbee integration module for nymea
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-zigbee.
|
|
*
|
|
* nymea-zigbee 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-zigbee 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-zigbee. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef ZIGBEEBRIDGECONTROLLERDECONZ_H
|
|
#define ZIGBEEBRIDGECONTROLLERDECONZ_H
|
|
|
|
#include <QHash>
|
|
#include <QTimer>
|
|
#include <QQueue>
|
|
#include <QObject>
|
|
|
|
#include "zigbee.h"
|
|
#include "zigbeeaddress.h"
|
|
#include "zigbeenetworkkey.h"
|
|
#include "zigbeenetworkrequest.h"
|
|
#include "zigbeebridgecontroller.h"
|
|
|
|
#include "interface/deconz.h"
|
|
#include "interface/zigbeeinterfacedeconz.h"
|
|
#include "interface/zigbeeinterfacedeconzreply.h"
|
|
|
|
// This struct describes the current deCONZ network configuration parameters
|
|
typedef struct DeconzNetworkConfiguration {
|
|
ZigbeeAddress ieeeAddress; // R
|
|
quint16 panId = 0; // R
|
|
quint16 shortAddress = 0; // R
|
|
quint64 extendedPanId = 0; // R
|
|
Deconz::NodeType nodeType = Deconz::NodeTypeCoordinator; // RW
|
|
quint32 channelMask = 0; // RW
|
|
quint64 apsExtendedPanId = 0; // RW
|
|
ZigbeeAddress trustCenterAddress; // RW
|
|
Deconz::SecurityMode securityMode = Deconz::SecurityModeNoMasterButTrustCenterKey; // RW
|
|
bool predefinedNetworkPanId; // RW
|
|
ZigbeeNetworkKey networkKey; // RW
|
|
quint8 currentChannel = 0; // R
|
|
quint16 protocolVersion = 0; // R
|
|
quint8 networkUpdateId = 0; // RW
|
|
quint32 watchdogTimeout = 85; // RW
|
|
} DeconzNetworkConfiguration;
|
|
|
|
|
|
// This struct describes the deCONZ device state
|
|
typedef struct DeconzDeviceState {
|
|
Deconz::NetworkState networkState = Deconz::NetworkStateOffline;
|
|
bool apsDataConfirm = false;
|
|
bool apsDataIndication = false;
|
|
bool configurationChanged = false;
|
|
bool apsDataRequestFreeSlots = false;
|
|
} DeconzDeviceState;
|
|
|
|
class ZigbeeBridgeControllerDeconz : public ZigbeeBridgeController
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class ZigbeeNetworkDeconz;
|
|
|
|
public:
|
|
explicit ZigbeeBridgeControllerDeconz(QObject *parent = nullptr);
|
|
~ZigbeeBridgeControllerDeconz() override;
|
|
|
|
DeconzNetworkConfiguration networkConfiguration() const;
|
|
|
|
Deconz::NetworkState networkState() const;
|
|
void rebootController();
|
|
|
|
|
|
// Controllere requests
|
|
ZigbeeInterfaceDeconzReply *requestVersion();
|
|
ZigbeeInterfaceDeconzReply *requestDeviceState();
|
|
ZigbeeInterfaceDeconzReply *requestReadParameter(Deconz::Parameter parameter);
|
|
ZigbeeInterfaceDeconzReply *requestWriteParameter(Deconz::Parameter parameter, const QByteArray &data);
|
|
ZigbeeInterfaceDeconzReply *requestChangeNetworkState(Deconz::NetworkState networkState);
|
|
|
|
// Send APS request data
|
|
ZigbeeInterfaceDeconzReply *requestSendRequest(const ZigbeeNetworkRequest &request);
|
|
|
|
private:
|
|
ZigbeeInterfaceDeconz *m_interface = nullptr;
|
|
quint8 m_sequenceNumber = 0;
|
|
quint32 m_watchdogTimeout = 300;
|
|
int m_watchdogResetTimout = 280;
|
|
|
|
DeconzNetworkConfiguration m_networkConfiguration;
|
|
Deconz::NetworkState m_networkState = Deconz::NetworkStateOffline;
|
|
QTimer *m_watchdogTimer = nullptr;
|
|
|
|
// APS request queue
|
|
bool m_apsFreeSlotsAvailable = true;
|
|
ZigbeeInterfaceDeconzReply *m_currentReply = nullptr;
|
|
ZigbeeInterfaceDeconzReply *m_readConfirmReply = nullptr;
|
|
ZigbeeInterfaceDeconzReply *m_readIndicationReply = nullptr;
|
|
|
|
QQueue<ZigbeeInterfaceDeconzReply *> m_replyQueue;
|
|
|
|
quint8 generateSequenceNumber();
|
|
|
|
ZigbeeInterfaceDeconzReply *createReply(Deconz::Command command, const QString &requestName, const QByteArray &requestData, QObject *parent);
|
|
|
|
// Send data depending on the request destination address mode
|
|
QByteArray buildRequestEnqueueSendDataGroupMessage(quint8 requestId, quint16 groupAddress, quint16 profileId, quint16 clusterId, quint8 sourceEndpoint, const QByteArray &asdu, Zigbee::ZigbeeTxOptions txOptions, quint8 radius = 0);
|
|
ZigbeeInterfaceDeconzReply *requestEnqueueSendDataGroup(quint8 requestId, quint16 groupAddress, quint16 profileId, quint16 clusterId, quint8 sourceEndpoint, const QByteArray &asdu, Zigbee::ZigbeeTxOptions txOptions, quint8 radius = 0);
|
|
ZigbeeInterfaceDeconzReply *requestEnqueueSendDataShortAddress(quint8 requestId, quint16 shortAddress, quint8 destinationEndpoint, quint16 profileId, quint16 clusterId, quint8 sourceEndpoint, const QByteArray &asdu, Zigbee::ZigbeeTxOptions txOptions, quint8 radius = 0);
|
|
ZigbeeInterfaceDeconzReply *requestEnqueueSendDataIeeeAddress(quint8 requestId, ZigbeeAddress ieeeAddress, quint8 destinationEndpoint, quint16 profileId, quint16 clusterId, quint8 sourceEndpoint, const QByteArray &asdu, Zigbee::ZigbeeTxOptions txOptions, quint8 radius = 0);
|
|
|
|
// Receive data
|
|
ZigbeeInterfaceDeconzReply *requestReadReceivedDataIndication(Deconz::SourceAddressMode sourceAddressMode = Deconz::SourceAddressModeShortSourceAddress);
|
|
ZigbeeInterfaceDeconzReply *requestQuerySendDataConfirm();
|
|
|
|
// Note: this method reads all parameters individual. The returned reply it self will not send or receive any data.
|
|
// The data can be fetched from m_networkConfiguration on success.
|
|
ZigbeeInterfaceDeconzReply *readNetworkParameters();
|
|
|
|
// Device state helper
|
|
DeconzDeviceState parseDeviceStateFlag(quint8 deviceStateFlag);
|
|
|
|
void reconnectConrtroller();
|
|
void readDataIndication();
|
|
void readDataConfirm();
|
|
|
|
void processDeviceState(DeconzDeviceState deviceState);
|
|
void processDataIndication(const QByteArray &data);
|
|
void processDataConfirm(const QByteArray &data);
|
|
void processMacPoll(const QByteArray &data);
|
|
void processMacBeacon(const QByteArray &data);
|
|
|
|
signals:
|
|
void networkStateChanged(Deconz::NetworkState networkState);
|
|
void networkConfigurationParameterChanged(const DeconzNetworkConfiguration &networkConfiguration);
|
|
|
|
private slots:
|
|
void onInterfaceAvailableChanged(bool available);
|
|
void onInterfacePackageReceived(const QByteArray &package);
|
|
void resetControllerWatchdog();
|
|
void sendNextRequest();
|
|
|
|
public slots:
|
|
bool enable(const QString &serialPort, qint32 baudrate);
|
|
void disable();
|
|
};
|
|
|
|
QDebug operator<<(QDebug debug, const DeconzDeviceState &deviceState);
|
|
QDebug operator<<(QDebug debug, const DeconzNetworkConfiguration &configuration);
|
|
|
|
|
|
#endif // ZIGBEEBRIDGECONTROLLERDECONZ_H
|