@@ -503,6 +503,7 @@ - (void)_pruneEmptyStoredAttributesBranches
503
503
NSMutableArray <NSNumber *> * nodeIndex = [self _fetchNodeIndex ].mutableCopy ;
504
504
NSUInteger nodeIndexCount = nodeIndex.count ;
505
505
506
+ NSUInteger storeFailures = 0 ;
506
507
for (NSNumber * nodeID in nodeIndex) {
507
508
// Fetch endpoint index
508
509
NSMutableArray <NSNumber *> * endpointIndex = [self _fetchEndpointIndexForNodeID: nodeID].mutableCopy ;
@@ -529,35 +530,55 @@ - (void)_pruneEmptyStoredAttributesBranches
529
530
if (!attributeIndex.count ) {
530
531
[clusterIndex removeObject: clusterID];
531
532
} else if (attributeIndex.count != attributeIndexCount) {
532
- [self _storeAttributeIndex: attributeIndex forNodeID: nodeID endpointID: endpointID clusterID: clusterID];
533
+ BOOL success = [self _storeAttributeIndex: attributeIndex forNodeID: nodeID endpointID: endpointID clusterID: clusterID];
534
+ if (!success) {
535
+ storeFailures++;
536
+ MTR_LOG_INFO (" Store failed for attributeIndex" );
537
+ }
533
538
}
534
539
}
535
540
536
541
if (!clusterIndex.count ) {
537
542
[endpointIndex removeObject: endpointID];
538
543
} else if (clusterIndex.count != clusterIndexCount) {
539
- [self _storeClusterIndex: clusterIndex forNodeID: nodeID endpointID: endpointID];
544
+ BOOL success = [self _storeClusterIndex: clusterIndex forNodeID: nodeID endpointID: endpointID];
545
+ if (!success) {
546
+ storeFailures++;
547
+ MTR_LOG_INFO (" Store failed for clusterIndex" );
548
+ }
540
549
}
541
550
}
542
551
543
552
if (!endpointIndex.count ) {
544
553
[nodeIndex removeObject: nodeID];
545
554
} else if (endpointIndex.count != endpointIndexCount) {
546
- [self _storeEndpointIndex: endpointIndex forNodeID: nodeID];
555
+ BOOL success = [self _storeEndpointIndex: endpointIndex forNodeID: nodeID];
556
+ if (!success) {
557
+ storeFailures++;
558
+ MTR_LOG_INFO (" Store failed for endpointIndex" );
559
+ }
547
560
}
548
561
}
549
562
550
563
if (!nodeIndex.count ) {
551
564
[self _deleteNodeIndex ];
552
565
} else if (nodeIndex.count != nodeIndexCount) {
553
- [self _storeNodeIndex: nodeIndex];
566
+ BOOL success = [self _storeNodeIndex: nodeIndex];
567
+ if (!success) {
568
+ storeFailures++;
569
+ MTR_LOG_INFO (" Store failed for nodeIndex" );
570
+ }
571
+ }
572
+
573
+ if (storeFailures) {
574
+ MTR_LOG_ERROR (" Store failed in _pruneEmptyStoredAttributesBranches: %lu" , storeFailures);
554
575
}
555
576
}
556
577
557
578
- (void )storeAttributeValues : (NSArray <NSDictionary *> *)dataValues forNodeID : (NSNumber *)nodeID
558
579
{
559
580
dispatch_async (_storageDelegateQueue, ^{
560
- BOOL anyStoreFailed = NO ;
581
+ NSUInteger storeFailures = 0 ;
561
582
562
583
for (NSDictionary * dataValue in dataValues) {
563
584
MTRAttributePath * path = dataValue[MTRAttributePathKey];
@@ -573,7 +594,8 @@ - (void)storeAttributeValues:(NSArray<NSDictionary *> *)dataValues forNodeID:(NS
573
594
storeFailed = ![self _storeNodeIndex: [nodeIndex arrayByAddingObject: nodeID]];
574
595
}
575
596
if (storeFailed) {
576
- anyStoreFailed = YES ;
597
+ storeFailures++;
598
+ MTR_LOG_INFO (" Store failed for nodeIndex" );
577
599
continue ;
578
600
}
579
601
@@ -586,7 +608,8 @@ - (void)storeAttributeValues:(NSArray<NSDictionary *> *)dataValues forNodeID:(NS
586
608
storeFailed = ![self _storeEndpointIndex: [endpointIndex arrayByAddingObject: path.endpoint] forNodeID: nodeID];
587
609
}
588
610
if (storeFailed) {
589
- anyStoreFailed = YES ;
611
+ storeFailures++;
612
+ MTR_LOG_INFO (" Store failed for endpointIndex" );
590
613
continue ;
591
614
}
592
615
@@ -599,7 +622,8 @@ - (void)storeAttributeValues:(NSArray<NSDictionary *> *)dataValues forNodeID:(NS
599
622
storeFailed = ![self _storeClusterIndex: [clusterIndex arrayByAddingObject: path.cluster] forNodeID: nodeID endpointID: path.endpoint];
600
623
}
601
624
if (storeFailed) {
602
- anyStoreFailed = YES ;
625
+ storeFailures++;
626
+ MTR_LOG_INFO (" Store failed for clusterIndex" );
603
627
continue ;
604
628
}
605
629
@@ -615,20 +639,23 @@ - (void)storeAttributeValues:(NSArray<NSDictionary *> *)dataValues forNodeID:(NS
615
639
storeFailed = ![self _storeAttributeIndex: [attributeIndex arrayByAddingObject: path.attribute] forNodeID: nodeID endpointID: path.endpoint clusterID: path.cluster];
616
640
}
617
641
if (storeFailed) {
618
- anyStoreFailed = YES ;
642
+ storeFailures++;
643
+ MTR_LOG_INFO (" Store failed for attributeIndex" );
619
644
continue ;
620
645
}
621
646
622
647
// Store value
623
648
storeFailed = [self _storeAttributeValue: value forNodeID: nodeID endpointID: path.endpoint clusterID: path.cluster attributeID: path.attribute];
624
649
if (storeFailed) {
625
- anyStoreFailed = YES ;
650
+ storeFailures++;
651
+ MTR_LOG_INFO (" Store failed for attribute value" );
626
652
}
627
653
}
628
654
629
655
// In the rare event that store fails, allow all attribute store attempts to go through and prune empty branches at the end altogether.
630
- if (anyStoreFailed ) {
656
+ if (storeFailures ) {
631
657
[self _pruneEmptyStoredAttributesBranches ];
658
+ MTR_LOG_ERROR (" Store failed in -storeAttributeValues:forNodeID: %lu" , storeFailures);
632
659
}
633
660
});
634
661
}
0 commit comments