forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
device_compat.cpp
276 lines (230 loc) · 8.8 KB
/
device_compat.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
/*
* Copyright (c) 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 <memory>
#include "database.h"
#include "device.h"
#include "device_compat.h"
#include "resource.h"
#include "sensor.h"
#include "light_node.h"
#include "utils/utils.h"
int getFreeSensorId();
int getFreeLightId();
#define READ_GROUPS (1 << 5) // from web_plugin_private.h
/*! Overloads to add specific resources in higher layer.
Since Device class doesn't know anything about web plugin or testing code,
this is a free standing function which needs to be implemented in the higher layer.
*/
Resource *DEV_AddResource(const Sensor &sensor);
Resource *DEV_AddResource(const LightNode &lightNode);
/*! V1 compatibility function to create SensorNodes based on sub-device description.
*/
static Resource *DEV_InitSensorNodeFromDescription(Device *device, const DeviceDescription &ddf, const DeviceDescription::SubDevice &sub, const QString &uniqueId)
{
Sensor sensor;
QString rUniqueId = uniqueId;
DeviceDescriptions *dd = DeviceDescriptions::instance();
QString type = dd->constantToString(sub.type);
/* There are sub-devices which may have a different uniqueid as the DDF template states.
For example: Sunricher ZHASwitches with -1000 or -0006 cluster id. The legacy code created these
based on the simple descriptor clusters, which differed between firmware versions.
This function handles the case that there is only once sub-device in the DDF.
1. Check if there is already a ZHASwitch with same "type" and uniqueid endpoint in 'sensors' table.
2. If so keep using it even if the uniqueid cluster is different.
*/
if (ddf.subDevices.size() == 1 && type == QLatin1String("ZHASwitch") && sub.uniqueId.size() > 1)
{
const auto uniqueIds = DB_LoadLegacySensorUniqueIds(device->item(RAttrUniqueId)->toLatin1String(), qPrintable(type));
if (uniqueIds.size() == 1 && uniqueIds.front() != uniqueId.toStdString())
{
const QString u = QString::fromStdString(uniqueIds.front());
unsigned ep = endpointFromUniqueId(u);
if (ep == sub.uniqueId.at(1).toUInt(nullptr, 0))
{
rUniqueId = u;
}
}
}
sensor.fingerPrint() = sub.fingerPrint;
sensor.address().setExt(device->item(RAttrExtAddress)->toNumber());
sensor.address().setNwk(device->item(RAttrNwkAddress)->toNumber());
sensor.setModelId(device->item(RAttrModelId)->toCString());
sensor.setManufacturer(device->item(RAttrManufacturerName)->toCString());
sensor.setType(type);
sensor.setUniqueId(rUniqueId);
sensor.setNode(const_cast<deCONZ::Node*>(device->node()));
R_SetValue(&sensor, RConfigOn, true, ResourceItem::SourceApi);
auto dbItem = std::make_unique<DB_LegacyItem>();
dbItem->uniqueId = sensor.item(RAttrUniqueId)->toCString();
{
dbItem->column = "sid";
if (DB_LoadLegacySensorValue(dbItem.get()))
{
sensor.setId(toLatin1String(dbItem->value));
}
else
{
sensor.setId(QString::number(getFreeSensorId()));
sensor.setNeedSaveDatabase(true);
}
}
{
dbItem->column = "name";
if (DB_LoadLegacySensorValue(dbItem.get()))
{
sensor.setName(dbItem->value.c_str());
}
else
{
QString friendlyName = sensor.type();
if (friendlyName.startsWith("ZHA") || friendlyName.startsWith("ZLL"))
{
friendlyName = friendlyName.mid(3);
}
sensor.setName(QString("%1 %2").arg(friendlyName, sensor.id()));
sensor.setNeedSaveDatabase(true);
}
}
sensor.rx();
auto *r = DEV_AddResource(sensor);
Q_ASSERT(r);
device->addSubDevice(r);
return r;
}
/*! V1 compatibility function to create LightsNode based on sub-device description.
*/
static Resource *DEV_InitLightNodeFromDescription(Device *device, const DeviceDescription::SubDevice &sub, const QString &uniqueId)
{
LightNode lightNode;
{
const auto ls = uniqueId.split('-', SKIP_EMPTY_PARTS);
if (ls.size() >= 2 && device->node())
{
bool ok;
const uint ep = ls[1].toUInt(&ok, 16);
deCONZ::SimpleDescriptor sd;
if (device->node()->copySimpleDescriptor(ep, &sd) == 0)
{
lightNode.setHaEndpoint(sd);
}
}
}
// check if a sub-resource explicitly has static modelid / manufacturername (example.: FLS-PP3)
int thingsDone = 0;
for (const DeviceDescription::Item &ddfItem : sub.items)
{
if (ddfItem.descriptor.suffix == RAttrManufacturerName && ddfItem.isStatic)
{
lightNode.setManufacturerName(ddfItem.defaultValue.toString());
thingsDone++;
}
else if (ddfItem.descriptor.suffix == RAttrModelId && ddfItem.isStatic)
{
lightNode.setModelId(ddfItem.defaultValue.toString());
thingsDone++;
}
if (thingsDone == 2) // break out early if everything was done what could be done
{
break;
}
}
if (lightNode.modelId().isEmpty())
{
lightNode.setModelId(device->item(RAttrModelId)->toCString());
}
if (lightNode.manufacturer().isEmpty())
{
lightNode.setManufacturerName(device->item(RAttrManufacturerName)->toCString());
}
lightNode.address().setExt(device->item(RAttrExtAddress)->toNumber());
lightNode.address().setNwk(device->item(RAttrNwkAddress)->toNumber());
lightNode.setManufacturerCode(device->node()->nodeDescriptor().manufacturerCode());
lightNode.setNode(const_cast<deCONZ::Node*>(device->node())); // TODO this is evil
lightNode.item(RAttrType)->setValue(DeviceDescriptions::instance()->constantToString(sub.type));
lightNode.setUniqueId(uniqueId);
lightNode.enableRead(READ_GROUPS);
auto dbItem = std::make_unique<DB_LegacyItem>();
dbItem->uniqueId = lightNode.item(RAttrUniqueId)->toCString();
{
dbItem->column = "id";
if (DB_LoadLegacyLightValue(dbItem.get()))
{
lightNode.setId(toLatin1String(dbItem->value));
}
else
{
lightNode.setId(QString::number(getFreeLightId()));
lightNode.setNeedSaveDatabase(true);
}
}
{
dbItem->column = "name";
if (DB_LoadLegacyLightValue(dbItem.get()))
{
lightNode.setName(dbItem->value.c_str());
}
else
{
lightNode.setName(QString("%1 %2").arg(lightNode.type(), lightNode.id()));
lightNode.setNeedSaveDatabase(true);
}
}
{
dbItem->column = "groups";
if (DB_LoadLegacyLightValue(dbItem.get()))
{
const auto groupList = QString(static_cast<QLatin1String>(dbItem->value)).split(',', SKIP_EMPTY_PARTS);
for (const auto &g : groupList)
{
bool ok = false;
uint gid = g.toUShort(&ok, 0);
if (!ok) { continue; }
auto i = std::find_if(lightNode.groups().cbegin(), lightNode.groups().cend(), [gid](const auto &group)
{
return gid == group.id;
});
if (i == lightNode.groups().cend())
{
GroupInfo groupInfo;
groupInfo.id = gid;
groupInfo.state = GroupInfo::StateInGroup;
lightNode.groups().push_back(groupInfo);
}
}
}
}
// remove some items which need to be specified via DDF
lightNode.removeItem(RStateOn);
lightNode.removeItem(RStateBri);
lightNode.removeItem(RStateHue);
lightNode.removeItem(RStateSat);
lightNode.removeItem(RStateAlert);
lightNode.rx();
auto *r = DEV_AddResource(lightNode);
Q_ASSERT(r);
device->addSubDevice(r);
return r;
}
/*! Creates Sensor and LightNode based on sub-device description.
The purpose of this function is to hide Sensor and LightNode classes from Device code.
\returns Resource pointer of the related node.
*/
Resource *DEV_InitCompatNodeFromDescription(Device *device, const DeviceDescription &ddf, const DeviceDescription::SubDevice &sub, const QString &uniqueId)
{
if (sub.restApi == QLatin1String("/sensors"))
{
return DEV_InitSensorNodeFromDescription(device, ddf, sub, uniqueId);
}
else if (sub.restApi == QLatin1String("/lights"))
{
return DEV_InitLightNodeFromDescription(device, sub, uniqueId);
}
return nullptr;
}