Skip to content

Commit bfb416b

Browse files
committed
[Darwin] Internal state plumbing for the _XPC classes
1 parent 143bc7c commit bfb416b

File tree

5 files changed

+148
-27
lines changed

5 files changed

+148
-27
lines changed

src/darwin/Framework/CHIP/MTRDeviceController_XPC.mm

+28-5
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ @interface MTRDeviceController_XPC ()
4444

4545
@implementation MTRDeviceController_XPC
4646

47+
@synthesize controllerNodeID = _controllerNodeID;
48+
4749
+ (NSMutableSet *)_allowedClasses
4850
{
4951
static NSArray * sBaseAllowedClasses = @[
@@ -95,6 +97,20 @@ - (NSXPCInterface *)_interfaceForServerProtocol
9597
argumentIndex:0
9698
ofReply:YES];
9799

100+
// registerNodeID: returns dictionary containing standard nsstring / nsnumber / nsdate objects.
101+
allowedClasses = [MTRDeviceController_XPC _allowedClasses];
102+
[interface setClasses:allowedClasses
103+
forSelector:@selector(deviceController:registerNodeID:reply:)
104+
argumentIndex:0
105+
ofReply:YES];
106+
107+
// checkInWithContext: returns dictionary containing standard nsstring / nsnumber objects.
108+
allowedClasses = [MTRDeviceController_XPC _allowedClasses];
109+
[interface setClasses:allowedClasses
110+
forSelector:@selector(deviceController:checkInWithContext:reply:)
111+
argumentIndex:0
112+
ofReply:YES];
113+
98114
return interface;
99115
}
100116

@@ -202,9 +218,12 @@ - (BOOL)_setupXPCConnection
202218
MTR_LOG("%@ Activating new XPC connection", self);
203219
[self.xpcConnection activate];
204220

205-
[[self.xpcConnection remoteObjectProxyWithErrorHandler:^(NSError * _Nonnull error) {
221+
[[self.xpcConnection synchronousRemoteObjectProxyWithErrorHandler:^(NSError * _Nonnull error) {
206222
MTR_LOG_ERROR("Checkin error: %@", error);
207-
}] deviceController:self.uniqueIdentifier checkInWithContext:[NSDictionary dictionary]];
223+
}] deviceController:self.uniqueIdentifier checkInWithContext:@{} reply:^(NSDictionary * _Nonnull controllerInfo) {
224+
// Get the controller nodeID
225+
;
226+
}];
208227

209228
// FIXME: Trying to kick all the MTRDevices attached to this controller to re-establish connections
210229
// This state needs to be stored properly and re-established at connnection time
@@ -214,10 +233,14 @@ - (BOOL)_setupXPCConnection
214233
MTR_LOG("%@ => Registering nodeID: %@", self, nodeID);
215234
mtr_weakify(self);
216235

217-
[[self.xpcConnection remoteObjectProxyWithErrorHandler:^(NSError * _Nonnull error) {
236+
[[self.xpcConnection synchronousRemoteObjectProxyWithErrorHandler:^(NSError * _Nonnull error) {
218237
mtr_strongify(self);
219238
MTR_LOG_ERROR("%@ Registration error for device nodeID: %@ : %@", self, nodeID, error);
220-
}] deviceController:self.uniqueIdentifier registerNodeID:nodeID];
239+
}] deviceController:self.uniqueIdentifier registerNodeID:nodeID reply:^(NSDictionary * _Nonnull internalState) {
240+
mtr_strongify(self);
241+
MTRDevice_XPC * device = (MTRDevice_XPC *) [self deviceForNodeID:nodeID];
242+
[device device:nodeID internalStateUpdated:internalState];
243+
}];
221244
}
222245

