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
|
// Copyright 2013 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 "device/bluetooth/bluetooth_device_mac.h"
#include <IOBluetooth/Bluetooth.h>
#import <IOBluetooth/objc/IOBluetoothDevice.h>
#import <IOBluetooth/objc/IOBluetoothSDPServiceRecord.h>
#import <IOBluetooth/objc/IOBluetoothSDPUUID.h>
#include <string>
#include "base/basictypes.h"
#include "base/hash.h"
#include "base/string_number_conversions.h"
#include "base/stringprintf.h"
#include "base/strings/sys_string_conversions.h"
#include "device/bluetooth/bluetooth_out_of_band_pairing_data.h"
#include "device/bluetooth/bluetooth_profile_mac.h"
#include "device/bluetooth/bluetooth_service_record_mac.h"
#include "device/bluetooth/bluetooth_socket_mac.h"
// Replicate specific 10.7 SDK declarations for building with prior SDKs.
#if !defined(MAC_OS_X_VERSION_10_7) || \
MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
@interface IOBluetoothDevice (LionSDKDeclarations)
- (NSString*)addressString;
- (NSString*)name;
- (unsigned int)classOfDevice;
- (NSArray*)services;
@end
#endif // MAC_OS_X_VERSION_10_7
namespace {
// Converts |uuid| to a IOBluetoothSDPUUID instance.
//
// |uuid| must be in the format of XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX.
IOBluetoothSDPUUID* GetIOBluetoothSDPUUID(const std::string& uuid) {
DCHECK(uuid.size() == 36);
DCHECK(uuid[8] == '-');
DCHECK(uuid[13] == '-');
DCHECK(uuid[18] == '-');
DCHECK(uuid[23] == '-');
std::string numbers_only = uuid;
numbers_only.erase(23, 1);
numbers_only.erase(18, 1);
numbers_only.erase(13, 1);
numbers_only.erase(8, 1);
std::vector<uint8> uuid_bytes_vector;
base::HexStringToBytes(numbers_only, &uuid_bytes_vector);
DCHECK(uuid_bytes_vector.size() == 16);
return [IOBluetoothSDPUUID uuidWithBytes:&uuid_bytes_vector[0]
length:uuid_bytes_vector.size()];
}
} // namespace
namespace device {
BluetoothDeviceMac::BluetoothDeviceMac(IOBluetoothDevice* device)
: BluetoothDevice(), device_([device retain]) {
}
BluetoothDeviceMac::~BluetoothDeviceMac() {
[device_ release];
}
uint32 BluetoothDeviceMac::GetBluetoothClass() const {
return [device_ classOfDevice];
}
std::string BluetoothDeviceMac::GetDeviceName() const {
return base::SysNSStringToUTF8([device_ name]);
}
std::string BluetoothDeviceMac::GetAddress() const {
return base::SysNSStringToUTF8([device_ addressString]);
}
bool BluetoothDeviceMac::IsPaired() const {
return [device_ isPaired];
}
bool BluetoothDeviceMac::IsConnected() const {
return [device_ isConnected];
}
bool BluetoothDeviceMac::IsConnectable() const {
return false;
}
bool BluetoothDeviceMac::IsConnecting() const {
return false;
}
// TODO(youngki): BluetoothServiceRecord is deprecated; implement this method
// without using BluetoothServiceRecord.
BluetoothDevice::ServiceList BluetoothDeviceMac::GetServices() const {
ServiceList service_uuids;
for (IOBluetoothSDPServiceRecord* service in [device_ services]) {
BluetoothServiceRecordMac service_record(service);
service_uuids.push_back(service_record.uuid());
}
return service_uuids;
}
// NOTE(youngki): This method is deprecated; it will be removed soon.
void BluetoothDeviceMac::GetServiceRecords(
const ServiceRecordsCallback& callback,
const ErrorCallback& error_callback) {
ServiceRecordList service_record_list;
for (IOBluetoothSDPServiceRecord* service in [device_ services]) {
BluetoothServiceRecord* service_record =
new BluetoothServiceRecordMac(service);
service_record_list.push_back(service_record);
}
callback.Run(service_record_list);
}
// NOTE(youngki): This method is deprecated; it will be removed soon.
void BluetoothDeviceMac::ProvidesServiceWithName(
const std::string& name,
const ProvidesServiceCallback& callback) {
NOTIMPLEMENTED();
callback.Run(false);
}
bool BluetoothDeviceMac::ExpectingPinCode() const {
NOTIMPLEMENTED();
return false;
}
bool BluetoothDeviceMac::ExpectingPasskey() const {
NOTIMPLEMENTED();
return false;
}
bool BluetoothDeviceMac::ExpectingConfirmation() const {
NOTIMPLEMENTED();
return false;
}
void BluetoothDeviceMac::Connect(
PairingDelegate* pairing_delegate,
const base::Closure& callback,
const ConnectErrorCallback& error_callback) {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::SetPinCode(const std::string& pincode) {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::SetPasskey(uint32 passkey) {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::ConfirmPairing() {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::RejectPairing() {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::CancelPairing() {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::Disconnect(
const base::Closure& callback,
const ErrorCallback& error_callback) {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::Forget(const ErrorCallback& error_callback) {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::ConnectToService(
const std::string& service_uuid,
const SocketCallback& callback) {
IOBluetoothSDPServiceRecord* record =
[device_ getServiceRecordForUUID:GetIOBluetoothSDPUUID(service_uuid)];
if (record != nil) {
BluetoothServiceRecordMac service_record(record);
scoped_refptr<BluetoothSocket> socket(
BluetoothSocketMac::CreateBluetoothSocket(service_record));
if (socket.get() != NULL)
callback.Run(socket);
}
}
void BluetoothDeviceMac::ConnectToProfile(
device::BluetoothProfile* profile,
const base::Closure& callback,
const ErrorCallback& error_callback) {
if (static_cast<BluetoothProfileMac*>(profile)->Connect(device_))
callback.Run();
else
error_callback.Run();
}
void BluetoothDeviceMac::SetOutOfBandPairingData(
const BluetoothOutOfBandPairingData& data,
const base::Closure& callback,
const ErrorCallback& error_callback) {
NOTIMPLEMENTED();
}
void BluetoothDeviceMac::ClearOutOfBandPairingData(
const base::Closure& callback,
const ErrorCallback& error_callback) {
NOTIMPLEMENTED();
}
} // namespace device
|