Fix observer hanging after shudown because the sign in popup was not dismissed.
[chromium-blink-merge.git] / device / bluetooth / bluetooth_device_mac.mm
blob536d8d7f8fd53b12ada50fe93138979f57918bfb
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "device/bluetooth/bluetooth_device_mac.h"
7 #include <string>
9 #include "base/basictypes.h"
10 #include "base/bind.h"
11 #include "base/hash.h"
12 #include "base/mac/sdk_forward_declarations.h"
13 #include "base/sequenced_task_runner.h"
14 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/string_util.h"
16 #include "base/strings/sys_string_conversions.h"
17 #include "device/bluetooth/bluetooth_socket_mac.h"
18 #include "device/bluetooth/bluetooth_uuid.h"
20 // Undocumented API for accessing the Bluetooth transmit power level.
21 // Similar to the API defined here [ http://goo.gl/20Q5vE ].
22 @interface IOBluetoothHostController (UndocumentedAPI)
23 - (IOReturn)
24     BluetoothHCIReadTransmitPowerLevel:(BluetoothConnectionHandle)connection
25                                 inType:(BluetoothHCITransmitPowerLevelType)type
26                  outTransmitPowerLevel:(BluetoothHCITransmitPowerLevel*)level;
27 @end
29 namespace device {
30 namespace {
32 const char kApiUnavailable[] = "This API is not implemented on this platform.";
34 // Returns the first (should be, only) UUID contained within the
35 // |service_class_data|. Returns an invalid (empty) UUID if none is found.
36 BluetoothUUID ExtractUuid(IOBluetoothSDPDataElement* service_class_data) {
37   NSArray* inner_elements = [service_class_data getArrayValue];
38   IOBluetoothSDPUUID* sdp_uuid = nil;
39   for (IOBluetoothSDPDataElement* inner_element in inner_elements) {
40     if ([inner_element getTypeDescriptor] == kBluetoothSDPDataElementTypeUUID) {
41       sdp_uuid = [[inner_element getUUIDValue] getUUIDWithLength:16];
42       break;
43     }
44   }
46   if (!sdp_uuid)
47     return BluetoothUUID();
49   const uint8* uuid_bytes = reinterpret_cast<const uint8*>([sdp_uuid bytes]);
50   std::string uuid_str = base::HexEncode(uuid_bytes, 16);
51   DCHECK_EQ(uuid_str.size(), 32U);
52   uuid_str.insert(8, "-");
53   uuid_str.insert(13, "-");
54   uuid_str.insert(18, "-");
55   uuid_str.insert(23, "-");
56   return BluetoothUUID(uuid_str);
59 }  // namespace
61 BluetoothDeviceMac::BluetoothDeviceMac(IOBluetoothDevice* device)
62     : device_([device retain]) {
65 BluetoothDeviceMac::~BluetoothDeviceMac() {
68 uint32 BluetoothDeviceMac::GetBluetoothClass() const {
69   return [device_ classOfDevice];
72 std::string BluetoothDeviceMac::GetDeviceName() const {
73   return base::SysNSStringToUTF8([device_ name]);
76 std::string BluetoothDeviceMac::GetAddress() const {
77   return GetDeviceAddress(device_);
80 BluetoothDevice::VendorIDSource BluetoothDeviceMac::GetVendorIDSource() const {
81   return VENDOR_ID_UNKNOWN;
84 uint16 BluetoothDeviceMac::GetVendorID() const {
85   return 0;
88 uint16 BluetoothDeviceMac::GetProductID() const {
89   return 0;
92 uint16 BluetoothDeviceMac::GetDeviceID() const {
93   return 0;
96 bool BluetoothDeviceMac::IsPaired() const {
97   return [device_ isPaired];
100 bool BluetoothDeviceMac::IsConnected() const {
101   return [device_ isConnected];
104 bool BluetoothDeviceMac::IsConnectable() const {
105   return false;
108 bool BluetoothDeviceMac::IsConnecting() const {
109   return false;
112 BluetoothDevice::UUIDList BluetoothDeviceMac::GetUUIDs() const {
113   UUIDList uuids;
114   for (IOBluetoothSDPServiceRecord* service_record in [device_ services]) {
115     IOBluetoothSDPDataElement* service_class_data =
116         [service_record getAttributeDataElement:
117             kBluetoothSDPAttributeIdentifierServiceClassIDList];
118     if ([service_class_data getTypeDescriptor] ==
119             kBluetoothSDPDataElementTypeDataElementSequence) {
120       BluetoothUUID uuid = ExtractUuid(service_class_data);
121       if (uuid.IsValid())
122         uuids.push_back(uuid);
123     }
124   }
125   return uuids;
128 bool BluetoothDeviceMac::ExpectingPinCode() const {
129   NOTIMPLEMENTED();
130   return false;
133 bool BluetoothDeviceMac::ExpectingPasskey() const {
134   NOTIMPLEMENTED();
135   return false;
138 bool BluetoothDeviceMac::ExpectingConfirmation() const {
139   NOTIMPLEMENTED();
140   return false;
143 void BluetoothDeviceMac::GetConnectionInfo(
144     const ConnectionInfoCallback& callback) {
145   ConnectionInfo connection_info;
146   if (![device_ isConnected]) {
147     callback.Run(connection_info);
148     return;
149   }
151   connection_info.rssi = [device_ rawRSSI];
152   // The API guarantees that +127 is returned in case the RSSI is not readable:
153   // http://goo.gl/bpURYv
154   if (connection_info.rssi == 127)
155     connection_info.rssi = kUnknownPower;
157   connection_info.transmit_power =
158       GetHostTransmitPower(kReadCurrentTransmitPowerLevel);
159   connection_info.max_transmit_power =
160       GetHostTransmitPower(kReadMaximumTransmitPowerLevel);
162   callback.Run(connection_info);
165 void BluetoothDeviceMac::Connect(
166     PairingDelegate* pairing_delegate,
167     const base::Closure& callback,
168     const ConnectErrorCallback& error_callback) {
169   NOTIMPLEMENTED();
172 void BluetoothDeviceMac::SetPinCode(const std::string& pincode) {
173   NOTIMPLEMENTED();
176 void BluetoothDeviceMac::SetPasskey(uint32 passkey) {
177   NOTIMPLEMENTED();
180 void BluetoothDeviceMac::ConfirmPairing() {
181   NOTIMPLEMENTED();
184 void BluetoothDeviceMac::RejectPairing() {
185   NOTIMPLEMENTED();
188 void BluetoothDeviceMac::CancelPairing() {
189   NOTIMPLEMENTED();
192 void BluetoothDeviceMac::Disconnect(const base::Closure& callback,
193                                     const ErrorCallback& error_callback) {
194   NOTIMPLEMENTED();
197 void BluetoothDeviceMac::Forget(const ErrorCallback& error_callback) {
198   NOTIMPLEMENTED();
201 void BluetoothDeviceMac::ConnectToService(
202     const BluetoothUUID& uuid,
203     const ConnectToServiceCallback& callback,
204     const ConnectToServiceErrorCallback& error_callback) {
205   scoped_refptr<BluetoothSocketMac> socket = BluetoothSocketMac::CreateSocket();
206   socket->Connect(
207       device_.get(), uuid, base::Bind(callback, socket), error_callback);
210 void BluetoothDeviceMac::ConnectToServiceInsecurely(
211       const BluetoothUUID& uuid,
212       const ConnectToServiceCallback& callback,
213       const ConnectToServiceErrorCallback& error_callback) {
214   error_callback.Run(kApiUnavailable);
217 void BluetoothDeviceMac::CreateGattConnection(
218       const GattConnectionCallback& callback,
219       const ConnectErrorCallback& error_callback) {
220   // TODO(armansito): Implement.
221   error_callback.Run(ERROR_UNSUPPORTED_DEVICE);
224 NSDate* BluetoothDeviceMac::GetLastInquiryUpdate() {
225   return [device_ getLastInquiryUpdate];
228 int BluetoothDeviceMac::GetHostTransmitPower(
229     BluetoothHCITransmitPowerLevelType power_level_type) const {
230   IOBluetoothHostController* controller =
231       [IOBluetoothHostController defaultController];
233   // Bail if the undocumented API is unavailable on this machine.
234   SEL selector = @selector(
235       BluetoothHCIReadTransmitPowerLevel:inType:outTransmitPowerLevel:);
236   if (![controller respondsToSelector:selector])
237     return kUnknownPower;
239   BluetoothHCITransmitPowerLevel power_level;
240   IOReturn result =
241       [controller BluetoothHCIReadTransmitPowerLevel:[device_ connectionHandle]
242                                               inType:power_level_type
243                                outTransmitPowerLevel:&power_level];
244   if (result != kIOReturnSuccess)
245     return kUnknownPower;
247   return power_level;
250 // static
251 std::string BluetoothDeviceMac::GetDeviceAddress(IOBluetoothDevice* device) {
252   return CanonicalizeAddress(base::SysNSStringToUTF8([device addressString]));
255 }  // namespace device