forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poll_manager.cpp
564 lines (506 loc) · 17.3 KB
/
poll_manager.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
/*
* Copyright (c) 2017-2018 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 "poll_manager.h"
#include "de_web_plugin_private.h"
/*! Constructor.
*/
PollManager::PollManager(QObject *parent) :
QObject(parent)
{
pollState = StateIdle;
timer = new QTimer(this);
timer->setSingleShot(true);
connect(timer, SIGNAL(timeout()), this, SLOT(pollTimerFired()));
plugin = qobject_cast<DeRestPluginPrivate*>(parent);
}
/*! Queues polling of the node.
\param restNode - the node to poll
*/
void PollManager::poll(RestNodeBase *restNode, const QDateTime &tStart)
{
Resource *r = dynamic_cast<Resource*>(restNode);
DBG_Assert(r);
if (!r || !restNode->node())
{
return;
}
DBG_Assert(!hasItems());
PollItem pitem;
if (!restNode->node()->nodeDescriptor().receiverOnWhenIdle())
{
return;
}
LightNode *lightNode = nullptr;
Sensor *sensor = nullptr;
if (r->prefix() == RLights)
{
lightNode = dynamic_cast<LightNode*>(restNode);
DBG_Assert(lightNode);
if (!lightNode || lightNode->state() != LightNode::StateNormal)
{
return;
}
pitem.endpoint = lightNode->haEndpoint().endpoint();
DBG_Printf(DBG_INFO_L2, "Poll light node %s\n", qPrintable(lightNode->name()));
}
else if (r->prefix() == RSensors)
{
sensor = dynamic_cast<Sensor*>(restNode);
DBG_Assert(sensor);
if (!sensor || sensor->deletedState() != Sensor::StateNormal)
{
return;
}
pitem.endpoint = sensor->fingerPrint().endpoint;
DBG_Printf(DBG_INFO_L2, "Poll %s sensor node %s\n", qPrintable(sensor->type()), qPrintable(sensor->name()));
}
else
{
return;
}
pitem.id = restNode->id();
pitem.prefix = r->prefix();
pitem.address = restNode->address();
pitem.tStart = tStart;
for (int i = 0; i < r->itemCount(); i++)
{
const ResourceItem *item = r->itemForIndex(i);
const char *suffix = item ? item->descriptor().suffix : nullptr;
if (plugin->permitJoinFlag)
{
// limit queries during joining
if (suffix == RAttrModelId || suffix == RAttrSwVersion)
{
pitem.items.push_back(suffix);
}
}
else if (suffix == RStateOn ||
suffix == RStateBri ||
suffix == RStateColorMode ||
(suffix == RStateConsumption && sensor && sensor->type() == QLatin1String("ZHAConsumption")) ||
(suffix == RStatePower && sensor && sensor->type() == QLatin1String("ZHAPower")) ||
(suffix == RStatePresence && sensor && sensor->type() == QLatin1String("ZHAPresence")) ||
(suffix == RStateLightLevel && sensor && sensor->type() == QLatin1String("ZHALightLevel")) ||
suffix == RAttrModelId ||
suffix == RAttrSwVersion)
{
// DBG_Printf(DBG_INFO_L2, " attribute %s\n", suffix);
pitem.items.push_back(suffix);
}
}
for (PollItem &i : items)
{
if (i.prefix == r->prefix() && i.id == restNode->id())
{
i.items = pitem.items; // update
if (tStart.isValid())
{
i.tStart = tStart;
}
return;
}
}
items.push_back(pitem);
if (!timer->isActive())
{
timer->start(100);
}
}
/*! Delays polling for \p ms milliseconds.
*/
void PollManager::delay(int ms)
{
timer->stop();
timer->start(ms);
}
/*! Handle APS confirm if related to polling.
*/
void PollManager::apsdeDataConfirm(const deCONZ::ApsDataConfirm &conf)
{
if (pollState != StateWait)
{
return;
}
if (apsReqId != conf.id())
{
return;
}
if (dstAddr.hasExt() && conf.dstAddress().hasExt()
&& dstAddr.ext() != conf.dstAddress().ext())
{
}
else if (dstAddr.hasNwk() && conf.dstAddress().hasNwk()
&& dstAddr.nwk() != conf.dstAddress().nwk())
{
}
DBG_Printf(DBG_INFO_L2, "Poll APS confirm %u status: 0x%02X\n", conf.id(), conf.status());
if (!items.empty() && conf.status() != deCONZ::ApsSuccessStatus)
{
PollItem &pitem = items.front();
for (auto &i : pitem.items)
{
if (i)
{
DBG_Printf(DBG_INFO_L2, "\t drop item %s\n", i);
i = nullptr; // clear
}
}
}
pollState = StateIdle;
timer->stop();
timer->start(1);
}
/*! Timer callback to proceed polling.
*/
void PollManager::pollTimerFired()
{
if (pollState == StateDone)
{
pollState = StateIdle;
timer->start(50);
emit done();
return;
}
if (pollState == StateWait)
{
DBG_Printf(DBG_INFO, "timeout on poll APS confirm\n");
pollState = StateIdle;
}
DBG_Assert(pollState == StateIdle);
if (items.empty())
{
pollState = StateDone;
timer->start(500);
return;
}
QDateTime now = QDateTime::currentDateTime();
PollItem &pitem = items.front();
Resource *r = plugin->getResource(pitem.prefix, pitem.id);
ResourceItem *item = nullptr;
RestNodeBase *restNode = nullptr;
const LightNode *lightNode = nullptr;
if (r && r->prefix() == RLights)
{
restNode = plugin->getLightNodeForId(pitem.id);
lightNode = dynamic_cast<LightNode*>(restNode);
item = r->item(RStateReachable);
}
else if (r && r->prefix() == RSensors)
{
restNode = plugin->getSensorNodeForId(pitem.id);
item = r->item(RConfigReachable);
}
if (pitem.tStart.isValid() && pitem.tStart > now)
{
if (items.size() > 1)
{
PollItem tmp = pitem;
items.front() = items.back();
items.back() = tmp;
}
timer->start(1);
return;
}
if (!r || pitem.items.empty() ||
!restNode ||
//!restNode->lastRx().isValid() ||
!item || !item->toBool()) // not reachable
{
items.front() = items.back();
items.pop_back();
timer->start(1);
return;
}
//const auto dtReachable = item->lastSet().secsTo(now);
quint16 clusterId = 0xffff; // invalid
std::vector<quint16> attributes;
item = r->item(RStateOn);
bool isOn = item ? item->toBool() : false;
const char *&suffix = pitem.items[0];
for (size_t i = 0; pitem.items[0] == nullptr && i < pitem.items.size(); i++)
{
if (pitem.items[i] != nullptr)
{
pitem.items[0] = pitem.items[i]; // move to front
pitem.items[i] = nullptr; // clear
break;
}
}
if (!suffix)
{
pitem.items.clear(); // all done
}
if (suffix == RStateOn)
{
if (lightNode && lightNode->manufacturerCode() != VENDOR_XIAOMI) // reports
{
clusterId = ONOFF_CLUSTER_ID;
attributes.push_back(0x0000); // onOff
}
}
else if (suffix == RStateBri && isOn)
{
NodeValue &val = restNode->getZclValue(LEVEL_CLUSTER_ID, 0x0000);
if (isOn || !val.timestamp.isValid())
{
clusterId = LEVEL_CLUSTER_ID;
attributes.push_back(0x0000); // current level
}
}
else if (suffix == RStateColorMode && lightNode)
{
clusterId = COLOR_CLUSTER_ID;
item = r->item(RConfigColorCapabilities);
if ((!item || item->toNumber() <= 0) && (lightNode->haEndpoint().profileId() == ZLL_PROFILE_ID || lightNode->manufacturerCode() == VENDOR_XIAOMI || lightNode->manufacturerCode() == VENDOR_MUELLER || lightNode->manufacturerCode() == VENDOR_XAL || lightNode->manufacturerCode() == VENDOR_LEDVANCE))
{
if (item && lightNode->modelId() == QLatin1String("lumi.light.aqcn02"))
{
item->setValue(0x0010); // color capabilities are not supported, set here
}
attributes.push_back(0x0008); // color mode
attributes.push_back(0x4001); // enhanced color mode
attributes.push_back(0x400a); // color capabilities
attributes.push_back(0x400b); // color temperature min
attributes.push_back(0x400c); // color temperature max
}
else
{
quint16 cap = item ? static_cast<quint16>(item->toNumber()) : 0;
std::vector<quint16> toCheck;
if (cap == 0 && lightNode->haEndpoint().profileId() == HA_PROFILE_ID)
{
// e.g. OSRAM US version
// DEV_ID_HA_COLOR_DIMMABLE_LIGHT
cap = (0x0001 | 0x0008 | 0x0010); // hue, saturation, color mode, xy, ct
}
toCheck.push_back(0x0008); // color mode
toCheck.push_back(0x4001); // enhanced color mode
// if reading 0x400x attributes fail with response 0x86 they will be marked
// as not available and will be ignored in further poll cycles
if (cap & 0x0002) // enhanced hue supported
{
toCheck.push_back(0x4000); // enhanced hue
toCheck.push_back(0x0001); // saturation
}
else if (cap & 0x0001)
{
toCheck.push_back(0x0000); // hue
toCheck.push_back(0x0001); // saturation
}
if (cap & 0x0004)
{
toCheck.push_back(0x4002); // Color loop active
}
if (cap & 0x0008)
{
toCheck.push_back(0x0003); // currentX
toCheck.push_back(0x0004); // currentY
}
if (cap & 0x0010)
{
toCheck.push_back(0x0007); // color temperature
}
for (const deCONZ::ZclCluster &cl : lightNode->haEndpoint().inClusters())
{
if (cl.id() != COLOR_CLUSTER_ID)
{
continue;
}
for (const deCONZ::ZclAttribute &attr : cl.attributes())
{
for (quint16 attrId : toCheck)
{
// discard attributes which are not be available
if (attrId == attr.id() && attr.isAvailable())
{
NodeValue &val = restNode->getZclValue(clusterId, attrId);
if (isOn || !val.timestamp.isValid())
{
attributes.push_back(attrId);
}
}
}
}
break;
}
}
}
else if (suffix == RStatePresence)
{
clusterId = OCCUPANCY_SENSING_CLUSTER_ID;
attributes.push_back(0x0000); // Occupancy
attributes.push_back(0x0010); // PIR Occupied To Unoccupied Delay
}
else if (suffix == RStateLightLevel)
{
clusterId = ILLUMINANCE_MEASUREMENT_CLUSTER_ID;
attributes.push_back(0x0000); // Measured Value
}
else if (suffix == RStateConsumption)
{
clusterId = METERING_CLUSTER_ID;
attributes.push_back(0x0000); // Current Summation Delivered
item = r->item(RAttrModelId);
if (!item->toString().startsWith(QLatin1String("SP 120")) && // Attribute is not available
!item->toString().startsWith(QLatin1String("lumi.plug.ma")) &&
!item->toString().startsWith(QLatin1String("ZB-ONOFFPlug-D0005")) &&
!item->toString().startsWith(QLatin1String("TS0121")) &&
!item->toString().startsWith(QLatin1String("BQZ10-AU")) &&
!item->toString().startsWith(QLatin1String("ROB_200")) &&
item->toString() != QLatin1String("Plug-230V-ZB3.0"))
{
attributes.push_back(0x0400); // Instantaneous Demand
}
}
else if (suffix == RStatePower)
{
bool NotOnlyPower = true;
clusterId = ELECTRICAL_MEASUREMENT_CLUSTER_ID;
attributes.push_back(0x050b); // Active Power
item = r->item(RAttrModelId);
if (!item->toString().startsWith(QLatin1String("Plug"))) //Osram plug
{
NotOnlyPower = false;
}
item = r->item(RAttrManufacturerName);
if (!item->toString().startsWith(QLatin1String("Legrand"))) // All legrand Devices
{
NotOnlyPower = false;
}
if (NotOnlyPower)
{
attributes.push_back(0x0505); // RMS Voltage
attributes.push_back(0x0508); // RMS Current
}
}
else if (suffix == RAttrModelId)
{
item = r->item(RAttrModelId);
if (item && (item->toString().isEmpty() || item->toString() == QLatin1String("unknown") ||
(item->lastSet().secsTo(now) > READ_MODEL_ID_INTERVAL && item->toString().startsWith("FLS-A")) // dynamic model ids
))
{
clusterId = BASIC_CLUSTER_ID;
//attributes.push_back(0x0004); // manufacturer
attributes.push_back(0x0005); // model id
}
}
else if (suffix == RAttrSwVersion && lightNode)
{
item = r->item(RAttrSwVersion);
if (item && (item->toString().isEmpty() ||
(item->lastSet().secsTo(now) > READ_SWBUILD_ID_INTERVAL))) // dynamic
{
if (lightNode->manufacturerCode() == VENDOR_UBISYS ||
lightNode->manufacturerCode() == VENDOR_EMBER ||
lightNode->manufacturerCode() == VENDOR_HEIMAN ||
lightNode->manufacturerCode() == VENDOR_XIAOMI ||
lightNode->manufacturerCode() == VENDOR_DEVELCO ||
lightNode->manufacturer().startsWith(QLatin1String("Climax")) ||
lightNode->manufacturer() == QLatin1String("SZ"))
{
if (item->toString().isEmpty())
{
attributes.push_back(0x0006); // date code
clusterId = BASIC_CLUSTER_ID;
}
}
else
{
if (item->toString().isEmpty() ||
lightNode->manufacturerCode() == VENDOR_XAL ||
lightNode->manufacturerCode() == VENDOR_DDEL)
{
attributes.push_back(0x4000); // sw build id
clusterId = BASIC_CLUSTER_ID;
}
}
}
}
size_t fresh = 0;
const int reportWaitTime = 360;
const int reportWaitTimeXAL = 60 * 30;
for (quint16 attrId : attributes)
{
// force polling after node becomes reachable, since reporting might not be active
// if (dtReachable < reportWaitTime)
// {
// break;
// }
NodeValue &val = restNode->getZclValue(clusterId, attrId);
if (lightNode && lightNode->manufacturerCode() == VENDOR_IKEA && val.timestamp.isValid())
{
fresh++; // rely on reporting for ikea lights
}
else if (val.timestampLastReport.isValid() && val.timestampLastReport.secsTo(now) < reportWaitTime)
{
fresh++;
}
else if (lightNode && lightNode->manufacturerCode() == VENDOR_XAL && val.timestamp.isValid() && val.timestamp.secsTo(now) < reportWaitTimeXAL)
{
fresh++; // rely on reporting for XAL lights
}
}
// check that cluster exists on endpoint
if (clusterId != 0xffff)
{
bool found = false;
deCONZ::SimpleDescriptor sd;
if (restNode->node()->copySimpleDescriptor(pitem.endpoint, &sd) == 0)
{
for (const auto &cl : sd.inClusters())
{
if (cl.id() == clusterId)
{
found = true;
break;
}
}
}
if (!found)
{
DBG_Printf(DBG_INFO_L2, "Poll APS request to 0x%016llX cluster: 0x%04X dropped, cluster doesn't exist\n", pitem.address.ext(), clusterId);
clusterId = 0xffff;
}
}
if (clusterId != 0xffff && fresh > 0 && fresh == attributes.size())
{
DBG_Printf(DBG_INFO_L2, "Poll APS request to 0x%016llX cluster: 0x%04X dropped, values are fresh enough\n", pitem.address.ext(), clusterId);
suffix = nullptr; // clear
timer->start(100);
}
else if (!attributes.empty() && clusterId != 0xffff &&
plugin->readAttributes(restNode, pitem.endpoint, clusterId, attributes))
{
pollState = StateWait;
// TODO this hack to get aps request id
DBG_Assert(plugin->tasks.back().taskType == TaskReadAttributes);
apsReqId = plugin->tasks.back().req.id();
dstAddr = pitem.address;
timer->start(60 * 1000); // wait for confirm
suffix = nullptr; // clear
DBG_Printf(DBG_INFO_L2, "Poll APS request %u to 0x%016llX cluster: 0x%04X\n", apsReqId, dstAddr.ext(), clusterId);
}
else if (suffix)
{
suffix = nullptr; // clear
timer->start(100);
}
else
{
if (clusterId != 0xffff)
{
DBG_Printf(DBG_INFO_L2, "Poll APS request to 0x%016llX cluster: 0x%04X dropped\n", pitem.address.ext(), clusterId);
}
timer->start(100);
items.front() = items.back();
items.pop_back();
}
}