Skip to content

Commit a6bf48c

Browse files
committed
Remove old DE specific OTA code
This was used back in the day in some dresden elektronik networks.
1 parent 89c145f commit a6bf48c

4 files changed

+20
-159
lines changed

de_otau.cpp

+3-129
Original file line numberDiff line numberDiff line change
@@ -45,20 +45,14 @@ void DeRestPluginPrivate::initOtau()
4545
{
4646
otauIdleTicks = 0;
4747
otauBusyTicks = 0;
48-
otauNotifyIter = 0;
4948
otauIdleTotalCounter = 0;
5049
otauUnbindIdleTotalCounter = 0;
51-
otauNotifyDelay = deCONZ::appArgumentNumeric("--otau-notify-delay", OTAU_IDLE_TICKS_NOTIFY);
5250

5351
otauTimer = new QTimer(this);
5452
otauTimer->setSingleShot(false);
5553
connect(otauTimer, SIGNAL(timeout()),
5654
this, SLOT(otauTimerFired()));
5755

58-
if (otauNotifyDelay > 0)
59-
{
60-
otauTimer->start(1000);
61-
}
6256
}
6357

6458
/*! Handler for incoming otau packets.
@@ -120,16 +114,14 @@ void DeRestPluginPrivate::otauDataIndication(const deCONZ::ApsDataIndication &in
120114
{
121115
lightNode->setLastRead(READ_SWBUILD_ID, idleTotalCounter);
122116
lightNode->enableRead(READ_SWBUILD_ID);
123-
lightNode->setNextReadTime(READ_SWBUILD_ID, queryTime.addSecs(120));
117+
lightNode->setNextReadTime(READ_SWBUILD_ID, queryTime.addSecs(160));
118+
storeRecoverOnOffBri(lightNode);
124119
}
125120
}
126-
else if ((ind.clusterId() == OTAU_CLUSTER_ID) && ((zclFrame.commandId() == OTAU_IMAGE_PAGE_REQUEST_CMD_ID) || (zclFrame.commandId() == OTAU_IMAGE_BLOCK_REQUEST_CMD_ID)))
121+
else if (ind.clusterId() == OTAU_CLUSTER_ID && zclFrame.commandId() == OTAU_IMAGE_BLOCK_REQUEST_CMD_ID)
127122
{
128123
// remember last activity time
129124
otauIdleTotalCounter = idleTotalCounter;
130-
131-
LightNode *lightNode = getLightNodeForAddress(ind.srcAddress(), ind.srcEndpoint());
132-
storeRecoverOnOffBri(lightNode);
133125
}
134126

135127
if (!isOtauActive())
@@ -155,52 +147,6 @@ void DeRestPluginPrivate::otauDataIndication(const deCONZ::ApsDataIndication &in
155147
}
156148
}
157149

158-
/*! Sends otau notifcation (std otau cluster) to \p node.
159-
The node will then send a query next image request.
160-
*/
161-
void DeRestPluginPrivate::otauSendStdNotify(LightNode *node)
162-
{
163-
deCONZ::ApsDataRequest req;
164-
deCONZ::ZclFrame zclFrame;
165-
166-
req.setProfileId(HA_PROFILE_ID);
167-
req.setClusterId(OTAU_CLUSTER_ID);
168-
req.setDstAddressMode(deCONZ::ApsExtAddress);
169-
req.dstAddress().setExt(node->address().ext());
170-
req.setDstEndpoint(node->haEndpoint().endpoint());
171-
req.setSrcEndpoint(endpoint());
172-
req.setState(deCONZ::FireAndForgetState);
173-
174-
zclFrame.setSequenceNumber(zclSeq++);
175-
zclFrame.setCommandId(OTAU_IMAGE_NOTIFY_CMD_ID);
176-
177-
zclFrame.setFrameControl(deCONZ::ZclFCClusterCommand |
178-
deCONZ::ZclFCDirectionServerToClient |
179-
deCONZ::ZclFCDisableDefaultResponse);
180-
181-
{ // payload
182-
QDataStream stream(&zclFrame.payload(), QIODevice::WriteOnly);
183-
stream.setByteOrder(QDataStream::LittleEndian);
184-
185-
uint8_t payloadType = 0x00; // query jitter
186-
uint8_t queryJitter = 100;
187-
188-
stream << payloadType;
189-
stream << queryJitter;
190-
}
191-
192-
{ // ZCL frame
193-
QDataStream stream(&req.asdu(), QIODevice::WriteOnly);
194-
stream.setByteOrder(QDataStream::LittleEndian);
195-
zclFrame.writeToStream(stream);
196-
}
197-
198-
if (apsCtrlWrapper.apsdeDataRequest(req) != deCONZ::Success)
199-
{
200-
DBG_Printf(DBG_INFO, "otau failed to send image notify request\n");
201-
}
202-
}
203-
204150
/*! Returns true if otau is busy with uploading data.
205151
*/
206152
bool DeRestPluginPrivate::isOtauBusy()
@@ -249,21 +195,11 @@ void DeRestPluginPrivate::otauTimerFired()
249195
return;
250196
}
251197