223246
MTR_LOG("%@ Done existing NodeID Registration", self);
@@ -320,7 +343,7 @@ - (MTRDevice *)_setupDeviceForNodeID:(NSNumber *)nodeID prefetchedClusterData:(N
320343
#pragma mark - XPC Action Overrides
321344

322345
MTR_DEVICECONTROLLER_SIMPLE_REMOTE_XPC_GETTER(isRunning, BOOL, NO, getIsRunningWithReply)
323-
MTR_DEVICECONTROLLER_SIMPLE_REMOTE_XPC_GETTER(controllerNodeID, NSNumber *, nil, controllerNodeIDWithReply)
346+
//MTR_DEVICECONTROLLER_SIMPLE_REMOTE_XPC_GETTER(controllerNodeID, NSNumber *, nil, controllerNodeIDWithReply)
324347

325348
// Not Supported via XPC
326349
// - (oneway void)deviceController:(NSUUID *)controller setupCommissioningSessionWithPayload:(MTRSetupPayload *)payload newNodeID:(NSNumber *)newNodeID withReply:(void(^)(BOOL success, NSError * _Nullable error))reply;

src/darwin/Framework/CHIP/MTRDevice_Concrete.mm

+55-11
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,14 @@ @implementation MTRDevice_Concrete {
350350
NSDate * _Nullable _mostRecentReportTimeForDescription;
351351
// Copy of _lastSubscriptionFailureTime that is safe to use in description.
352352
NSDate * _Nullable _lastSubscriptionFailureTimeForDescription;
353+
// Copy of _state that is safe to use in description.
354+
MTRDeviceState _deviceStateForDescription;
355+
// Copy of _deviceCachePrimed that is safe to use in description.
356+
BOOL _deviceCachePrimedForDescription;
357+
// Copy of _estimatedStartTime that is safe to use in description.
358+
NSDate * _Nullable _estimatedStartTimeForDescription;
359+
// Copy of _estimatedSubscriptionLatency that is safe to use in description.
360+
NSNumber * _Nullable _estimatedSubscriptionLatencyForDescription;
353361
}
354362

355363
// synthesize superclass property readwrite accessors
@@ -473,11 +481,16 @@ - (NSDictionary *)_internalProperties
473481
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyKeyVendorID, _vid, properties);
474482
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyKeyProductID, _pid, properties);
475483
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyNetworkFeatures, _allNetworkFeatures, properties);
476-
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyDeviceState, [NSNumber numberWithUnsignedInteger:_internalDeviceStateForDescription], properties);
484+
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyDeviceInternalState, [NSNumber numberWithUnsignedInteger:_internalDeviceStateForDescription], properties);
477485
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyLastSubscriptionAttemptWait, [NSNumber numberWithUnsignedInt:_lastSubscriptionAttemptWaitForDescription], properties);
478486
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyMostRecentReportTime, _mostRecentReportTimeForDescription, properties);
479487
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyLastSubscriptionFailureTime, _lastSubscriptionFailureTimeForDescription, properties);
480488

489+
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyDeviceState, [NSNumber numberWithUnsignedInteger:_deviceStateForDescription], properties);
490+
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyDeviceCachePrimed, @(_deviceCachePrimedForDescription), properties);
491+
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyEstimatedStartTime, _estimatedStartTimeForDescription, properties);
492+
MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyEstimatedSubscriptionLatency, _estimatedSubscriptionLatencyForDescription, properties);
493+
481494
return properties;
482495
}
483496

