forked from OpenZWave/open-zwave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPowerlevel.cpp
More file actions
451 lines (420 loc) · 16.7 KB
/
Copy pathPowerlevel.cpp
File metadata and controls
451 lines (420 loc) · 16.7 KB
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
//-----------------------------------------------------------------------------
//
// Powerlevel.cpp
//
// Implementation of the Z-Wave COMMAND_CLASS_POWERLEVEL
//
// Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
//
// SOFTWARE NOTICE AND LICENSE
//
// This file is part of OpenZWave.
//
// OpenZWave is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation, either version 3 of the License,
// or (at your option) any later version.
//
// OpenZWave is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
//
//-----------------------------------------------------------------------------
#include <vector>
#include "command_classes/CommandClasses.h"
#include "command_classes/Powerlevel.h"
#include "Defs.h"
#include "Msg.h"
#include "Driver.h"
#include "platform/Log.h"
#include "value_classes/ValueByte.h"
#include "value_classes/ValueShort.h"
#include "value_classes/ValueList.h"
#include "value_classes/ValueButton.h"
namespace OpenZWave
{
namespace Internal
{
namespace CC
{
enum PowerlevelCmd
{
PowerlevelCmd_Set = 0x01,
PowerlevelCmd_Get = 0x02,
PowerlevelCmd_Report = 0x03,
PowerlevelCmd_TestNodeSet = 0x04,
PowerlevelCmd_TestNodeGet = 0x05,
PowerlevelCmd_TestNodeReport = 0x06
};
static char const* c_powerLevelNames[] =
{ "Normal", "-1dB", "-2dB", "-3dB", "-4dB", "-5dB", "-6dB", "-7dB", "-8dB", "-9dB", "Unknown" };
static char const* c_powerLevelStatusNames[] =
{ "Failed", "Success", "In Progress", "Unknown" };
//-----------------------------------------------------------------------------
// <Powerlevel::RequestState>
// Request current state from the device
//-----------------------------------------------------------------------------
bool Powerlevel::RequestState(uint32 const _requestFlags, uint8 const _instance, Driver::MsgQueue const _queue)
{
if (_requestFlags & RequestFlag_Session)
{
return RequestValue(_requestFlags, 0, _instance, _queue);
}
return false;
}
//-----------------------------------------------------------------------------
// <Powerlevel::RequestValue>
// Request current value from the device
//-----------------------------------------------------------------------------
bool Powerlevel::RequestValue(uint32 const _requestFlags, uint16 const _index, uint8 const _instance, Driver::MsgQueue const _queue)
{
if (_index == 0)
{
if (m_com.GetFlagBool(COMPAT_FLAG_GETSUPPORTED))
{
Msg* msg = new Msg("PowerlevelCmd_Get", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true, true, FUNC_ID_APPLICATION_COMMAND_HANDLER, GetCommandClassId());
msg->SetInstance(this, _instance);
msg->Append(GetNodeId());
msg->Append(2);
msg->Append(GetCommandClassId());
msg->Append(PowerlevelCmd_Get);
msg->Append(GetDriver()->GetTransmitOptions());
GetDriver()->SendMsg(msg, _queue);
return true;
}
else
{
Log::Write(LogLevel_Info, GetNodeId(), "Powerlevel_Get Not Supported on this node");
}
}
return false;
}
//-----------------------------------------------------------------------------
// <Powerlevel::HandleMsg>
// Handle a message from the Z-Wave network
//-----------------------------------------------------------------------------
bool Powerlevel::HandleMsg(uint8 const* _data, uint32 const _length, uint32 const _instance // = 1
)
{
if (PowerlevelCmd_Report == (PowerlevelCmd) _data[0])
{
PowerLevelEnum powerLevel = (PowerLevelEnum) _data[1];
if (powerLevel > 9) /* size of c_powerLevelNames minus Unknown*/
{
Log::Write(LogLevel_Warning, GetNodeId(), "powerLevel Value was greater than range. Setting to Invalid");
powerLevel = (PowerLevelEnum) 10;
}
uint8 timeout = _data[2];
Log::Write(LogLevel_Info, GetNodeId(), "Received a PowerLevel report: PowerLevel=%s, Timeout=%d", c_powerLevelNames[powerLevel], timeout);
if (Internal::VC::ValueList* value = static_cast<Internal::VC::ValueList*>(GetValue(_instance, ValueID_Index_PowerLevel::Powerlevel)))
{
value->OnValueRefreshed((int) powerLevel);
value->Release();
}
if (Internal::VC::ValueByte* value = static_cast<Internal::VC::ValueByte*>(GetValue(_instance, ValueID_Index_PowerLevel::Timeout)))
{
value->OnValueRefreshed(timeout);
value->Release();
}
return true;
}
if (PowerlevelCmd_TestNodeReport == (PowerlevelCmd) _data[0])
{
uint8 testNode = _data[1];
PowerLevelStatusEnum status = (PowerLevelStatusEnum) _data[2];
uint16 ackCount = (((uint16) _data[3]) << 8) | (uint16) _data[4];
if (status > 2) /* size of c_powerLevelStatusNames minus Unknown */
{
Log::Write(LogLevel_Warning, GetNodeId(), "status Value was greater than range. Setting to Unknown");
status = (PowerLevelStatusEnum) 3;
}
Log::Write(LogLevel_Info, GetNodeId(), "Received a PowerLevel Test Node report: Test Node=%d, Status=%s, Test Frame ACK Count=%d", testNode, c_powerLevelStatusNames[status], ackCount);
if (Internal::VC::ValueByte* value = static_cast<Internal::VC::ValueByte*>(GetValue(_instance, ValueID_Index_PowerLevel::TestNode)))
{
value->OnValueRefreshed(testNode);
value->Release();
}
if (Internal::VC::ValueList* value = static_cast<Internal::VC::ValueList*>(GetValue(_instance, ValueID_Index_PowerLevel::TestStatus)))
{
value->OnValueRefreshed((int) status);
value->Release();
}
if (Internal::VC::ValueShort* value = static_cast<Internal::VC::ValueShort*>(GetValue(_instance, ValueID_Index_PowerLevel::TestAckFrames)))
{
value->OnValueRefreshed((short) ackCount);
value->Release();
}
return true;
}
return false;
}
//-----------------------------------------------------------------------------
// <Powerlevel::SetValue>
// Set a value on the Z-Wave device
//-----------------------------------------------------------------------------
bool Powerlevel::SetValue(Internal::VC::Value const& _value)
{
bool res = false;
uint8 instance = _value.GetID().GetInstance();
switch (_value.GetID().GetIndex())
{
case ValueID_Index_PowerLevel::Powerlevel:
{
if (Internal::VC::ValueList* value = static_cast<Internal::VC::ValueList*>(GetValue(instance, ValueID_Index_PowerLevel::Powerlevel)))
{
Internal::VC::ValueList::Item const *item = (static_cast<Internal::VC::ValueList const*>(&_value))->GetItem();
if (item != NULL)
value->OnValueRefreshed(item->m_value);
value->Release();
}
res = true;
break;
}
case ValueID_Index_PowerLevel::Timeout:
{
if (Internal::VC::ValueByte* value = static_cast<Internal::VC::ValueByte*>(GetValue(instance, ValueID_Index_PowerLevel::Timeout)))
{
value->OnValueRefreshed((static_cast<Internal::VC::ValueByte const*>(&_value))->GetValue());
value->Release();
}
res = true;
break;
}
case ValueID_Index_PowerLevel::Set:
{
// Set
if (Internal::VC::ValueButton* button = static_cast<Internal::VC::ValueButton*>(GetValue(instance, ValueID_Index_PowerLevel::Set)))
{
if (button->IsPressed())
{
res = Set(instance);
}
button->Release();
}
break;
}
case ValueID_Index_PowerLevel::TestNode:
{
if (Internal::VC::ValueByte* value = static_cast<Internal::VC::ValueByte*>(GetValue(instance, ValueID_Index_PowerLevel::TestNode)))
{
value->OnValueRefreshed((static_cast<Internal::VC::ValueByte const*>(&_value))->GetValue());
value->Release();
}
res = true;
break;
}
case ValueID_Index_PowerLevel::TestPowerlevel:
{
if (Internal::VC::ValueList* value = static_cast<Internal::VC::ValueList*>(GetValue(instance, ValueID_Index_PowerLevel::TestPowerlevel)))
{
Internal::VC::ValueList::Item const *item = (static_cast<Internal::VC::ValueList const*>(&_value))->GetItem();
if (item != NULL)
value->OnValueRefreshed(item->m_value);
value->Release();
}
res = true;
break;
}
case ValueID_Index_PowerLevel::TestFrames:
{
if (Internal::VC::ValueShort* value = static_cast<Internal::VC::ValueShort*>(GetValue(instance, ValueID_Index_PowerLevel::TestFrames)))
{
value->OnValueRefreshed((static_cast<Internal::VC::ValueShort const*>(&_value))->GetValue());
value->Release();
}
res = true;
break;
}
case ValueID_Index_PowerLevel::Test:
{
// Test
if (Internal::VC::ValueButton* button = static_cast<Internal::VC::ValueButton*>(GetValue(instance, ValueID_Index_PowerLevel::Test)))
{
if (button->IsPressed())
{
res = Test(instance);
}
button->Release();
}
break;
}
case ValueID_Index_PowerLevel::Report:
{
// Test
if (Internal::VC::ValueButton* button = static_cast<Internal::VC::ValueButton*>(GetValue(instance, ValueID_Index_PowerLevel::Report)))
{
if (button->IsPressed())
{
res = Report(instance);
}
button->Release();
}
break;
}
}
return res;
}
//-----------------------------------------------------------------------------
// <Powerlevel::Set>
// Set the transmit power of a node for a specified time
//-----------------------------------------------------------------------------
bool Powerlevel::Set(uint8 const _instance)
{
PowerLevelEnum powerLevel = PowerLevel_Normal;
uint8 timeout;
if (Internal::VC::ValueList* value = static_cast<Internal::VC::ValueList*>(GetValue(_instance, ValueID_Index_PowerLevel::Powerlevel)))
{
Internal::VC::ValueList::Item const *item = value->GetItem();
if (item != NULL)
powerLevel = (PowerLevelEnum) item->m_value;
value->Release();
}
else
{
return false;
}
if (Internal::VC::ValueByte* value = static_cast<Internal::VC::ValueByte*>(GetValue(_instance, ValueID_Index_PowerLevel::Timeout)))
{
timeout = value->GetValue();
value->Release();
}
else
{
return false;
}
if (powerLevel > 9) /* size of c_powerLevelNames minus Unknown */
{
Log::Write(LogLevel_Warning, GetNodeId(), "powerLevel Value was greater than range. Dropping");
/* Drop it */
return false;
}
Log::Write(LogLevel_Info, GetNodeId(), "Setting the power level to %s for %d seconds", c_powerLevelNames[powerLevel], timeout);
Msg* msg = new Msg("PowerlevelCmd_Set", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true, true, FUNC_ID_APPLICATION_COMMAND_HANDLER, GetCommandClassId());
msg->SetInstance(this, _instance);
msg->Append(GetNodeId());
msg->Append(4);
msg->Append(GetCommandClassId());
msg->Append(PowerlevelCmd_Set);
msg->Append((uint8) powerLevel);
msg->Append(timeout);
msg->Append(GetDriver()->GetTransmitOptions());
GetDriver()->SendMsg(msg, Driver::MsgQueue_Send);
return true;
}
//-----------------------------------------------------------------------------
// <Powerlevel::Test>
// Test node to node communications
//-----------------------------------------------------------------------------
bool Powerlevel::Test(uint8 const _instance)
{
uint8 testNodeId;
PowerLevelEnum powerLevel = PowerLevel_Normal;
uint16 numFrames;
if (Internal::VC::ValueByte* value = static_cast<Internal::VC::ValueByte*>(GetValue(_instance, ValueID_Index_PowerLevel::TestNode)))
{
testNodeId = value->GetValue();
value->Release();
}
else
{
return false;
}
if (Internal::VC::ValueList* value = static_cast<Internal::VC::ValueList*>(GetValue(_instance, ValueID_Index_PowerLevel::TestPowerlevel)))
{
Internal::VC::ValueList::Item const *item = value->GetItem();
if (item != NULL)
powerLevel = (PowerLevelEnum) item->m_value;
value->Release();
}
else
{
return false;
}
if (Internal::VC::ValueShort* value = static_cast<Internal::VC::ValueShort*>(GetValue(_instance, ValueID_Index_PowerLevel::TestFrames)))
{
numFrames = value->GetValue();
value->Release();
}
else
{
return false;
}
if (powerLevel > 9) /* size of c_powerLevelNames minus Unknown */
{
Log::Write(LogLevel_Warning, GetNodeId(), "powerLevel Value was greater than range. Dropping");
return false;
}
Log::Write(LogLevel_Info, GetNodeId(), "Running a Power Level Test: Target Node = %d, Power Level = %s, Number of Frames = %d", testNodeId, c_powerLevelNames[powerLevel], numFrames);
Msg* msg = new Msg("PowerlevelCmd_TestNodeSet", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true, true, FUNC_ID_APPLICATION_COMMAND_HANDLER, GetCommandClassId());
msg->SetInstance(this, _instance);
msg->Append(GetNodeId());
msg->Append(6);
msg->Append(GetCommandClassId());
msg->Append(PowerlevelCmd_TestNodeSet);
msg->Append(testNodeId);
msg->Append((uint8) powerLevel);
msg->Append((uint8) (numFrames >> 8));
msg->Append((uint8) (numFrames & 0x00ff));
msg->Append(GetDriver()->GetTransmitOptions());
GetDriver()->SendMsg(msg, Driver::MsgQueue_Send);
return true;
}
//-----------------------------------------------------------------------------
// <Powerlevel::Report>
// Request test report
//-----------------------------------------------------------------------------
bool Powerlevel::Report(uint8 const _instance)
{
Log::Write(LogLevel_Info, GetNodeId(), "Power Level Report");
Msg* msg = new Msg("PowerlevelCmd_TestNodeGet", GetNodeId(), REQUEST, FUNC_ID_ZW_SEND_DATA, true, true, FUNC_ID_APPLICATION_COMMAND_HANDLER, GetCommandClassId());
msg->SetInstance(this, _instance);
msg->Append(GetNodeId());
msg->Append(6);
msg->Append(GetCommandClassId());
msg->Append(PowerlevelCmd_TestNodeGet);
msg->Append(GetDriver()->GetTransmitOptions());
GetDriver()->SendMsg(msg, Driver::MsgQueue_Send);
return true;
}
//-----------------------------------------------------------------------------
// <Powerlevel::CreateVars>
// Create the values managed by this command class
//-----------------------------------------------------------------------------
void Powerlevel::CreateVars(uint8 const _instance)
{
if (Node* node = GetNodeUnsafe())
{
vector<Internal::VC::ValueList::Item> items;
Internal::VC::ValueList::Item item;
for (uint8 i = 0; i < 10; ++i)
{
item.m_label = c_powerLevelNames[i];
item.m_value = i;
items.push_back(item);
}
node->CreateValueList(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::Powerlevel, "Powerlevel", "dB", false, false, 1, items, 0, 0);
node->CreateValueByte(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::Timeout, "Timeout", "seconds", false, false, 0, 0);
node->CreateValueButton(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::Set, "Set Powerlevel", 0);
node->CreateValueByte(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::TestNode, "Test Node", "", false, false, 0, 0);
node->CreateValueList(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::TestPowerlevel, "Test Powerlevel", "dB", false, false, 1, items, 0, 0);
node->CreateValueShort(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::TestFrames, "Frame Count", "", false, false, 0, 0);
node->CreateValueButton(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::Test, "Test", 0);
node->CreateValueButton(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::Report, "Report", 0);
items.clear();
for (uint8 i = 0; i < 3; ++i)
{
item.m_label = c_powerLevelStatusNames[i];
item.m_value = i;
items.push_back(item);
}
node->CreateValueList(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::TestStatus, "Test Status", "", true, false, 1, items, 0, 0);
node->CreateValueShort(ValueID::ValueGenre_System, GetCommandClassId(), _instance, ValueID_Index_PowerLevel::TestAckFrames, "Acked Frames", "", true, false, 0, 0);
}
}
} // namespace CC
} // namespace Internal
} // namespace OpenZWave