Skip to content

Commit e12ace0

Browse files
Remove dead code from BLE layer class (#33171)
* Remove OnChipBleConnectReceived from BleLayer class * Remove HandleReadReceived from BleLayer class * Restyled by clang-format --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent b3cc270 commit e12ace0

File tree

11 files changed

+4
-58
lines changed

11 files changed

+4
-58
lines changed

src/ble/BleLayer.h

-7
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,6 @@ class DLL_EXPORT BleLayer
229229
void * mAppState = nullptr;
230230
BleLayerDelegate * mBleTransport = nullptr;
231231

232-
typedef void (*BleConnectionReceivedFunct)(BLEEndPoint * newEndPoint);
233-
BleConnectionReceivedFunct OnChipBleConnectReceived;
234-
235232
// Public functions:
236233
BleLayer();
237234

@@ -302,10 +299,6 @@ class DLL_EXPORT BleLayer
302299
/// Call when an outstanding GATT indication receives a positive receipt confirmation.
303300
bool HandleIndicationConfirmation(BLE_CONNECTION_OBJECT connObj, const ChipBleUUID * svcId, const ChipBleUUID * charId);
304301

305-
/// Call when a GATT read request is received.
306-
bool HandleReadReceived(BLE_CONNECTION_OBJECT connObj, BLE_READ_REQUEST_CONTEXT requestContext, const ChipBleUUID * svcId,
307-
const ChipBleUUID * charId);
308-
309302
/**< Platform must call this function when any previous operation undertaken by the BleLayer via BleAdapter
310303
* fails, such as a characteristic write request or subscribe attempt, or when a BLE connection is closed.
311304
*

src/platform/ESP32/BLEManagerImpl.h

-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ namespace DeviceLayer {
7979
namespace Internal {
8080

8181
#if CONFIG_ENABLE_ESP32_BLE_CONTROLLER
82-
void HandleIncomingBleConnection(Ble::BLEEndPoint * bleEP);
83-
8482
enum class BleScanState : uint8_t
8583
{
8684
kNotScanning,

src/platform/ESP32/bluedroid/BLEManagerImpl.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ CHIP_ERROR BLEManagerImpl::_Init()
220220
#if CONFIG_ENABLE_ESP32_BLE_CONTROLLER
221221
mFlags.ClearAll().Set(Flags::kAdvertisingEnabled, CHIP_DEVICE_CONFIG_CHIPOBLE_ENABLE_ADVERTISING_AUTOSTART && !mIsCentral);
222222
mFlags.Set(Flags::kFastAdvertisingEnabled, !mIsCentral);
223-
OnChipBleConnectReceived = HandleIncomingBleConnection;
224-
225223
#else
226224
mFlags.ClearAll().Set(Flags::kAdvertisingEnabled, CHIP_DEVICE_CONFIG_CHIPOBLE_ENABLE_ADVERTISING_AUTOSTART);
227225
mFlags.Set(Flags::kFastAdvertisingEnabled, true);
@@ -741,11 +739,6 @@ void BLEManagerImpl::ConnectDevice(esp_bd_addr_t & addr, esp_ble_addr_type_t add
741739
ChipLogError(Ble, "Failed to connect to rc=%d", rc);
742740
}
743741
}
744-
745-
void HandleIncomingBleConnection(BLEEndPoint * bleEP)
746-
{
747-
ChipLogProgress(DeviceLayer, "CHIPoBLE connection received");
748-
}
749742
#endif
750743

751744
bool BLEManagerImpl::SubscribeCharacteristic(BLE_CONNECTION_OBJECT conId, const ChipBleUUID * svcId, const ChipBleUUID * charId)

src/platform/ESP32/nimble/BLEManagerImpl.cpp

+1-11
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,6 @@ void BLEManagerImpl::ConnectDevice(const ble_addr_t & addr, uint16_t timeout)
200200
ChipLogError(Ble, "Failed to connect to rc=%d", rc);
201201
}
202202
}
203-
204-
void HandleIncomingBleConnection(BLEEndPoint * bleEP)
205-
{
206-
ChipLogProgress(DeviceLayer, "CHIPoBLE connection received");
207-
}
208203
#endif
209204

210205
CHIP_ERROR BLEManagerImpl::_Init()
@@ -237,12 +232,11 @@ CHIP_ERROR BLEManagerImpl::_Init()
237232
#if CONFIG_ENABLE_ESP32_BLE_CONTROLLER
238233
mFlags.ClearAll().Set(Flags::kAdvertisingEnabled, CHIP_DEVICE_CONFIG_CHIPOBLE_ENABLE_ADVERTISING_AUTOSTART && !mIsCentral);
239234
mFlags.Set(Flags::kFastAdvertisingEnabled, !mIsCentral);
240-
OnChipBleConnectReceived = HandleIncomingBleConnection;
241235
#else
242236
mFlags.ClearAll().Set(Flags::kAdvertisingEnabled, CHIP_DEVICE_CONFIG_CHIPOBLE_ENABLE_ADVERTISING_AUTOSTART);
243237
mFlags.Set(Flags::kFastAdvertisingEnabled, true);
244-
245238
#endif
239+
246240
mNumGAPCons = 0;
247241
memset(reinterpret_cast<void *>(mCons), 0, sizeof(mCons));
248242
mServiceMode = ConnectivityManager::kCHIPoBLEServiceMode_Enabled;
@@ -266,10 +260,6 @@ void BLEManagerImpl::_Shutdown()
266260
mFlags.ClearAll().Set(Flags::kGATTServiceStarted);
267261
mServiceMode = ConnectivityManager::kCHIPoBLEServiceMode_Disabled;
268262

269-
#if CONFIG_ENABLE_ESP32_BLE_CONTROLLER
270-
OnChipBleConnectReceived = nullptr;
271-
#endif // CONFIG_ENABLE_ESP32_BLE_CONTROLLER
272-
273263
PlatformMgr().ScheduleWork(DriveBLEState, 0);
274264
}
275265

src/platform/Linux/BLEManagerImpl.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@ const ChipBleUUID ChipUUID_CHIPoBLEChar_TX = { { 0x18, 0xEE, 0x2E, 0xF5, 0x26, 0
8181

8282
BLEManagerImpl BLEManagerImpl::sInstance;
8383

84-
void HandleIncomingBleConnection(BLEEndPoint * bleEP)
85-
{
86-
ChipLogProgress(DeviceLayer, "CHIPoBluez con rcvd");
87-
}
88-
8984
CHIP_ERROR BLEManagerImpl::_Init()
9085
{
9186
CHIP_ERROR err;
@@ -99,8 +94,6 @@ CHIP_ERROR BLEManagerImpl::_Init()
9994

10095
memset(mDeviceName, 0, sizeof(mDeviceName));
10196

102-
OnChipBleConnectReceived = HandleIncomingBleConnection;
103-
10497
DeviceLayer::SystemLayer().ScheduleLambda([this] { DriveBLEState(); });
10598

10699
exit:

src/platform/Linux/BLEManagerImpl.h

-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ namespace chip {
3939
namespace DeviceLayer {
4040
namespace Internal {
4141

42-
void HandleIncomingBleConnection(Ble::BLEEndPoint * bleEP);
43-
4442
enum class BleScanState : uint8_t
4543
{
4644
kNotScanning,

src/platform/cc13xx_26xx/BLEManagerImpl.cpp

+1-7
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,7 @@ CHIP_ERROR BLEManagerImpl::_Init(void)
118118
mFlags.ClearAll().Set(Flags::kAdvertisingEnabled, CHIP_DEVICE_CONFIG_CHIPOBLE_ENABLE_ADVERTISING_AUTOSTART);
119119
mFlags.Set(Flags::kFastAdvertisingEnabled, true);
120120

121-
mServiceMode = ConnectivityManager::kCHIPoBLEServiceMode_Enabled;
122-
OnChipBleConnectReceived = HandleIncomingBleConnection;
121+
mServiceMode = ConnectivityManager::kCHIPoBLEServiceMode_Enabled;
123122

124123
err = CreateEventHandler();
125124
return err;
@@ -367,11 +366,6 @@ bool BLEManagerImpl::SendReadResponse(BLE_CONNECTION_OBJECT conId, BLE_READ_REQU
367366
return false;
368367
}
369368

370-
void BLEManagerImpl::HandleIncomingBleConnection(BLEEndPoint * bleEP)
371-
{
372-
BLEMGR_LOG("BLEMGR: HandleIncomingBleConnection");
373-
}
374-
375369
// ===== Helper Members that implement the Low level BLE Stack behavior.
376370

377371
/*********************************************************************

src/platform/cc13xx_26xx/cc13x4_26x4/BLEManagerImpl.h

-2
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,6 @@ class BLEManagerImpl final : public BLEManager, private BleLayer, private BlePla
317317
void ClearPendingBLEParamUpdate(uint16_t connHandle);
318318
void UpdateBLERPA(void);
319319

320-
static void HandleIncomingBleConnection(Ble::BLEEndPoint * bleEP);
321-
322320
/* Static helper function */
323321
static void EventHandler(void * arg);
324322
static CHIP_ERROR DriveBLEState(void);

src/platform/webos/BLEManagerImpl.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,6 @@ const ChipBleUUID ChipUUID_CHIPoBLEChar_TX = { { 0x18, 0xEE, 0x2E, 0xF5, 0x26, 0
6868

6969
BLEManagerImpl BLEManagerImpl::sInstance;
7070

71-
void HandleIncomingBleConnection(BLEEndPoint * bleEP)
72-
{
73-
ChipLogProgress(DeviceLayer, "con rcvd");
74-
}
75-
7671
void BLEManagerImpl::InitConnectionData()
7772
{
7873
/* Initialize Hashmap */
@@ -115,8 +110,6 @@ CHIP_ERROR BLEManagerImpl::_Init()
115110

116111
memset(mDeviceName, 0, sizeof(mDeviceName));
117112

118-
OnChipBleConnectReceived = HandleIncomingBleConnection;
119-
120113
ret = MainLoop::Instance().Init(_BleInitialize);
121114
VerifyOrExit(ret != false, err = CHIP_ERROR_INTERNAL);
122115

src/platform/webos/BLEManagerImpl.h

-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ namespace chip {
3737
namespace DeviceLayer {
3838
namespace Internal {
3939

40-
void HandleIncomingBleConnection(Ble::BLEEndPoint * bleEP);
41-
4240
enum class BleScanState : uint8_t
4341
{
4442
kNotScanning,

src/transport/raw/BLE.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ void BLEBase::ClearState()
4646
if (mBleLayer)
4747
{
4848
mBleLayer->CancelBleIncompleteConnection();
49-
mBleLayer->OnChipBleConnectReceived = nullptr;
50-
mBleLayer->mBleTransport = nullptr;
51-
mBleLayer = nullptr;
49+
mBleLayer->mBleTransport = nullptr;
50+
mBleLayer = nullptr;
5251
}
5352

5453
if (mBleEndPoint)
@@ -77,7 +76,6 @@ CHIP_ERROR BLEBase::Init(const BleListenParameters & param)
7776
{
7877
ChipLogDetail(Inet, "BLEBase::Init - not overriding transport");
7978
}
80-
mBleLayer->OnChipBleConnectReceived = nullptr;
8179

8280
mState = State::kInitialized;
8381

0 commit comments

Comments
 (0)