252-
if (otauNotifyDelay == 0)
253-
{
254-
return;
255-
}
256-
257198
if (!isInNetwork())
258199
{
259200
return;
260201
}
261202

262-
if (nodes.empty())
263-
{
264-
return;
265-
}
266-
267203
if (otauIdleTicks < INT_MAX)
268204
{
269205
otauIdleTicks++;
@@ -279,67 +215,5 @@ void DeRestPluginPrivate::otauTimerFired()
279215
}
280216
}
281217

282-
if (otauIdleTicks < otauNotifyDelay)
283-
{
284-
return;
285-
}
286-
287-
if (otauNotifyIter >= nodes.size())
288-
{
289-
otauNotifyIter = 0;
290-
}
291-
292-
// dont do anything if sensors are triggering group commands
293-
if ((idleTotalCounter - sensorIndIdleTotalCounter) < (60 * 10))
294-
{
295-
return;
296-
}
297-
298-
LightNode *lightNode = &nodes[otauNotifyIter];
299-
otauNotifyIter++;
300-
301-
if (!lightNode->isAvailable() &&
302-
lightNode->otauClusterId() != OTAU_CLUSTER_ID)
303-
{
304-
return;
305-
}
306-
307-
// filter vendor
308-
if (lightNode->manufacturerCode() != VENDOR_DDEL)
309-
{
310-
return;
311-
}
312-
313-
// whitelist active notify to some devices
314-
if (lightNode->modelId().startsWith("FLS-NB"))
315-
{ }
316-
else if (lightNode->modelId().startsWith("FLS-PP3"))
317-
{ }
318-
else if (lightNode->modelId().startsWith("FLS-A"))
319-
{ }
320-
else
321-
{
322-
return;
323-
}
324-
325-
QDateTime now = QDateTime::currentDateTime();
326-
NodeValue &val = lightNode->getZclValue(OTAU_CLUSTER_ID, OTAU_SWVERSION_ID);
327-
328-
if (val.updateType == NodeValue::UpdateByZclRead)
329-
{
330-
if (val.timestamp.isValid() && val.timestamp.secsTo(now) < OTAU_NOTIFY_INTERVAL)
331-
{
332-
return;
333-
}
334-
335-
if (val.timestampLastReadRequest.isValid() && val.timestampLastReadRequest.secsTo(now) < OTAU_NOTIFY_INTERVAL)
336-
{
337-
return;
338-
}
339-
340-
val.timestampLastReadRequest = now;
341-
}
342-
343-
otauSendStdNotify(lightNode);
344218
otauIdleTicks = 0;
345219
}

de_web_plugin.cpp

+17-9
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,6 @@ DeRestPluginPrivate::DeRestPluginPrivate(QObject *parent) :
698698
idleTotalCounter = IDLE_READ_LIMIT;
699699
idleLastActivity = 0;
700700
idleUpdateZigBeeConf = idleTotalCounter + 15;
701-
sensorIndIdleTotalCounter = 0;
702701
queryTime = QTime::currentTime();
703702
udpSock = 0;
704703
haEndpoint = 0;
@@ -12323,18 +12322,27 @@ void DeRestPluginPrivate::storeRecoverOnOffBri(LightNode *lightNode)
1232312322

