@@ -103,7 +103,7 @@ - (void)removePeripheralsFromCache;
103
103
// Make a copy of the device discriminator for the block to capture.
104
104
SetupDiscriminator deviceDiscriminator = inDeviceDiscriminator;
105
105
106
- ChipLogProgress (Ble, " %s " , __FUNCTION__ );
106
+ ChipLogProgress (Ble, " ConnectionDelegate NewConnection with discriminator " );
107
107
if (!bleWorkQueue) {
108
108
bleWorkQueue = dispatch_queue_create (kBleWorkQueueName , DISPATCH_QUEUE_SERIAL_WITH_AUTORELEASE_POOL);
109
109
}
@@ -134,12 +134,13 @@ - (void)removePeripheralsFromCache;
134
134
{
135
135
assertChipStackLockedByCurrentThread ();
136
136
137
- ChipLogProgress (Ble, " %s " , __FUNCTION__ );
137
+ ChipLogProgress (Ble, " ConnectionDelegate NewConnection with conn obj: %p " , connObj );
138
138
139
139
if (!bleWorkQueue) {
140
140
bleWorkQueue = dispatch_queue_create (kBleWorkQueueName , DISPATCH_QUEUE_SERIAL_WITH_AUTORELEASE_POOL);
141
141
}
142
142
143
+ CBPeripheral * peripheral = (__bridge CBPeripheral *) connObj; // bridge (and retain) before dispatching
143
144
dispatch_async (bleWorkQueue, ^{
144
145
// The BLE_CONNECTION_OBJECT represent a CBPeripheral object. In order for it to be valid the central
145
146
// manager needs to still be running.
@@ -157,15 +158,15 @@ - (void)removePeripheralsFromCache;
157
158
ble.appState = appState;
158
159
ble.onConnectionComplete = OnConnectionComplete;
159
160
ble.onConnectionError = OnConnectionError;
160
- [ble updateWithPeripheral: (__bridge CBPeripheral *) connObj ];
161
+ [ble updateWithPeripheral: peripheral ];
161
162
});
162
163
}
163
164
164
165
void BleConnectionDelegateImpl::StartScan (BleScannerDelegate * delegate)
165
166
{
166
167
assertChipStackLockedByCurrentThread ();
167
168
168
- ChipLogProgress (Ble, " %s" , __FUNCTION__ );
169
+ ChipLogProgress (Ble, " ConnectionDelegate StartScan %s" , (delegate ? " with delegate " : " " ) );
169
170
170
171
if (!bleWorkQueue) {
171
172
bleWorkQueue = dispatch_queue_create (kBleWorkQueueName , DISPATCH_QUEUE_SERIAL_WITH_AUTORELEASE_POOL);
@@ -191,15 +192,19 @@ - (void)removePeripheralsFromCache;
191
192
192
193
void BleConnectionDelegateImpl::StopScan ()
193
194
{
194
- assertChipStackLockedByCurrentThread ( );
195
- CancelConnection ();
195
+ ChipLogProgress (Ble, " ConnectionDelegate StopScan " );
196
+ DoCancel ();
196
197
}
197
198
198
199
CHIP_ERROR BleConnectionDelegateImpl::CancelConnection ()
199
200
{
200
- assertChipStackLockedByCurrentThread ();
201
+ ChipLogProgress (Ble, " ConnectionDelegate CancelConnection" );
202
+ return DoCancel ();
203
+ }
201
204
202
- ChipLogProgress (Ble, " %s" , __FUNCTION__);
205
+ CHIP_ERROR BleConnectionDelegateImpl::DoCancel ()
206
+ {
207
+ assertChipStackLockedByCurrentThread ();
203
208
if (bleWorkQueue == nil ) {
204
209
return CHIP_NO_ERROR;
205
210
}
@@ -284,6 +289,7 @@ - (void)setupTimer:(uint64_t)timeout
284
289
285
290
_timer = dispatch_source_create (DISPATCH_SOURCE_TYPE_TIMER, 0 , 0 , _workQueue);
286
291
dispatch_source_set_event_handler (_timer, ^{
292
+ ChipLogProgress (Ble, " ConnectionDelegate timeout" );
287
293
[self stop ];
288
294
[self dispatchConnectionError: BLE_ERROR_APP_CLOSED_CONNECTION];
289
295
});
@@ -374,7 +380,7 @@ - (void)centralManager:(CBCentralManager *)central
374
380
}
375
381
376
382
const uint8_t * bytes = (const uint8_t *) [serviceData bytes ];
377
- if ([serviceData length ] != 8 ) {
383
+ if ([serviceData length ] != sizeof (ChipBLEDeviceIdentificationInfo) ) {
378
384
NSMutableString * hexString = [NSMutableString stringWithCapacity: ([serviceData length ] * 2 )];
379
385
for (NSUInteger i = 0 ; i < [serviceData length ]; i++) {
380
386
[hexString appendString: [NSString stringWithFormat: @" %02lx " , (unsigned long ) bytes[i]]];
@@ -521,10 +527,11 @@ - (void)peripheral:(CBPeripheral *)peripheral
521
527
chip::Ble::ChipBleUUID svcId;
522
528
chip::Ble::ChipBleUUID charId;
523
529
[BleConnection fillServiceWithCharacteristicUuids: characteristic svcId: &svcId charId: &charId];
530
+ auto * value = characteristic.value ; // read immediately before dispatching
524
531
525
532
dispatch_async (_chipWorkQueue, ^{
526
533
// build a inet buffer from the rxEv and send to blelayer.
527
- auto msgBuf = chip::System::PacketBufferHandle::NewWithData (characteristic. value .bytes , characteristic. value .length );
534
+ auto msgBuf = chip::System::PacketBufferHandle::NewWithData (value.bytes , value.length );
528
535
529
536
if (msgBuf.IsNull ()) {
530
537
ChipLogError (Ble, " Failed at allocating buffer for incoming BLE data" );
@@ -583,7 +590,9 @@ - (void)stop
583
590
_centralManager.delegate = nil ;
584
591
_centralManager = nil ;
585
592
_peripheral = nil ;
586
- chip::DeviceLayer::Internal::ble = nil ;
593
+ if (chip::DeviceLayer::Internal::ble == self) {
594
+ chip::DeviceLayer::Internal::ble = nil ;
595
+ }
587
596
});
588
597
});
589
598
}
0 commit comments