15
15
* limitations under the License.
16
16
*/
17
17
18
-
19
18
#import < Foundation/Foundation.h>
20
19
21
-
22
20
#import " CHIPDeviceController.h"
23
21
#import " CHIPError.h"
24
22
#import " CHIPLogging.h"
27
25
#include < inet/IPAddress.h>
28
26
#include < system/SystemPacketBuffer.h>
29
27
30
- static const char *const CHIP_WORK_QUEUE = " com.zigbee.chip.work" ;
31
- static const char *const CHIP_SELECT_QUEUE = " com.zigbee.chip.select" ;
28
+ static const char * const CHIP_WORK_QUEUE = " com.zigbee.chip.work" ;
29
+ static const char * const CHIP_SELECT_QUEUE = " com.zigbee.chip.select" ;
32
30
33
31
@interface CHIPDeviceController () {
34
- chip::DeviceController::ChipDeviceController* _cppController;
32
+ chip::DeviceController::ChipDeviceController * _cppController;
35
33
// queue used for all interactions with the cpp chip controller and for all chip internal events
36
34
// try to run small jobs in this queue
37
35
dispatch_queue_t _chipWorkQueue;
@@ -40,7 +38,7 @@ @interface CHIPDeviceController () {
40
38
dispatch_queue_t _chipSelectQueue;
41
39
// queue used to signal callbacks to the application
42
40
dispatch_queue_t _appCallbackQueue;
43
-
41
+
44
42
ControllerOnMessageBlock _onMessageHandler;
45
43
ControllerOnErrorBlock _onErrorHandler;
46
44
}
@@ -50,72 +48,73 @@ @interface CHIPDeviceController () {
50
48
@property (readonly ) dispatch_queue_t appCallbackQueue;
51
49
@property (readonly ) ControllerOnMessageBlock onMessageHandler;
52
50
@property (readonly ) ControllerOnErrorBlock onErrorHandler;
53
- @property (readonly ) chip::DeviceController::ChipDeviceController* cppController;
51
+ @property (readonly ) chip::DeviceController::ChipDeviceController * cppController;
54
52
55
53
@end
56
54
57
55
@implementation CHIPDeviceController
58
56
59
- - (instancetype )initWithCallbackQueue : (dispatch_queue_t )appCallbackQueue {
57
+ - (instancetype )initWithCallbackQueue : (dispatch_queue_t )appCallbackQueue
58
+ {
60
59
if (self = [super init ]) {
61
60
_appCallbackQueue = appCallbackQueue;
62
61
_chipWorkQueue = dispatch_queue_create (CHIP_WORK_QUEUE, DISPATCH_QUEUE_SERIAL);
63
62
if (!_chipWorkQueue) {
64
63
return nil ;
65
64
}
66
-
65
+
67
66
_chipSelectQueue = dispatch_queue_create (CHIP_SELECT_QUEUE, DISPATCH_QUEUE_SERIAL);
68
67
if (!_chipSelectQueue) {
69
68
return nil ;
70
69
}
71
-
70
+
72
71
_cppController = new chip::DeviceController::ChipDeviceController ();
73
- if (!_cppController) {
72
+ if (!_cppController) {
74
73
CHIP_LOG_ERROR (" Error: couldn't create c++ controller" );
75
74
return nil ;
76
75
}
77
-
78
- if (CHIP_NO_ERROR != _cppController->Init ()){
76
+
77
+ if (CHIP_NO_ERROR != _cppController->Init ()) {
79
78
CHIP_LOG_ERROR (" Error: couldn't initialize c++ controller" );
80
79
delete _cppController;
81
80
_cppController = NULL ;
82
81
return nil ;
83
82
}
84
83
}
85
-
84
+
86
85
return self;
87
86
}
88
87
89
88
static void onMessageReceived (chip::DeviceController::ChipDeviceController * deviceController, void * appReqState,
90
- chip::System::PacketBuffer * buffer, const chip::IPPacketInfo * packet_info)
89
+ chip::System::PacketBuffer * buffer, const chip::IPPacketInfo * packet_info)
91
90
{
92
91
CHIPDeviceController * controller = (__bridge CHIPDeviceController *) appReqState;
93
-
92
+
94
93
char src_addr[INET_ADDRSTRLEN];
95
94
size_t data_len = buffer->DataLength ();
96
-
95
+
97
96
packet_info->SrcAddress .ToString (src_addr, sizeof (src_addr));
98
- NSString * ipAddress = [[NSString alloc ] initWithUTF8String: src_addr];
99
-
100
- // convert to NSData and pass back to the application
101
- NSMutableData * dataBuffer = [[NSMutableData alloc ] initWithBytes: buffer->Start () length: data_len];
97
+ NSString * ipAddress = [[NSString alloc ] initWithUTF8String: src_addr];
98
+
99
+ // convert to NSData and pass back to the application
100
+ NSMutableData * dataBuffer = [[NSMutableData alloc ] initWithBytes: buffer->Start () length: data_len];
102
101
buffer = buffer->Next ();
103
102
104
103
while (buffer != NULL ) {
105
104
data_len = buffer->DataLength ();
106
105
[dataBuffer appendBytes: buffer->Start () length: data_len];
107
106
buffer = buffer->Next ();
108
107
}
109
-
108
+
110
109
[controller _dispatchAsyncMessageBlock: dataBuffer ipAddress: ipAddress port: packet_info->SrcPort];
111
-
112
- // ignore unused variable
110
+
111
+ // ignore unused variable
113
112
(void ) deviceController;
114
113
chip::System::PacketBuffer::Free (buffer);
115
114
}
116
115
117
116
static void onInternalError (chip::DeviceController::ChipDeviceController * deviceController, void * appReqState, CHIP_ERROR error,
118
- const chip::IPPacketInfo * pi )
117
+ const chip::IPPacketInfo * pi )
119
118
{
120
119
CHIPDeviceController * controller = (__bridge CHIPDeviceController *) appReqState;
121
120
[controller _dispatchAsyncErrorBlock: [CHIPError errorForCHIPErrorCode: error]];
@@ -124,29 +123,33 @@ static void onInternalError(chip::DeviceController::ChipDeviceController * devic
124
123
- (void )_dispatchAsyncErrorBlock : (NSError *)error
125
124
{
126
125
CHIP_LOG_METHOD_ENTRY ();
127
- // to avoid retaining "self"
126
+ // to avoid retaining "self"
128
127
ControllerOnErrorBlock onErrorHandler = self.onErrorHandler ;
129
-
128
+
130
129
dispatch_async (_appCallbackQueue, ^() {
131
130
onErrorHandler (error);
132
131
});
133
132
}
134
133
135
- - (void )_dispatchAsyncMessageBlock : (NSData *)data ipAddress : (NSString *)ipAddress port : (UInt16 )port
134
+ - (void )_dispatchAsyncMessageBlock : (NSData *)data ipAddress : (NSString *)ipAddress port : (UInt16 )port
136
135
{
137
136
CHIP_LOG_METHOD_ENTRY ();
138
- // to avoid retaining "self"
137
+ // to avoid retaining "self"
139
138
ControllerOnMessageBlock onMessageHandler = self.onMessageHandler ;
140
-
139
+
141
140
dispatch_async (_appCallbackQueue, ^() {
142
141
onMessageHandler (data, ipAddress, port);
143
142
});
144
143
}
145
144
146
-
147
- - (BOOL )connect : (NSString *)ipAddress port : (UInt16 )port error : (NSError * __autoreleasing *)error onMessage : (ControllerOnMessageBlock)onMessage onError : (ControllerOnErrorBlock)onError {
145
+ - (BOOL )connect : (NSString *)ipAddress
146
+ port : (UInt16 )port
147
+ error : (NSError * __autoreleasing *)error
148
+ onMessage : (ControllerOnMessageBlock)onMessage
149
+ onError : (ControllerOnErrorBlock)onError
150
+ {
148
151
__block CHIP_ERROR err = CHIP_NO_ERROR;
149
-
152
+
150
153
// TODO maybe refactor
151
154
// the work queue is being used for atomic access to chip's cpp controller
152
155
// this could be done async but the error we care about is sync. However, I think this could be restructured such that
@@ -157,43 +160,44 @@ - (BOOL)connect:(NSString *)ipAddress port:(UInt16)port error:(NSError * __autor
157
160
chip::Inet::IPAddress::FromString ([ipAddress UTF8String ], addr);
158
161
err = self.cppController ->ConnectDevice (0 , addr, NULL , onMessageReceived, onInternalError, port);
159
162
});
160
-
163
+
161
164
if (err != CHIP_NO_ERROR) {
162
165
CHIP_LOG_ERROR (" Error: %@, connect failed" , [CHIPError errorForCHIPErrorCode: err]);
163
166
if (error) {
164
167
*error = [CHIPError errorForCHIPErrorCode: err];
165
168
}
166
169
return NO ;
167
170
}
168
-
171
+
169
172
// Set the callback handlers
170
173
if (onMessage) {
171
- _onMessageHandler = onMessage;
174
+ _onMessageHandler = onMessage;
172
175
}
173
176
if (onError) {
174
- _onErrorHandler = onError;
177
+ _onErrorHandler = onError;
175
178
}
176
-
179
+
177
180
// Start the IO pump
178
181
[self _serviceEvents ];
179
182
180
183
return YES ;
181
184
}
182
185
183
- - (BOOL )sendMessage : (NSData *)message error : (NSError * __autoreleasing *)error {
186
+ - (BOOL )sendMessage : (NSData *)message error : (NSError * __autoreleasing *)error
187
+ {
184
188
__block CHIP_ERROR err = CHIP_NO_ERROR;
185
-
189
+
186
190
dispatch_sync (self.chipWorkQueue , ^() {
187
191
size_t messageLen = [message length ];
188
192
const void * messageChars = [message bytes ];
189
-
193
+
190
194
chip::System::PacketBuffer * buffer = chip::System::PacketBuffer::NewWithAvailableSize (messageLen);
191
195
buffer->SetDataLength (messageLen);
192
-
196
+
193
197
memcpy (buffer->Start (), messageChars, messageLen);
194
198
err = self.cppController ->SendMessage ((__bridge void *) self, buffer);
195
199
});
196
-
200
+
197
201
if (err != CHIP_NO_ERROR) {
198
202
CHIP_LOG_ERROR (" Error: %@, send failed" , [CHIPError errorForCHIPErrorCode: err]);
199
203
if (error) {
@@ -204,13 +208,14 @@ - (BOOL)sendMessage:(NSData *)message error:(NSError * __autoreleasing *)error {
204
208
return YES ;
205
209
}
206
210
207
- - (BOOL )disconnect : (NSError * __autoreleasing *)error {
211
+ - (BOOL )disconnect : (NSError * __autoreleasing *)error
212
+ {
208
213
__block CHIP_ERROR err = CHIP_NO_ERROR;
209
-
214
+
210
215
dispatch_sync (self.chipWorkQueue , ^() {
211
216
err = self.cppController ->DisconnectDevice ();
212
217
});
213
-
218
+
214
219
if (err != CHIP_NO_ERROR) {
215
220
CHIP_LOG_ERROR (" Error: %@, disconnect failed" , [CHIPError errorForCHIPErrorCode: err]);
216
221
if (error) {
@@ -221,14 +226,15 @@ - (BOOL)disconnect:(NSError * __autoreleasing *)error {
221
226
return YES ;
222
227
}
223
228
224
- - (BOOL )isConnected {
229
+ - (BOOL )isConnected
230
+ {
225
231
__block bool isConnected = false ;
226
-
227
- // the work queue is being used for atomic access to chip's cpp controller
232
+
233
+ // the work queue is being used for atomic access to chip's cpp controller
228
234
dispatch_sync (self.chipWorkQueue , ^() {
229
235
isConnected = self.cppController ->IsConnected ();
230
236
});
231
-
237
+
232
238
return isConnected ? YES : NO ;
233
239
}
234
240
@@ -239,26 +245,26 @@ - (void)_serviceEvents
239
245
__block fd_set readFDs, writeFDs, exceptFDs;
240
246
struct timeval aSleepTime;
241
247
int numFDs = 0 ;
242
- aSleepTime.tv_sec = 5 ;
243
-
248
+ aSleepTime.tv_sec = 5 ;
249
+
244
250
FD_ZERO (&readFDs);
245
251
FD_ZERO (&writeFDs);
246
252
FD_ZERO (&exceptFDs);
247
-
253
+
248
254
chip::System::Layer * systemLayer = NULL ;
249
255
chip::Inet::InetLayer * inetLayer = NULL ;
250
256
// ask for the system and inet layers
251
257
self.cppController ->GetLayers (&systemLayer, &inetLayer);
252
258
253
259
if (systemLayer != NULL && systemLayer->State () == chip::System::kLayerState_Initialized )
254
260
systemLayer->PrepareSelect (numFDs, &readFDs, &writeFDs, &exceptFDs, aSleepTime);
255
-
261
+
256
262
if (inetLayer != NULL && inetLayer->State == chip::Inet::InetLayer::kState_Initialized )
257
263
inetLayer->PrepareSelect (numFDs, &readFDs, &writeFDs, &exceptFDs, aSleepTime);
258
-
264
+
259
265
dispatch_async (self.chipSelectQueue , ^() {
260
266
int selectRes = select (numFDs, &readFDs, &writeFDs, &exceptFDs, const_cast <struct timeval *>(&aSleepTime));
261
-
267
+
262
268
dispatch_async (self.chipWorkQueue , ^() {
263
269
if (!self.cppController ->IsConnected ()) {
264
270
// cancel the loop, it'll restart the next time a connection is established
@@ -267,14 +273,12 @@ - (void)_serviceEvents
267
273
chip::System::Layer * systemLayer = NULL ;
268
274
chip::Inet::InetLayer * inetLayer = NULL ;
269
275
self.cppController ->GetLayers (&systemLayer, &inetLayer);
270
-
271
- if (systemLayer != NULL && systemLayer->State () == chip::System::kLayerState_Initialized )
272
- {
276
+
277
+ if (systemLayer != NULL && systemLayer->State () == chip::System::kLayerState_Initialized ) {
273
278
systemLayer->HandleSelectResult (selectRes, &readFDs, &writeFDs, &exceptFDs);
274
279
}
275
-
276
- if (inetLayer != NULL && inetLayer->State == chip::Inet::InetLayer::kState_Initialized )
277
- {
280
+
281
+ if (inetLayer != NULL && inetLayer->State == chip::Inet::InetLayer::kState_Initialized ) {
278
282
inetLayer->HandleSelectResult (selectRes, &readFDs, &writeFDs, &exceptFDs);
279
283
}
280
284
0 commit comments