108 lines
3.8 KiB
C++
108 lines
3.8 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 ZIGBEEDEVICEOBJECTREPLY_H
|
|
#define ZIGBEEDEVICEOBJECTREPLY_H
|
|
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
|
|
#include "zigbeedeviceprofile.h"
|
|
#include "zigbeenetworkrequest.h"
|
|
|
|
class ZigbeeDeviceObjectReply : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class ZigbeeDeviceObject;
|
|
|
|
public:
|
|
enum Error {
|
|
ErrorNoError, // All OK, no error occured, the message was transported successfully
|
|
ErrorTimeout, // The request timeouted
|
|
ErrorInterfaceError, // A transport interface error occured. Could not communicate with the hardware.
|
|
ErrorZigbeeApsStatusError, // An APS transport error occured. See zigbeeApsStatus()
|
|
ErrorZigbeeNwkStatusError, // A NWK layer error occured. See zigbeeNwkStatus()
|
|
ErrorZigbeeMacStatusError, // A MAC layer error occured. See zigbeeMacStatus()
|
|
ErrorZigbeeDeviceObjectStatusError, // A ZDP error occured. See zigbeeDeviceObjectStatus()
|
|
ErrorNetworkOffline // The network is offline. Cannot send any requests
|
|
};
|
|
Q_ENUM(Error)
|
|
|
|
Error error() const;
|
|
Zigbee::ZigbeeApsStatus zigbeeApsStatus() const;
|
|
Zigbee::ZigbeeNwkLayerStatus zigbeeNwkStatus() const;
|
|
Zigbee::ZigbeeMacLayerStatus zigbeeMacStatus() const;
|
|
ZigbeeDeviceProfile::Status zigbeeDeviceObjectStatus() const;
|
|
|
|
ZigbeeNetworkRequest request() const;
|
|
quint8 transactionSequenceNumber() const;
|
|
ZigbeeDeviceProfile::ZdoCommand expectedResponse() const;
|
|
|
|
QByteArray responseData() const;
|
|
ZigbeeDeviceProfile::Adpu responseAdpu() const;
|
|
|
|
bool isComplete() const;
|
|
|
|
private:
|
|
explicit ZigbeeDeviceObjectReply(const ZigbeeNetworkRequest &request, QObject *parent = nullptr);
|
|
|
|
Error m_error = ErrorNoError;
|
|
|
|
QTimer m_timeoutTimer;
|
|
|
|
// Request information
|
|
ZigbeeNetworkRequest m_request;
|
|
quint8 m_transactionSequenceNumber = 0;
|
|
|
|
// Transport layer errors
|
|
Zigbee::ZigbeeApsStatus m_zigbeeApsStatus = Zigbee::ZigbeeApsStatusSuccess;
|
|
void setZigbeeApsStatus(Zigbee::ZigbeeApsStatus status);
|
|
|
|
Zigbee::ZigbeeNwkLayerStatus m_zigbeeNwkStatus = Zigbee::ZigbeeNwkLayerStatusSuccess;
|
|
void setZigbeeNwkLayerStatus(Zigbee::ZigbeeNwkLayerStatus status);
|
|
|
|
Zigbee::ZigbeeMacLayerStatus m_zigbeeMacStatus = Zigbee::ZigbeeMacLayerStatusSuccess;
|
|
void setZigbeeMacLayerStatus(Zigbee::ZigbeeMacLayerStatus status);
|
|
|
|
ZigbeeDeviceProfile::Status m_zigbeeDeviceObjectStatus = ZigbeeDeviceProfile::StatusSuccess;
|
|
void setZigbeeDeviceObjectStatus(ZigbeeDeviceProfile::Status status);
|
|
|
|
// ZDP response data
|
|
bool m_apsConfirmReceived = false;
|
|
bool m_zdpIndicationReceived = false;
|
|
ZigbeeDeviceProfile::ZdoCommand m_expectedResponse;
|
|
QByteArray m_responseData;
|
|
ZigbeeDeviceProfile::Adpu m_responseAdpu;
|
|
|
|
signals:
|
|
void finished();
|
|
|
|
};
|
|
|
|
#endif // ZIGBEEDEVICEOBJECTREPLY_H
|