Skip to content

Commit 6cb50ad

Browse files
Address review comment.
1 parent 69d3aed commit 6cb50ad

File tree

1 file changed

+11
-40
lines changed

1 file changed

+11
-40
lines changed

src/darwin/Framework/CHIP/MTRDeviceControllerDataStore.mm

+11-40
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
#include <lib/core/CASEAuthTag.h>
2424
#include <lib/core/NodeId.h>
25+
#include <lib/support/CodeUtils.h>
2526
#include <lib/support/SafeInt.h>
2627

2728
// FIXME: Are these good key strings? https://github.com/project-chip/connectedhomeip/issues/28973
@@ -158,10 +159,7 @@ - (void)fetchAttributeDataForAllDevices:(MTRDeviceControllerDataStoreClusterData
158159
{
159160
__block NSDictionary<NSString *, id> * dataStoreSecureLocalValues = nil;
160161
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.
165163

166164
dispatch_sync(_storageDelegateQueue, ^{
167165
if ([self->_storageDelegate respondsToSelector:@selector(valuesForController:securityLevel:sharingType:)]) {
@@ -187,10 +185,7 @@ - (nullable MTRCASESessionResumptionInfo *)findResumptionInfoByResumptionID:(NSD
187185
- (void)storeResumptionInfo:(MTRCASESessionResumptionInfo *)resumptionInfo
188186
{
189187
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.
194189

195190
auto * oldInfo = [self findResumptionInfoByNodeID:resumptionInfo.nodeID];
196191
dispatch_sync(_storageDelegateQueue, ^{
@@ -228,10 +223,7 @@ - (void)storeResumptionInfo:(MTRCASESessionResumptionInfo *)resumptionInfo
228223
- (void)clearAllResumptionInfo
229224
{
230225
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.
235227

236228
// Can we do less dispatch? We would need to have a version of
237229
// _findResumptionInfoWithKey that assumes we are already on the right queue.
@@ -257,10 +249,7 @@ - (void)clearAllResumptionInfo
257249
- (CHIP_ERROR)storeLastLocallyUsedNOC:(MTRCertificateTLVBytes)noc
258250
{
259251
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.
264253

265254
__block BOOL ok;
266255
dispatch_sync(_storageDelegateQueue, ^{
@@ -276,10 +265,7 @@ - (CHIP_ERROR)storeLastLocallyUsedNOC:(MTRCertificateTLVBytes)noc
276265
- (MTRCertificateTLVBytes _Nullable)fetchLastLocallyUsedNOC
277266
{
278267
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.
283269

284270
__block id data;
285271
dispatch_sync(_storageDelegateQueue, ^{
@@ -305,10 +291,7 @@ - (MTRCertificateTLVBytes _Nullable)fetchLastLocallyUsedNOC
305291
- (nullable MTRCASESessionResumptionInfo *)_findResumptionInfoWithKey:(nullable NSString *)key
306292
{
307293
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.
312295

313296
// key could be nil if [NSString stringWithFormat] returns nil for some reason.
314297
if (key == nil) {
@@ -358,10 +341,7 @@ - (nullable MTRCASESessionResumptionInfo *)_findResumptionInfoWithKey:(nullable
358341
- (id)_fetchAttributeCacheValueForKey:(NSString *)key expectedClass:(Class)expectedClass;
359342
{
360343
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.
365345

366346
id data;
367347
@autoreleasepool {
@@ -384,10 +364,7 @@ - (id)_fetchAttributeCacheValueForKey:(NSString *)key expectedClass:(Class)expec
384364
- (BOOL)_storeAttributeCacheValue:(id)value forKey:(NSString *)key
385365
{
386366
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.
391368

392369
return [_storageDelegate controller:controller
393370
storeValue:value
@@ -399,10 +376,7 @@ - (BOOL)_storeAttributeCacheValue:(id)value forKey:(NSString *)key
399376
- (BOOL)_bulkStoreAttributeCacheValues:(NSDictionary<NSString *, id<NSSecureCoding>> *)values
400377
{
401378
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.
406380

407381
return [_storageDelegate controller:controller
408382
storeValues:values
@@ -413,10 +387,7 @@ - (BOOL)_bulkStoreAttributeCacheValues:(NSDictionary<NSString *, id<NSSecureCodi
413387
- (BOOL)_removeAttributeCacheValueForKey:(NSString *)key
414388
{
415389
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.
420391

421392
return [_storageDelegate controller:controller
422393
removeValueForKey:key

0 commit comments

Comments
 (0)