Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2069)

Unified Diff: device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc

Issue 1779083002: bluetooth: Test & make StartNotifySession reentrant. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bta-notify-followup-descriptors-
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
diff --git a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
index b4ecc88e6c62e2301e9561722615de9b17562b11..10708fd43e10cda2b29cd234fa04347e7152d6ef 100644
--- a/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
+++ b/device/bluetooth/bluetooth_remote_gatt_characteristic_android.cc
@@ -48,6 +48,10 @@ BluetoothRemoteGattCharacteristicAndroid::
~BluetoothRemoteGattCharacteristicAndroid() {
Java_ChromeBluetoothRemoteGattCharacteristic_onBluetoothRemoteGattCharacteristicAndroidDestruction(
AttachCurrentThread(), j_characteristic_.obj());
+
+ if (pending_start_notify_calls_.size()) {
+ OnStartNotifySessionError(device::BluetoothGattService::GATT_ERROR_FAILED);
+ }
}
// static
@@ -137,7 +141,8 @@ void BluetoothRemoteGattCharacteristicAndroid::StartNotifySession(
const NotifySessionCallback& callback,
const ErrorCallback& error_callback) {
if (!pending_start_notify_calls_.empty()) {
- pending_start_notify_calls_.push(std::make_pair(callback, error_callback));
+ pending_start_notify_calls_.push_back(
+ std::make_pair(callback, error_callback));
return;
}
@@ -150,8 +155,9 @@ void BluetoothRemoteGattCharacteristicAndroid::StartNotifySession(
LOG(ERROR) << "Characteristic needs NOTIFY or INDICATE";
base::MessageLoop::current()->PostTask(
FROM_HERE,
- base::Bind(error_callback,
- BluetoothRemoteGattServiceAndroid::GATT_ERROR_FAILED));
+ base::Bind(
+ error_callback,
+ BluetoothRemoteGattServiceAndroid::GATT_ERROR_NOT_SUPPORTED));
return;
}
@@ -163,8 +169,9 @@ void BluetoothRemoteGattCharacteristicAndroid::StartNotifySession(
<< "Could not find client characteristic configuration descriptor";
base::MessageLoop::current()->PostTask(
FROM_HERE,
- base::Bind(error_callback,
- BluetoothRemoteGattServiceAndroid::GATT_ERROR_FAILED));
+ base::Bind(
+ error_callback,
+ BluetoothRemoteGattServiceAndroid::GATT_ERROR_NOT_SUPPORTED));
return;
}
@@ -178,11 +185,12 @@ void BluetoothRemoteGattCharacteristicAndroid::StartNotifySession(
return;
}
- std::vector<uint8_t> value;
+ std::vector<uint8_t> value(2);
value.push_back(hasNotify ? 1 : 2);
value.push_back(0);
- pending_start_notify_calls_.push(std::make_pair(callback, error_callback));
+ pending_start_notify_calls_.push_back(
+ std::make_pair(callback, error_callback));
ccc_descriptor[0]->WriteRemoteDescriptor(
value, base::Bind(&BluetoothRemoteGattCharacteristicAndroid::
OnStartNotifySessionSuccess,
@@ -252,21 +260,23 @@ void BluetoothRemoteGattCharacteristicAndroid::OnChanged(
}
void BluetoothRemoteGattCharacteristicAndroid::OnStartNotifySessionSuccess() {
- while (!pending_start_notify_calls_.empty()) {
- PendingStartNotifyCall callbacks = pending_start_notify_calls_.front();
- pending_start_notify_calls_.pop();
+ std::vector<PendingStartNotifyCall> reentrant_safe_callbacks;
+ reentrant_safe_callbacks.swap(pending_start_notify_calls_);
+
+ for (const auto& callback_pair : reentrant_safe_callbacks) {
scoped_ptr<device::BluetoothGattNotifySession> notify_session(
new BluetoothGattNotifySessionAndroid(instance_id_));
- callbacks.first.Run(std::move(notify_session));
+ callback_pair.first.Run(std::move(notify_session));
}
}
void BluetoothRemoteGattCharacteristicAndroid::OnStartNotifySessionError(
BluetoothGattService::GattErrorCode error) {
- while (!pending_start_notify_calls_.empty()) {
- PendingStartNotifyCall callbacks = pending_start_notify_calls_.front();
- pending_start_notify_calls_.pop();
- callbacks.second.Run(error);
+ std::vector<PendingStartNotifyCall> reentrant_safe_callbacks;
+ reentrant_safe_callbacks.swap(pending_start_notify_calls_);
+
+ for (auto const& callback_pair : reentrant_safe_callbacks) {
+ callback_pair.second.Run(error);
}
}

Powered by Google App Engine
This is Rietveld 408576698