forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset_device.cpp
302 lines (260 loc) · 9.98 KB
/
reset_device.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/*
* Copyright (c) 2016 dresden elektronik ingenieurtechnik gmbh.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
*/
#include "de_web_plugin_private.h"
#define CHECK_RESET_DEVICES 3000
#define WAIT_CONFIRM 2000
#define WAIT_INDICATION 5000
/*! Init the reset device api
*/
void DeRestPluginPrivate::initResetDeviceApi()
{
resetDeviceTimer = new QTimer(this);
resetDeviceTimer->setSingleShot(true);
connect(resetDeviceTimer, SIGNAL(timeout()),
this, SLOT(resetDeviceTimerFired()));
zdpResetSeq = 0;
lastNodeAddressExt = 0;
resetDeviceState = ResetIdle;
resetDeviceTimer->start(CHECK_RESET_DEVICES);
}
/*! Check all light nodes if they need to be reseted.
*/
void DeRestPluginPrivate::checkResetState()
{
if (!isInNetwork())
{
resetDeviceTimer->start(CHECK_RESET_DEVICES);
return;
}
std::vector<LightNode>::iterator i = nodes.begin();
std::vector<LightNode>::iterator end = nodes.end();
for (; i != end; ++i)
{
if (i->isAvailable() /* && i->state() == LightNode::StateDeleted */ && i->resetRetryCount() > 0)
{
uint8_t retryCount = i->resetRetryCount();
retryCount--;
i->setResetRetryCount(retryCount);
DBG_Printf(DBG_INFO, "reset device retries: %i\n", retryCount);
if (retryCount > 0 && i->address().ext() != lastNodeAddressExt) // prefer unhandled nodes
{
// send mgmt_leave_request
DBG_Assert(apsCtrl != 0);
if (apsCtrl)
{
lastNodeAddressExt = i->address().ext();
zdpResetSeq += 1;
i->setZdpResetSeq(zdpResetSeq);
deCONZ::ApsDataRequest req;
req.setTxOptions(0);
req.setDstEndpoint(ZDO_ENDPOINT);
req.setDstAddressMode(deCONZ::ApsExtAddress);
req.dstAddress().setExt(i->address().ext());
req.setProfileId(ZDP_PROFILE_ID);
req.setClusterId(ZDP_MGMT_LEAVE_REQ_CLID);
req.setSrcEndpoint(ZDO_ENDPOINT);
req.setRadius(0);
QDataStream stream(&req.asdu(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
stream << zdpResetSeq; // seq no.
stream << (quint64)i->address().ext(); // device address
uint8_t flags = 0;
// flags |= 1; // rejoin
// flags |= 2; // remove children
stream << flags; // flags
if (apsCtrl->apsdeDataRequest(req) == deCONZ::Success)
{
resetDeviceApsRequestId = req.id();
resetDeviceState = ResetWaitConfirm;
resetDeviceTimer->start(WAIT_CONFIRM);
DBG_Printf(DBG_INFO, "reset device apsdeDataRequest success\n");
return;
}
else
{
DBG_Printf(DBG_ERROR, "can't send reset device apsdeDataRequest\n");
}
}
}
}
lastNodeAddressExt = 0;
}
std::vector<Sensor>::iterator si = sensors.begin();
std::vector<Sensor>::iterator si_end = sensors.end();
for (; si != si_end; ++si)
{
if (si->isAvailable() && si->resetRetryCount() > 0 && si->node())
{
if (si->node()->isEndDevice())
{
// not supported yet
continue;
}
uint8_t retryCount = si->resetRetryCount();
retryCount--;
si->setResetRetryCount(retryCount);
DBG_Printf(DBG_INFO, "reset device retries: %i\n", retryCount);
if (retryCount > 0 && si->address().ext() != lastNodeAddressExt) // prefer unhandled nodes
{
// send mgmt_leave_request
DBG_Assert(apsCtrl != 0);
if (apsCtrl)
{
lastNodeAddressExt = si->address().ext();
zdpResetSeq += 1;
si->setZdpResetSeq(zdpResetSeq);
deCONZ::ApsDataRequest req;
req.setTxOptions(0);
req.setDstEndpoint(ZDO_ENDPOINT);
req.setDstAddressMode(deCONZ::ApsExtAddress);
req.dstAddress().setExt(si->address().ext());
req.setProfileId(ZDP_PROFILE_ID);
req.setClusterId(ZDP_MGMT_LEAVE_REQ_CLID);
req.setSrcEndpoint(ZDO_ENDPOINT);
req.setRadius(0);
QDataStream stream(&req.asdu(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
stream << zdpResetSeq; // seq no.
stream << (quint64)si->address().ext(); // device address
uint8_t flags = 0;
// flags |= 1; // rejoin
// flags |= 2; // remove children
stream << flags; // flags
if (apsCtrl->apsdeDataRequest(req) == deCONZ::Success)
{
resetDeviceApsRequestId = req.id();
resetDeviceState = ResetWaitConfirm;
resetDeviceTimer->start(WAIT_CONFIRM);
DBG_Printf(DBG_INFO, "reset device apsdeDataRequest success\n");
return;
}
else
{
DBG_Printf(DBG_ERROR, "can't send reset device apsdeDataRequest\n");
}
}
}
}
lastNodeAddressExt = 0;
}
resetDeviceState = ResetIdle;
resetDeviceTimer->start(CHECK_RESET_DEVICES);
return;
}
/*! Handle confirmation of ZDP reset device request.
\param success true on success
*/
void DeRestPluginPrivate::resetDeviceSendConfirm(bool success)
{
if (resetDeviceState == ResetWaitConfirm)
{
resetDeviceTimer->stop();
if (success)
{
resetDeviceState = ResetWaitIndication;
resetDeviceTimer->start(WAIT_INDICATION);
}
else
{
resetDeviceState = ResetIdle;
DBG_Printf(DBG_INFO, "reset device apsdeDataConfirm fail\n");
resetDeviceTimer->start(CHECK_RESET_DEVICES);
}
}
}
/*! Handle mgmt leave response.
\param ind a ZDP MgmtLeave_rsp
*/
void DeRestPluginPrivate::handleMgmtLeaveRspIndication(const deCONZ::ApsDataIndication &ind)
{
if (resetDeviceState == ResetWaitIndication)
{
if (ind.asdu().size() < 2)
{
// at least seq number and status
return;
}
RestNodeBase *node = getLightNodeForAddress(ind.srcAddress());
if (!node)
{
node = getSensorNodeForAddress(ind.srcAddress());
}
if (!node)
{
return;
}
resetDeviceTimer->stop();
QDataStream stream(ind.asdu());
stream.setByteOrder(QDataStream::LittleEndian);
quint8 seqNo;
quint8 status;
stream >> seqNo; // use SeqNo ?
stream >> status;
DBG_Printf(DBG_INFO, "MgmtLeave_rsp %s seq: %u, status 0x%02X \n", qPrintable(node->address().toStringExt()), seqNo, status);
if (status == deCONZ::ZdpSuccess || status == deCONZ::ZdpNotSupported)
{
// set retryCount and isAvailable for all endpoints of that device
std::vector<LightNode>::iterator i;
std::vector<LightNode>::iterator end = nodes.end();
for (i = nodes.begin(); i != end; ++i)
{
if ((ind.srcAddress().hasExt() && i->address().ext() == ind.srcAddress().ext()) ||
(ind.srcAddress().hasNwk() && i->address().nwk() == ind.srcAddress().nwk()))
{
i->setResetRetryCount(0);
i->item(RStateReachable)->setValue(false);
}
}
std::vector<Sensor>::iterator s;
std::vector<Sensor>::iterator send = sensors.end();
for (s = sensors.begin(); s != send; ++s)
{
if ((ind.srcAddress().hasExt() && s->address().ext() == ind.srcAddress().ext()) ||
(ind.srcAddress().hasNwk() && s->address().nwk() == ind.srcAddress().nwk()))
{
s->setResetRetryCount(0);
s->item(RConfigReachable)->setValue(false);
}
}
}
resetDeviceState = ResetIdle;
resetDeviceTimer->start(CHECK_RESET_DEVICES);
}
}
/*! Starts a delayed action based on current delete device state.
*/
void DeRestPluginPrivate::resetDeviceTimerFired()
{
switch (resetDeviceState)
{
case ResetIdle:
{
checkResetState();
}
break;
case ResetWaitConfirm:
{
DBG_Printf(DBG_INFO, "reset device wait for confirm timeout.\n");
resetDeviceState = ResetIdle;
resetDeviceTimer->start(CHECK_RESET_DEVICES);
}
break;
case ResetWaitIndication:
{
DBG_Printf(DBG_INFO, "reset device wait for indication timeout.\n");
resetDeviceState = ResetIdle;
resetDeviceTimer->start(CHECK_RESET_DEVICES);
}
break;
default:
DBG_Printf(DBG_INFO, "deleteDeviceTimerFired() unhandled state %d\n", resetDeviceState);
break;
}
}