-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathConfigShadow.cpp
547 lines (482 loc) · 20.7 KB
/
ConfigShadow.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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#include "ConfigShadow.h"
#include "../config/Config.h"
#include "../logging/LoggerFactory.h"
#include <aws/crt/UUID.h>
#include <aws/iotshadow/ErrorResponse.h>
#include <aws/iotshadow/GetNamedShadowRequest.h>
#include <aws/iotshadow/GetNamedShadowSubscriptionRequest.h>
#include <aws/iotshadow/GetShadowResponse.h>
#include <aws/iotshadow/UpdateNamedShadowRequest.h>
#include <aws/iotshadow/UpdateNamedShadowSubscriptionRequest.h>
using namespace std;
using namespace Aws;
using namespace Aws::Iot;
using namespace Aws::Crt;
using namespace Aws::Iotshadow;
using namespace Aws::Iot::DeviceClient::Shadow;
using namespace Aws::Iot::DeviceClient::Util;
using namespace Aws::Iot::DeviceClient::Logging;
using namespace Aws::Iot::DeviceClient;
constexpr char ConfigShadow::TAG[];
constexpr char ConfigShadow::DEFAULT_CONFIG_SHADOW_NAME[];
constexpr int ConfigShadow::DEFAULT_WAIT_TIME_SECONDS;
void ConfigShadow::updateLocalConfigFile(const PlainConfig &config, const char *configFilePath) const
{
ofstream configFile(configFilePath);
JsonObject jsonObj;
// Convert config to JSON
config.SerializeToObject(jsonObj);
if (configFile.is_open())
{
configFile << jsonObj.View().WriteReadable();
configFile.close();
LOGM_INFO(TAG, "Updated configuration saved locally to disk at: %s", configFilePath);
}
else
{
LOGM_WARN(TAG, "Failed to open config file: %s, Error: %s", configFilePath, strerror(errno));
}
}
void ConfigShadow::getNamedShadowRejectedHandler(Iotshadow::ErrorResponse *errorResponse, int ioError)
{
if (ioError)
{
LOGM_ERROR(TAG, "Encountered ioError %d within getNamedShadowRejectedHandler", ioError);
}
if (errorResponse->Message.has_value())
{
LOGM_ERROR(TAG, "getNamedShadowRequest gets rejected: %s", errorResponse->Message->c_str());
}
configShadowExistsPromise.set_value(ioError == AWS_OP_SUCCESS);
}
void ConfigShadow::getNamedShadowAcceptedHandler(Iotshadow::GetShadowResponse *response, int ioError)
{
if (ioError)
{
LOGM_ERROR(TAG, "Encountered ioError %d within getNamedShadowAcceptedHandler", ioError);
}
if (response->State->Delta.has_value())
{
configDelta = response->State->Delta.value();
}
desiredConfig = response->State->Desired.value();
configShadowExistsPromise.set_value(ioError == AWS_OP_SUCCESS);
}
void ConfigShadow::updateNamedShadowAcceptedHandler(Iotshadow::UpdateShadowResponse *response, int ioError) const
{
if (ioError)
{
LOGM_ERROR(TAG, "Encountered ioError %d within updateNamedShadowAcceptedHandler", ioError);
}
}
void ConfigShadow::updateNamedShadowRejectedHandler(Iotshadow::ErrorResponse *errorResponse, int ioError) const
{
if (ioError)
{
LOGM_ERROR(TAG, "Encountered ioError %d within updateNamedShadowRejectedHandler", ioError);
return;
}
if (errorResponse->Message.has_value())
{
LOGM_ERROR(TAG, "UpdateNamedShadowRequest gets rejected: %s", errorResponse->Message->c_str());
}
}
void ConfigShadow::ackSubscribeToUpdateNamedShadowAccepted(int ioError)
{
LOGM_DEBUG(TAG, "Ack received for SubscribeToUpdateNamedShadowAccepted with code {%d}", ioError);
if (ioError)
{
string errorMessage = "Encountered an ioError while attempting to subscribe to UpdateNamedShadowAccepted";
LOG_ERROR(TAG, errorMessage.c_str());
}
subscribeShadowUpdateAcceptedPromise.set_value(ioError == AWS_OP_SUCCESS);
}
void ConfigShadow::ackSubscribeToUpdateNamedShadowRejected(int ioError)
{
LOGM_DEBUG(TAG, "Ack received for SubscribeToUpdateNamedShadowRejected with code {%d}", ioError);
if (ioError)
{
string errorMessage = "Encountered an ioError while attempting to subscribe to UpdateNamedShadowRejected";
LOG_ERROR(TAG, errorMessage.c_str());
}
subscribeShadowUpdateRejectedPromise.set_value(ioError == AWS_OP_SUCCESS);
}
void ConfigShadow::ackSubscribeToGetNamedShadowAccepted(int ioError)
{
LOGM_DEBUG(TAG, "Ack received for SubscribeToGetNamedShadowAccepted with code {%d}", ioError);
if (ioError)
{
string errorMessage = "Encountered an ioError while attempting to subscribe to GetNamedShadowAccepted";
LOG_ERROR(TAG, errorMessage.c_str());
}
subscribeShadowGetAcceptedPromise.set_value(ioError == AWS_OP_SUCCESS);
}
void ConfigShadow::ackSubscribeToGetNamedShadowRejected(int ioError)
{
LOGM_DEBUG(TAG, "Ack received for SubscribeToGetNamedShadowRejected with code {%d}", ioError);
if (ioError)
{
string errorMessage = "Encountered an ioError while attempting to subscribe to GetNamedShadowRejected";
LOG_ERROR(TAG, errorMessage.c_str());
}
subscribeShadowGetRejectedPromise.set_value(ioError == AWS_OP_SUCCESS);
}
void ConfigShadow::ackGetNamedShadowStatus(int ioError)
{
LOGM_DEBUG(TAG, "Ack received for getNamedShadowStatus with code {%d}", ioError);
shadowGetCompletedPromise.set_value(ioError == AWS_OP_SUCCESS);
}
void ConfigShadow::ackUpdateNamedShadowStatus(int ioError)
{
LOGM_DEBUG(TAG, "Ack received for updateNamedShadowStatus with code {%d}", ioError);
shadowUpdateCompletedPromise.set_value(ioError == AWS_OP_SUCCESS);
}
bool ConfigShadow::subscribeGetAndUpdateNamedShadowTopics(Iotshadow::IotShadowClient iotShadowClient)
{
GetNamedShadowSubscriptionRequest getNamedShadowSubscriptionRequest;
getNamedShadowSubscriptionRequest.ShadowName = DEFAULT_CONFIG_SHADOW_NAME;
getNamedShadowSubscriptionRequest.ThingName = thingName.c_str();
iotShadowClient.SubscribeToGetNamedShadowAccepted(
getNamedShadowSubscriptionRequest,
AWS_MQTT_QOS_AT_LEAST_ONCE,
std::bind(&ConfigShadow::getNamedShadowAcceptedHandler, this, std::placeholders::_1, std::placeholders::_2),
std::bind(&ConfigShadow::ackSubscribeToGetNamedShadowAccepted, this, std::placeholders::_1));
iotShadowClient.SubscribeToGetNamedShadowRejected(
getNamedShadowSubscriptionRequest,
AWS_MQTT_QOS_AT_LEAST_ONCE,
std::bind(&ConfigShadow::getNamedShadowRejectedHandler, this, std::placeholders::_1, std::placeholders::_2),
std::bind(&ConfigShadow::ackSubscribeToGetNamedShadowRejected, this, std::placeholders::_1));
auto futureSubscribeShadowGetAcceptedPromise = subscribeShadowGetAcceptedPromise.get_future();
auto futureSubscribeShadowGetRejectedPromise = subscribeShadowGetRejectedPromise.get_future();
if (futureSubscribeShadowGetAcceptedPromise.wait_for(std::chrono::seconds(DEFAULT_WAIT_TIME_SECONDS)) ==
future_status::timeout ||
futureSubscribeShadowGetRejectedPromise.wait_for(std::chrono::seconds(DEFAULT_WAIT_TIME_SECONDS)) ==
future_status::timeout)
{
LOGM_ERROR(TAG, "Subscribing to pertinent %s shadowGet topics timed out.", DEFAULT_CONFIG_SHADOW_NAME);
return false;
}
if (!futureSubscribeShadowGetAcceptedPromise.get() || !futureSubscribeShadowGetRejectedPromise.get())
{
return false;
}
UpdateNamedShadowSubscriptionRequest updateNamedShadowSubscriptionRequest;
updateNamedShadowSubscriptionRequest.ThingName = thingName.c_str();
updateNamedShadowSubscriptionRequest.ShadowName = DEFAULT_CONFIG_SHADOW_NAME;
iotShadowClient.SubscribeToUpdateNamedShadowAccepted(
updateNamedShadowSubscriptionRequest,
AWS_MQTT_QOS_AT_LEAST_ONCE,
std::bind(&ConfigShadow::updateNamedShadowAcceptedHandler, this, std::placeholders::_1, std::placeholders::_2),
std::bind(&ConfigShadow::ackSubscribeToUpdateNamedShadowAccepted, this, std::placeholders::_1));
iotShadowClient.SubscribeToUpdateNamedShadowRejected(
updateNamedShadowSubscriptionRequest,
AWS_MQTT_QOS_AT_LEAST_ONCE,
std::bind(&ConfigShadow::updateNamedShadowRejectedHandler, this, std::placeholders::_1, std::placeholders::_2),
std::bind(&ConfigShadow::ackSubscribeToUpdateNamedShadowRejected, this, std::placeholders::_1));
auto futureSubscribeShadowUpdateRejectedPromise = subscribeShadowUpdateRejectedPromise.get_future();
auto futureSubscribeShadowUpdateAcceptedPromise = subscribeShadowUpdateAcceptedPromise.get_future();
if (futureSubscribeShadowUpdateAcceptedPromise.wait_for(std::chrono::seconds(DEFAULT_WAIT_TIME_SECONDS)) ==
future_status::timeout ||
futureSubscribeShadowUpdateRejectedPromise.wait_for(std::chrono::seconds(DEFAULT_WAIT_TIME_SECONDS)) ==
future_status::timeout)
{
LOGM_ERROR(TAG, "Subscribing to pertinent %s shadowUpdate topics timed out.", DEFAULT_CONFIG_SHADOW_NAME);
return false;
}
if (!futureSubscribeShadowUpdateAcceptedPromise.get() || !futureSubscribeShadowUpdateRejectedPromise.get())
{
return false;
}
return true;
}
bool ConfigShadow::fetchRemoteConfigShadow(Iotshadow::IotShadowClient iotShadowClient)
{
GetNamedShadowRequest getNamedShadowRequest;
Aws::Crt::UUID uuid;
getNamedShadowRequest.ShadowName = DEFAULT_CONFIG_SHADOW_NAME;
getNamedShadowRequest.ThingName = thingName.c_str();
getNamedShadowRequest.ClientToken = uuid.ToString();
iotShadowClient.PublishGetNamedShadow(
getNamedShadowRequest,
AWS_MQTT_QOS_AT_LEAST_ONCE,
std::bind(&ConfigShadow::ackGetNamedShadowStatus, this, std::placeholders::_1));
auto futureShadowGetCompletedPromise = shadowGetCompletedPromise.get_future();
if (futureShadowGetCompletedPromise.wait_for(std::chrono::seconds(DEFAULT_WAIT_TIME_SECONDS)) ==
future_status::timeout)
{
LOGM_ERROR(TAG, "Publishing to %s shadowGet topic timed out.", DEFAULT_CONFIG_SHADOW_NAME);
return false;
}
return futureShadowGetCompletedPromise.get();
}
void ConfigShadow::loadFeatureConfigIntoJsonObject(PlainConfig &config, Aws::Crt::JsonObject &jsonObj) const
{
JsonObject tunneling;
config.tunneling.SerializeToObject(tunneling);
jsonObj.WithObject(PlainConfig::JSON_KEY_TUNNELING, tunneling);
JsonObject jobs;
config.jobs.SerializeToObject(jobs);
jsonObj.WithObject(PlainConfig::JSON_KEY_JOBS, jobs);
JsonObject deviceDefender;
config.deviceDefender.SerializeToObject(deviceDefender);
jsonObj.WithObject(PlainConfig::JSON_KEY_DEVICE_DEFENDER, deviceDefender);
JsonObject samples;
JsonObject pubsub;
config.pubSub.SerializeToObject(pubsub);
samples.WithObject(PlainConfig::JSON_KEY_PUB_SUB, pubsub);
jsonObj.WithObject(PlainConfig::JSON_KEY_SAMPLES, samples);
JsonObject sampleShadow;
config.sampleShadow.SerializeToObject(sampleShadow);
jsonObj.WithObject(PlainConfig::JSON_KEY_SAMPLE_SHADOW, sampleShadow);
}
void ConfigShadow::resetClientConfigWithJSON(
PlainConfig &config,
Crt::JsonView &deltaJsonView,
Crt::JsonView &desiredJsonView) const
{
if (desiredJsonView.ValueExists(PlainConfig::JSON_KEY_JOBS) &&
deltaJsonView.ValueExists(PlainConfig::JSON_KEY_JOBS))
{
PlainConfig::Jobs jobs;
jobs.LoadFromJson(desiredJsonView.GetJsonObject(PlainConfig::JSON_KEY_JOBS));
if (jobs.Validate())
{
config.jobs = jobs;
}
else
{
LOGM_WARN(
TAG,
"Config shadow contains invalid configurations in %s feature, aborting this feature's configuration "
"update now. Please check the error logs for more information",
PlainConfig::JSON_KEY_JOBS);
}
}
if (desiredJsonView.ValueExists(PlainConfig::JSON_KEY_TUNNELING) &&
deltaJsonView.ValueExists(PlainConfig::JSON_KEY_TUNNELING))
{
PlainConfig::Tunneling tunneling;
tunneling.LoadFromJson(desiredJsonView.GetJsonObject(PlainConfig::JSON_KEY_TUNNELING));
if (tunneling.Validate())
{
config.tunneling = tunneling;
}
else
{
LOGM_WARN(
TAG,
"Config shadow contains invalid configurations in %s feature, aborting this feature's configuration "
"update now. Please check the error logs for more information",
PlainConfig::JSON_KEY_TUNNELING);
}
}
if (desiredJsonView.ValueExists(PlainConfig::JSON_KEY_DEVICE_DEFENDER) &&
deltaJsonView.ValueExists(PlainConfig::JSON_KEY_DEVICE_DEFENDER))
{
PlainConfig::DeviceDefender deviceDefender;
deviceDefender.LoadFromJson(desiredJsonView.GetJsonObject(PlainConfig::JSON_KEY_DEVICE_DEFENDER));
if (deviceDefender.Validate())
{
config.deviceDefender = deviceDefender;
}
else
{
LOGM_WARN(
TAG,
"Config shadow contains invalid configurations in %s feature, aborting this feature's configuration "
"update now. Please check the error logs for more information",
PlainConfig::JSON_KEY_DEVICE_DEFENDER);
}
}
if (desiredJsonView.ValueExists(PlainConfig::JSON_KEY_SAMPLES) &&
deltaJsonView.ValueExists(PlainConfig::JSON_KEY_SAMPLES))
{
PlainConfig::PubSub pubSub;
pubSub.LoadFromJson(
desiredJsonView.GetJsonObject(PlainConfig::JSON_KEY_SAMPLES).GetJsonObject(PlainConfig::JSON_KEY_PUB_SUB));
if (pubSub.Validate())
{
config.pubSub = pubSub;
}
else
{
LOGM_WARN(
TAG,
"Config shadow contains invalid configurations in %s feature, aborting this feature's configuration "
"update now. Please check the error logs for more information",
PlainConfig::JSON_KEY_PUB_SUB);
}
}
if (desiredJsonView.ValueExists(PlainConfig::JSON_KEY_SAMPLE_SHADOW) &&
deltaJsonView.ValueExists(PlainConfig::JSON_KEY_SAMPLE_SHADOW))
{
PlainConfig::SampleShadow sampleShadow;
sampleShadow.LoadFromJson(desiredJsonView.GetJsonObject(PlainConfig::JSON_KEY_SAMPLE_SHADOW));
if (sampleShadow.Validate())
{
config.sampleShadow = sampleShadow;
}
else
{
LOGM_WARN(
TAG,
"Config shadow contains invalid configurations in %s feature, aborting this feature's configuration "
"update now. Please check the error logs for more information",
PlainConfig::JSON_KEY_SAMPLE_SHADOW);
}
}
if (desiredJsonView.ValueExists(PlainConfig::JSON_KEY_CONFIG_SHADOW) &&
deltaJsonView.ValueExists(PlainConfig::JSON_KEY_CONFIG_SHADOW))
{
PlainConfig::ConfigShadow configShadow;
configShadow.LoadFromJson(desiredJsonView.GetJsonObject(PlainConfig::JSON_KEY_CONFIG_SHADOW));
if (configShadow.Validate())
{
config.configShadow = configShadow;
}
else
{
LOGM_WARN(
TAG,
"Config shadow contains invalid configurations in %s feature, aborting this feature's configuration "
"update now. Please check the error logs for more information",
PlainConfig::JSON_KEY_CONFIG_SHADOW);
}
}
// Save the updated configuration to a local file for persistence if required
if (config.configShadow.persistentUpdate)
{
JsonObject jsonObj;
config.SerializeToObject(jsonObj);
const char *jsonStr = jsonObj.View().WriteReadable().c_str();
LOGM_INFO(TAG, "Updating device configuration files with the following config shadow update: %s", jsonStr);
string userConfig = FileUtils::ExtractExpandedPath(Config::DEFAULT_CONFIG_FILE);
if (FileUtils::FileExists(userConfig))
{
LOGM_INFO(TAG, "Updating user-level config file: %s", userConfig.c_str());
updateLocalConfigFile(config, userConfig.c_str());
}
else
{
LOGM_WARN(TAG, "User-level config file does not exist: %s", userConfig.c_str());
}
// Check and update system-level config file
if (FileUtils::FileExists(Config::DEFAULT_SYSTEM_CONFIG_FILE))
{
LOGM_INFO(TAG, "Updating system-level config file: %s", Config::DEFAULT_SYSTEM_CONFIG_FILE);
updateLocalConfigFile(config, Config::DEFAULT_SYSTEM_CONFIG_FILE);
}
else
{
LOGM_WARN(
TAG,
"System-level config file does not exist or permission denied to open: %s",
Config::DEFAULT_SYSTEM_CONFIG_FILE);
}
}
}
void ConfigShadow::updateShadowWithLocalConfig(Iotshadow::IotShadowClient iotShadowClient, PlainConfig &config)
{
JsonObject jsonObj;
loadFeatureConfigIntoJsonObject(config, jsonObj);
UpdateNamedShadowRequest updateNamedShadowRequest;
updateNamedShadowRequest.ThingName = thingName.c_str();
updateNamedShadowRequest.ShadowName = DEFAULT_CONFIG_SHADOW_NAME;
ShadowState state;
state.Reported = jsonObj;
state.Desired = jsonObj;
updateNamedShadowRequest.State = state;
Aws::Crt::UUID uuid;
updateNamedShadowRequest.ClientToken = uuid.ToString();
iotShadowClient.PublishUpdateNamedShadow(
updateNamedShadowRequest,
AWS_MQTT_QOS_AT_LEAST_ONCE,
std::bind(&ConfigShadow::ackUpdateNamedShadowStatus, this, std::placeholders::_1));
auto futureShadowUpdateCompletedPromise = shadowUpdateCompletedPromise.get_future();
if (futureShadowUpdateCompletedPromise.wait_for(std::chrono::seconds(DEFAULT_WAIT_TIME_SECONDS)) ==
future_status::timeout)
{
LOGM_ERROR(TAG, "Publishing to shadowUpdate topic timed out.", DEFAULT_CONFIG_SHADOW_NAME);
return;
}
if (!futureShadowUpdateCompletedPromise.get())
{
LOGM_ERROR(
TAG,
"Encountering unexpected error while publishing the request to %s updateNamedShadow topic",
DEFAULT_CONFIG_SHADOW_NAME);
}
}
void ConfigShadow::reconfigureWithConfigShadow(
std::shared_ptr<SharedCrtResourceManager> resourceManager,
PlainConfig &config)
{
IotShadowClient iotShadowClient(resourceManager.get()->getConnection());
thingName = *config.thingName;
if (!subscribeGetAndUpdateNamedShadowTopics(iotShadowClient))
{
LOGM_ERROR(
TAG, "Encounter error while subscribing pertinent %s shadow topic from cloud", DEFAULT_CONFIG_SHADOW_NAME);
return;
}
if (!fetchRemoteConfigShadow(iotShadowClient))
{
LOGM_ERROR(
TAG, "Encounter error while fetching device client config shadow from cloud", DEFAULT_CONFIG_SHADOW_NAME);
return;
}
auto futureConfigShadowExistsPromise = configShadowExistsPromise.get_future();
if (futureConfigShadowExistsPromise.wait_for(std::chrono::seconds(DEFAULT_WAIT_TIME_SECONDS)) ==
future_status::timeout)
{
LOGM_ERROR(
TAG,
"Waiting for %s getNamedShadow response time out or get unexpected error from service",
DEFAULT_CONFIG_SHADOW_NAME);
return;
}
if (futureConfigShadowExistsPromise.get() && configDelta.has_value())
{
// config shadow and delta exists, resetting the local config first and then updating config shaodw
if (configDelta)
{
LOG_INFO(
TAG, "Detect the delta of configuration in the config shadow, reconfiguring the device client now.");
if (!desiredConfig.has_value())
{
LOG_ERROR(
TAG, "Fail to fetch the desired value in config shaodw, aborting the configuration update now");
return;
}
JsonObject configDesiredObject = configDelta.value();
if (!configDesiredObject.WasParseSuccessful())
{
LOGM_ERROR(
TAG,
"Couldn't parse JSON config desired. GetErrorMessage returns: %s",
configDesiredObject.GetErrorMessage().c_str());
return;
}
JsonObject configDeltaObject = configDelta.value();
if (!configDeltaObject.WasParseSuccessful())
{
LOGM_ERROR(
TAG,
"Couldn't parse JSON config delta. GetErrorMessage returns: %s",
configDeltaObject.GetErrorMessage().c_str());
return;
}
JsonView desiredJsonView = desiredConfig->View();
JsonView deltaJsonView = configDelta->View();
resetClientConfigWithJSON(config, deltaJsonView, desiredJsonView);
}
updateShadowWithLocalConfig(iotShadowClient, config);
}
else
{
// config shadow doesn't exists, store the device client configuration into config shadow
updateShadowWithLocalConfig(iotShadowClient, config);
}
}