1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_API_BLUETOOTH_SOCKET_BLUETOOTH_SOCKET_API_H_
#define EXTENSIONS_BROWSER_API_BLUETOOTH_SOCKET_BLUETOOTH_SOCKET_API_H_
#include <stddef.h>
#include <optional>
#include <string>
#include <unordered_set>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/values.h"
#include "content/public/browser/browser_thread.h"
#include "device/bluetooth/bluetooth_adapter.h"
#include "extensions/browser/api/api_resource_manager.h"
#include "extensions/browser/api/bluetooth_socket/bluetooth_api_socket.h"
#include "extensions/browser/extension_function.h"
#include "extensions/browser/extension_function_histogram_value.h"
#include "extensions/common/api/bluetooth_socket.h"
namespace device {
class BluetoothSocket;
}
namespace net {
class IOBuffer;
}
namespace extensions {
namespace api {
class BluetoothSocketEventDispatcher;
// Asynchronous API function that performs its work on the BluetoothApiSocket
// thread while providing methods to manage resources of that class. This
// follows the pattern of AsyncApiFunction, but does not derive from it,
// because BluetoothApiSocket methods must be called on the UI Thread.
class BluetoothSocketAsyncApiFunction : public ExtensionFunction {
public:
BluetoothSocketAsyncApiFunction();
protected:
~BluetoothSocketAsyncApiFunction() override;
// ExtensionFunction:
bool PreRunValidation(std::string* error) override;
content::BrowserThread::ID work_thread_id() const;
int AddSocket(BluetoothApiSocket* socket);
BluetoothApiSocket* GetSocket(int api_resource_id);
void RemoveSocket(int api_resource_id);
std::unordered_set<int>* GetSocketIds();
private:
raw_ptr<ApiResourceManager<BluetoothApiSocket>> manager_;
};
class BluetoothSocketCreateFunction : public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.create", BLUETOOTHSOCKET_CREATE)
BluetoothSocketCreateFunction();
BluetoothSocketCreateFunction(const BluetoothSocketCreateFunction&) = delete;
BluetoothSocketCreateFunction& operator=(
const BluetoothSocketCreateFunction&) = delete;
protected:
~BluetoothSocketCreateFunction() override;
ResponseAction Run() override;
};
class BluetoothSocketUpdateFunction : public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.update", BLUETOOTHSOCKET_UPDATE)
BluetoothSocketUpdateFunction();
BluetoothSocketUpdateFunction(const BluetoothSocketUpdateFunction&) = delete;
BluetoothSocketUpdateFunction& operator=(
const BluetoothSocketUpdateFunction&) = delete;
protected:
~BluetoothSocketUpdateFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
};
class BluetoothSocketSetPausedFunction
: public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.setPaused",
BLUETOOTHSOCKET_SETPAUSED)
BluetoothSocketSetPausedFunction();
BluetoothSocketSetPausedFunction(const BluetoothSocketSetPausedFunction&) =
delete;
BluetoothSocketSetPausedFunction& operator=(
const BluetoothSocketSetPausedFunction&) = delete;
protected:
~BluetoothSocketSetPausedFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
};
class BluetoothSocketListenFunction : public BluetoothSocketAsyncApiFunction {
public:
BluetoothSocketListenFunction();
virtual bool CreateParams() = 0;
virtual void CreateService(
scoped_refptr<device::BluetoothAdapter> adapter,
const device::BluetoothUUID& uuid,
const std::optional<std::string>& name,
device::BluetoothAdapter::CreateServiceCallback callback,
device::BluetoothAdapter::CreateServiceErrorCallback error_callback) = 0;
virtual base::Value::List CreateResults() = 0;
virtual int socket_id() const = 0;
virtual const std::string& uuid() const = 0;
// ExtensionFunction:
ResponseAction Run() override;
bool PreRunValidation(std::string* error) override;
protected:
~BluetoothSocketListenFunction() override;
virtual void OnGetAdapter(scoped_refptr<device::BluetoothAdapter> adapter);
virtual void OnCreateService(scoped_refptr<device::BluetoothSocket> socket);
virtual void OnCreateServiceError(const std::string& message);
raw_ptr<BluetoothSocketEventDispatcher> socket_event_dispatcher_ = nullptr;
};
class BluetoothSocketListenUsingRfcommFunction
: public BluetoothSocketListenFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.listenUsingRfcomm",
BLUETOOTHSOCKET_LISTENUSINGRFCOMM)
BluetoothSocketListenUsingRfcommFunction();
// BluetoothSocketListenFunction:
int socket_id() const override;
const std::string& uuid() const override;
bool CreateParams() override;
void CreateService(scoped_refptr<device::BluetoothAdapter> adapter,
const device::BluetoothUUID& uuid,
const std::optional<std::string>& name,
device::BluetoothAdapter::CreateServiceCallback callback,
device::BluetoothAdapter::CreateServiceErrorCallback
error_callback) override;
base::Value::List CreateResults() override;
protected:
~BluetoothSocketListenUsingRfcommFunction() override;
private:
std::optional<bluetooth_socket::ListenUsingRfcomm::Params> params_;
};
class BluetoothSocketListenUsingL2capFunction
: public BluetoothSocketListenFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.listenUsingL2cap",
BLUETOOTHSOCKET_LISTENUSINGL2CAP)
BluetoothSocketListenUsingL2capFunction();
// BluetoothSocketListenFunction:
int socket_id() const override;
const std::string& uuid() const override;
bool CreateParams() override;
void CreateService(scoped_refptr<device::BluetoothAdapter> adapter,
const device::BluetoothUUID& uuid,
const std::optional<std::string>& name,
device::BluetoothAdapter::CreateServiceCallback callback,
device::BluetoothAdapter::CreateServiceErrorCallback
error_callback) override;
base::Value::List CreateResults() override;
protected:
~BluetoothSocketListenUsingL2capFunction() override;
private:
std::optional<bluetooth_socket::ListenUsingL2cap::Params> params_;
};
class BluetoothSocketAbstractConnectFunction :
public BluetoothSocketAsyncApiFunction {
public:
BluetoothSocketAbstractConnectFunction();
protected:
~BluetoothSocketAbstractConnectFunction() override;
// ExtensionFunction:
bool PreRunValidation(std::string* error) override;
ResponseAction Run() override;
// Subclasses should implement this method to connect to the service
// registered with `uuid` on the `device`.
virtual void ConnectToService(device::BluetoothDevice* device,
const device::BluetoothUUID& uuid) = 0;
virtual void OnConnect(scoped_refptr<device::BluetoothSocket> socket);
virtual void OnConnectError(const std::string& message);
private:
virtual void OnGetAdapter(scoped_refptr<device::BluetoothAdapter> adapter);
std::optional<bluetooth_socket::Connect::Params> params_;
raw_ptr<BluetoothSocketEventDispatcher> socket_event_dispatcher_ = nullptr;
};
class BluetoothSocketConnectFunction :
public BluetoothSocketAbstractConnectFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.connect", BLUETOOTHSOCKET_CONNECT)
BluetoothSocketConnectFunction();
protected:
~BluetoothSocketConnectFunction() override;
// BluetoothSocketAbstractConnectFunction:
void ConnectToService(device::BluetoothDevice* device,
const device::BluetoothUUID& uuid) override;
};
class BluetoothSocketDisconnectFunction
: public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.disconnect",
BLUETOOTHSOCKET_DISCONNECT)
BluetoothSocketDisconnectFunction();
BluetoothSocketDisconnectFunction(const BluetoothSocketDisconnectFunction&) =
delete;
BluetoothSocketDisconnectFunction& operator=(
const BluetoothSocketDisconnectFunction&) = delete;
protected:
~BluetoothSocketDisconnectFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
virtual void OnSuccess();
};
class BluetoothSocketCloseFunction : public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.close", BLUETOOTHSOCKET_CLOSE)
BluetoothSocketCloseFunction();
BluetoothSocketCloseFunction(const BluetoothSocketCloseFunction&) = delete;
BluetoothSocketCloseFunction& operator=(const BluetoothSocketCloseFunction&) =
delete;
protected:
~BluetoothSocketCloseFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
};
class BluetoothSocketSendFunction : public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.send", BLUETOOTHSOCKET_SEND)
BluetoothSocketSendFunction();
BluetoothSocketSendFunction(const BluetoothSocketSendFunction&) = delete;
BluetoothSocketSendFunction& operator=(const BluetoothSocketSendFunction&) =
delete;
protected:
~BluetoothSocketSendFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
private:
void OnSuccess(int bytes_sent);
void OnError(BluetoothApiSocket::ErrorReason reason,
const std::string& message);
std::optional<bluetooth_socket::Send::Params> params_;
scoped_refptr<net::IOBuffer> io_buffer_;
size_t io_buffer_size_;
};
class BluetoothSocketGetInfoFunction : public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.getInfo", BLUETOOTHSOCKET_GETINFO)
BluetoothSocketGetInfoFunction();
BluetoothSocketGetInfoFunction(const BluetoothSocketGetInfoFunction&) =
delete;
BluetoothSocketGetInfoFunction& operator=(
const BluetoothSocketGetInfoFunction&) = delete;
protected:
~BluetoothSocketGetInfoFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
};
class BluetoothSocketGetSocketsFunction
: public BluetoothSocketAsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION("bluetoothSocket.getSockets",
BLUETOOTHSOCKET_GETSOCKETS)
BluetoothSocketGetSocketsFunction();
protected:
~BluetoothSocketGetSocketsFunction() override;
// ExtensionFunction:
ResponseAction Run() override;
};
} // namespace api
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_BLUETOOTH_SOCKET_BLUETOOTH_SOCKET_API_H_
|