@@ -964,11 +977,15 @@ - (void)_changeState:(MTRDeviceState)state
964977
os_unfair_lock_assert_owner(&self->_lock);
965978
MTRDeviceState lastState = _state;
966979
_state = state;
980+
{
981+
std::lock_guard lock(_descriptionLock);
982+
_deviceStateForDescription = _state;
983+
}
967984
if (lastState != state) {
968985
if (state != MTRDeviceStateReachable) {
969986
MTR_LOG("%@ reachability state change %lu => %lu, set estimated start time to nil", self, static_cast<unsigned long>(lastState),
970987
static_cast<unsigned long>(state));
971-
_estimatedStartTime = nil;
988+
[self _updateEstimatedStartTime:nil];
972989
_estimatedStartTimeFromGeneralDiagnosticsUpTime = nil;
973990
} else {
974991
MTR_LOG(
@@ -1025,6 +1042,15 @@ - (MTRInternalDeviceState)_getInternalState
10251042
}
10261043
#endif
10271044

1045+
- (void)_updateEstimatedSubscriptionLatency:(NSNumber *)estimatedSubscriptionLatency
1046+
{
1047+
os_unfair_lock_assert_owner(&_lock);
1048+
_estimatedSubscriptionLatency = estimatedSubscriptionLatency;
1049+
1050+
std::lock_guard lock(_descriptionLock);
1051+
_estimatedSubscriptionLatencyForDescription = estimatedSubscriptionLatency;
1052+
}
1053+
10281054
// First Time Sync happens 2 minutes after reachability (this can be changed in the future)
10291055
#define MTR_DEVICE_TIME_UPDATE_INITIAL_WAIT_TIME_SEC (60 * 2)
10301056
- (void)_handleSubscriptionEstablished
@@ -1056,10 +1082,10 @@ - (void)_handleSubscriptionEstablished
10561082
// way around.
10571083
NSTimeInterval subscriptionLatency = -[initialSubscribeStart timeIntervalSinceNow];
10581084
if (_estimatedSubscriptionLatency == nil) {
1059-
_estimatedSubscriptionLatency = @(subscriptionLatency);
1085+
[self _updateEstimatedSubscriptionLatency:@(subscriptionLatency)];
10601086
} else {
10611087
NSTimeInterval newSubscriptionLatencyEstimate = MTRDEVICE_SUBSCRIPTION_LATENCY_NEW_VALUE_WEIGHT * subscriptionLatency + (1 - MTRDEVICE_SUBSCRIPTION_LATENCY_NEW_VALUE_WEIGHT) * _estimatedSubscriptionLatency.doubleValue;
1062-
_estimatedSubscriptionLatency = @(newSubscriptionLatencyEstimate);
1088+
[self _updateEstimatedSubscriptionLatency:@(newSubscriptionLatencyEstimate)];
10631089
}
10641090
[self _storePersistedDeviceData];
10651091
}
@@ -1733,6 +1759,15 @@ - (void)setStorageBehaviorConfiguration:(MTRDeviceStorageBehaviorConfiguration *
17331759
[self _resetStorageBehaviorState];
17341760
}
17351761

1762+
- (void)_updateDeviceCachePrimed:(BOOL)deviceCachePrimed
1763+
{
1764+
os_unfair_lock_assert_owner(&_lock);
1765+
_deviceCachePrimed = deviceCachePrimed;
1766+
1767+
std::lock_guard lock(_descriptionLock);
1768+
_deviceCachePrimedForDescription = deviceCachePrimed;
1769+
}
1770+
17361771
- (void)_handleReportEnd
17371772
{
17381773
MTR_LOG("%@ handling report end", self);
@@ -1764,7 +1799,7 @@ - (void)_handleReportEnd
17641799
if (!_deviceCachePrimed) {
17651800
// This is the end of the priming sequence of data reports, so we have
17661801
// all the data for the device now.
1767-
_deviceCachePrimed = YES;
1802+
[self _updateDeviceCachePrimed:YES];
17681803
[self _callDelegateDeviceCachePrimed];
17691804
}
17701805

@@ -1954,6 +1989,15 @@ - (BOOL)_interestedPaths:(NSArray * _Nullable)interestedPaths includesEventPath:
19541989
return filteredEvents;
19551990
}
19561991

1992+
- (void)_updateEstimatedStartTime:(NSDate *)estimatedStartTime
1993+
{
1994+
os_unfair_lock_assert_owner(&_lock);
1995+
_estimatedStartTime = estimatedStartTime;
1996+
1997+
std::lock_guard lock(_descriptionLock);
1998+
_estimatedStartTimeForDescription = _estimatedStartTime;
1999+
}
2000+
19572001
- (void)_handleEventReport:(NSArray<NSDictionary<NSString *, id> *> *)eventReport
19582002
{
19592003
std::lock_guard lock(_lock);
@@ -1999,11 +2043,11 @@ - (void)_handleEventReport:(NSArray<NSDictionary<NSString *, id> *> *)eventRepor
19992043
// If UpTime was received, make use of it as mark of system start time
20002044
MTR_LOG("%@ StartUp event: set estimated start time forward to %@", self,
20012045
_estimatedStartTimeFromGeneralDiagnosticsUpTime);
2002-
_estimatedStartTime = _estimatedStartTimeFromGeneralDiagnosticsUpTime;
2046+
[self _updateEstimatedStartTime:_estimatedStartTimeFromGeneralDiagnosticsUpTime];
20032047
} else {
20042048
// If UpTime was not received, reset estimated start time in case of reboot
20052049
MTR_LOG("%@ StartUp event: set estimated start time to nil", self);
2006-
_estimatedStartTime = nil;
2050+
[self _updateEstimatedStartTime:nil];
20072051
}
20082052
}
20092053

