nymea-zigbee/libnymea-zigbee/backends/nxp/zigbeebridgecontrollernxp.h

140 lines
5.6 KiB
C++

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* Copyright 2013 - 2020, nymea GmbH
* Contact: contact@nymea.io
*
* This file is part of nymea-zigbee.
* 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 <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
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef ZIGBEEBRIDGECONTROLLERNXP_H
#define ZIGBEEBRIDGECONTROLLERNXP_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 "firmwareupdatehandlernxp.h"
#include "interface/zigbeeinterfacenxp.h"
#include "interface/zigbeeinterfacenxpreply.h"
class ZigbeeBridgeControllerNxp : public ZigbeeBridgeController
{
Q_OBJECT
friend class ZigbeeNetworkNxp;
public:
explicit ZigbeeBridgeControllerNxp(QObject *parent = nullptr);
~ZigbeeBridgeControllerNxp() override;
enum ControllerState {
ControllerStateRunning = 0x00,
ControllerStateBooting = 0x01,
ControllerStateStarting = 0x02,
ControllerStateRunningUninitialized = 0x03,
ControllerStateNotRunning = 0x04
};
Q_ENUM(ControllerState)
enum SecurityMode {
SecurityModeUnsecure = 0x00,
SecurityModeSecure = 0x01,
SecurityModeSecureNwk = 0x02,
SecurityModeExtendedNonde = 0x10,
SecurityModeWildProfile = 0x20
};
Q_ENUM(SecurityMode)
ControllerState controllerState() const;
void refreshControllerState();
// Controllere requests
ZigbeeInterfaceNxpReply *requestVersion();
ZigbeeInterfaceNxpReply *requestControllerState();
ZigbeeInterfaceNxpReply *requestSoftResetController();
ZigbeeInterfaceNxpReply *requestFactoryResetController();
// Configure network
ZigbeeInterfaceNxpReply *requestSetPanId(quint64 panId);
ZigbeeInterfaceNxpReply *requestSetChannelMask(quint32 channelMask);
ZigbeeInterfaceNxpReply *requestSetSecurityKey(Nxp::KeyType keyType, const ZigbeeNetworkKey &key);
// Network commands
ZigbeeInterfaceNxpReply *requestStartNetwork();
ZigbeeInterfaceNxpReply *requestNetworkState();
ZigbeeInterfaceNxpReply *requestSetPermitJoinCoordinator(quint8 duration);
// APS
ZigbeeInterfaceNxpReply *requestSendRequest(const ZigbeeNetworkRequest &request);
bool updateAvailable(const QString &currentVersion) override;
QString updateFirmwareVersion() const override;
void startFirmwareUpdate() override;
void startFactoryResetUpdate() override;
signals:
void controllerStateChanged(ControllerState controllerState);
void interfaceNotificationReceived(Nxp::Notification notification, const QByteArray &data);
void nodeLeft(const ZigbeeAddress &address, bool rejoining);
private:
ZigbeeInterfaceNxp *m_interface = nullptr;
FirmwareUpdateHandlerNxp *m_firmwareUpdateHandler = nullptr;
QString m_serialPort;
qint32 m_baudrate;
ControllerState m_controllerState = ControllerStateNotRunning;
quint8 m_sequenceNumber = 0;
ZigbeeInterfaceNxpReply *m_currentReply = nullptr;
QQueue<ZigbeeInterfaceNxpReply *> m_replyQueue;
ZigbeeInterfaceNxpReply *createReply(Nxp::Command command, quint8 sequenceNumber, const QString &requestName, const QByteArray &requestData, QObject *parent);
void bumpSequenceNumber();
ZigbeeInterfaceNxpReply *requestEnqueueSendDataGroup(quint8 requestId, quint16 groupAddress, quint16 profileId, quint16 clusterId, quint8 sourceEndpoint, const QByteArray &asdu, Zigbee::ZigbeeTxOptions txOptions, quint8 radius = 0);
ZigbeeInterfaceNxpReply *requestEnqueueSendDataShortAddress(quint8 requestId, quint16 shortAddress, quint8 destinationEndpoint, quint16 profileId, quint16 clusterId, quint8 sourceEndpoint, const QByteArray &asdu, Zigbee::ZigbeeTxOptions txOptions, quint8 radius = 0);
ZigbeeInterfaceNxpReply *requestEnqueueSendDataIeeeAddress(quint8 requestId, ZigbeeAddress ieeeAddress, quint8 destinationEndpoint, quint16 profileId, quint16 clusterId, quint8 sourceEndpoint, const QByteArray &asdu, Zigbee::ZigbeeTxOptions txOptions, quint8 radius = 0);
protected:
void initializeUpdateProvider() override;
private slots:
void onInterfaceAvailableChanged(bool available);
void onInterfacePackageReceived(const QByteArray &package);
void sendNextRequest();
public slots:
bool enable(const QString &serialPort, qint32 baudrate);
void disable();
};
#endif // ZIGBEEBRIDGECONTROLLERNXP_H