Newer
Older
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
class LampManagerCallbackHandler : public LampManagerCallback {
private:
CLProxyManager* clProxyManager;
public:
LampManagerCallbackHandler(CLProxyManager* clProxyMgr) {
clProxyManager = clProxyMgr;
}
void GetAllLampIDsReplyCB(const LSFResponseCode& responseCode, const LSFStringList& lampIDs) {
printf("\n%s(): responseCode = %s", __func__, LSFResponseCodeText(responseCode));
if (responseCode == LSF_OK) {
LSFStringList::const_iterator it = lampIDs.begin();
uint8_t count = 1;
for (; it != lampIDs.end(); ++it) {
printf("\n(%d)%s", count, (*it).c_str());
LSFString lampId((*it).c_str());
clProxyManager->RetrieveLampDetails(lampId); // 1D
clProxyManager->RetrieveLampState(lampId); // 1R
count++;
}
printf("\n");
lampList.clear();
lampList = lampIDs;
}
gotReply = true;
}
void GetLampSupportedLanguagesReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LSFStringList& supportedLanguages) {
printf("\n%s(): responseCode = %s", __func__, LSFResponseCodeText(responseCode));
if (responseCode == LSF_OK) {
LSFStringList::const_iterator it = supportedLanguages.begin();
uint8_t count = 1;
for (; it != supportedLanguages.end(); ++it) {
printf("\n(%d)%s", count, (*it).c_str());
count++;
}
printf("\n");
}
gotReply = true;
}
void GetLampManufacturerReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LSFString& language, const LSFString& manufacturer) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s language = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str(), language.c_str());
if (responseCode == LSF_OK) {
printf("\nmanufacturer = %s", manufacturer.c_str());
}
gotReply = true;
}
void GetLampNameReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LSFString& language, const LSFString& lampName) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s language = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str(), language.c_str());
if (responseCode == LSF_OK) {
printf("\nlampName = %s", lampName.c_str());
}
gotReply = true;
if (numRepliesToWait) {
numRepliesToWait--;
}
}
void SetLampNameReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LSFString& language) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s language = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str(), language.c_str());
gotReply = true;
if (responseCode != LSF_OK) {
gotSignal = true;
}
}
void LampNameChangedCB(const LSFString& lampID, const LSFString& lampName) {
printf("\n%s: lampID = %s lampName = %s", __func__, lampID.c_str(), lampName.c_str());
gotSignal = true;
}
void GetLampDetailsReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LampDetails& lampDetails) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf("\n%s: lampDetails = %s", __func__, lampDetails.c_str());
clProxyManager->DetailsNotify(lampID, lampDetails); // 1N
}
gotReply = true;
if (numRepliesToWait) {
numRepliesToWait--;
}
}
void GetLampParametersReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LampParameters& lampParameters) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf("\n%s: parameters = %s", __func__, lampParameters.c_str());
}
gotReply = true;
}
void GetLampParametersLumensFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const uint32_t& value) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf(" value = %d", value);
}
gotReply = true;
}
void GetLampParametersEnergyUsageMilliwattsFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const uint32_t& value) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf(" value = %d", value);
}
gotReply = true;
}
void GetLampStateReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LampState& lampState) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf("\nstate=%s\n", lampState.c_str());
clProxyManager->SaveAndNotify(lampID, lampState); // 1S
}
gotReply = true;
if (numRepliesToWait) {
numRepliesToWait--;
}
}
void GetLampStateOnOffFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const bool& onOff) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf(" onOff = %d", onOff);
}
gotReply = true;
}
void GetLampStateHueFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const uint32_t& hue) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf(" hue = %d", hue);
}
gotReply = true;
}
void GetLampStateSaturationFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const uint32_t& saturation) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf(" saturation = %d", saturation);
}
gotReply = true;
}
void GetLampStateBrightnessFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const uint32_t& brightness) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf(" brightness = %d", brightness);
}
gotReply = true;
}
void GetLampStateColorTempFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const uint32_t& colorTemp) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
printf(" colorTemp = %d", colorTemp);
}
gotReply = true;
}
void ResetLampStateReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void LampStateChangedCB(const LSFString& lampID, const LampState& lampState) {
printf("\n%s: lampID = %s lampState = %s", __func__, lampID.c_str(), lampState.c_str());
gotSignal = true;
clProxyManager->SaveAndNotify(lampID, lampState); // 2S
}
void TransitionLampStateReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (responseCode != LSF_OK) {
gotSignal = true;
}
}
void PulseLampWithStateReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
}
void PulseLampWithPresetReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
}
void TransitionLampStateOnOffFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void TransitionLampStateHueFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void TransitionLampStateSaturationFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void TransitionLampStateBrightnessFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void TransitionLampStateColorTempFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void GetLampFaultsReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LampFaultCodeList& faultCodes) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
if (responseCode == LSF_OK) {
LampFaultCodeList::const_iterator it = faultCodes.begin();
for (; it != faultCodes.end(); ++it) {
printf("\n%d", *it);
}
printf("\n");
}
gotReply = true;
}
void ClearLampFaultReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const LampFaultCode& faultCode) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s faultCode=0x%x", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str(), faultCode);
gotReply = true;
}
void GetLampServiceVersionReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID, const uint32_t& lampServiceVersion) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s lampServiceVersion=0x%x", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str(), lampServiceVersion);
gotReply = true;
}
void ResetLampStateOnOffFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void ResetLampStateHueFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void ResetLampStateSaturationFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void ResetLampStateBrightnessFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void ResetLampStateColorTempFieldReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void TransitionLampStateToPresetReplyCB(const LSFResponseCode& responseCode, const LSFString& lampID) {
LSFString uniqueId = lampID;
printf("\n%s: responseCode = %s lampID = %s", __func__, LSFResponseCodeText(responseCode), uniqueId.c_str());
gotReply = true;
if (LSF_OK != responseCode) {
gotSignal = true;
}
}
void LampsFoundCB(const LSFStringList& lampIDs) {
printf("\n%s()", __func__);
LSFStringList::const_iterator it = lampIDs.begin();
uint8_t count = 1;
for (; it != lampIDs.end(); ++it) {
printf("\n(%d)%s", count, (*it).c_str());
LSFString lampId((*it).c_str());
clProxyManager->RetrieveLampState(lampId); // 2R
count++;
}
printf("\n");
lampList.clear();
lampList = lampIDs;
}
void LampsLostCB(const LSFStringList& lampIDs) {
printf("\n%s()", __func__);
LSFStringList::const_iterator it = lampIDs.begin();
uint8_t count = 1;
for (; it != lampIDs.end(); ++it) {
printf("\n(%d)%s", count, (*it).c_str());
count++;
}
printf("\n");
lampList.clear();
lampList = lampIDs;
}
};