@@ -2023,7 +2067,7 @@ - (void)_handleEventReport:(NSArray<NSDictionary<NSString *, id> *> *)eventRepor
20232067
NSTimeInterval eventTimeValue = eventTimeValueNumber.doubleValue;
20242068
NSDate * potentialSystemStartTime = [NSDate dateWithTimeIntervalSinceNow:-eventTimeValue];
20252069
if (!_estimatedStartTime || ([potentialSystemStartTime compare:_estimatedStartTime] == NSOrderedAscending)) {
2026-
_estimatedStartTime = potentialSystemStartTime;
2070+
[self _updateEstimatedStartTime:potentialSystemStartTime];
20272071
}
20282072
}
20292073

@@ -3601,7 +3645,7 @@ - (NSArray *)_getAttributesToReportWithReportedValues:(NSArray<NSDictionary<NSSt
36013645
if (!_estimatedStartTime || ([potentialSystemStartTime compare:_estimatedStartTime] == NSOrderedAscending)) {
36023646
MTR_LOG("%@ General Diagnostics UpTime %.3lf: estimated start time %@ => %@", self, upTime,
36033647
oldSystemStartTime, potentialSystemStartTime);
3604-
_estimatedStartTime = potentialSystemStartTime;
3648+
[self _updateEstimatedStartTime:potentialSystemStartTime];
36053649
}
36063650

36073651
// Save estimate in the subscription resumption case, for when StartUp event uses it
@@ -3693,7 +3737,7 @@ - (void)setPersistedClusterData:(NSDictionary<MTRClusterPath *, MTRDeviceCluster
36933737

36943738
// We have some stored data. Since we don't store data until the end of the
36953739
// initial priming report, our device cache must be primed.
3696-
_deviceCachePrimed = YES;
3740+
[self _updateDeviceCachePrimed:YES];
36973741
}
36983742

36993743
- (void)_setLastInitialSubscribeLatency:(id)latency
@@ -3705,7 +3749,7 @@ - (void)_setLastInitialSubscribeLatency:(id)latency
37053749
return;
37063750
}
37073751

3708-
_estimatedSubscriptionLatency = latency;
3752+
[self _updateEstimatedSubscriptionLatency:latency];
37093753
}
37103754

37113755
- (void)setPersistedDeviceData:(NSDictionary<NSString *, id> *)data

src/darwin/Framework/CHIP/MTRDevice_Internal.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,13 @@ static NSString * const sLastInitialSubscribeLatencyKey = @"lastInitialSubscribe
220220
static NSString * const kMTRDeviceInternalPropertyKeyVendorID = @"MTRDeviceInternalStateKeyVendorID";
221221
static NSString * const kMTRDeviceInternalPropertyKeyProductID = @"MTRDeviceInternalStateKeyProductID";
222222
static NSString * const kMTRDeviceInternalPropertyNetworkFeatures = @"MTRDeviceInternalPropertyNetworkFeatures";
223-
static NSString * const kMTRDeviceInternalPropertyDeviceState = @"MTRDeviceInternalPropertyDeviceState";
223+
static NSString * const kMTRDeviceInternalPropertyDeviceInternalState = @"MTRDeviceInternalPropertyDeviceInternalState";
224224
static NSString * const kMTRDeviceInternalPropertyLastSubscriptionAttemptWait = @"kMTRDeviceInternalPropertyLastSubscriptionAttemptWait";
225225
static NSString * const kMTRDeviceInternalPropertyMostRecentReportTime = @"MTRDeviceInternalPropertyMostRecentReportTime";
226226
static NSString * const kMTRDeviceInternalPropertyLastSubscriptionFailureTime = @"MTRDeviceInternalPropertyLastSubscriptionFailureTime";
227+
static NSString * const kMTRDeviceInternalPropertyDeviceState = @"MTRDeviceInternalPropertyDeviceState";
228+
static NSString * const kMTRDeviceInternalPropertyDeviceCachePrimed = @"MTRDeviceInternalPropertyDeviceCachePrimed";
229+
static NSString * const kMTRDeviceInternalPropertyEstimatedStartTime = @"MTRDeviceInternalPropertyEstimatedStartTime";
230+
static NSString * const kMTRDeviceInternalPropertyEstimatedSubscriptionLatency = @"MTRDeviceInternalPropertyEstimatedSubscriptionLatency";
227231

