@@ -556,30 +556,28 @@ - (void)_pruneEmptyStoredAttributesBranches
556
556
557
557
if (attributeIndex.count != attributeIndexCopy.count ) {
558
558
BOOL success;
559
- if (!success) {
560
- if (attributeIndexCopy.count ) {
561
- success = [self _storeAttributeIndex: attributeIndexCopy forNodeID: nodeID endpointID: endpointID clusterID: clusterID];
562
- } else {
563
- [clusterIndexCopy removeObject: clusterID];
564
- success = [self _deleteAttributeIndexForNodeID: nodeID endpointID: endpointID clusterID: clusterID];
565
- }
566
- storeFailures++;
567
- MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for attributeIndex @ 0x%016llX:0x%04X:0x%08lX" , nodeID.unsignedLongLongValue , endpointID.unsignedShortValue , clusterID.unsignedLongValue );
559
+ if (attributeIndexCopy.count ) {
560
+ success = [self _storeAttributeIndex: attributeIndexCopy forNodeID: nodeID endpointID: endpointID clusterID: clusterID];
561
+ } else {
562
+ [clusterIndexCopy removeObject: clusterID];
563
+ success = [self _deleteAttributeIndexForNodeID: nodeID endpointID: endpointID clusterID: clusterID];
568
564
}
565
+ storeFailures++;
566
+ MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for attributeIndex (%lu) @ 0x%016llX:0x%04X:0x%08lX" , static_cast <unsigned long >(attributeIndexCopy.count ), nodeID.unsignedLongLongValue , endpointID.unsignedShortValue , clusterID.unsignedLongValue );
569
567
}
570
568
}
571
569
572
570
if (clusterIndex.count != clusterIndexCopy.count ) {
573
571
BOOL success;
574
- if (clusterIndex .count ) {
572
+ if (clusterIndexCopy .count ) {
575
573
success = [self _storeClusterIndex: clusterIndexCopy forNodeID: nodeID endpointID: endpointID];
576
574
} else {
577
575
[endpointIndexCopy removeObject: endpointID];
578
576
success = [self _deleteClusterIndexForNodeID: nodeID endpointID: endpointID];
579
577
}
580
578
if (!success) {
581
579
storeFailures++;
582
- MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for clusterIndex @ 0x%016llX:0x%04X" , nodeID.unsignedLongLongValue , endpointID.unsignedShortValue );
580
+ MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for clusterIndex (%lu) @ 0x%016llX:0x%04X" , static_cast < unsigned long >(clusterIndexCopy. count ) , nodeID.unsignedLongLongValue , endpointID.unsignedShortValue );
583
581
}
584
582
}
585
583
}
@@ -594,21 +592,21 @@ - (void)_pruneEmptyStoredAttributesBranches
594
592
}
595
593
if (!success) {
596
594
storeFailures++;
597
- MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for endpointIndex @ 0x%016llX" , nodeID.unsignedLongLongValue );
595
+ MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for endpointIndex (%lu) @ 0x%016llX" , static_cast < unsigned long >(endpointIndexCopy. count ) , nodeID.unsignedLongLongValue );
598
596
}
599
597
}
600
598
}
601
599
602
600
if (nodeIndex.count != nodeIndexCopy.count ) {
603
601
BOOL success;
604
- if (!nodeIndex .count ) {
602
+ if (nodeIndexCopy .count ) {
605
603
success = [self _storeNodeIndex: nodeIndexCopy];
606
604
} else {
607
605
success = [self _deleteNodeIndex ];
608
606
}
609
607
if (!success) {
610
608
storeFailures++;
611
- MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for nodeIndex" );
609
+ MTR_LOG_INFO (" Store failed in _pruneEmptyStoredAttributesBranches for nodeIndex (%lu) " , static_cast < unsigned long >(nodeIndexCopy. count ) );
612
610
}
613
611
}
614
612
@@ -766,6 +764,20 @@ - (void)clearStoredAttributesForNodeID:(NSNumber *)nodeID
766
764
{
767
765
dispatch_async (_storageDelegateQueue, ^{
768
766
[self _clearStoredAttributesForNodeID: nodeID];
767
+ NSArray <NSNumber *> * nodeIndex = [self _fetchNodeIndex ];
768
+ NSMutableArray <NSNumber *> * nodeIndexCopy = nodeIndex.mutableCopy ;
769
+ [nodeIndexCopy removeObject: nodeID];
770
+ if (nodeIndex.count != nodeIndexCopy.count ) {
771
+ BOOL success;
772
+ if (nodeIndexCopy.count ) {
773
+ success = [self _storeNodeIndex: nodeIndexCopy];
774
+ } else {
775
+ success = [self _deleteNodeIndex ];
776
+ }
777
+ if (!success) {
778
+ MTR_LOG_INFO (" Store failed in clearStoredAttributesForNodeID for nodeIndex (%lu)" , static_cast <unsigned long >(nodeIndexCopy.count ));
779
+ }
780
+ }
769
781
});
770
782
}
771
783
0 commit comments