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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.h"
#include "chrome/browser/extensions/api/bluetooth/bluetooth_api_socket.h"
#include "chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_event_dispatcher.h"
#include "chrome/common/extensions/api/bluetooth/bluetooth_manifest_data.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "device/bluetooth/bluetooth_adapter.h"
#include "device/bluetooth/bluetooth_adapter_factory.h"
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/bluetooth_socket.h"
#include "extensions/common/permissions/permissions_data.h"
#include "net/base/io_buffer.h"
using content::BrowserThread;
using extensions::BluetoothApiSocket;
using extensions::api::bluetooth_socket::SocketInfo;
using extensions::api::bluetooth_socket::SocketProperties;
namespace {
const char kDeviceNotFoundError[] = "Device not found";
const char kInvalidUuidError[] = "Invalid UUID";
const char kPermissionDeniedError[] = "Permission denied";
const char kSocketNotFoundError[] = "Socket not found";
linked_ptr<SocketInfo> CreateSocketInfo(int socket_id,
BluetoothApiSocket* socket) {
DCHECK(BrowserThread::CurrentlyOn(BluetoothApiSocket::kThreadId));
linked_ptr<SocketInfo> socket_info(new SocketInfo());
// This represents what we know about the socket, and does not call through
// to the system.
socket_info->socket_id = socket_id;
if (!socket->name().empty()) {
socket_info->name.reset(new std::string(socket->name()));
}
socket_info->persistent = socket->persistent();
if (socket->buffer_size() > 0) {
socket_info->buffer_size.reset(new int(socket->buffer_size()));
}
socket_info->paused = socket->paused();
socket_info->connected = socket->IsConnected();
if (socket->IsConnected())
socket_info->address.reset(new std::string(socket->device_address()));
socket_info->uuid.reset(new std::string(socket->uuid().canonical_value()));
return socket_info;
}
void SetSocketProperties(BluetoothApiSocket* socket,
SocketProperties* properties) {
if (properties->name.get()) {
socket->set_name(*properties->name.get());
}
if (properties->persistent.get()) {
socket->set_persistent(*properties->persistent.get());
}
if (properties->buffer_size.get()) {
// buffer size is validated when issuing the actual Recv operation
// on the socket.
socket->set_buffer_size(*properties->buffer_size.get());
}
}
extensions::api::BluetoothSocketEventDispatcher* GetSocketEventDispatcher(
content::BrowserContext* browser_context) {
extensions::api::BluetoothSocketEventDispatcher* socket_event_dispatcher =
extensions::api::BluetoothSocketEventDispatcher::Get(browser_context);
DCHECK(socket_event_dispatcher)
<< "There is no socket event dispatcher. "
"If this assertion is failing during a test, then it is likely that "
"TestExtensionSystem is failing to provide an instance of "
"BluetoothSocketEventDispatcher.";
return socket_event_dispatcher;
}
} // namespace
namespace extensions {
namespace api {
BluetoothSocketAsyncApiFunction::BluetoothSocketAsyncApiFunction() {}
BluetoothSocketAsyncApiFunction::~BluetoothSocketAsyncApiFunction() {}
bool BluetoothSocketAsyncApiFunction::RunAsync() {
if (!PrePrepare() || !Prepare()) {
return false;
}
AsyncWorkStart();
return true;
}
bool BluetoothSocketAsyncApiFunction::PrePrepare() {
manager_ = ApiResourceManager<BluetoothApiSocket>::Get(browser_context());
DCHECK(manager_)
<< "There is no socket manager. "
"If this assertion is failing during a test, then it is likely that "
"TestExtensionSystem is failing to provide an instance of "
"ApiResourceManager<BluetoothApiSocket>.";
return manager_ != NULL;
}
bool BluetoothSocketAsyncApiFunction::Respond() { return error_.empty(); }
void BluetoothSocketAsyncApiFunction::AsyncWorkCompleted() {
SendResponse(Respond());
}
void BluetoothSocketAsyncApiFunction::Work() {}
void BluetoothSocketAsyncApiFunction::AsyncWorkStart() {
Work();
AsyncWorkCompleted();
}
int BluetoothSocketAsyncApiFunction::AddSocket(BluetoothApiSocket* socket) {
return manager_->Add(socket);
}
content::BrowserThread::ID
BluetoothSocketAsyncApiFunction::work_thread_id() const {
return BluetoothApiSocket::kThreadId;
}
BluetoothApiSocket* BluetoothSocketAsyncApiFunction::GetSocket(
int api_resource_id) {
return manager_->Get(extension_id(), api_resource_id);
}
void BluetoothSocketAsyncApiFunction::RemoveSocket(int api_resource_id) {
manager_->Remove(extension_id(), api_resource_id);
}
base::hash_set<int>* BluetoothSocketAsyncApiFunction::GetSocketIds() {
return manager_->GetResourceIds(extension_id());
}
BluetoothSocketCreateFunction::BluetoothSocketCreateFunction() {}
BluetoothSocketCreateFunction::~BluetoothSocketCreateFunction() {}
bool BluetoothSocketCreateFunction::Prepare() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
params_ = bluetooth_socket::Create::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketCreateFunction::Work() {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
BluetoothApiSocket* socket = new BluetoothApiSocket(extension_id());
bluetooth_socket::SocketProperties* properties =
params_.get()->properties.get();
if (properties) {
SetSocketProperties(socket, properties);
}
bluetooth_socket::CreateInfo create_info;
create_info.socket_id = AddSocket(socket);
results_ = bluetooth_socket::Create::Results::Create(create_info);
AsyncWorkCompleted();
}
BluetoothSocketUpdateFunction::BluetoothSocketUpdateFunction() {}
BluetoothSocketUpdateFunction::~BluetoothSocketUpdateFunction() {}
bool BluetoothSocketUpdateFunction::Prepare() {
params_ = bluetooth_socket::Update::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketUpdateFunction::Work() {
BluetoothApiSocket* socket = GetSocket(params_->socket_id);
if (!socket) {
error_ = kSocketNotFoundError;
return;
}
SetSocketProperties(socket, ¶ms_.get()->properties);
results_ = bluetooth_socket::Update::Results::Create();
}
BluetoothSocketSetPausedFunction::BluetoothSocketSetPausedFunction()
: socket_event_dispatcher_(NULL) {}
BluetoothSocketSetPausedFunction::~BluetoothSocketSetPausedFunction() {}
bool BluetoothSocketSetPausedFunction::Prepare() {
params_ = bluetooth_socket::SetPaused::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
socket_event_dispatcher_ = GetSocketEventDispatcher(browser_context());
return socket_event_dispatcher_ != NULL;
}
void BluetoothSocketSetPausedFunction::Work() {
BluetoothApiSocket* socket = GetSocket(params_->socket_id);
if (!socket) {
error_ = kSocketNotFoundError;
return;
}
if (socket->paused() != params_->paused) {
socket->set_paused(params_->paused);
if (!params_->paused) {
socket_event_dispatcher_->OnSocketResume(extension_id(),
params_->socket_id);
}
}
results_ = bluetooth_socket::SetPaused::Results::Create();
}
BluetoothSocketListenFunction::BluetoothSocketListenFunction() {}
BluetoothSocketListenFunction::~BluetoothSocketListenFunction() {}
bool BluetoothSocketListenFunction::Prepare() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
if (!CreateParams())
return false;
socket_event_dispatcher_ = GetSocketEventDispatcher(browser_context());
return socket_event_dispatcher_ != NULL;
}
void BluetoothSocketListenFunction::AsyncWorkStart() {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
device::BluetoothAdapterFactory::GetAdapter(
base::Bind(&BluetoothSocketListenFunction::OnGetAdapter, this));
}
void BluetoothSocketListenFunction::OnGetAdapter(
scoped_refptr<device::BluetoothAdapter> adapter) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
BluetoothApiSocket* socket = GetSocket(socket_id());
if (!socket) {
error_ = kSocketNotFoundError;
AsyncWorkCompleted();
return;
}
device::BluetoothUUID bluetooth_uuid(uuid());
if (!bluetooth_uuid.IsValid()) {
error_ = kInvalidUuidError;
AsyncWorkCompleted();
return;
}
BluetoothPermissionRequest param(uuid());
if (!BluetoothManifestData::CheckRequest(GetExtension(), param)) {
error_ = kPermissionDeniedError;
AsyncWorkCompleted();
return;
}
CreateService(
adapter,
bluetooth_uuid,
base::Bind(&BluetoothSocketListenFunction::OnCreateService, this),
base::Bind(&BluetoothSocketListenFunction::OnCreateServiceError, this));
}
void BluetoothSocketListenFunction::OnCreateService(
scoped_refptr<device::BluetoothSocket> socket) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
// Fetch the socket again since this is not a reference-counted object, and
// it may have gone away in the meantime (we check earlier to avoid making
// a connection in the case of an obvious programming error).
BluetoothApiSocket* api_socket = GetSocket(socket_id());
if (!api_socket) {
error_ = kSocketNotFoundError;
AsyncWorkCompleted();
return;
}
api_socket->AdoptListeningSocket(socket,
device::BluetoothUUID(uuid()));
socket_event_dispatcher_->OnSocketListen(extension_id(), socket_id());
CreateResults();
AsyncWorkCompleted();
}
void BluetoothSocketListenFunction::OnCreateServiceError(
const std::string& message) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
error_ = message;
AsyncWorkCompleted();
}
BluetoothSocketListenUsingRfcommFunction::
BluetoothSocketListenUsingRfcommFunction() {}
BluetoothSocketListenUsingRfcommFunction::
~BluetoothSocketListenUsingRfcommFunction() {}
int BluetoothSocketListenUsingRfcommFunction::socket_id() const {
return params_->socket_id;
}
const std::string& BluetoothSocketListenUsingRfcommFunction::uuid() const {
return params_->uuid;
}
bool BluetoothSocketListenUsingRfcommFunction::CreateParams() {
params_ = bluetooth_socket::ListenUsingRfcomm::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketListenUsingRfcommFunction::CreateService(
scoped_refptr<device::BluetoothAdapter> adapter,
const device::BluetoothUUID& uuid,
const device::BluetoothAdapter::CreateServiceCallback& callback,
const device::BluetoothAdapter::CreateServiceErrorCallback&
error_callback) {
int channel = params_->channel;
if (!channel)
channel = device::BluetoothAdapter::kChannelAuto;
adapter->CreateRfcommService(uuid, channel, false, callback, error_callback);
}
void BluetoothSocketListenUsingRfcommFunction::CreateResults() {
results_ = bluetooth_socket::ListenUsingRfcomm::Results::Create();
}
BluetoothSocketListenUsingInsecureRfcommFunction::
BluetoothSocketListenUsingInsecureRfcommFunction() {}
BluetoothSocketListenUsingInsecureRfcommFunction::
~BluetoothSocketListenUsingInsecureRfcommFunction() {}
int BluetoothSocketListenUsingInsecureRfcommFunction::socket_id() const {
return params_->socket_id;
}
const std::string&
BluetoothSocketListenUsingInsecureRfcommFunction::uuid() const {
return params_->uuid;
}
bool BluetoothSocketListenUsingInsecureRfcommFunction::CreateParams() {
params_ = bluetooth_socket::ListenUsingInsecureRfcomm::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketListenUsingInsecureRfcommFunction::CreateService(
scoped_refptr<device::BluetoothAdapter> adapter,
const device::BluetoothUUID& uuid,
const device::BluetoothAdapter::CreateServiceCallback& callback,
const device::BluetoothAdapter::CreateServiceErrorCallback&
error_callback) {
int channel = params_->channel;
if (!channel)
channel = device::BluetoothAdapter::kChannelAuto;
adapter->CreateRfcommService(uuid, channel, true, callback, error_callback);
}
void BluetoothSocketListenUsingInsecureRfcommFunction::CreateResults() {
results_ = bluetooth_socket::ListenUsingInsecureRfcomm::Results::Create();
}
BluetoothSocketListenUsingL2capFunction::
BluetoothSocketListenUsingL2capFunction() {}
BluetoothSocketListenUsingL2capFunction::
~BluetoothSocketListenUsingL2capFunction() {}
int BluetoothSocketListenUsingL2capFunction::socket_id() const {
return params_->socket_id;
}
const std::string& BluetoothSocketListenUsingL2capFunction::uuid() const {
return params_->uuid;
}
bool BluetoothSocketListenUsingL2capFunction::CreateParams() {
params_ = bluetooth_socket::ListenUsingL2cap::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketListenUsingL2capFunction::CreateService(
scoped_refptr<device::BluetoothAdapter> adapter,
const device::BluetoothUUID& uuid,
const device::BluetoothAdapter::CreateServiceCallback& callback,
const device::BluetoothAdapter::CreateServiceErrorCallback&
error_callback) {
int psm = params_->psm;
if (!psm)
psm = device::BluetoothAdapter::kPsmAuto;
adapter->CreateL2capService(uuid, psm, callback, error_callback);
}
void BluetoothSocketListenUsingL2capFunction::CreateResults() {
results_ = bluetooth_socket::ListenUsingL2cap::Results::Create();
}
BluetoothSocketConnectFunction::BluetoothSocketConnectFunction() {}
BluetoothSocketConnectFunction::~BluetoothSocketConnectFunction() {}
bool BluetoothSocketConnectFunction::Prepare() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
params_ = bluetooth_socket::Connect::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
socket_event_dispatcher_ = GetSocketEventDispatcher(browser_context());
return socket_event_dispatcher_ != NULL;
}
void BluetoothSocketConnectFunction::AsyncWorkStart() {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
device::BluetoothAdapterFactory::GetAdapter(
base::Bind(&BluetoothSocketConnectFunction::OnGetAdapter, this));
}
void BluetoothSocketConnectFunction::OnGetAdapter(
scoped_refptr<device::BluetoothAdapter> adapter) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
BluetoothApiSocket* socket = GetSocket(params_->socket_id);
if (!socket) {
error_ = kSocketNotFoundError;
AsyncWorkCompleted();
return;
}
device::BluetoothDevice* device = adapter->GetDevice(params_->address);
if (!device) {
error_ = kDeviceNotFoundError;
AsyncWorkCompleted();
return;
}
device::BluetoothUUID uuid(params_->uuid);
if (!uuid.IsValid()) {
error_ = kInvalidUuidError;
AsyncWorkCompleted();
return;
}
BluetoothPermissionRequest param(params_->uuid);
if (!BluetoothManifestData::CheckRequest(GetExtension(), param)) {
error_ = kPermissionDeniedError;
AsyncWorkCompleted();
return;
}
device->ConnectToService(
uuid,
base::Bind(&BluetoothSocketConnectFunction::OnConnect, this),
base::Bind(&BluetoothSocketConnectFunction::OnConnectError, this));
}
void BluetoothSocketConnectFunction::OnConnect(
scoped_refptr<device::BluetoothSocket> socket) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
// Fetch the socket again since this is not a reference-counted object, and
// it may have gone away in the meantime (we check earlier to avoid making
// a connection in the case of an obvious programming error).
BluetoothApiSocket* api_socket = GetSocket(params_->socket_id);
if (!api_socket) {
error_ = kSocketNotFoundError;
AsyncWorkCompleted();
return;
}
api_socket->AdoptConnectedSocket(socket,
params_->address,
device::BluetoothUUID(params_->uuid));
socket_event_dispatcher_->OnSocketConnect(extension_id(),
params_->socket_id);
results_ = bluetooth_socket::Connect::Results::Create();
AsyncWorkCompleted();
}
void BluetoothSocketConnectFunction::OnConnectError(
const std::string& message) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
error_ = message;
AsyncWorkCompleted();
}
BluetoothSocketDisconnectFunction::BluetoothSocketDisconnectFunction() {}
BluetoothSocketDisconnectFunction::~BluetoothSocketDisconnectFunction() {}
bool BluetoothSocketDisconnectFunction::Prepare() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
params_ = bluetooth_socket::Disconnect::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketDisconnectFunction::AsyncWorkStart() {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
BluetoothApiSocket* socket = GetSocket(params_->socket_id);
if (!socket) {
error_ = kSocketNotFoundError;
AsyncWorkCompleted();
return;
}
socket->Disconnect(base::Bind(&BluetoothSocketDisconnectFunction::OnSuccess,
this));
}
void BluetoothSocketDisconnectFunction::OnSuccess() {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
results_ = bluetooth_socket::Disconnect::Results::Create();
AsyncWorkCompleted();
}
BluetoothSocketCloseFunction::BluetoothSocketCloseFunction() {}
BluetoothSocketCloseFunction::~BluetoothSocketCloseFunction() {}
bool BluetoothSocketCloseFunction::Prepare() {
params_ = bluetooth_socket::Close::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketCloseFunction::Work() {
BluetoothApiSocket* socket = GetSocket(params_->socket_id);
if (!socket) {
error_ = kSocketNotFoundError;
return;
}
RemoveSocket(params_->socket_id);
results_ = bluetooth_socket::Close::Results::Create();
}
BluetoothSocketSendFunction::BluetoothSocketSendFunction()
: io_buffer_size_(0) {}
BluetoothSocketSendFunction::~BluetoothSocketSendFunction() {}
bool BluetoothSocketSendFunction::Prepare() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
params_ = bluetooth_socket::Send::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
io_buffer_size_ = params_->data.size();
io_buffer_ = new net::WrappedIOBuffer(params_->data.data());
return true;
}
void BluetoothSocketSendFunction::AsyncWorkStart() {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
BluetoothApiSocket* socket = GetSocket(params_->socket_id);
if (!socket) {
error_ = kSocketNotFoundError;
return;
}
socket->Send(io_buffer_,
io_buffer_size_,
base::Bind(&BluetoothSocketSendFunction::OnSuccess, this),
base::Bind(&BluetoothSocketSendFunction::OnError, this));
}
void BluetoothSocketSendFunction::OnSuccess(int bytes_sent) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
results_ = bluetooth_socket::Send::Results::Create(bytes_sent);
AsyncWorkCompleted();
}
void BluetoothSocketSendFunction::OnError(
BluetoothApiSocket::ErrorReason reason,
const std::string& message) {
DCHECK(BrowserThread::CurrentlyOn(work_thread_id()));
error_ = message;
AsyncWorkCompleted();
}
BluetoothSocketGetInfoFunction::BluetoothSocketGetInfoFunction() {}
BluetoothSocketGetInfoFunction::~BluetoothSocketGetInfoFunction() {}
bool BluetoothSocketGetInfoFunction::Prepare() {
params_ = bluetooth_socket::GetInfo::Params::Create(*args_);
EXTENSION_FUNCTION_VALIDATE(params_.get());
return true;
}
void BluetoothSocketGetInfoFunction::Work() {
BluetoothApiSocket* socket = GetSocket(params_->socket_id);
if (!socket) {
error_ = kSocketNotFoundError;
return;
}
linked_ptr<bluetooth_socket::SocketInfo> socket_info =
CreateSocketInfo(params_->socket_id, socket);
results_ = bluetooth_socket::GetInfo::Results::Create(*socket_info);
}
BluetoothSocketGetSocketsFunction::BluetoothSocketGetSocketsFunction() {}
BluetoothSocketGetSocketsFunction::~BluetoothSocketGetSocketsFunction() {}
bool BluetoothSocketGetSocketsFunction::Prepare() { return true; }
void BluetoothSocketGetSocketsFunction::Work() {
std::vector<linked_ptr<bluetooth_socket::SocketInfo> > socket_infos;
base::hash_set<int>* resource_ids = GetSocketIds();
if (resource_ids != NULL) {
for (base::hash_set<int>::iterator it = resource_ids->begin();
it != resource_ids->end();
++it) {
int socket_id = *it;
BluetoothApiSocket* socket = GetSocket(socket_id);
if (socket) {
socket_infos.push_back(CreateSocketInfo(socket_id, socket));
}
}
}
results_ = bluetooth_socket::GetSockets::Results::Create(socket_infos);
}
} // namespace api
} // namespace extensions
|