-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Darwin] MTRDevice should persist data version by cluster #32674
[Darwin] MTRDevice should persist data version by cluster #32674
Conversation
// Attribute data-value dictionary should be all standard containers which | ||
// means isEqual: comparisons all the way down, making a deep comparison. | ||
return [one isEqualToDictionary:theOther]; | ||
// Attribute data-value dictionaries are equal if type and value are equal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know they weren’t here before, but the lack of nil checks, are anxiety inducing
// Utility to return data value dictionary without data version | ||
- (NSDictionary *)_dataValueWithoutDataVersion:(NSDictionary *)attributeValue; | ||
{ | ||
if (attributeValue[MTRValueKey]) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above, nil checks…
@@ -2013,6 +2107,11 @@ - (void)setAttributeValues:(NSArray<NSDictionary *> *)attributeValues reportChan | |||
} | |||
} | |||
|
|||
- (void)setClusterData:(NSDictionary<MTRClusterPath *, MTRDeviceClusterData *> *)clusterData | |||
{ | |||
[_clusterData addEntriesFromDictionary:clusterData]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nil checks…
|
||
- (NSString *)_clusterDataKeyForNodeID:(NSNumber *)nodeID endpointID:(NSNumber *)endpointID clusterID:(NSNumber *)clusterID | ||
{ | ||
return [sAttributeCacheClusterDataKeyPrefix stringByAppendingFormat:@":0x%016llX:%0x04X:0x%08lX", nodeID.unsignedLongLongValue, endpointID.unsignedShortValue, clusterID.unsignedLongValue]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nil checks…
|
||
- (nullable MTRDeviceClusterData *)_fetchClusterDataForNodeID:(NSNumber *)nodeID endpointID:(NSNumber *)endpointID clusterID:(NSNumber *)clusterID | ||
{ | ||
return [self _fetchAttributeCacheValueForKey:[self _clusterDataKeyForNodeID:nodeID endpointID:endpointID clusterID:clusterID] expectedClass:[MTRDeviceClusterData class]]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for all these new accessors
@@ -809,6 +847,140 @@ - (void)clearAllStoredAttributes | |||
}); | |||
} | |||
|
|||
- (nullable NSDictionary<MTRClusterPath *, MTRDeviceClusterData *> *)getStoredClusterDataForNodeID:(NSNumber *)nodeID | |||
{ | |||
__block NSMutableDictionary<MTRClusterPath *, MTRDeviceClusterData *> * clusterDataToReturn = nil; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nil check
|
||
- (void)storeClusterData:(NSDictionary<MTRClusterPath *, MTRDeviceClusterData *> *)clusterData forNodeID:(NSNumber *)nodeID | ||
{ | ||
dispatch_async(_storageDelegateQueue, ^{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nil checks
PR #32674: Size comparison from 1f2aff4 to c71a826 Full report (41 builds for cc13x4_26x4, cc32xx, cyw30739, k32w, nrfconnect, psoc6, qpg, stm32, telink)
|
// means isEqual: comparisons all the way down, making a deep comparison. | ||
return [one isEqualToDictionary:theOther]; | ||
// Attribute data-value dictionaries are equal if type and value are equal | ||
return [one[MTRTypeKey] isEqual:theOther[MTRTypeKey]] && ((one[MTRValueKey] == theOther[MTRValueKey]) || [one[MTRValueKey] isEqual:theOther[MTRValueKey]]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This boolean condition could at least use some comments. Is one[MTRValueKey] == theOther[MTRValueKey]
supposed to catch the "they are both nil" case? If so that should definitely be documented, because it's super non-obvious.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will document in the next PR.
return [one[MTRTypeKey] isEqual:theOther[MTRTypeKey]] && ((one[MTRValueKey] == theOther[MTRValueKey]) || [one[MTRValueKey] isEqual:theOther[MTRValueKey]]); | ||
} | ||
|
||
// Utility to return data value dictionary without data version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So this assumes that the incoming dictionary only has type, value (maybe), and data version keys, right? Wouldn't it be safer to go over all keys and add them all to the return dictionary, while skipping the data version key?
#endif | ||
|
||
for (NSNumber * endpointID in endpointIndex) { | ||
// Fetch endpoint index |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not fetching the endpoint index...
The initial implementation for the attribute cache storage made a mistaken assumption about how data versions work. This change moves the data version stored from by-attribute to by-cluster.