228232
NS_ASSUME_NONNULL_END

src/darwin/Framework/CHIP/MTRDevice_XPC.mm

+51-10
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ - (NSString *)description
113113
}
114114

115115
// TODO: Add these to the description
116-
// MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyDeviceState, _internalDeviceStateForDescription, properties);
116+
// MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyDeviceInternalState, _internalDeviceStateForDescription, properties);
117117
// MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyLastSubscriptionAttemptWait, _lastSubscriptionAttemptWaitForDescription, properties);
118118
// MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyMostRecentReportTime, _mostRecentReportTimeForDescription, properties);
119119
// MTR_OPTIONAL_ATTRIBUTE(kMTRDeviceInternalPropertyLastSubscriptionFailureTime, _lastSubscriptionFailureTimeForDescription, properties);
@@ -136,23 +136,23 @@ - (NSString *)description
136136
// required methods for MTRDeviceDelegates
137137
- (oneway void)device:(NSNumber *)nodeID stateChanged:(MTRDeviceState)state
138138
{
139-
MTR_LOG("%s", __PRETTY_FUNCTION__);
139+
MTR_LOG("%@ %s", self, __PRETTY_FUNCTION__);
140140
[self _lockAndCallDelegatesWithBlock:^(id<MTRDeviceDelegate> delegate) {
141141
[delegate device:self stateChanged:state];
142142
}];
143143
}
144144

145145
- (oneway void)device:(NSNumber *)nodeID receivedAttributeReport:(NSArray<NSDictionary<NSString *, id> *> *)attributeReport
146146
{
147-
MTR_LOG("%s", __PRETTY_FUNCTION__);
147+
MTR_LOG("%@ %s", self, __PRETTY_FUNCTION__);
148148
[self _lockAndCallDelegatesWithBlock:^(id<MTRDeviceDelegate> delegate) {
149149
[delegate device:self receivedAttributeReport:attributeReport];
150150
}];
151151
}
152152