1232412323
ResourceItem *onOff = lightNode->item(RStateOn);
1232512324
ResourceItem *bri = lightNode->item(RStateBri);
12326-
std::vector<RecoverOnOff>::iterator i = recoverOnOff.begin();
12327-
std::vector<RecoverOnOff>::iterator end = recoverOnOff.end();
12325+
12326+
if (!onOff || !bri)
12327+
{
12328+
return;
12329+
}
12330+
12331+
if (!onOff->lastSet().isValid() || !bri->lastSet().isValid())
12332+
{
12333+
return;
12334+
}
12335+
12336+
auto i = recoverOnOff.begin();
12337+
auto end = recoverOnOff.end();
1232812338

1232912339
for (; i != end; ++i)
1233012340
{
1233112341
if (isSameAddress(i->address, lightNode->address()))
1233212342
{
1233312343
// update entry
12334-
i->onOff = onOff ? onOff->toBool() : false;
12335-
if (bri && bri->lastSet().isValid()) { i->bri = bri->toNumber(); }
12336-
else { i->bri = 0; }
12337-
12344+
i->onOff = onOff->toBool();
12345+
i->bri = bri->toNumber();
1233812346
i->idleTotalCounterCopy = idleTotalCounter;
1233912347
return;
1234012348
}
@@ -12344,8 +12352,8 @@ void DeRestPluginPrivate::storeRecoverOnOffBri(LightNode *lightNode)
1234412352
DBG_Printf(DBG_INFO, "New recover onOff entry 0x%016llX\n", lightNode->address().ext());
1234512353
RecoverOnOff rc;
1234612354
rc.address = lightNode->address();
12347-
rc.onOff = onOff ? onOff->toBool() : false;
12348-
rc.bri = bri ? bri->toNumber() : 0;
12355+
rc.onOff = onOff->toBool();
12356+
rc.bri = bri->toNumber();
1234912357
rc.idleTotalCounterCopy = idleTotalCounter;
1235012358
recoverOnOff.push_back(rc);
1235112359
}

de_web_plugin_private.h

-5
Original file line numberDiff line numberDiff line change
@@ -1255,7 +1255,6 @@ class DeRestPluginPrivate : public QObject
12551255
// Otau
12561256
void initOtau();
12571257
void otauDataIndication(const deCONZ::ApsDataIndication &ind, const deCONZ::ZclFrame &zclFrame);
1258-
void otauSendStdNotify(LightNode *node);
12591258
bool isOtauBusy();
12601259
bool isOtauActive();
12611260
int otauLastBusyTimeDelta() const;
@@ -1890,8 +1889,6 @@ public Q_SLOTS:
18901889
int otauBusyTicks;
18911890
int otauIdleTotalCounter;
18921891
int otauUnbindIdleTotalCounter;
1893-
uint otauNotifyIter; // iterator over nodes
1894-
int otauNotifyDelay;
18951892

18961893
// touchlink
18971894

@@ -2013,8 +2010,6 @@ public Q_SLOTS:
20132010
DeviceWidget *deviceWidget = nullptr;
20142011
RestDevices *restDevices;
20152012

2016-
int sensorIndIdleTotalCounter;
2017-
20182013
class SensorCommand
20192014
{
20202015
public:

rest_gateways.cpp

-16
Original file line numberDiff line numberDiff line change
@@ -459,22 +459,6 @@ void DeRestPluginPrivate::handleClusterIndicationGateways(const deCONZ::ApsDataI
459459
return;
460460
}
461461

462-
if (zclFrame.isClusterCommand())
463-
{
464-
if (ind.clusterId() == ONOFF_CLUSTER_ID)
465-
{
466-
if (zclFrame.commandId() == 0x00 || zclFrame.commandId() == 0x40 || // Off || Off with effect
467-
zclFrame.commandId() == 0x01 || zclFrame.commandId() == 0x42) // On || On with timed off
468-
{
469-
sensorIndIdleTotalCounter = idleTotalCounter;
470-
}
471-
}
472-
else if (ind.clusterId() == LEVEL_CLUSTER_ID)
473-
{
474-
sensorIndIdleTotalCounter = idleTotalCounter;
475-
}
476-
}
477-
478462
for (size_t i = 0; i < gateways.size(); i++)
479463
{
480464
Gateway *gw = gateways[i];

0 commit comments

Comments
 (0)