Skip to content

Commit 16409ca

Browse files
Actually set the endpointID property of MTRCluster. (project-chip#31633)
It never got set to anything.
1 parent fc3d1cb commit 16409ca

File tree

8 files changed

+6527
-6503
lines changed

8 files changed

+6527
-6503
lines changed

src/darwin/Framework/CHIP/MTRCluster.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ - (instancetype)initWithEndpointID:(NSNumber *)endpointID queue:(dispatch_queue_
2828
if (self = [super init]) {
2929
// TODO consider range-checking the incoming number to make sure it's
3030
// actually in the EndpointId range
31-
_endpoint = endpointID.unsignedShortValue;
31+
_endpointID = endpointID;
3232
_callbackQueue = queue;
3333
}
3434
return self;

src/darwin/Framework/CHIP/MTRCluster_Internal.h

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ NS_ASSUME_NONNULL_BEGIN
3030

3131
@interface MTRCluster ()
3232
@property (readonly, nonatomic) dispatch_queue_t callbackQueue;
33-
@property (nonatomic, readonly) chip::EndpointId endpoint;
3433

3534
- (instancetype)initWithEndpointID:(NSNumber *)endpointID queue:(dispatch_queue_t)queue;
3635
@end

src/darwin/Framework/CHIP/templates/MTRBaseClusters-src.zapt

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ MTR{{cluster}}Cluster{{command}}Params
9191
{{/if}}
9292

9393
using RequestType = {{asUpperCamelCase parent.name}}::Commands::{{asUpperCamelCase name}}::Type;
94-
[self.device _invokeKnownCommandWithEndpointID:@(self.endpoint)
94+
[self.device _invokeKnownCommandWithEndpointID:self.endpointID
9595
clusterID:@(RequestType::GetClusterId())
9696
commandID:@(RequestType::GetCommandId())
9797
commandPayload:params
@@ -127,7 +127,7 @@ MTR{{cluster}}Cluster{{command}}Params
127127
(void (^)({{asObjectiveCClass type parent.name}} * _Nullable value, NSError * _Nullable error))completion
128128
{
129129
using TypeInfo = {{asUpperCamelCase parent.name}}::Attributes::{{asUpperCamelCase name}}::TypeInfo;
130-
[self.device _readKnownAttributeWithEndpointID:@(self.endpoint)
130+
[self.device _readKnownAttributeWithEndpointID:self.endpointID
131131
clusterID:@(TypeInfo::GetClusterId())
132132
attributeID:@(TypeInfo::GetAttributeId())
133133
{{#if_is_fabric_scoped_struct type}}
@@ -176,7 +176,7 @@ MTR{{cluster}}Cluster{{command}}Params
176176
TypeInfo::Type cppValue;
177177
{{>encode_value target="cppValue" source="value" cluster=parent.name errorCode="return CHIP_ERROR_INVALID_ARGUMENT;" depth=0}}
178178

179-
chip::Controller::ClusterBase cppCluster(exchangeManager, session, self.endpoint);
179+
chip::Controller::ClusterBase cppCluster(exchangeManager, session, self.endpointID.unsignedShortValue);
180180
return cppCluster.WriteAttribute<TypeInfo>(cppValue, bridge, successCb, failureCb, timedWriteTimeout);
181181
});
182182
std::move(*bridge).DispatchAction(self.device);
@@ -189,7 +189,7 @@ subscriptionEstablished:(MTRSubscriptionEstablishedHandler _Nullable)subscriptio
189189
reportHandler:(void (^)({{asObjectiveCClass type parent.name}} * _Nullable value, NSError * _Nullable error))reportHandler
190190
{
191191
using TypeInfo = {{asUpperCamelCase parent.name}}::Attributes::{{asUpperCamelCase name}}::TypeInfo;
192-
[self.device _subscribeToKnownAttributeWithEndpointID:@(self.endpoint)
192+
[self.device _subscribeToKnownAttributeWithEndpointID:self.endpointID
193193
clusterID:@(TypeInfo::GetClusterId())
194194
attributeID:@(TypeInfo::GetAttributeId())
195195
params:params

src/darwin/Framework/CHIP/templates/MTRClusters-src.zapt

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ MTR{{cluster}}Cluster{{command}}Params
7272
{{/if}}
7373

7474
using RequestType = {{asUpperCamelCase parent.name}}::Commands::{{asUpperCamelCase name}}::Type;
75-
[self.device _invokeKnownCommandWithEndpointID:@(self.endpoint)
75+
[self.device _invokeKnownCommandWithEndpointID:self.endpointID
7676
clusterID:@(RequestType::GetClusterId())
7777
commandID:@(RequestType::GetCommandId())
7878
commandPayload:params
@@ -107,7 +107,7 @@ MTR{{cluster}}Cluster{{command}}Params
107107
{{#*inline "cluster"}}{{asUpperCamelCase parent.name preserveAcronyms=true}}{{/inline}}
108108
{{#*inline "attribute"}}Attribute{{asUpperCamelCase name preserveAcronyms=true}}{{/inline}}
109109
- (NSDictionary<NSString *, id> * _Nullable)read{{>attribute}}WithParams:(MTRReadParams * _Nullable)params {
110-
return [self.device readAttributeWithEndpointID:@(self.endpoint) clusterID:@(MTRClusterIDType{{>cluster}}ID) attributeID:@(MTRAttributeIDTypeCluster{{>cluster}}{{>attribute}}ID) params:params];
110+
return [self.device readAttributeWithEndpointID:self.endpointID clusterID:@(MTRClusterIDType{{>cluster}}ID) attributeID:@(MTRAttributeIDTypeCluster{{>cluster}}{{>attribute}}ID) params:params];
111111
}
112112

113113
{{#if (or isWritableAttribute
@@ -126,7 +126,7 @@ MTR{{cluster}}Cluster{{command}}Params
126126
}
127127
{{/if}}
128128

129-
[self.device writeAttributeWithEndpointID:@(self.endpoint) clusterID:@(MTRClusterIDType{{>cluster}}ID) attributeID:@(MTRAttributeIDTypeCluster{{>cluster}}{{>attribute}}ID) value:dataValueDictionary expectedValueInterval:expectedValueIntervalMs timedWriteTimeout:timedWriteTimeout];
129+
[self.device writeAttributeWithEndpointID:self.endpointID clusterID:@(MTRClusterIDType{{>cluster}}ID) attributeID:@(MTRAttributeIDTypeCluster{{>cluster}}{{>attribute}}ID) value:dataValueDictionary expectedValueInterval:expectedValueIntervalMs timedWriteTimeout:timedWriteTimeout];
130130
}
131131

132132
{{/if}}

0 commit comments

Comments
 (0)