Skip to content

Commit 9c558bf

Browse files
author
Rob Walker
authored
restyle ObjCplusplus (project-chip#843)
1 parent 5a9f46d commit 9c558bf

6 files changed

+178
-167
lines changed

src/darwin/Framework/CHIP/CHIPDeviceController.mm

+66-62
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@
1515
* limitations under the License.
1616
*/
1717

18-
1918
#import <Foundation/Foundation.h>
2019

21-
2220
#import "CHIPDeviceController.h"
2321
#import "CHIPError.h"
2422
#import "CHIPLogging.h"
@@ -27,11 +25,11 @@
2725
#include <inet/IPAddress.h>
2826
#include <system/SystemPacketBuffer.h>
2927

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";
3230

3331
@interface CHIPDeviceController () {
34-
chip::DeviceController::ChipDeviceController* _cppController;
32+
chip::DeviceController::ChipDeviceController * _cppController;
3533
// queue used for all interactions with the cpp chip controller and for all chip internal events
3634
// try to run small jobs in this queue
3735
dispatch_queue_t _chipWorkQueue;
@@ -40,7 +38,7 @@ @interface CHIPDeviceController () {
4038
dispatch_queue_t _chipSelectQueue;
4139
// queue used to signal callbacks to the application
4240
dispatch_queue_t _appCallbackQueue;
43-
41+
4442
ControllerOnMessageBlock _onMessageHandler;
4543
ControllerOnErrorBlock _onErrorHandler;
4644
}
@@ -50,72 +48,73 @@ @interface CHIPDeviceController () {
5048
@property (readonly) dispatch_queue_t appCallbackQueue;
5149
@property (readonly) ControllerOnMessageBlock onMessageHandler;
5250
@property (readonly) ControllerOnErrorBlock onErrorHandler;
53-
@property (readonly) chip::DeviceController::ChipDeviceController* cppController;
51+
@property (readonly) chip::DeviceController::ChipDeviceController * cppController;
5452

5553
@end
5654

5755
@implementation CHIPDeviceController
5856

59-
- (instancetype)initWithCallbackQueue:(dispatch_queue_t)appCallbackQueue {
57+
- (instancetype)initWithCallbackQueue:(dispatch_queue_t)appCallbackQueue
58+
{
6059
if (self = [super init]) {
6160
_appCallbackQueue = appCallbackQueue;
6261
_chipWorkQueue = dispatch_queue_create(CHIP_WORK_QUEUE, DISPATCH_QUEUE_SERIAL);
6362
if (!_chipWorkQueue) {
6463
return nil;
6564
}
66-
65+
6766
_chipSelectQueue = dispatch_queue_create(CHIP_SELECT_QUEUE, DISPATCH_QUEUE_SERIAL);
6867
if (!_chipSelectQueue) {
6968
return nil;
7069
}
71-
70+
7271
_cppController = new chip::DeviceController::ChipDeviceController();
73-
if(!_cppController) {
72+
if (!_cppController) {
7473
CHIP_LOG_ERROR("Error: couldn't create c++ controller");
7574
return nil;
7675
}
77-
78-
if (CHIP_NO_ERROR != _cppController->Init()){
76+
77+
if (CHIP_NO_ERROR != _cppController->Init()) {
7978
CHIP_LOG_ERROR("Error: couldn't initialize c++ controller");
8079
delete _cppController;
8180
_cppController = NULL;
8281
return nil;
8382
}
8483
}
85-
84+
8685
return self;
8786
}
8887

8988
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)
9190
{
9291
CHIPDeviceController * controller = (__bridge CHIPDeviceController *) appReqState;
93-
92+
9493
char src_addr[INET_ADDRSTRLEN];
9594
size_t data_len = buffer->DataLength();
96-
95+
9796
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];
102101
buffer = buffer->Next();
103102

104103
while (buffer != NULL) {
105104
data_len = buffer->DataLength();
106105
[dataBuffer appendBytes:buffer->Start() length:data_len];
107106
buffer = buffer->Next();
108107
}
109-
108+
110109
[controller _dispatchAsyncMessageBlock:dataBuffer ipAddress:ipAddress port:packet_info->SrcPort];
111-
112-
//ignore unused variable
110+
111+
// ignore unused variable
113112
(void) deviceController;
114113
chip::System::PacketBuffer::Free(buffer);
115114
}
116115

117116
static void onInternalError(chip::DeviceController::ChipDeviceController * deviceController, void * appReqState, CHIP_ERROR error,
118-
const chip::IPPacketInfo * pi)
117+
const chip::IPPacketInfo * pi)
119118
{
120119
CHIPDeviceController * controller = (__bridge CHIPDeviceController *) appReqState;
121120
[controller _dispatchAsyncErrorBlock:[CHIPError errorForCHIPErrorCode:error]];
@@ -124,29 +123,33 @@ static void onInternalError(chip::DeviceController::ChipDeviceController * devic
124123
- (void)_dispatchAsyncErrorBlock:(NSError *)error
125124
{
126125
CHIP_LOG_METHOD_ENTRY();
127-
//to avoid retaining "self"
126+
// to avoid retaining "self"
128127
ControllerOnErrorBlock onErrorHandler = self.onErrorHandler;
129-
128+
130129
dispatch_async(_appCallbackQueue, ^() {
131130
onErrorHandler(error);
132131
});
133132
}
134133

135-
- (void)_dispatchAsyncMessageBlock:(NSData *)data ipAddress:(NSString*)ipAddress port:(UInt16)port
134+
- (void)_dispatchAsyncMessageBlock:(NSData *)data ipAddress:(NSString *)ipAddress port:(UInt16)port
136135
{
137136
CHIP_LOG_METHOD_ENTRY();
138-
//to avoid retaining "self"
137+
// to avoid retaining "self"
139138
ControllerOnMessageBlock onMessageHandler = self.onMessageHandler;
140-
139+
141140
dispatch_async(_appCallbackQueue, ^() {
142141
onMessageHandler(data, ipAddress, port);
143142
});
144143
}
145144

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+
{
148151
__block CHIP_ERROR err = CHIP_NO_ERROR;
149-
152+
150153
// TODO maybe refactor
151154
// the work queue is being used for atomic access to chip's cpp controller
152155
// 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
157160
chip::Inet::IPAddress::FromString([ipAddress UTF8String], addr);
158161
err = self.cppController->ConnectDevice(0, addr, NULL, onMessageReceived, onInternalError, port);
159162
});
160-
163+
161164
if (err != CHIP_NO_ERROR) {
162165
CHIP_LOG_ERROR("Error: %@, connect failed", [CHIPError errorForCHIPErrorCode:err]);
163166
if (error) {
164167
*error = [CHIPError errorForCHIPErrorCode:err];
165168
}
166169
return NO;
167170
}
168-
171+
169172
// Set the callback handlers
170173
if (onMessage) {
171-
_onMessageHandler = onMessage;
174+
_onMessageHandler = onMessage;
172175
}
173176
if (onError) {
174-
_onErrorHandler = onError;
177+
_onErrorHandler = onError;
175178
}
176-
179+
177180
// Start the IO pump
178181
[self _serviceEvents];
179182

180183
return YES;
181184
}
182185

183-
- (BOOL)sendMessage:(NSData *)message error:(NSError * __autoreleasing *)error {
186+
- (BOOL)sendMessage:(NSData *)message error:(NSError * __autoreleasing *)error
187+
{
184188
__block CHIP_ERROR err = CHIP_NO_ERROR;
185-
189+
186190
dispatch_sync(self.chipWorkQueue, ^() {
187191
size_t messageLen = [message length];
188192
const void * messageChars = [message bytes];
189-
193+
190194
chip::System::PacketBuffer * buffer = chip::System::PacketBuffer::NewWithAvailableSize(messageLen);
191195
buffer->SetDataLength(messageLen);
192-
196+
193197
memcpy(buffer->Start(), messageChars, messageLen);
194198
err = self.cppController->SendMessage((__bridge void *) self, buffer);
195199
});
196-
200+
197201
if (err != CHIP_NO_ERROR) {
198202
CHIP_LOG_ERROR("Error: %@, send failed", [CHIPError errorForCHIPErrorCode:err]);
199203
if (error) {
@@ -204,13 +208,14 @@ - (BOOL)sendMessage:(NSData *)message error:(NSError * __autoreleasing *)error {
204208
return YES;
205209
}
206210

207-
- (BOOL)disconnect:(NSError * __autoreleasing *)error {
211+
- (BOOL)disconnect:(NSError * __autoreleasing *)error
212+
{
208213
__block CHIP_ERROR err = CHIP_NO_ERROR;
209-
214+
210215
dispatch_sync(self.chipWorkQueue, ^() {
211216
err = self.cppController->DisconnectDevice();
212217
});
213-
218+
214219
if (err != CHIP_NO_ERROR) {
215220
CHIP_LOG_ERROR("Error: %@, disconnect failed", [CHIPError errorForCHIPErrorCode:err]);
216221
if (error) {
@@ -221,14 +226,15 @@ - (BOOL)disconnect:(NSError * __autoreleasing *)error {
221226
return YES;
222227
}
223228

224-
- (BOOL)isConnected {
229+
- (BOOL)isConnected
230+
{
225231
__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
228234
dispatch_sync(self.chipWorkQueue, ^() {
229235
isConnected = self.cppController->IsConnected();
230236
});
231-
237+
232238
return isConnected ? YES : NO;
233239
}
234240

@@ -239,26 +245,26 @@ - (void)_serviceEvents
239245
__block fd_set readFDs, writeFDs, exceptFDs;
240246
struct timeval aSleepTime;
241247
int numFDs = 0;
242-
aSleepTime.tv_sec = 5;
243-
248+
aSleepTime.tv_sec = 5;
249+
244250
FD_ZERO(&readFDs);
245251
FD_ZERO(&writeFDs);
246252
FD_ZERO(&exceptFDs);
247-
253+
248254
chip::System::Layer * systemLayer = NULL;
249255
chip::Inet::InetLayer * inetLayer = NULL;
250256
// ask for the system and inet layers
251257
self.cppController->GetLayers(&systemLayer, &inetLayer);
252258

253259
if (systemLayer != NULL && systemLayer->State() == chip::System::kLayerState_Initialized)
254260
systemLayer->PrepareSelect(numFDs, &readFDs, &writeFDs, &exceptFDs, aSleepTime);
255-
261+
256262
if (inetLayer != NULL && inetLayer->State == chip::Inet::InetLayer::kState_Initialized)
257263
inetLayer->PrepareSelect(numFDs, &readFDs, &writeFDs, &exceptFDs, aSleepTime);
258-
264+
259265
dispatch_async(self.chipSelectQueue, ^() {
260266
int selectRes = select(numFDs, &readFDs, &writeFDs, &exceptFDs, const_cast<struct timeval *>(&aSleepTime));
261-
267+
262268
dispatch_async(self.chipWorkQueue, ^() {
263269
if (!self.cppController->IsConnected()) {
264270
// cancel the loop, it'll restart the next time a connection is established
@@ -267,14 +273,12 @@ - (void)_serviceEvents
267273
chip::System::Layer * systemLayer = NULL;
268274
chip::Inet::InetLayer * inetLayer = NULL;
269275
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) {
273278
systemLayer->HandleSelectResult(selectRes, &readFDs, &writeFDs, &exceptFDs);
274279
}
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) {
278282
inetLayer->HandleSelectResult(selectRes, &readFDs, &writeFDs, &exceptFDs);
279283
}
280284

0 commit comments

Comments
 (0)