OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <utility> | 5 #include <utility> |
6 | 6 |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "device/bluetooth/device.h" | 8 #include "device/bluetooth/device.h" |
9 #include "mojo/public/cpp/bindings/strong_binding.h" | 9 #include "mojo/public/cpp/bindings/strong_binding.h" |
10 | 10 |
11 namespace bluetooth { | 11 namespace bluetooth { |
12 | 12 |
13 Device::Device(const std::string& address, | 13 Device::Device(scoped_refptr<device::BluetoothAdapter> adapter, |
14 scoped_refptr<device::BluetoothAdapter> adapter) | 14 std::unique_ptr<device::BluetoothGattConnection> connection) |
15 : address_(address), adapter_(std::move(adapter)) {} | 15 : adapter_(std::move(adapter)), connection_(std::move(connection)) {} |
ortuno
2016/10/25 10:42:09
You mention that the pipe is tied to the lifetime
mbrunson
2016/10/25 20:03:04
Hmm, ok. More logic would be needed in Adapter to
ortuno
2016/10/26 02:52:21
I don't think you need to add the logic in Adapter
mbrunson
2016/10/28 21:06:47
Oh ok. That makes sense. Done.
| |
16 | 16 |
17 Device::~Device() {} | 17 Device::~Device() {} |
18 | 18 |
19 // static | 19 // static |
20 mojom::DeviceInfoPtr Device::ConstructDeviceInfoStruct( | 20 mojom::DeviceInfoPtr Device::ConstructDeviceInfoStruct( |
21 const device::BluetoothDevice* device) { | 21 const device::BluetoothDevice* device) { |
22 mojom::DeviceInfoPtr device_info = mojom::DeviceInfo::New(); | 22 mojom::DeviceInfoPtr device_info = mojom::DeviceInfo::New(); |
23 | 23 |
24 device_info->name = device->GetName(); | 24 device_info->name = device->GetName(); |
25 device_info->name_for_display = | 25 device_info->name_for_display = |
26 base::UTF16ToUTF8(device->GetNameForDisplay()); | 26 base::UTF16ToUTF8(device->GetNameForDisplay()); |
27 device_info->address = device->GetAddress(); | 27 device_info->address = device->GetAddress(); |
28 device_info->connected = device->IsGattConnected(); | |
28 | 29 |
29 if (device->GetInquiryRSSI()) { | 30 if (device->GetInquiryRSSI()) { |
30 device_info->rssi = mojom::RSSIWrapper::New(); | 31 device_info->rssi = mojom::RSSIWrapper::New(); |
31 device_info->rssi->value = device->GetInquiryRSSI().value(); | 32 device_info->rssi->value = device->GetInquiryRSSI().value(); |
32 } | 33 } |
33 | 34 |
34 return device_info; | 35 return device_info; |
35 } | 36 } |
36 | 37 |
37 void Device::GetInfo(const GetInfoCallback& callback) { | 38 void Device::GetInfo(const GetInfoCallback& callback) { |
38 device::BluetoothDevice* device = adapter_->GetDevice(address_); | 39 device::BluetoothDevice* device = |
40 adapter_->GetDevice(connection_->GetDeviceAddress()); | |
39 if (device) { | 41 if (device) { |
40 mojom::DeviceInfoPtr device_info = ConstructDeviceInfoStruct(device); | 42 mojom::DeviceInfoPtr device_info = ConstructDeviceInfoStruct(device); |
41 callback.Run(std::move(device_info)); | 43 callback.Run(std::move(device_info)); |
42 } else { | 44 } else { |
43 callback.Run(nullptr); | 45 callback.Run(nullptr); |
44 } | 46 } |
45 } | 47 } |
46 | 48 |
49 void Device::GetServices(const GetServicesCallback& callback) { | |
50 device::BluetoothDevice* device = | |
51 adapter_->GetDevice(connection_->GetDeviceAddress()); | |
52 std::vector<mojom::ServiceInfoPtr> services; | |
53 | |
54 if (device) { | |
55 for (const device::BluetoothRemoteGattService* service : | |
56 device->GetGattServices()) { | |
ortuno
2016/10/25 10:42:09
To avoid returning services that no longer exist o
mbrunson
2016/10/25 20:03:04
The original pattern I was thinking of would be ha
ortuno
2016/10/26 02:52:21
Do you mean AdapterClient::ServicesDiscovered?
Th
mbrunson
2016/10/28 21:06:47
Queue implemented with tests. Done.
| |
57 mojom::ServiceInfoPtr service_info = ConstructServiceInfoStruct(service); | |
58 services.push_back(std::move(service_info)); | |
59 } | |
60 } | |
61 | |
62 callback.Run(std::move(services)); | |
63 } | |
64 | |
65 mojom::ServiceInfoPtr Device::ConstructServiceInfoStruct( | |
ortuno
2016/10/25 10:42:09
nit: No need for this helper function. The code is
mbrunson
2016/10/25 20:03:04
The ServiceChanged callback in AdapterClient will
| |
66 const device::BluetoothRemoteGattService* service) { | |
67 mojom::ServiceInfoPtr service_info = mojom::ServiceInfo::New(); | |
68 | |
69 service_info->uuid = service->GetUUID(); | |
70 service_info->primary = service->IsPrimary(); | |
71 | |
72 return service_info; | |
73 } | |
74 | |
47 } // namespace bluetooth | 75 } // namespace bluetooth |
OLD | NEW |