@@ -746,42 +746,50 @@ void BLEManagerImpl::HandleAdvertisingTimer(chip::System::Layer *, void * appSta
746
746
747
747
void BLEManagerImpl::InitiateScan (BleScanState scanType)
748
748
{
749
+ CHIP_ERROR err = CHIP_ERROR_INCORRECT_STATE;
750
+
749
751
DriveBLEState ();
750
752
751
- if (scanType == BleScanState::kNotScanning )
752
- {
753
- ChipLogError (Ble, " Invalid scan type requested" );
754
- BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , CHIP_ERROR_INCORRECT_STATE);
755
- return ;
756
- }
757
-
758
- if (!mFlags .Has (Flags::kBluezAdapterAvailable ))
759
- {
760
- BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , BLE_ERROR_ADAPTER_UNAVAILABLE);
761
- return ;
762
- }
753
+ VerifyOrExit (scanType != BleScanState::kNotScanning ,
754
+ ChipLogError (Ble, " Invalid scan type requested: %d" , to_underlying (scanType)));
755
+ VerifyOrExit (!mDeviceScanner .IsScanning (), ChipLogError (Ble, " BLE scan already in progress" ));
756
+ VerifyOrExit (mFlags .Has (Flags::kBluezAdapterAvailable ), err = BLE_ERROR_ADAPTER_UNAVAILABLE);
763
757
764
758
mBLEScanConfig .mBleScanState = scanType;
765
759
766
- CHIP_ERROR err = mDeviceScanner .Init (mAdapter .get (), this );
767
- if (err != CHIP_NO_ERROR)
768
- {
760
+ err = mDeviceScanner .Init (mAdapter .get (), this );
761
+ VerifyOrExit (err == CHIP_NO_ERROR, {
769
762
mBLEScanConfig .mBleScanState = BleScanState::kNotScanning ;
770
- ChipLogError (Ble, " Failed to create a BLE device scanner: %" CHIP_ERROR_FORMAT, err.Format ());
771
- BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , CHIP_ERROR_INTERNAL);
772
- return ;
773
- }
763
+ ChipLogError (Ble, " Failed to create BLE device scanner: %" CHIP_ERROR_FORMAT, err.Format ());
764
+ });
774
765
775
- err = mDeviceScanner .StartScan (kNewConnectionScanTimeout );
766
+ err = mDeviceScanner .StartScan ();
767
+ VerifyOrExit (err == CHIP_NO_ERROR, {
768
+ mBLEScanConfig .mBleScanState = BleScanState::kNotScanning ;
769
+ ChipLogError (Ble, " Failed to start BLE scan: %" CHIP_ERROR_FORMAT, err.Format ());
770
+ });
771
+
772
+ err = DeviceLayer::SystemLayer ().StartTimer (kNewConnectionScanTimeout , HandleScannerTimer, this );
773
+ VerifyOrExit (err == CHIP_NO_ERROR, {
774
+ mBLEScanConfig .mBleScanState = BleScanState::kNotScanning ;
775
+ mDeviceScanner .StopScan ();
776
+ ChipLogError (Ble, " Failed to start BLE scan timeout: %" CHIP_ERROR_FORMAT, err.Format ());
777
+ });
778
+
779
+ exit :
776
780
if (err != CHIP_NO_ERROR)
777
781
{
778
- mBLEScanConfig .mBleScanState = BleScanState::kNotScanning ;
779
- ChipLogError (Ble, " Failed to start a BLE can: %" CHIP_ERROR_FORMAT, err.Format ());
780
782
BleConnectionDelegate::OnConnectionError (mBLEScanConfig .mAppState , err);
781
- return ;
782
783
}
783
784
}
784
785
786
+ void BLEManagerImpl::HandleScannerTimer (chip::System::Layer *, void * appState)
787
+ {
788
+ auto * manager = static_cast <BLEManagerImpl *>(appState);
789
+ manager->OnScanError (CHIP_ERROR_TIMEOUT);
790
+ manager->mDeviceScanner .StopScan ();
791
+ }
792
+
785
793
void BLEManagerImpl::CleanScanConfig ()
786
794
{
787
795
if (mBLEScanConfig .mBleScanState == BleScanState::kConnecting )
@@ -805,7 +813,10 @@ CHIP_ERROR BLEManagerImpl::CancelConnection()
805
813
mEndpoint .CancelConnect ();
806
814
// If in discovery mode, stop scan.
807
815
else if (mBLEScanConfig .mBleScanState != BleScanState::kNotScanning )
816
+ {
817
+ DeviceLayer::SystemLayer ().CancelTimer (HandleScannerTimer, this );
808
818
mDeviceScanner .StopScan ();
819
+ }
809
820
return CHIP_NO_ERROR;
810
821
}
811
822
@@ -894,6 +905,7 @@ void BLEManagerImpl::OnDeviceScanned(BluezDevice1 & device, const chip::Ble::Chi
894
905
// We StartScan in the ChipStack thread.
895
906
// StopScan should also be performed in the ChipStack thread.
896
907
// At the same time, the scan timer also needs to be canceled in the ChipStack thread.
908
+ DeviceLayer::SystemLayer ().CancelTimer (HandleScannerTimer, this );
897
909
mDeviceScanner .StopScan ();
898
910
// Stop scanning and then start connecting timer
899
911
DeviceLayer::SystemLayer ().StartTimer (kConnectTimeout , HandleConnectTimeout, &mEndpoint );
0 commit comments