153153
- (oneway void)device:(NSNumber *)nodeID receivedEventReport:(NSArray<NSDictionary<NSString *, id> *> *)eventReport
154154
{
155-
MTR_LOG("%s", __PRETTY_FUNCTION__);
155+
MTR_LOG("%@ %s", self, __PRETTY_FUNCTION__);
156156
[self _lockAndCallDelegatesWithBlock:^(id<MTRDeviceDelegate> delegate) {
157157
[delegate device:self receivedEventReport:eventReport];
158158
}];
@@ -161,7 +161,7 @@ - (oneway void)device:(NSNumber *)nodeID receivedEventReport:(NSArray<NSDictiona
161161
// optional methods for MTRDeviceDelegates - check for implementation before calling
162162
- (oneway void)deviceBecameActive:(NSNumber *)nodeID
163163
{
164-
MTR_LOG("%s", __PRETTY_FUNCTION__);
164+
MTR_LOG("%@ %s", self, __PRETTY_FUNCTION__);
165165
[self _lockAndCallDelegatesWithBlock:^(id<MTRDeviceDelegate> delegate) {
166166
if ([delegate respondsToSelector:@selector(deviceBecameActive:)]) {
167167
[delegate deviceBecameActive:self];
@@ -171,6 +171,7 @@ - (oneway void)deviceBecameActive:(NSNumber *)nodeID
171171

172172
- (oneway void)deviceCachePrimed:(NSNumber *)nodeID
173173
{
174+
MTR_LOG("%@ %s", self, __PRETTY_FUNCTION__);
174175
[self _lockAndCallDelegatesWithBlock:^(id<MTRDeviceDelegate> delegate) {
175176
if ([delegate respondsToSelector:@selector(deviceCachePrimed:)]) {
176177
[delegate deviceCachePrimed:self];
@@ -180,6 +181,7 @@ - (oneway void)deviceCachePrimed:(NSNumber *)nodeID
180181

181182
- (oneway void)deviceConfigurationChanged:(NSNumber *)nodeID
182183
{
184+
MTR_LOG("%@ %s", self, __PRETTY_FUNCTION__);
183185
[self _lockAndCallDelegatesWithBlock:^(id<MTRDeviceDelegate> delegate) {
184186
if ([delegate respondsToSelector:@selector(deviceConfigurationChanged:)]) {
185187
[delegate deviceConfigurationChanged:self];
@@ -189,16 +191,55 @@ - (oneway void)deviceConfigurationChanged:(NSNumber *)nodeID
189191

190192
- (oneway void)device:(NSNumber *)nodeID internalStateUpdated:(NSDictionary *)dictionary
191193
{
194+
MTR_LOG("%@ %s", self, __PRETTY_FUNCTION__);
195+
196+
// Save old state for comparison later
197+
NSNumber *oldStateNumber = self._internalState[kMTRDeviceInternalPropertyDeviceState];
198+
NSNumber *newStateNumber = dictionary[kMTRDeviceInternalPropertyDeviceState];
192199
[self _setInternalState:dictionary];
193-
MTR_LOG("%@ internal state updated", self);
200+
201+
// Call delegate if state changed. State is considered changed if:
202+
// 1) old state is nil but new state is not nil
203+
// 2) old state is not nil but new state is nil
204+
// 3) both old and new state are not nil, and they are not equal
205+
if ((!oldStateNumber && newStateNumber) ||
206+
(oldStateNumber && !newStateNumber) ||
207+
(oldStateNumber && newStateNumber && ![newStateNumber isEqualToNumber:oldStateNumber])) {
208+
MTRDeviceState state = static_cast<MTRDeviceState>(newStateNumber ? newStateNumber.unsignedIntegerValue : MTRDeviceStateUnknown);
209+
[self _lockAndCallDelegatesWithBlock:^(id<MTRDeviceDelegate> delegate) {
210+
[delegate device:self stateChanged:state];
211+
}];
212+
}
213+
}
214+
215+
- (MTRDeviceState)state
216+
{
217+
NSNumber *stateNumber = self._internalState[kMTRDeviceInternalPropertyDeviceState];
218+
return stateNumber ? static_cast<MTRDeviceState>(stateNumber.unsignedIntegerValue) : MTRDeviceStateUnknown;
219+
}
220+
221+
- (BOOL)deviceCachePrimed
222+
{
223+
NSNumber *deviceCachePrimedNumber = self._internalState[kMTRDeviceInternalPropertyDeviceCachePrimed];
224+
return deviceCachePrimedNumber.boolValue;
225+
}
226+
227+
- (NSDate *)estimatedStartTime
228+
{
229+
return self._internalState[kMTRDeviceInternalPropertyEstimatedStartTime];
230+
}
231+
232+
- (NSNumber *)estimatedSubscriptionLatency
233+
{
234+
return self._internalState[kMTRDeviceInternalPropertyEstimatedSubscriptionLatency];
194235
}
195236

196237
#pragma mark - Remote Commands
197238

198-
MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(state, MTRDeviceState, MTRDeviceStateUnknown, getStateWithReply)
199-
MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(deviceCachePrimed, BOOL, NO, getDeviceCachePrimedWithReply)
200-
MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(estimatedStartTime, NSDate * _Nullable, nil, getEstimatedStartTimeWithReply)
201-
MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(estimatedSubscriptionLatency, NSNumber * _Nullable, nil, getEstimatedSubscriptionLatencyWithReply)
239+
//MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(state, MTRDeviceState, MTRDeviceStateUnknown, getStateWithReply)
240+
//MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(deviceCachePrimed, BOOL, NO, getDeviceCachePrimedWithReply)
241+
//MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(estimatedStartTime, NSDate * _Nullable, nil, getEstimatedStartTimeWithReply)
242+
//MTR_DEVICE_SIMPLE_REMOTE_XPC_GETTER(estimatedSubscriptionLatency, NSNumber * _Nullable, nil, getEstimatedSubscriptionLatencyWithReply)
202243

203244
typedef NSDictionary<NSString *, id> * _Nullable ReadAttributeResponseType;
204245
MTR_DEVICE_COMPLEX_REMOTE_XPC_GETTER(readAttributeWithEndpointID

0 commit comments

Comments
 (0)