35
35
#include < type_traits>
36
36
#include < utility>
37
37
38
+ #include < ble/BleError.h>
38
39
#include < ble/CHIPBleServiceData.h>
39
40
#include < lib/support/CodeUtils.h>
40
41
#include < lib/support/SafeInt.h>
@@ -123,6 +124,7 @@ void BLEManagerImpl::_Shutdown()
123
124
DeviceLayer::SystemLayer ().CancelTimer (HandleConnectTimeout, &mEndpoint );
124
125
// Release BLE connection resources (unregister from BlueZ).
125
126
mEndpoint .Shutdown ();
127
+ mBluezObjectManager .Shutdown ();
126
128
mFlags .Clear (Flags::kBluezBLELayerInitialized );
127
129
}
128
130
@@ -251,8 +253,7 @@ void BLEManagerImpl::_OnPlatformEvent(const ChipDeviceEvent * event)
251
253
252
254
void BLEManagerImpl::HandlePlatformSpecificBLEEvent (const ChipDeviceEvent * apEvent)
253
255
{
254
- CHIP_ERROR err = CHIP_NO_ERROR;
255
- bool controlOpComplete = false ;
256
+ CHIP_ERROR err = CHIP_NO_ERROR;
256
257
ChipLogDetail (DeviceLayer, " HandlePlatformSpecificBLEEvent %d" , apEvent->Type );
257
258
switch (apEvent->Type )
258
259
{
@@ -288,37 +289,37 @@ void BLEManagerImpl::HandlePlatformSpecificBLEEvent(const ChipDeviceEvent * apEv
288
289
break ;
289
290
case DeviceEventType::kPlatformLinuxBLEPeripheralAdvStartComplete :
290
291
SuccessOrExit (err = apEvent->Platform .BLEPeripheralAdvStartComplete .mError );
291
- sInstance . mFlags .Clear (Flags::kControlOpInProgress ).Clear (Flags::kAdvertisingRefreshNeeded );
292
+ mFlags .Clear (Flags::kControlOpInProgress ).Clear (Flags::kAdvertisingRefreshNeeded );
292
293
// Do not restart the timer if it is still active. This is to avoid the timer from being restarted
293
294
// if the advertising is stopped due to a premature release.
294
295
if (!DeviceLayer::SystemLayer ().IsTimerActive (HandleAdvertisingTimer, this ))
295
296
{
296
297
// Start a timer to make sure that the fast advertising is stopped after specified timeout.
297
298
SuccessOrExit (err = DeviceLayer::SystemLayer ().StartTimer (kFastAdvertiseTimeout , HandleAdvertisingTimer, this ));
298
299
}
299
- sInstance . mFlags .Set (Flags::kAdvertising );
300
+ mFlags .Set (Flags::kAdvertising );
300
301
break ;
301
302
case DeviceEventType::kPlatformLinuxBLEPeripheralAdvStopComplete :
302
303
SuccessOrExit (err = apEvent->Platform .BLEPeripheralAdvStopComplete .mError );
303
- sInstance . mFlags .Clear (Flags::kControlOpInProgress ).Clear (Flags::kAdvertisingRefreshNeeded );
304
+ mFlags .Clear (Flags::kControlOpInProgress ).Clear (Flags::kAdvertisingRefreshNeeded );
304
305
DeviceLayer::SystemLayer ().CancelTimer (HandleAdvertisingTimer, this );
305
-
306
306
// Transition to the not Advertising state...
307
- if (sInstance . mFlags .Has (Flags::kAdvertising ))
307
+ if (mFlags .Has (Flags::kAdvertising ))
308
308
{
309
- sInstance . mFlags .Clear (Flags::kAdvertising );
309
+ mFlags .Clear (Flags::kAdvertising );
310
310
ChipLogProgress (DeviceLayer, " CHIPoBLE advertising stopped" );
311
311
}
312
312
break ;
313
313
case DeviceEventType::kPlatformLinuxBLEPeripheralAdvReleased :
314
314
// If the advertising was stopped due to a premature release, check if it needs to be restarted.
315
- sInstance . mFlags .Clear (Flags::kAdvertising );
315
+ mFlags .Clear (Flags::kAdvertising );
316
316
DriveBLEState ();
317
317
break ;
318
318
case DeviceEventType::kPlatformLinuxBLEPeripheralRegisterAppComplete :
319
319
SuccessOrExit (err = apEvent->Platform .BLEPeripheralRegisterAppComplete .mError );
320
+ mFlags .Clear (Flags::kControlOpInProgress );
320
321
mFlags .Set (Flags::kAppRegistered );
321
- controlOpComplete = true ;
322
+ DriveBLEState () ;
322
323
break ;
323
324
default :
324
325
break ;
@@ -330,13 +331,7 @@ void BLEManagerImpl::HandlePlatformSpecificBLEEvent(const ChipDeviceEvent * apEv
330
331
ChipLogError (DeviceLayer, " Disabling CHIPoBLE service due to error: %s" , ErrorStr (err));
331
332
mServiceMode = ConnectivityManager::kCHIPoBLEServiceMode_Disabled ;
332
333
DeviceLayer::SystemLayer ().CancelTimer (HandleAdvertisingTimer, this );
333
- sInstance .mFlags .Clear (Flags::kControlOpInProgress );
334
- }
335
-
336
- if (controlOpComplete)
337
- {
338
334
mFlags .Clear (Flags::kControlOpInProgress );
339
- DriveBLEState ();
340
335
}
341
336
}
342
337
@@ -587,11 +582,25 @@ void BLEManagerImpl::DriveBLEState()
587
582
// If there's already a control operation in progress, wait until it completes.
588
583
VerifyOrExit (!mFlags .Has (Flags::kControlOpInProgress ), /* */ );
589
584
590
- // Initializes the Bluez BLE layer if needed.
591
- if (mServiceMode == ConnectivityManager::kCHIPoBLEServiceMode_Enabled && ! mFlags . Has (Flags:: kBluezBLELayerInitialized ) )
585
+ // Initializes the BlueZ BLE layer if needed.
586
+ if (mServiceMode == ConnectivityManager::kCHIPoBLEServiceMode_Enabled )
592
587
{
593
- SuccessOrExit (err = mEndpoint .Init (mIsCentral , mAdapterId ));
594
- mFlags .Set (Flags::kBluezBLELayerInitialized );
588
+ if (!mFlags .Has (Flags::kBluezManagerInitialized ))
589
+ {
590
+ SuccessOrExit (err = mBluezObjectManager .Init ());
591
+ mFlags .Set (Flags::kBluezManagerInitialized );
592
+ }
593
+ if (!mFlags .Has (Flags::kBluezAdapterAvailable ))
594
+ {
595
+ mAdapter .reset (mBluezObjectManager .GetAdapter (mAdapterId ));
596
+ VerifyOrExit (mAdapter , err = BLE_ERROR_ADAPTER_UNAVAILABLE);
597
+ mFlags .Set (Flags::kBluezAdapterAvailable );
598
+ }
599
+ if (!mFlags .Has (Flags::kBluezBLELayerInitialized ))
600
+ {
601
+ SuccessOrExit (err = mEndpoint .Init (mAdapter .get (), mIsCentral ));
602
+ mFlags .Set (Flags::kBluezBLELayerInitialized );
603
+ }
595
604
}
596
605
597
606
// Register the CHIPoBLE application with the Bluez BLE layer if needed.
@@ -614,7 +623,7 @@ void BLEManagerImpl::DriveBLEState()
614
623
// Configure advertising data if it hasn't been done yet.
615
624
if (!mFlags .Has (Flags::kAdvertisingConfigured ))
616
625
{
617
- SuccessOrExit (err = mBLEAdvertisement .Init (mEndpoint , mpBLEAdvUUID, mDeviceName ));
626
+ SuccessOrExit (err = mBLEAdvertisement .Init (mAdapter . get () , mpBLEAdvUUID, mDeviceName ));
618
627
mFlags .Set (Flags::kAdvertisingConfigured );
619
628
}
620
629
@@ -724,41 +733,33 @@ void BLEManagerImpl::InitiateScan(BleScanState scanType)
724
733
725
734
if (scanType == BleScanState::kNotScanning )
726
735
{
727
- BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , CHIP_ERROR_INCORRECT_STATE);
728
736
ChipLogError (Ble, " Invalid scan type requested" );
729
- return ;
730
- }
731
-
732
- if (!mFlags .Has (Flags::kBluezBLELayerInitialized ))
733
- {
734
737
BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , CHIP_ERROR_INCORRECT_STATE);
735
- ChipLogError (Ble, " BLE Layer is not yet initialized" );
736
738
return ;
737
739
}
738
740
739
- if (mEndpoint . GetAdapter () == nullptr )
741
+ if (! mFlags . Has (Flags:: kBluezAdapterAvailable ) )
740
742
{
741
- BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , CHIP_ERROR_INCORRECT_STATE);
742
- ChipLogError (Ble, " No adapter available for new connection establishment" );
743
+ BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , BLE_ERROR_ADAPTER_UNAVAILABLE);
743
744
return ;
744
745
}
745
746
746
747
mBLEScanConfig .mBleScanState = scanType;
747
748
748
- CHIP_ERROR err = mDeviceScanner .Init (mEndpoint . GetAdapter (), this );
749
+ CHIP_ERROR err = mDeviceScanner .Init (mAdapter . get (), this );
749
750
if (err != CHIP_NO_ERROR)
750
751
{
751
752
mBLEScanConfig .mBleScanState = BleScanState::kNotScanning ;
753
+ ChipLogError (Ble, " Failed to create a BLE device scanner: %" CHIP_ERROR_FORMAT, err.Format ());
752
754
BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , CHIP_ERROR_INTERNAL);
753
- ChipLogError (Ble, " Failed to create a BLE device scanner" );
754
755
return ;
755
756
}
756
757
757
758
err = mDeviceScanner .StartScan (kNewConnectionScanTimeout );
758
759
if (err != CHIP_NO_ERROR)
759
760
{
760
761
mBLEScanConfig .mBleScanState = BleScanState::kNotScanning ;
761
- ChipLogError (Ble, " Failed to start a BLE can: %s " , chip::ErrorStr ( err));
762
+ ChipLogError (Ble, " Failed to start a BLE can: %" CHIP_ERROR_FORMAT, err. Format ( ));
762
763
BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , err);
763
764
return ;
764
765
}
0 commit comments