22
22
23
23
#include < lib/core/CASEAuthTag.h>
24
24
#include < lib/core/NodeId.h>
25
+ #include < lib/support/CodeUtils.h>
25
26
#include < lib/support/SafeInt.h>
26
27
27
28
// FIXME: Are these good key strings? https://github.com/project-chip/connectedhomeip/issues/28973
@@ -158,10 +159,7 @@ - (void)fetchAttributeDataForAllDevices:(MTRDeviceControllerDataStoreClusterData
158
159
{
159
160
__block NSDictionary <NSString *, id > * dataStoreSecureLocalValues = nil ;
160
161
MTRDeviceController * controller = _controller;
161
- if (controller == nil ) {
162
- // Not expected; no way to call delegate without controller.
163
- return ;
164
- }
162
+ VerifyOrReturn (controller != nil ); // No way to call delegate without controller.
165
163
166
164
dispatch_sync (_storageDelegateQueue, ^{
167
165
if ([self ->_storageDelegate respondsToSelector: @selector (valuesForController:securityLevel:sharingType: )]) {
@@ -187,10 +185,7 @@ - (nullable MTRCASESessionResumptionInfo *)findResumptionInfoByResumptionID:(NSD
187
185
- (void )storeResumptionInfo : (MTRCASESessionResumptionInfo *)resumptionInfo
188
186
{
189
187
MTRDeviceController * controller = _controller;
190
- if (controller == nil ) {
191
- // Not expected; no way to call delegate without controller.
192
- return ;
193
- }
188
+ VerifyOrReturn (controller != nil ); // No way to call delegate without controller.
194
189
195
190
auto * oldInfo = [self findResumptionInfoByNodeID: resumptionInfo.nodeID];
196
191
dispatch_sync (_storageDelegateQueue, ^{
@@ -228,10 +223,7 @@ - (void)storeResumptionInfo:(MTRCASESessionResumptionInfo *)resumptionInfo
228
223
- (void )clearAllResumptionInfo
229
224
{
230
225
MTRDeviceController * controller = _controller;
231
- if (controller == nil ) {
232
- // Not expected; no way to call delegate without controller.
233
- return ;
234
- }
226
+ VerifyOrReturn (controller != nil ); // No way to call delegate without controller.
235
227
236
228
// Can we do less dispatch? We would need to have a version of
237
229
// _findResumptionInfoWithKey that assumes we are already on the right queue.
@@ -257,10 +249,7 @@ - (void)clearAllResumptionInfo
257
249
- (CHIP_ERROR)storeLastLocallyUsedNOC : (MTRCertificateTLVBytes)noc
258
250
{
259
251
MTRDeviceController * controller = _controller;
260
- if (controller == nil ) {
261
- // Not expected; no way to call delegate without controller.
262
- return CHIP_ERROR_PERSISTED_STORAGE_FAILED;
263
- }
252
+ VerifyOrReturnError (controller != nil , CHIP_ERROR_PERSISTED_STORAGE_FAILED); // No way to call delegate without controller.
264
253
265
254
__block BOOL ok;
266
255
dispatch_sync (_storageDelegateQueue, ^{
@@ -276,10 +265,7 @@ - (CHIP_ERROR)storeLastLocallyUsedNOC:(MTRCertificateTLVBytes)noc
276
265
- (MTRCertificateTLVBytes _Nullable)fetchLastLocallyUsedNOC
277
266
{
278
267
MTRDeviceController * controller = _controller;
279
- if (controller == nil ) {
280
- // Not expected; no way to call delegate without controller.
281
- return nil ;
282
- }
268
+ VerifyOrReturnValue (controller != nil , nil ); // No way to call delegate without controller.
283
269
284
270
__block id data;
285
271
dispatch_sync (_storageDelegateQueue, ^{
@@ -305,10 +291,7 @@ - (MTRCertificateTLVBytes _Nullable)fetchLastLocallyUsedNOC
305
291
- (nullable MTRCASESessionResumptionInfo *)_findResumptionInfoWithKey : (nullable NSString *)key
306
292
{
307
293
MTRDeviceController * controller = _controller;
308
- if (controller == nil ) {
309
- // Not expected; no way to call delegate without controller.
310
- return nil ;
311
- }
294
+ VerifyOrReturnValue (controller != nil , nil ); // No way to call delegate without controller.
312
295
313
296
// key could be nil if [NSString stringWithFormat] returns nil for some reason.
314
297
if (key == nil ) {
@@ -358,10 +341,7 @@ - (nullable MTRCASESessionResumptionInfo *)_findResumptionInfoWithKey:(nullable
358
341
- (id )_fetchAttributeCacheValueForKey : (NSString *)key expectedClass : (Class )expectedClass ;
359
342
{
360
343
MTRDeviceController * controller = _controller;
361
- if (controller == nil ) {
362
- // Not expected; no way to call delegate without controller.
363
- return nil ;
364
- }
344
+ VerifyOrReturnValue (controller != nil , nil ); // No way to call delegate without controller.
365
345
366
346
id data;
367
347
@autoreleasepool {
@@ -384,10 +364,7 @@ - (id)_fetchAttributeCacheValueForKey:(NSString *)key expectedClass:(Class)expec
384
364
- (BOOL )_storeAttributeCacheValue : (id )value forKey : (NSString *)key
385
365
{
386
366
MTRDeviceController * controller = _controller;
387
- if (controller == nil ) {
388
- // Not expected; no way to call delegate without controller.
389
- return NO ;
390
- }
367
+ VerifyOrReturnValue (controller != nil , NO ); // No way to call delegate without controller.
391
368
392
369
return [_storageDelegate controller: controller
393
370
storeValue: value
@@ -399,10 +376,7 @@ - (BOOL)_storeAttributeCacheValue:(id)value forKey:(NSString *)key
399
376
- (BOOL )_bulkStoreAttributeCacheValues : (NSDictionary <NSString *, id<NSSecureCoding >> *)values
400
377
{
401
378
MTRDeviceController * controller = _controller;
402
- if (controller == nil ) {
403
- // Not expected; no way to call delegate without controller.
404
- return NO ;
405
- }
379
+ VerifyOrReturnValue (controller != nil , NO ); // No way to call delegate without controller.
406
380
407
381
return [_storageDelegate controller: controller
408
382
storeValues: values
@@ -413,10 +387,7 @@ - (BOOL)_bulkStoreAttributeCacheValues:(NSDictionary<NSString *, id<NSSecureCodi
413
387
- (BOOL )_removeAttributeCacheValueForKey : (NSString *)key
414
388
{
415
389
MTRDeviceController * controller = _controller;
416
- if (controller == nil ) {
417
- // Not expected; no way to call delegate without controller.
418
- return NO ;
419
- }
390
+ VerifyOrReturnValue (controller != nil , NO ); // No way to call delegate without controller.
420
391
421
392
return [_storageDelegate controller: controller
422
393
removeValueForKey: key
0 commit comments