Skip to content

Commit 1160f97

Browse files
woody-applerestyled-commitsanush-appleksperling-apple
authored
Add a way for a client to know if the device cache is primed in Darwin (project-chip#32556)
* Initial commit * Restyled by whitespace * Restyled by clang-format * Update src/darwin/Framework/CHIP/MTRDevice.mm Co-authored-by: Anush Nadathur <anush@apple.com> * Update src/darwin/Framework/CHIP/MTRDevice.h Co-authored-by: Karsten Sperling <113487422+ksperling-apple@users.noreply.github.com> * Adding header * Restyled by clang-format --------- Co-authored-by: Restyled.io <commits@restyled.io> Co-authored-by: Anush Nadathur <anush@apple.com> Co-authored-by: Karsten Sperling <113487422+ksperling-apple@users.noreply.github.com>
1 parent c9dc927 commit 1160f97

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

src/darwin/Framework/CHIP/MTRDevice.h

+8
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,14 @@ MTR_AVAILABLE(ios(16.1), macos(13.0), watchos(9.1), tvos(16.1))
6464
*/
6565
@property (nonatomic, readonly) MTRDeviceState state;
6666

67+
/**
68+
* Is the state cache primed for this device?
69+
*
70+
* This verifies that both the MTRDeviceController has a storage delegate, and a subscription has been set up and the resulting state has been cached. If this is true this means most state is ready to cache and will not require a round trip to the accessory.
71+
*
72+
*/
73+
@property (readonly) BOOL deviceCachePrimed;
74+
6775
/**
6876
* The estimated device system start time.
6977
*

src/darwin/Framework/CHIP/MTRDevice.mm

+7
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#import "MTRError_Internal.h"
3434
#import "MTREventTLVValueDecoder_Internal.h"
3535
#import "MTRLogging_Internal.h"
36+
#import "MTRUnfairLock.h"
3637
#import "zap-generated/MTRCommandPayloads_Internal.h"
3738

3839
#include "lib/core/CHIPError.h"
@@ -2017,6 +2018,12 @@ - (void)setAttributeValues:(NSArray<NSDictionary *> *)attributeValues reportChan
20172018
os_unfair_lock_unlock(&self->_lock);
20182019
}
20192020

2021+
- (BOOL)deviceCachePrimed
2022+
{
2023+
std::lock_guard lock(_lock);
2024+
return [self _isCachePrimedWithInitialConfigurationData];
2025+
}
2026+
20202027
// If value is non-nil, associate with expectedValueID
20212028
// If value is nil, remove only if expectedValueID matches
20222029
// previousValue is an out parameter

0 commit comments

Comments
 (0)