-
Notifications
You must be signed in to change notification settings - Fork 0
/
ias_zone.cpp
785 lines (659 loc) · 27.5 KB
/
ias_zone.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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
/*
* Copyright (c) 2017-2021 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.h"
#include "de_web_plugin_private.h"
// server send
#define CMD_STATUS_CHANGE_NOTIFICATION 0x00
#define CMD_ZONE_ENROLL_REQUEST 0x01
// server receive
#define CMD_ZONE_ENROLL_RESPONSE 0x00
// Zone status flags
#define STATUS_ALARM1 0x0001
#define STATUS_ALARM2 0x0002
#define STATUS_TAMPER 0x0004
#define STATUS_BATTERY 0x0008
#define STATUS_SUPERVISION 0x0010
#define STATUS_RESTORE_REP 0x0020
#define STATUS_TROUBLE 0x0040
#define STATUS_AC_MAINS 0x0080
#define STATUS_TEST 0x0100
#define STATUS_BATTERY_DEFECT 0x0200
// Attributes
#define IAS_ZONE_STATE 0x0000
#define IAS_ZONE_TYPE 0x0001
#define IAS_ZONE_STATUS 0x0002
#define IAS_CIE_ADDRESS 0x0010
#define IAS_ZONE_ID 0x0011
/*
IAS Zone Enrollment is handled in a per device state machine.
The actual state is managed via RConfigEnrolled as state variable.
State timeouts are based on the ResourceItem::lastSet() timestamp.
A IAS device is enrolled if:
1. CIE address written
2. Zone state = 1
3. Both values are verified by read
The state machine ensures all tasks are done and recovers automatically
from any errors which might happen.
The state machine is described in following PlantUML diagram,
and can be displayed with online PlantUML viewer: http://www.plantuml.com/plantuml/uml
*/
/*
@startuml
hide empty description
state Init
state "Read Attributes" as Read
state "Wait Read Response" as WaitRead
state "Write CIE Address" as WriteCieAddr
state "Wait Write Response" as WaitWriteCieAddr
state ReadRsp <<choice>>
state "Delay Enroll" as DelayEnroll
state "Enroll" as Enroll
state "Wait Enroll" as WaitEnroll
[*] --> Init
Init : Mark CIE Address and
Init : Zone State unknown.
Init --> Read
Read : CIE Address
Read : Zone State
Read --> WaitRead : Command Send
Read --> Read
WaitRead --> Init: 8 sec. Timeout\nError
WaitRead --> ReadRsp : Read Attributes\nResponse
ReadRsp --> WriteCieAddr : Invalid CIE Address
ReadRsp --> DelayEnroll : Valid CIE Address\nZone State = 0
ReadRsp --> Enrolled : Valid CIE Address\nZone State = 1
DelayEnroll --> Enroll : After 5 sec. or\nReceiving\nEnroll Request
Enroll --> WaitEnroll : Command Send
Enroll --> Enroll
WaitEnroll --> Read : After 2 sec.
WriteCieAddr --> WaitWriteCieAddr : Command Send
WriteCieAddr --> WriteCieAddr
WaitWriteCieAddr --> Read : Write Attribute\nResponse
WaitWriteCieAddr --> Init: 8 sec. Timeout\nError
Enrolled --> [*]
@enduml
*/
/*! Helper to set IAS device state and print debug information on state changes.
*/
#define IAS_SetState(sensor, item, state) IAS_SetState1(sensor, item, state, #state)
static quint32 IAS_SetState1(const Sensor *sensor, ResourceItem *item, quint32 state, const char *strState)
{
DBG_Assert(item);
if (item->toNumber() != state)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX set state: %s (%u)\n", sensor->address().ext(), strState, state);
item->setValue(state);
}
return state;
}
/*! Sanity function to ensure IAS state variable has a valid value.
A invalid value will be set to IAS_STATE_INIT.
*/
static void IAS_EnsureValidState(ResourceItem *itemIasState)
{
DBG_Assert(itemIasState);
if (itemIasState && itemIasState->toNumber() >= IAS_STATE_MAX)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - invalid state: %u, set to IAS_STATE_INIT\n", itemIasState->toNumber());
itemIasState->setValue(IAS_STATE_INIT);
}
}
/*! Handle packets related to the ZCL IAS Zone cluster.
\param ind - The APS level data indication containing the ZCL packet
\param zclFrame - The actual ZCL frame which holds the IAS zone server command
*/
void DeRestPluginPrivate::handleIasZoneClusterIndication(const deCONZ::ApsDataIndication &ind, deCONZ::ZclFrame &zclFrame)
{
QDataStream stream(zclFrame.payload());
stream.setByteOrder(QDataStream::LittleEndian);
if (!(zclFrame.frameControl() & deCONZ::ZclFCDirectionServerToClient))
{
return;
}
// during setup the IAS Zone type will be read
// start to proceed discovery here
if (searchSensorsState == SearchSensorsActive)
{
if (!fastProbeTimer->isActive())
{
fastProbeTimer->start(5);
}
}
Sensor *sensor = nullptr;
for (auto &s : sensors)
{
if (!(s.address().ext() == ind.srcAddress().ext() &&
s.fingerPrint().endpoint == ind.srcEndpoint() &&
s.fingerPrint().hasInCluster(IAS_ZONE_CLUSTER_ID) &&
s.deletedState() == Sensor::StateNormal))
{
continue;
}
sensor = &s;
}
if (!sensor)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX No IAS sensor found for endpoint: 0x%02X\n", ind.srcAddress().ext(), ind.srcEndpoint());
return;
}
sensor->rx(); // mark rx here so that Read Attributes will work early on
sensor->incrementRxCounter();
ResourceItem *itemIasState = sensor->item(RConfigEnrolled);
ResourceItem *itemPending = sensor->item(RConfigPending);
DBG_Assert(itemIasState);
DBG_Assert(itemPending);
if (!itemIasState || !itemPending)
{
return; // all IAS devices should have this
}
IAS_EnsureValidState(itemIasState);
bool isReadAttr = false;
bool isReporting = false;
bool isWriteResponse = false;
bool isClusterCmd = false;
if (zclFrame.isProfileWideCommand() && zclFrame.commandId() == deCONZ::ZclReadAttributesResponseId)
{
isReadAttr = true;
}
if (zclFrame.isProfileWideCommand() && zclFrame.commandId() == deCONZ::ZclReportAttributesId)
{
isReporting = true;
}
if (zclFrame.isProfileWideCommand() && zclFrame.commandId() == deCONZ::ZclWriteAttributesResponseId)
{
isWriteResponse = true;
}
if ((zclFrame.frameControl() & 0x09) == (deCONZ::ZclFCDirectionServerToClient | deCONZ::ZclFCClusterCommand))
{
isClusterCmd = true;
}
// Read ZCL Reporting and ZCL Read Attributes Response
if (isReadAttr || isReporting)
{
const NodeValue::UpdateType updateType = isReadAttr ? NodeValue::UpdateByZclRead : NodeValue::UpdateByZclReport;
bool configUpdated = false;
bool stateUpdated = false;
if (isReadAttr)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Read attributes response:\n", sensor->address().ext());
}
while (!stream.atEnd())
{
quint16 attrId;
quint8 attrTypeId;
stream >> attrId;
if (isReadAttr)
{
quint8 status;
stream >> status; // Read Attribute Response status
if (status != deCONZ::ZclSuccessStatus)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Read attribute 0x%04X status: 0x%02X\n", sensor->address().ext(), attrId, status);
continue;
}
}
stream >> attrTypeId;
deCONZ::ZclAttribute attr(attrId, attrTypeId, QLatin1String(""), deCONZ::ZclRead, false);
if (!attr.readFromStream(stream))
{
continue;
}
DBG_Assert(stream.status() == QDataStream::Ok);
switch (attrId)
{
case IAS_ZONE_STATE:
{
const quint8 iasZoneState = attr.numericValue().u8;
if (iasZoneState == 1)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX -> IAS Zone State: enrolled.\n", sensor->address().ext());
R_ClearFlags(itemPending, R_PENDING_ENROLL_RESPONSE);
}
else if (iasZoneState == 0)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX -> IAS Zone State: NOT enrolled.\n", sensor->address().ext());
R_SetFlags(itemPending, R_PENDING_ENROLL_RESPONSE);
}
sensor->setZclValue(updateType, ind.srcEndpoint(), IAS_ZONE_CLUSTER_ID, attrId, attr.numericValue());
}
break;
case IAS_ZONE_TYPE:
{
sensor->setZclValue(updateType, ind.srcEndpoint(), IAS_ZONE_CLUSTER_ID, attrId, attr.numericValue());
}
break;
case IAS_ZONE_STATUS:
{
const quint16 zoneStatus = attr.numericValue().u16; // might be reported or received via CMD_STATUS_CHANGE_NOTIFICATION
processIasZoneStatus(sensor, zoneStatus, updateType);
stateUpdated = true;
}
break;
case IAS_CIE_ADDRESS:
{
const quint64 iasCieAddress = attr.numericValue().u64;
if (iasCieAddress != 0 && iasCieAddress != 0xFFFFFFFFFFFFFFFF)
{
DBG_Assert(iasCieAddress == apsCtrl->getParameter(deCONZ::ParamMacAddress));
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX -> IAS CIE address = 0x%016llX: already written.\n", sensor->address().ext(), iasCieAddress);
R_ClearFlags(itemPending, R_PENDING_WRITE_CIE_ADDRESS);
}
else
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX -> IAS CIE address = 0x%016llX: NOT written.\n", sensor->address().ext());
R_SetFlags(itemPending, R_PENDING_WRITE_CIE_ADDRESS);
}
sensor->setZclValue(updateType, ind.srcEndpoint(), IAS_ZONE_CLUSTER_ID, attrId, attr.numericValue());
}
break;
default:
break;
}
}
if (itemIasState->toNumber() == IAS_STATE_WAIT_READ)
{
// Read attributes response, decide next state.
if (R_HasFlags(itemPending, R_PENDING_WRITE_CIE_ADDRESS)) // 1. task to be setup
{
IAS_SetState(sensor, itemIasState, IAS_STATE_WRITE_CIE_ADDR);
}
else if (R_HasFlags(itemPending, R_PENDING_ENROLL_RESPONSE)) // 2. task to be setup
{
IAS_SetState(sensor, itemIasState, IAS_STATE_DELAY_ENROLL);
}
else
{
// Valid CIE Address and Zone State = 1 --> finished
IAS_SetState(sensor, itemIasState, IAS_STATE_ENROLLED);
sensor->setNeedSaveDatabase(true);
}
}
if (stateUpdated)
{
sensor->updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor->id()));
}
if (configUpdated || stateUpdated)
{
updateEtag(sensor->etag);
updateEtag(gwConfigEtag);
sensor->setNeedSaveDatabase(true);
queSaveDb(DB_SENSORS, DB_LONG_SAVE_DELAY);
}
checkIasEnrollmentStatus(sensor);
}
// Read ZCL Cluster Command Response
if (isClusterCmd && zclFrame.commandId() == CMD_STATUS_CHANGE_NOTIFICATION)
{
quint16 zoneStatus;
quint8 extendedStatus;
quint8 zoneId;
quint16 delay;
stream >> zoneStatus;
stream >> extendedStatus; // reserved, set to 0
stream >> zoneId;
stream >> delay;
DBG_Assert(stream.status() == QDataStream::Ok);
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Status Change, status: 0x%04X, zoneId: %u, delay: %u\n", sensor->address().ext(), zoneStatus, zoneId, delay);
processIasZoneStatus(sensor, zoneStatus, NodeValue::UpdateByZclReport);
sensor->updateStateTimestamp();
enqueueEvent(Event(RSensors, RStateLastUpdated, sensor->id()));
updateEtag(sensor->etag);
updateEtag(gwConfigEtag);
sensor->setNeedSaveDatabase(true);
queSaveDb(DB_SENSORS, DB_LONG_SAVE_DELAY);
checkIasEnrollmentStatus(sensor);
}
else if (isClusterCmd && zclFrame.commandId() == CMD_ZONE_ENROLL_REQUEST)
{
quint16 zoneType;
quint16 manufacturer;
stream >> zoneType;
stream >> manufacturer;
DBG_Assert(stream.status() == QDataStream::Ok);
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Zone Enroll Request, zone type: 0x%04X, manufacturer: 0x%04X\n", sensor->address().ext(), zoneType, manufacturer);
if (itemIasState->toNumber() == IAS_STATE_DELAY_ENROLL ||
itemIasState->toNumber() == IAS_STATE_ENROLL) // This state might still be active if previous send didn't work
{
// End waiting and send Enroll Response within state machine.
IAS_SetState(sensor, itemIasState, IAS_STATE_ENROLL);
checkIasEnrollmentStatus(sensor);
}
else
{
// Send independend of state to don't interfere with state machine.
sendIasZoneEnrollResponse(ind, zclFrame);
}
return; // don't trigger ZCL Default Response
}
// ZCL Write Attributes Response
if (isWriteResponse)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Write of IAS CIE address done.\n", sensor->address().ext());
if (itemIasState->toNumber() == IAS_STATE_WAIT_WRITE_CIE_ADDR)
{
// read attributes again to see if it worked
IAS_SetState(sensor, itemIasState, IAS_STATE_READ);
}
checkIasEnrollmentStatus(sensor);
}
}
/*! Processes the received IAS zone status value.
\param sensor - Sensor containing the IAS zone cluster
\param zoneStatus - IAS zone status value
\param updateType - Update type
*/
void DeRestPluginPrivate::processIasZoneStatus(Sensor *sensor, quint16 zoneStatus, NodeValue::UpdateType updateType)
{
const char *attr = nullptr;
if (sensor->type() == QLatin1String("ZHAAlarm"))
{
attr = RStateAlarm;
}
else if (sensor->type() == QLatin1String("ZHACarbonMonoxide"))
{
attr = RStateCarbonMonoxide;
}
else if (sensor->type() == QLatin1String("ZHAFire"))
{
attr = RStateFire;
}
else if (sensor->type() == QLatin1String("ZHAOpenClose"))
{
attr = RStateOpen;
}
else if (sensor->type() == QLatin1String("ZHAPresence"))
{
attr = RStatePresence;
}
else if (sensor->type() == QLatin1String("ZHAVibration"))
{
attr = RStateVibration;
}
else if (sensor->type() == QLatin1String("ZHAWater"))
{
attr = RStateWater;
}
ResourceItem *item = nullptr;
if (attr)
{
item = sensor->item(attr);
}
if (item)
{
bool alarm = (zoneStatus & (STATUS_ALARM1 | STATUS_ALARM2)) ? true : false;
item->setValue(alarm);
enqueueEvent(Event(RSensors, item->descriptor().suffix, sensor->id(), item));
ResourceItem *item2 = sensor->item(RStateLowBattery);
if (item2)
{
bool battery = (zoneStatus & STATUS_BATTERY) ? true : false;
item2->setValue(battery);
enqueueEvent(Event(RSensors, RStateLowBattery, sensor->id(), item2));
}
item2 = sensor->item(RStateTampered);
if (item2)
{
bool tamper = (zoneStatus & STATUS_TAMPER) ? true : false;
item2->setValue(tamper);
enqueueEvent(Event(RSensors, RStateTampered, sensor->id(), item2));
}
item2 = sensor->item(RStateTest);
if (item2)
{
bool test = (zoneStatus & STATUS_TEST) ? true : false;
item2->setValue(test);
enqueueEvent(Event(RSensors, RStateTest, sensor->id(), item2));
}
deCONZ::NumericUnion num = {0};
num.u16 = zoneStatus;
sensor->setZclValue(updateType, sensor->fingerPrint().endpoint, IAS_ZONE_CLUSTER_ID, IAS_ZONE_CLUSTER_ATTR_ZONE_STATUS_ID, num);
item2 = sensor->item(RConfigReachable);
if (item2 && !item2->toBool())
{
item2->setValue(true);
enqueueEvent(Event(RSensors, RConfigReachable, sensor->id(), item2));
}
if (alarm && item->descriptor().suffix == RStatePresence)
{ // prepare to automatically set presence to false
NodeValue &val = sensor->getZclValue(IAS_ZONE_CLUSTER_ID, IAS_ZONE_CLUSTER_ATTR_ZONE_STATUS_ID);
item2 = sensor->item(RConfigDuration);
if (val.maxInterval > 0)
{
sensor->durationDue = item->lastSet().addSecs(val.maxInterval);
}
else if (item2 && item2->toNumber() > 0)
{
sensor->durationDue = item->lastSet().addSecs(item2->toNumber());
}
}
}
}
/*! Sends IAS Zone enroll response to IAS Zone server.
\param ind - The APS level data indication containing the ZCL packet
\param zclFrame - The actual ZCL frame which holds the IAS Zone enroll request
*/
bool DeRestPluginPrivate::sendIasZoneEnrollResponse(Sensor *sensor)
{
deCONZ::ApsDataRequest req;
deCONZ::ZclFrame outZclFrame;
req.setProfileId(sensor->fingerPrint().profileId);
req.setClusterId(IAS_ZONE_CLUSTER_ID); // todo check for other ias clusters
req.setDstAddressMode(deCONZ::ApsNwkAddress);
req.dstAddress() = sensor->address();
req.setDstEndpoint(sensor->fingerPrint().endpoint);
req.setSrcEndpoint(endpoint());
outZclFrame.setSequenceNumber(zclSeq++);
outZclFrame.setCommandId(CMD_ZONE_ENROLL_RESPONSE);
outZclFrame.setFrameControl(deCONZ::ZclFCClusterCommand |
deCONZ::ZclFCDirectionClientToServer |
deCONZ::ZclFCDisableDefaultResponse);
{ // payload
QDataStream stream(&outZclFrame.payload(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
quint8 code = 0x00; // success
quint8 zoneId = 100;
stream << code;
stream << zoneId;
}
{ // ZCL frame
QDataStream stream(&req.asdu(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
outZclFrame.writeToStream(stream);
}
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Send Zone Enroll Response, zcl.seq: %u\n", sensor->address().ext(), outZclFrame.sequenceNumber());
if (apsCtrlWrapper.apsdeDataRequest(req) != deCONZ::Success)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Failed sending Zone Enroll Response\n", sensor->address().ext());
return false;
}
return true;
}
/*! Sends IAS Zone enroll response to IAS Zone server.
\param ind - The APS level data indication containing the ZCL packet
\param zclFrame - The actual ZCL frame which holds the IAS Zone enroll request
*/
bool DeRestPluginPrivate::sendIasZoneEnrollResponse(const deCONZ::ApsDataIndication &ind, deCONZ::ZclFrame &zclFrame)
{
deCONZ::ApsDataRequest req;
deCONZ::ZclFrame outZclFrame;
req.setProfileId(ind.profileId());
req.setClusterId(ind.clusterId());
req.setDstAddressMode(ind.srcAddressMode());
req.dstAddress() = ind.srcAddress();
req.setDstEndpoint(ind.srcEndpoint());
req.setSrcEndpoint(endpoint());
outZclFrame.setSequenceNumber(zclFrame.sequenceNumber());
outZclFrame.setCommandId(CMD_ZONE_ENROLL_RESPONSE);
outZclFrame.setFrameControl(deCONZ::ZclFCClusterCommand |
deCONZ::ZclFCDirectionClientToServer |
deCONZ::ZclFCDisableDefaultResponse);
{ // payload
QDataStream stream(&outZclFrame.payload(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
quint8 code = 0x00; // success
quint8 zoneId = 100;
stream << code;
stream << zoneId;
}
{ // ZCL frame
QDataStream stream(&req.asdu(), QIODevice::WriteOnly);
stream.setByteOrder(QDataStream::LittleEndian);
outZclFrame.writeToStream(stream);
}
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Send Zone Enroll Response, zcl.seq: %u\n", ind.srcAddress().ext(), zclFrame.sequenceNumber());
if (apsCtrlWrapper.apsdeDataRequest(req) != deCONZ::Success)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Failed sending Zone Enroll Response\n", ind.srcAddress().ext());
return false;
}
return true;
}
/*! Drives the IAS Zone Enrollment state machine.
This handler can be called at any time, e.g. after receiving a command or from a timer.
\param sensor - Sensor containing the IAS zone cluster
*/
void DeRestPluginPrivate::checkIasEnrollmentStatus(Sensor *sensor)
{
ResourceItem *itemIasState = sensor->item(RConfigEnrolled); // holds per device IAS state variable
ResourceItem *itemPending = sensor->item(RConfigPending);
if (!itemIasState || !itemPending)
{
// All IAS devices should have these items.
// Bail out early for non IAS devices.
return;
}
IAS_EnsureValidState(itemIasState);
quint32 iasState = itemIasState->toNumber();
if (iasState == IAS_STATE_ENROLLED)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor is enrolled.\n", sensor->address().ext());
return; // already enrolled nothing todo
}
if (sensor->fingerPrint().hasInCluster(IAS_ZONE_CLUSTER_ID))
{
const auto now = QDateTime::currentDateTime();
if (iasState != IAS_STATE_WAIT_READ) // don't print in WAIT_READ since it's too noisy
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor ID: %s\n", sensor->address().ext(), qPrintable(sensor->uniqueId()));
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor type: %s\n", sensor->address().ext(), qPrintable(sensor->type()));
const NodeValue val = sensor->getZclValue(IAS_ZONE_CLUSTER_ID, IAS_ZONE_STATE);
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor zone state value: %d\n", sensor->address().ext(), val.value.u8);
const NodeValue val1 = sensor->getZclValue(IAS_ZONE_CLUSTER_ID, IAS_CIE_ADDRESS);
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor IAS CIE address: 0x%016llX\n", sensor->address().ext(), val1.value.u64);
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor config pending value: %d\n", sensor->address().ext(), itemPending->toNumber());
}
if (iasState == IAS_STATE_INIT)
{
// At the beginning we don't know device values of CIE address and Zone state.
// The device might already be enrolled, which will be verified by IAS_STATE_READ.
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor init enrollment.\n", sensor->address().ext());
R_SetFlags(itemPending, R_PENDING_ENROLL_RESPONSE | R_PENDING_WRITE_CIE_ADDRESS);
iasState = IAS_SetState(sensor, itemIasState, IAS_STATE_READ);
}
else if (iasState == IAS_STATE_DELAY_ENROLL)
{
// Some devices don't send an Enroll Request.
// Wait a few seconds, and if no Enroll Request is received move on to IAS_STATE_ENROLL
// to send an unsoliticed Enroll Response.
const auto dt = itemIasState->lastSet().secsTo(now);
if (dt > 5)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX initiate unsoliticed enroll response after %d seconds delay.\n", sensor->address().ext(), static_cast<int>(dt));
iasState = IAS_SetState(sensor, itemIasState, IAS_STATE_ENROLL);
}
}
else if (iasState == IAS_STATE_WAIT_ENROLL)
{
// After sending a Enroll Response, wait a few seconds and read the attributes again to verify.
const auto dt = itemIasState->lastSet().secsTo(now);
if (dt > 2)
{
// Read attributes again to verify if it worked.
iasState = IAS_SetState(sensor, itemIasState, IAS_STATE_READ);
}
}
if (!R_HasFlags(itemPending, R_PENDING_ENROLL_RESPONSE) && !R_HasFlags(itemPending, R_PENDING_WRITE_CIE_ADDRESS))
{
if (iasState != IAS_STATE_ENROLLED) // everything seems to be done, finish here
{
IAS_SetState(sensor, itemIasState, IAS_STATE_ENROLLED);
sensor->setNeedSaveDatabase(true);
}
return;
}
if (iasState == IAS_STATE_READ)
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Read IAS zone state and CIE address...\n", sensor->address().ext());
if (readAttributes(sensor, sensor->fingerPrint().endpoint, IAS_ZONE_CLUSTER_ID, {IAS_ZONE_STATE, IAS_CIE_ADDRESS}))
{
queryTime = queryTime.addSecs(1);
IAS_SetState(sensor, itemIasState, IAS_STATE_WAIT_READ);
}
else
{
// Remain in IAS_STATE_READ and try again in next invocation.
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Failed to send read attributes.\n", sensor->address().ext());
}
}
else if (iasState == IAS_STATE_WRITE_CIE_ADDR)
{
if (writeIasCieAddress(sensor))
{
IAS_SetState(sensor, itemIasState, IAS_STATE_WAIT_WRITE_CIE_ADDR);
}
// On error remain in IAS_STATE_WRITE_CIE_ADDR and try again in next invocation.
}
else if (iasState == IAS_STATE_ENROLL)
{
if (sendIasZoneEnrollResponse(sensor))
{
IAS_SetState(sensor, itemIasState, IAS_STATE_WAIT_ENROLL);
}
// On error remain in IAS_STATE_ENROLL and try again in next invocation.
}
else if (iasState == IAS_STATE_WAIT_READ ||
iasState == IAS_STATE_WAIT_WRITE_CIE_ADDR)
{
const auto dt = itemIasState->lastSet().secsTo(now);
if (dt > 8) // Wait up to 8 seconds, because next mac poll might take 7.x seconds until max transactions expires.
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX timeout after %d seconds, state: %d, retry...\n", sensor->address().ext(), static_cast<int>(dt), iasState);
IAS_SetState(sensor, itemIasState, IAS_STATE_INIT);
}
else
{
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Sensor enrollment pending... since %d seconds.\n", sensor->address().ext(), static_cast<int>(dt));
}
}
}
}
/*! Write IAS CIE address attribute for a node.
\param sensor - Sensor containing the IAS zone cluster
*/
bool DeRestPluginPrivate::writeIasCieAddress(Sensor *sensor)
{
ResourceItem *item = nullptr;
item = sensor->item(RConfigPending);
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Send write IAS CIE address.\n", sensor->address().ext());
if (sensor->fingerPrint().hasInCluster(IAS_ZONE_CLUSTER_ID) && item && R_HasFlags(item, R_PENDING_WRITE_CIE_ADDRESS))
{
// write CIE address needed for some IAS Zone devices
const quint64 iasCieAddress = apsCtrl->getParameter(deCONZ::ParamMacAddress);
deCONZ::ZclAttribute attribute(IAS_CIE_ADDRESS, deCONZ::ZclIeeeAddress, QLatin1String("CIE address"), deCONZ::ZclReadWrite, false);
attribute.setValue(iasCieAddress);
if (writeAttribute(sensor, sensor->fingerPrint().endpoint, IAS_ZONE_CLUSTER_ID, attribute, 0))
{
return true;
}
}
DBG_Printf(DBG_IAS, "[IAS ZONE] - 0x%016llX Failed sending write IAS CIE address.\n", sensor->address().ext());
return false;
}