Skip to content

Commit 6160935

Browse files
authoredApr 26, 2022
[linux] Use BLE notification instead of indication (project-chip#17692)
Linux BLE peripherals use GATT indications instead of notifications as defined in the spec.
1 parent b16892f commit 6160935

File tree

1 file changed

+10
-20
lines changed

1 file changed

+10
-20
lines changed
 

‎src/platform/Linux/bluez/Helper.cpp

+10-20
Original file line numberDiff line numberDiff line change
@@ -627,18 +627,6 @@ static gboolean BluezCharacteristicStopNotify(BluezGattCharacteristic1 * aChar,
627627
return isSuccess ? TRUE : FALSE;
628628
}
629629

630-
static gboolean BluezCharacteristicConfirm(BluezGattCharacteristic1 * aChar, GDBusMethodInvocation * aInvocation,
631-
gpointer apClosure)
632-
{
633-
BluezEndpoint * endpoint = static_cast<BluezEndpoint *>(apClosure);
634-
BluezConnection * conn = GetBluezConnectionViaDevice(endpoint);
635-
636-
ChipLogDetail(Ble, "Indication confirmation, %p", conn);
637-
BLEManagerImpl::HandleTXComplete(conn);
638-
639-
return TRUE;
640-
}
641-
642630
static gboolean BluezCharacteristicStopNotifyError(BluezGattCharacteristic1 * aChar, GDBusMethodInvocation * aInvocation)
643631
{
644632
g_dbus_method_invocation_return_dbus_error(aInvocation, "org.bluez.Error.Failed",
@@ -1235,7 +1223,7 @@ static void BluezPeripheralObjectsSetup(gpointer apClosure)
12351223
{
12361224

12371225
static const char * const c1_flags[] = { "write", nullptr };
1238-
static const char * const c2_flags[] = { "read", "indicate", nullptr };
1226+
static const char * const c2_flags[] = { "read", "notify", nullptr };
12391227
static const char * const c3_flags[] = { "read", nullptr };
12401228

12411229
BluezEndpoint * endpoint = static_cast<BluezEndpoint *>(apClosure);
@@ -1264,7 +1252,7 @@ static void BluezPeripheralObjectsSetup(gpointer apClosure)
12641252
g_signal_connect(endpoint->mpC2, "handle-acquire-notify", G_CALLBACK(BluezCharacteristicAcquireNotify), apClosure);
12651253
g_signal_connect(endpoint->mpC2, "handle-start-notify", G_CALLBACK(BluezCharacteristicStartNotify), apClosure);
12661254
g_signal_connect(endpoint->mpC2, "handle-stop-notify", G_CALLBACK(BluezCharacteristicStopNotify), apClosure);
1267-
g_signal_connect(endpoint->mpC2, "handle-confirm", G_CALLBACK(BluezCharacteristicConfirm), apClosure);
1255+
g_signal_connect(endpoint->mpC2, "handle-confirm", G_CALLBACK(BluezCharacteristicConfirmError), apClosure);
12681256

12691257
ChipLogDetail(DeviceLayer, "CHIP BTP C1 %s", bluez_gatt_characteristic1_get_service(endpoint->mpC1));
12701258
ChipLogDetail(DeviceLayer, "CHIP BTP C2 %s", bluez_gatt_characteristic1_get_service(endpoint->mpC2));
@@ -1281,7 +1269,7 @@ static void BluezPeripheralObjectsSetup(gpointer apClosure)
12811269
g_signal_connect(endpoint->mpC3, "handle-acquire-notify", G_CALLBACK(BluezCharacteristicAcquireNotify), apClosure);
12821270
g_signal_connect(endpoint->mpC3, "handle-start-notify", G_CALLBACK(BluezCharacteristicStartNotify), apClosure);
12831271
g_signal_connect(endpoint->mpC3, "handle-stop-notify", G_CALLBACK(BluezCharacteristicStopNotify), apClosure);
1284-
g_signal_connect(endpoint->mpC3, "handle-confirm", G_CALLBACK(BluezCharacteristicConfirm), apClosure);
1272+
g_signal_connect(endpoint->mpC3, "handle-confirm", G_CALLBACK(BluezCharacteristicConfirmError), apClosure);
12851273
// update the characteristic value
12861274
UpdateAdditionalDataCharacteristic(endpoint->mpC3);
12871275
ChipLogDetail(DeviceLayer, "CHIP BTP C3 %s", bluez_gatt_characteristic1_get_service(endpoint->mpC3));
@@ -1369,7 +1357,7 @@ static int StartupEndpointBindings(BluezEndpoint * endpoint)
13691357
return 0;
13701358
}
13711359

1372-
static gboolean BluezC2Indicate(ConnectionDataBundle * closure)
1360+
static gboolean BluezC2Notify(ConnectionDataBundle * closure)
13731361
{
13741362
BluezConnection * conn = nullptr;
13751363
GError * error = nullptr;
@@ -1381,7 +1369,7 @@ static gboolean BluezC2Indicate(ConnectionDataBundle * closure)
13811369

13821370
conn = closure->mpConn;
13831371
VerifyOrExit(conn != nullptr, ChipLogError(DeviceLayer, "BluezConnection is NULL in %s", __func__));
1384-
VerifyOrExit(conn->mpC2 != nullptr, ChipLogError(DeviceLayer, "FAIL: C2 Indicate: %s", "NULL C2"));
1372+
VerifyOrExit(conn->mpC2 != nullptr, ChipLogError(DeviceLayer, "FAIL: C2 Notify: %s", "NULL C2"));
13851373

13861374
if (bluez_gatt_characteristic1_get_notify_acquired(conn->mpC2) == TRUE)
13871375
{
@@ -1392,14 +1380,16 @@ static gboolean BluezC2Indicate(ConnectionDataBundle * closure)
13921380
g_variant_unref(closure->mpVal);
13931381
closure->mpVal = nullptr;
13941382

1395-
VerifyOrExit(status == G_IO_STATUS_NORMAL, ChipLogError(DeviceLayer, "FAIL: C2 Indicate: %s", error->message));
1383+
VerifyOrExit(status == G_IO_STATUS_NORMAL, ChipLogError(DeviceLayer, "FAIL: C2 Notify: %s", error->message));
13961384
}
13971385
else
13981386
{
13991387
bluez_gatt_characteristic1_set_value(conn->mpC2, closure->mpVal);
14001388
closure->mpVal = nullptr;
14011389
}
14021390

1391+
BLEManagerImpl::HandleTXComplete(conn);
1392+
14031393
exit:
14041394
if (closure != nullptr)
14051395
{
@@ -1430,7 +1420,7 @@ bool SendBluezIndication(BLE_CONNECTION_OBJECT apConn, chip::System::PacketBuffe
14301420

14311421
VerifyOrExit(!apBuf.IsNull(), ChipLogError(DeviceLayer, "apBuf is NULL in %s", __func__));
14321422

1433-
success = MainLoop::Instance().Schedule(BluezC2Indicate, MakeConnectionDataBundle(apConn, apBuf));
1423+
success = MainLoop::Instance().Schedule(BluezC2Notify, MakeConnectionDataBundle(apConn, apBuf));
14341424

14351425
exit:
14361426
return success;
@@ -1683,7 +1673,7 @@ static gboolean SubscribeCharacteristicImpl(BluezConnection * connection)
16831673
VerifyOrExit(connection->mpC2 != nullptr, ChipLogError(DeviceLayer, "C2 is NULL in %s", __func__));
16841674
c2 = BLUEZ_GATT_CHARACTERISTIC1(connection->mpC2);
16851675

1686-
// Get notifications on the TX characteristic change (e.g. indication is received)
1676+
// Get notifications on the TX characteristic change (e.g. notification is received)
16871677
g_signal_connect(c2, "g-properties-changed", G_CALLBACK(OnCharacteristicChanged), connection);
16881678
bluez_gatt_characteristic1_call_start_notify(connection->mpC2, nullptr, SubscribeCharacteristicDone, connection);
16891679

0 commit comments

Comments
 (0)
Please sign in to comment.