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

Unified Diff: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp

Issue 2387293008: bluetooth: Require context is connected for getCharacteristic(s) (Closed)
Patch Set: Address jyasskin's comments Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/reconnect-during-with-uuid.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp
diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp
index 4aa0caeaa30dc83494d81ed4d0fbeb2d019a8c23..1f9aa0bec55aa94b1a314ecf9eb6056e35d62783 100644
--- a/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp
+++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTService.cpp
@@ -20,6 +20,15 @@
namespace blink {
+namespace {
+
+const char kGATTServerDisconnected[] =
+ "GATT Server disconnected while retrieving characteristics.";
+const char kGATTServerNotConnected[] =
+ "GATT Server is disconnected. Cannot retrieve characteristics.";
+
+} // namespace
+
BluetoothRemoteGATTService::BluetoothRemoteGATTService(
std::unique_ptr<WebBluetoothRemoteGATTService> webService,
BluetoothDevice* device)
@@ -48,7 +57,12 @@ class GetCharacteristicsCallback
BluetoothRemoteGATTService* service,
mojom::blink::WebBluetoothGATTQueryQuantity quantity,
ScriptPromiseResolver* resolver)
- : m_service(service), m_quantity(quantity), m_resolver(resolver) {}
+ : m_service(service), m_quantity(quantity), m_resolver(resolver) {
+ // We always check that the device is connected before constructing this
+ // object.
+ CHECK(m_service->device()->gatt()->connected());
+ m_service->device()->gatt()->AddToActiveAlgorithms(m_resolver.get());
+ }
void onSuccess(const WebVector<WebBluetoothRemoteGATTCharacteristicInit*>&
webCharacteristics) override {
@@ -56,6 +70,15 @@ class GetCharacteristicsCallback
m_resolver->getExecutionContext()->activeDOMObjectsAreStopped())
return;
+ // If the resolver is not in the set of ActiveAlgorithms then the frame
+ // disconnected so we reject.
+ if (!m_service->device()->gatt()->RemoveFromActiveAlgorithms(
+ m_resolver.get())) {
+ m_resolver->reject(
+ DOMException::create(NetworkError, kGATTServerDisconnected));
+ return;
+ }
+
if (m_quantity == mojom::blink::WebBluetoothGATTQueryQuantity::SINGLE) {
DCHECK_EQ(1u, webCharacteristics.size());
m_resolver->resolve(BluetoothRemoteGATTCharacteristic::take(
@@ -80,13 +103,23 @@ class GetCharacteristicsCallback
if (!m_resolver->getExecutionContext() ||
m_resolver->getExecutionContext()->activeDOMObjectsAreStopped())
return;
+
+ // If the resolver is not in the set of ActiveAlgorithms then the frame
+ // disconnected so we reject.
+ if (!m_service->device()->gatt()->RemoveFromActiveAlgorithms(
+ m_resolver.get())) {
+ m_resolver->reject(
+ DOMException::create(NetworkError, kGATTServerDisconnected));
+ return;
+ }
+
m_resolver->reject(BluetoothError::take(m_resolver, error));
}
private:
Persistent<BluetoothRemoteGATTService> m_service;
mojom::blink::WebBluetoothGATTQueryQuantity m_quantity;
- Persistent<ScriptPromiseResolver> m_resolver;
+ const Persistent<ScriptPromiseResolver> m_resolver;
};
ScriptPromise BluetoothRemoteGATTService::getCharacteristic(
@@ -128,6 +161,12 @@ ScriptPromise BluetoothRemoteGATTService::getCharacteristicsImpl(
ScriptState* scriptState,
mojom::blink::WebBluetoothGATTQueryQuantity quantity,
String characteristicsUUID) {
+ if (!device()->gatt()->connected()) {
+ return ScriptPromise::rejectWithDOMException(
+ scriptState,
+ DOMException::create(NetworkError, kGATTServerNotConnected));
+ }
+
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
ScriptPromise promise = resolver->promise();
« no previous file with comments | « third_party/WebKit/LayoutTests/bluetooth/getCharacteristics/reconnect-during-with-uuid.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698