forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMTRDeviceController+XPC.mm
258 lines (227 loc) · 9.23 KB
/
MTRDeviceController+XPC.mm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/**
*
* Copyright (c) 2022-2023 Project CHIP Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import "MTRDeviceController+XPC.h"
#import "MTRBaseDevice.h"
#import "MTRCluster.h"
#import "MTRDeviceControllerOverXPC.h"
NS_ASSUME_NONNULL_BEGIN
static NSString * const kFabricFilteredKey = @"fabricFiltered";
static NSString * const kKeepPreviousSubscriptionsKey = @"keepPreviousSubscriptions";
static NSString * const kAutoResubscribeKey = @"autoResubscribe";
static NSString * const kMinIntervalKey = @"minInterval";
static NSString * const kMaxIntervalKey = @"maxInterval";
// Classes that are used by MTRDevice responses. In particular, needs to
// include NSError.
static NSSet * GetXPCAllowedClasses()
{
static NSSet * const sXPCAllowedClasses = [NSSet setWithArray:@[
[NSString class],
[NSNumber class],
[NSData class],
[NSArray class],
[NSDictionary class],
[NSError class],
[NSDate class],
]];
return sXPCAllowedClasses;
}
static NSArray * _Nullable encodeAttributePath(MTRAttributePath * _Nullable path)
{
if (!path) {
return nil;
}
return @[ path.endpoint, path.cluster, path.attribute ];
}
static NSArray * _Nullable encodeCommandPath(MTRCommandPath * _Nullable path)
{
if (!path) {
return nil;
}
return @[ path.endpoint, path.cluster, path.command ];
}
static MTRAttributePath * _Nullable decodeAttributePath(NSArray * _Nullable pathArray)
{
if (pathArray == nil || [pathArray count] != 3) {
return nil;
}
return [MTRAttributePath attributePathWithEndpointID:pathArray[0] clusterID:pathArray[1] attributeID:pathArray[2]];
}
static MTRCommandPath * _Nullable decodeCommandPath(NSArray * _Nullable pathArray)
{
if (pathArray == nil || [pathArray count] != 3) {
return nil;
}
return [MTRCommandPath commandPathWithEndpointID:pathArray[0] clusterID:pathArray[1] commandID:pathArray[2]];
}
static void decodeReadParams(NSDictionary<NSString *, id> * inParams, MTRReadParams * outParams)
{
NSNumber * _Nullable fabricFiltered = inParams[kFabricFilteredKey];
if (fabricFiltered == nil) {
outParams.filterByFabric = YES;
} else {
outParams.filterByFabric = [fabricFiltered boolValue];
}
}
@implementation MTRDeviceController (XPC)
+ (MTRDeviceController *)sharedControllerWithID:(id<NSCopying> _Nullable)controllerID
xpcConnectBlock:(MTRXPCConnectBlock)xpcConnectBlock
{
return [MTRDeviceControllerOverXPC sharedControllerWithID:controllerID xpcConnectBlock:xpcConnectBlock];
}
+ (NSArray<NSDictionary<NSString *, id> *> * _Nullable)encodeXPCResponseValues:
(NSArray<NSDictionary<NSString *, id> *> * _Nullable)values
{
if (!values) {
return values;
}
NSMutableArray * result = [NSMutableArray array];
for (NSDictionary<NSString *, id> * value in values) {
if (!value || (value[MTRAttributePathKey] == nil && value[MTRCommandPathKey] == nil)) {
[result addObject:value];
continue;
}
NSMutableDictionary<NSString *, id> * resultValue = [NSMutableDictionary dictionaryWithCapacity:[value count]];
[resultValue addEntriesFromDictionary:value];
if (value[MTRAttributePathKey]) {
resultValue[MTRAttributePathKey] = encodeAttributePath(value[MTRAttributePathKey]);
}
if (value[MTRCommandPathKey]) {
resultValue[MTRCommandPathKey] = encodeCommandPath(value[MTRCommandPathKey]);
}
[result addObject:resultValue];
}
return result;
}
+ (NSArray<NSDictionary<NSString *, id> *> * _Nullable)decodeXPCResponseValues:
(NSArray<NSDictionary<NSString *, id> *> * _Nullable)values
{
if (!values) {
return values;
}
NSMutableArray * result = [NSMutableArray array];
for (NSDictionary<NSString *, id> * value in values) {
if (!value || (value[MTRAttributePathKey] == nil && value[MTRCommandPathKey] == nil)) {
[result addObject:value];
}
NSMutableDictionary<NSString *, id> * resultValue = [NSMutableDictionary dictionaryWithCapacity:[value count]];
[resultValue addEntriesFromDictionary:value];
if (value[MTRAttributePathKey]) {
resultValue[MTRAttributePathKey] = decodeAttributePath(value[MTRAttributePathKey]);
}
if (value[MTRCommandPathKey]) {
resultValue[MTRCommandPathKey] = decodeCommandPath(value[MTRCommandPathKey]);
}
[result addObject:resultValue];
}
return result;
}
+ (NSDictionary<NSString *, id> * _Nullable)encodeXPCReadParams:(MTRReadParams *)params
{
if (!params) {
return nil;
}
NSMutableDictionary<NSString *, id> * result = [NSMutableDictionary dictionary];
result[kFabricFilteredKey] = @(params.filterByFabric);
return result;
}
+ (MTRReadParams * _Nullable)decodeXPCReadParams:(NSDictionary<NSString *, id> * _Nullable)params
{
if (!params) {
return nil;
}
MTRReadParams * result = [[MTRReadParams alloc] init];
decodeReadParams(params, result);
return result;
}
+ (NSDictionary<NSString *, id> * _Nullable)encodeXPCSubscribeParams:(MTRSubscribeParams * _Nullable)params
{
if (!params) {
return nil;
}
NSMutableDictionary<NSString *, id> * result =
[NSMutableDictionary dictionaryWithDictionary:[MTRDeviceController encodeXPCReadParams:params]];
result[kKeepPreviousSubscriptionsKey] = @(!params.replaceExistingSubscriptions);
result[kAutoResubscribeKey] = @(params.resubscribeAutomatically);
result[kMinIntervalKey] = params.minInterval;
result[kMaxIntervalKey] = params.maxInterval;
return result;
}
+ (MTRSubscribeParams * _Nullable)decodeXPCSubscribeParams:(NSDictionary<NSString *, id> * _Nullable)params
{
if (!params) {
return nil;
}
MTRSubscribeParams * result = [[MTRSubscribeParams alloc] initWithMinInterval:params[kMinIntervalKey]
maxInterval:params[kMaxIntervalKey]];
decodeReadParams(params, result);
NSNumber * _Nullable keepPreviousSubscriptions = params[kKeepPreviousSubscriptionsKey];
if (keepPreviousSubscriptions == nil) {
result.replaceExistingSubscriptions = YES;
} else {
result.replaceExistingSubscriptions = ![keepPreviousSubscriptions boolValue];
}
NSNumber * _Nullable autoResubscribe = params[kAutoResubscribeKey];
if (autoResubscribe == nil) {
result.resubscribeAutomatically = YES;
} else {
result.resubscribeAutomatically = [autoResubscribe boolValue];
}
return result;
}
+ (NSXPCInterface *)xpcInterfaceForServerProtocol
{
auto * xpcInterface = [NSXPCInterface interfaceWithProtocol:@protocol(MTRDeviceControllerServerProtocol)];
[xpcInterface setClasses:GetXPCAllowedClasses()
forSelector:@selector(readAttributeWithController:nodeId:endpointId:clusterId:attributeId:params:completion:)
argumentIndex:0
ofReply:YES];
[xpcInterface setClasses:GetXPCAllowedClasses()
forSelector:@selector(writeAttributeWithController:nodeId:endpointId:clusterId:attributeId:value:timedWriteTimeout:completion:)
argumentIndex:0
ofReply:YES];
[xpcInterface setClasses:GetXPCAllowedClasses()
forSelector:@selector(invokeCommandWithController:nodeId:endpointId:clusterId:commandId:fields:timedInvokeTimeout:completion:)
argumentIndex:0
ofReply:YES];
[xpcInterface setClasses:GetXPCAllowedClasses()
forSelector:@selector(readAttributeCacheWithController:nodeId:endpointId:clusterId:attributeId:completion:)
argumentIndex:0
ofReply:YES];
[xpcInterface setClasses:GetXPCAllowedClasses()
forSelector:@selector(downloadLogWithController:nodeId:type:timeout:completion:)
argumentIndex:0
ofReply:YES];
return xpcInterface;
}
+ (NSXPCInterface *)xpcInterfaceForClientProtocol
{
auto * xpcInterface = [NSXPCInterface interfaceWithProtocol:@protocol(MTRDeviceControllerClientProtocol)];
[xpcInterface setClasses:GetXPCAllowedClasses()
forSelector:@selector(handleReportWithController:nodeId:values:error:)
argumentIndex:2
ofReply:NO];
return xpcInterface;
}
@end
@implementation MTRDeviceController (Deprecated_XPC)
+ (MTRDeviceController *)sharedControllerWithId:(id<NSCopying> _Nullable)controllerID
xpcConnectBlock:(MTRXPCConnectBlock)xpcConnectBlock
{
return [MTRDeviceController sharedControllerWithID:controllerID xpcConnectBlock:xpcConnectBlock];
}
@end
NS_ASSUME_NONNULL_END