blob: e15d003114779f10cb4e980f6a6f80ab447f35bb [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
Nick Pellybd022f42009-08-14 18:33:38 -07002 * Copyright (C) 2009 The Android Open Source Project
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.bluetooth;
18
Nick Pelly005b2282009-09-10 10:21:56 -070019import android.annotation.SdkConstant;
20import android.annotation.SdkConstant.SdkConstantType;
Nick Pellybd022f42009-08-14 18:33:38 -070021import android.os.IBinder;
22import android.os.Parcel;
23import android.os.Parcelable;
Nick Pellyaef439e2009-09-28 12:33:17 -070024import android.os.ParcelUuid;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.os.RemoteException;
Nick Pellybd022f42009-08-14 18:33:38 -070026import android.os.ServiceManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.util.Log;
28
Nick Pellybd022f42009-08-14 18:33:38 -070029import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import java.io.UnsupportedEncodingException;
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -070031import java.util.UUID;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032
33/**
Scott Main9fab0ae2009-11-03 18:17:59 -080034 * Represents a remote Bluetooth device. A {@link BluetoothDevice} lets you
Jake Hambyf51eada2010-09-21 13:39:53 -070035 * create a connection with the respective device or query information about
Scott Main9fab0ae2009-11-03 18:17:59 -080036 * it, such as the name, address, class, and bonding state.
Nick Pelly45e27042009-08-19 11:00:00 -070037 *
38 * <p>This class is really just a thin wrapper for a Bluetooth hardware
39 * address. Objects of this class are immutable. Operations on this class
40 * are performed on the remote Bluetooth hardware address, using the
41 * {@link BluetoothAdapter} that was used to create this {@link
42 * BluetoothDevice}.
Scott Main9fab0ae2009-11-03 18:17:59 -080043 *
44 * <p>To get a {@link BluetoothDevice}, use
45 * {@link BluetoothAdapter#getRemoteDevice(String)
46 * BluetoothAdapter.getRemoteDevice(String)} to create one representing a device
47 * of a known MAC address (which you can get through device discovery with
48 * {@link BluetoothAdapter}) or get one from the set of bonded devices
49 * returned by {@link BluetoothAdapter#getBondedDevices()
50 * BluetoothAdapter.getBondedDevices()}. You can then open a
Jake Hambyf51eada2010-09-21 13:39:53 -070051 * {@link BluetoothSocket} for communication with the remote device, using
Scott Main9fab0ae2009-11-03 18:17:59 -080052 * {@link #createRfcommSocketToServiceRecord(UUID)}.
53 *
54 * <p class="note"><strong>Note:</strong>
55 * Requires the {@link android.Manifest.permission#BLUETOOTH} permission.
56 *
57 * {@see BluetoothAdapter}
58 * {@see BluetoothSocket}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059 */
Nick Pellybd022f42009-08-14 18:33:38 -070060public final class BluetoothDevice implements Parcelable {
61 private static final String TAG = "BluetoothDevice";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062
Nick Pellyb24e11b2009-09-08 17:40:43 -070063 /**
64 * Sentinel error value for this class. Guaranteed to not equal any other
65 * integer constant in this class. Provided as a convenience for functions
66 * that require a sentinel error value, for example:
Nick Pelly005b2282009-09-10 10:21:56 -070067 * <p><code>Intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
68 * BluetoothDevice.ERROR)</code>
Nick Pellyb24e11b2009-09-08 17:40:43 -070069 */
Nick Pelly005b2282009-09-10 10:21:56 -070070 public static final int ERROR = Integer.MIN_VALUE;
Nick Pellyb24e11b2009-09-08 17:40:43 -070071
Nick Pelly005b2282009-09-10 10:21:56 -070072 /**
73 * Broadcast Action: Remote device discovered.
74 * <p>Sent when a remote device is found during discovery.
75 * <p>Always contains the extra fields {@link #EXTRA_DEVICE} and {@link
76 * #EXTRA_CLASS}. Can contain the extra fields {@link #EXTRA_NAME} and/or
77 * {@link #EXTRA_RSSI} if they are available.
78 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
79 */
80 // TODO: Change API to not broadcast RSSI if not available (incoming connection)
81 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
82 public static final String ACTION_FOUND =
83 "android.bluetooth.device.action.FOUND";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084
Nick Pelly005b2282009-09-10 10:21:56 -070085 /**
86 * Broadcast Action: Remote device disappeared.
87 * <p>Sent when a remote device that was found in the last discovery is not
88 * found in the current discovery.
89 * <p>Always contains the extra field {@link #EXTRA_DEVICE}.
90 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
91 * @hide
92 */
93 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
94 public static final String ACTION_DISAPPEARED =
95 "android.bluetooth.device.action.DISAPPEARED";
96
97 /**
98 * Broadcast Action: Bluetooth class of a remote device has changed.
99 * <p>Always contains the extra fields {@link #EXTRA_DEVICE} and {@link
100 * #EXTRA_CLASS}.
101 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
102 * @see {@link BluetoothClass}
103 */
104 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
105 public static final String ACTION_CLASS_CHANGED =
106 "android.bluetooth.device.action.CLASS_CHANGED";
107
108 /**
109 * Broadcast Action: Indicates a low level (ACL) connection has been
110 * established with a remote device.
111 * <p>Always contains the extra field {@link #EXTRA_DEVICE}.
112 * <p>ACL connections are managed automatically by the Android Bluetooth
113 * stack.
114 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
115 */
116 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
117 public static final String ACTION_ACL_CONNECTED =
118 "android.bluetooth.device.action.ACL_CONNECTED";
119
120 /**
121 * Broadcast Action: Indicates that a low level (ACL) disconnection has
122 * been requested for a remote device, and it will soon be disconnected.
123 * <p>This is useful for graceful disconnection. Applications should use
124 * this intent as a hint to immediately terminate higher level connections
125 * (RFCOMM, L2CAP, or profile connections) to the remote device.
126 * <p>Always contains the extra field {@link #EXTRA_DEVICE}.
127 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
128 */
129 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
130 public static final String ACTION_ACL_DISCONNECT_REQUESTED =
131 "android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED";
132
133 /**
134 * Broadcast Action: Indicates a low level (ACL) disconnection from a
135 * remote device.
136 * <p>Always contains the extra field {@link #EXTRA_DEVICE}.
137 * <p>ACL connections are managed automatically by the Android Bluetooth
138 * stack.
139 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
140 */
141 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
142 public static final String ACTION_ACL_DISCONNECTED =
143 "android.bluetooth.device.action.ACL_DISCONNECTED";
144
145 /**
146 * Broadcast Action: Indicates the friendly name of a remote device has
147 * been retrieved for the first time, or changed since the last retrieval.
148 * <p>Always contains the extra fields {@link #EXTRA_DEVICE} and {@link
149 * #EXTRA_NAME}.
150 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
151 */
152 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
153 public static final String ACTION_NAME_CHANGED =
154 "android.bluetooth.device.action.NAME_CHANGED";
155
156 /**
157 * Broadcast Action: Indicates a change in the bond state of a remote
158 * device. For example, if a device is bonded (paired).
159 * <p>Always contains the extra fields {@link #EXTRA_DEVICE}, {@link
160 * #EXTRA_BOND_STATE} and {@link #EXTRA_PREVIOUS_BOND_STATE}.
161 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
162 */
163 // Note: When EXTRA_BOND_STATE is BOND_NONE then this will also
164 // contain a hidden extra field EXTRA_REASON with the result code.
165 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
166 public static final String ACTION_BOND_STATE_CHANGED =
167 "android.bluetooth.device.action.BOND_STATE_CHANGED";
168
169 /**
170 * Used as a Parcelable {@link BluetoothDevice} extra field in every intent
171 * broadcast by this class. It contains the {@link BluetoothDevice} that
172 * the intent applies to.
173 */
174 public static final String EXTRA_DEVICE = "android.bluetooth.device.extra.DEVICE";
175
176 /**
177 * Used as a String extra field in {@link #ACTION_NAME_CHANGED} and {@link
178 * #ACTION_FOUND} intents. It contains the friendly Bluetooth name.
179 */
180 public static final String EXTRA_NAME = "android.bluetooth.device.extra.NAME";
181
182 /**
183 * Used as an optional short extra field in {@link #ACTION_FOUND} intents.
184 * Contains the RSSI value of the remote device as reported by the
185 * Bluetooth hardware.
186 */
187 public static final String EXTRA_RSSI = "android.bluetooth.device.extra.RSSI";
188
189 /**
190 * Used as an Parcelable {@link BluetoothClass} extra field in {@link
191 * #ACTION_FOUND} and {@link #ACTION_CLASS_CHANGED} intents.
192 */
193 public static final String EXTRA_CLASS = "android.bluetooth.device.extra.CLASS";
194
195 /**
196 * Used as an int extra field in {@link #ACTION_BOND_STATE_CHANGED} intents.
197 * Contains the bond state of the remote device.
198 * <p>Possible values are:
199 * {@link #BOND_NONE},
200 * {@link #BOND_BONDING},
201 * {@link #BOND_BONDED}.
202 */
203 public static final String EXTRA_BOND_STATE = "android.bluetooth.device.extra.BOND_STATE";
204 /**
205 * Used as an int extra field in {@link #ACTION_BOND_STATE_CHANGED} intents.
206 * Contains the previous bond state of the remote device.
207 * <p>Possible values are:
208 * {@link #BOND_NONE},
209 * {@link #BOND_BONDING},
210 * {@link #BOND_BONDED}.
211 */
212 public static final String EXTRA_PREVIOUS_BOND_STATE =
213 "android.bluetooth.device.extra.PREVIOUS_BOND_STATE";
214 /**
215 * Indicates the remote device is not bonded (paired).
216 * <p>There is no shared link key with the remote device, so communication
217 * (if it is allowed at all) will be unauthenticated and unencrypted.
218 */
219 public static final int BOND_NONE = 10;
220 /**
221 * Indicates bonding (pairing) is in progress with the remote device.
222 */
223 public static final int BOND_BONDING = 11;
224 /**
225 * Indicates the remote device is bonded (paired).
226 * <p>A shared link keys exists locally for the remote device, so
227 * communication can be authenticated and encrypted.
228 * <p><i>Being bonded (paired) with a remote device does not necessarily
Jake Hambyf51eada2010-09-21 13:39:53 -0700229 * mean the device is currently connected. It just means that the pending
230 * procedure was completed at some earlier time, and the link key is still
Nick Pelly005b2282009-09-10 10:21:56 -0700231 * stored locally, ready to use on the next connection.
232 * </i>
233 */
234 public static final int BOND_BONDED = 12;
235
236 /** @hide */
237 public static final String EXTRA_REASON = "android.bluetooth.device.extra.REASON";
238 /** @hide */
239 public static final String EXTRA_PAIRING_VARIANT =
240 "android.bluetooth.device.extra.PAIRING_VARIANT";
241 /** @hide */
242 public static final String EXTRA_PASSKEY = "android.bluetooth.device.extra.PASSKEY";
243
244 /**
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -0700245 * Broadcast Action: This intent is used to broadcast the {@link UUID}
Nick Pellyaef439e2009-09-28 12:33:17 -0700246 * wrapped as a {@link android.os.ParcelUuid} of the remote device after it
247 * has been fetched. This intent is sent only when the UUIDs of the remote
248 * device are requested to be fetched using Service Discovery Protocol
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -0700249 * <p> Always contains the extra field {@link #EXTRA_DEVICE}
250 * <p> Always contains the extra filed {@link #EXTRA_UUID}
251 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
252 * @hide
253 */
254 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
255 public static final String ACTION_UUID =
256 "android.bleutooth.device.action.UUID";
257
258 /**
Nick Pelly005b2282009-09-10 10:21:56 -0700259 * Broadcast Action: Indicates a failure to retrieve the name of a remote
260 * device.
261 * <p>Always contains the extra field {@link #EXTRA_DEVICE}.
262 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} to receive.
263 * @hide
264 */
265 //TODO: is this actually useful?
266 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
267 public static final String ACTION_NAME_FAILED =
268 "android.bluetooth.device.action.NAME_FAILED";
269
270 /** @hide */
271 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
272 public static final String ACTION_PAIRING_REQUEST =
273 "android.bluetooth.device.action.PAIRING_REQUEST";
274 /** @hide */
275 @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
276 public static final String ACTION_PAIRING_CANCEL =
277 "android.bluetooth.device.action.PAIRING_CANCEL";
Yue Lixina4433af2009-07-09 16:56:43 +0800278
Nick Pellyb24e11b2009-09-08 17:40:43 -0700279 /** A bond attempt succeeded
280 * @hide */
281 public static final int BOND_SUCCESS = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 /** A bond attempt failed because pins did not match, or remote device did
Jaikumar Ganesh32d85712009-09-10 22:00:05 -0700283 * not respond to pin request in time
Nick Pelly45e27042009-08-19 11:00:00 -0700284 * @hide */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 public static final int UNBOND_REASON_AUTH_FAILED = 1;
Jake Hambyf51eada2010-09-21 13:39:53 -0700286 /** A bond attempt failed because the other side explicitly rejected
Nick Pelly45e27042009-08-19 11:00:00 -0700287 * bonding
288 * @hide */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 public static final int UNBOND_REASON_AUTH_REJECTED = 2;
Nick Pelly45e27042009-08-19 11:00:00 -0700290 /** A bond attempt failed because we canceled the bonding process
291 * @hide */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 public static final int UNBOND_REASON_AUTH_CANCELED = 3;
Nick Pelly45e27042009-08-19 11:00:00 -0700293 /** A bond attempt failed because we could not contact the remote device
294 * @hide */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800295 public static final int UNBOND_REASON_REMOTE_DEVICE_DOWN = 4;
Nick Pelly45e27042009-08-19 11:00:00 -0700296 /** A bond attempt failed because a discovery is in progress
297 * @hide */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 public static final int UNBOND_REASON_DISCOVERY_IN_PROGRESS = 5;
Jaikumar Ganesh32d85712009-09-10 22:00:05 -0700299 /** A bond attempt failed because of authentication timeout
300 * @hide */
301 public static final int UNBOND_REASON_AUTH_TIMEOUT = 6;
302 /** A bond attempt failed because of repeated attempts
303 * @hide */
304 public static final int UNBOND_REASON_REPEATED_ATTEMPTS = 7;
Jaikumar Ganeshe5d93b72009-10-08 02:27:52 -0700305 /** A bond attempt failed because we received an Authentication Cancel
306 * by remote end
307 * @hide */
308 public static final int UNBOND_REASON_REMOTE_AUTH_CANCELED = 8;
Nick Pelly45e27042009-08-19 11:00:00 -0700309 /** An existing bond was explicitly revoked
310 * @hide */
Jaikumar Ganeshe5d93b72009-10-08 02:27:52 -0700311 public static final int UNBOND_REASON_REMOVED = 9;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312
Nick Pelly45e27042009-08-19 11:00:00 -0700313 /** The user will be prompted to enter a pin
314 * @hide */
Jaikumar Ganeshb0eca412009-07-16 18:26:28 -0700315 public static final int PAIRING_VARIANT_PIN = 0;
Nick Pelly45e27042009-08-19 11:00:00 -0700316 /** The user will be prompted to enter a passkey
317 * @hide */
Jaikumar Ganeshb0eca412009-07-16 18:26:28 -0700318 public static final int PAIRING_VARIANT_PASSKEY = 1;
Nick Pelly45e27042009-08-19 11:00:00 -0700319 /** The user will be prompted to confirm the passkey displayed on the screen
320 * @hide */
Jaikumar Ganesh32d85712009-09-10 22:00:05 -0700321 public static final int PAIRING_VARIANT_PASSKEY_CONFIRMATION = 2;
322 /** The user will be prompted to accept or deny the incoming pairing request
323 * @hide */
324 public static final int PAIRING_VARIANT_CONSENT = 3;
325 /** The user will be prompted to enter the passkey displayed on remote device
326 * @hide */
327 public static final int PAIRING_VARIANT_DISPLAY_PASSKEY = 4;
Jaikumar Ganeshcc5494c2010-09-09 15:37:57 -0700328 /** The user will be prompted to accept or deny the OOB pairing request
329 * @hide */
330 public static final int PAIRING_VARIANT_OOB_CONSENT = 5;
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -0700331 /**
332 * Used as an extra field in {@link #ACTION_UUID} intents,
Nick Pellyaef439e2009-09-28 12:33:17 -0700333 * Contains the {@link android.os.ParcelUuid}s of the remote device which
334 * is a parcelable version of {@link UUID}.
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -0700335 * @hide
336 */
337 public static final String EXTRA_UUID = "android.bluetooth.device.extra.UUID";
338
Nick Pelly16fb88a2009-10-07 07:44:03 +0200339 /**
340 * Lazy initialization. Guaranteed final after first object constructed, or
341 * getService() called.
342 * TODO: Unify implementation of sService amongst BluetoothFoo API's
343 */
344 private static IBluetooth sService;
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700345
Nick Pellybd022f42009-08-14 18:33:38 -0700346 private final String mAddress;
347
Nick Pelly16fb88a2009-10-07 07:44:03 +0200348 /*package*/ static IBluetooth getService() {
349 synchronized (BluetoothDevice.class) {
350 if (sService == null) {
Nick Pellyf242b7b2009-10-08 00:12:45 +0200351 IBinder b = ServiceManager.getService(BluetoothAdapter.BLUETOOTH_SERVICE);
Nick Pelly16fb88a2009-10-07 07:44:03 +0200352 if (b == null) {
353 throw new RuntimeException("Bluetooth service not available");
354 }
355 sService = IBluetooth.Stub.asInterface(b);
356 }
357 }
358 return sService;
359 }
360
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361 /**
Nick Pellybd022f42009-08-14 18:33:38 -0700362 * Create a new BluetoothDevice
363 * Bluetooth MAC address must be upper case, such as "00:11:22:33:AA:BB",
364 * and is validated in this constructor.
365 * @param address valid Bluetooth MAC address
366 * @throws RuntimeException Bluetooth is not available on this platform
367 * @throws IllegalArgumentException address is invalid
368 * @hide
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 */
Nick Pellybd022f42009-08-14 18:33:38 -0700370 /*package*/ BluetoothDevice(String address) {
Nick Pelly16fb88a2009-10-07 07:44:03 +0200371 getService(); // ensures sService is initialized
Nick Pelly005b2282009-09-10 10:21:56 -0700372 if (!BluetoothAdapter.checkBluetoothAddress(address)) {
Nick Pellybd022f42009-08-14 18:33:38 -0700373 throw new IllegalArgumentException(address + " is not a valid Bluetooth address");
374 }
375
376 mAddress = address;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 }
378
Nick Pellybd022f42009-08-14 18:33:38 -0700379 @Override
380 public boolean equals(Object o) {
381 if (o instanceof BluetoothDevice) {
382 return mAddress.equals(((BluetoothDevice)o).getAddress());
383 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384 return false;
385 }
386
Nick Pellybd022f42009-08-14 18:33:38 -0700387 @Override
388 public int hashCode() {
389 return mAddress.hashCode();
The Android Open Source Project10592532009-03-18 17:39:46 -0700390 }
391
Nick Pelly45e27042009-08-19 11:00:00 -0700392 /**
393 * Returns a string representation of this BluetoothDevice.
394 * <p>Currently this is the Bluetooth hardware address, for example
395 * "00:11:22:AA:BB:CC". However, you should always use {@link #getAddress}
396 * if you explicitly require the Bluetooth hardware address in case the
397 * {@link #toString} representation changes in the future.
398 * @return string representation of this BluetoothDevice
399 */
Nick Pellybd022f42009-08-14 18:33:38 -0700400 @Override
401 public String toString() {
402 return mAddress;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 }
404
Nick Pellybd022f42009-08-14 18:33:38 -0700405 public int describeContents() {
406 return 0;
407 }
408
409 public static final Parcelable.Creator<BluetoothDevice> CREATOR =
410 new Parcelable.Creator<BluetoothDevice>() {
411 public BluetoothDevice createFromParcel(Parcel in) {
412 return new BluetoothDevice(in.readString());
413 }
414 public BluetoothDevice[] newArray(int size) {
415 return new BluetoothDevice[size];
416 }
417 };
418
419 public void writeToParcel(Parcel out, int flags) {
420 out.writeString(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800421 }
422
Nick Pelly45e27042009-08-19 11:00:00 -0700423 /**
424 * Returns the hardware address of this BluetoothDevice.
425 * <p> For example, "00:11:22:AA:BB:CC".
426 * @return Bluetooth hardware address as string
427 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800428 public String getAddress() {
Nick Pellybd022f42009-08-14 18:33:38 -0700429 return mAddress;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800430 }
431
432 /**
Nick Pelly45e27042009-08-19 11:00:00 -0700433 * Get the friendly Bluetooth name of the remote device.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800434 *
Nick Pelly45e27042009-08-19 11:00:00 -0700435 * <p>The local adapter will automatically retrieve remote names when
436 * performing a device scan, and will cache them. This method just returns
437 * the name for this device from the cache.
Nick Pellyde893f52009-09-08 13:15:33 -0700438 * <p>Requires {@link android.Manifest.permission#BLUETOOTH}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800439 *
440 * @return the Bluetooth name, or null if there was a problem.
441 */
442 public String getName() {
443 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700444 return sService.getRemoteName(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445 } catch (RemoteException e) {Log.e(TAG, "", e);}
446 return null;
447 }
448
449 /**
Nick Pelly005b2282009-09-10 10:21:56 -0700450 * Start the bonding (pairing) process with the remote device.
451 * <p>This is an asynchronous call, it will return immediately. Register
452 * for {@link #ACTION_BOND_STATE_CHANGED} intents to be notified when
453 * the bonding process completes, and its result.
454 * <p>Android system services will handle the necessary user interactions
455 * to confirm and complete the bonding process.
456 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 *
Nick Pelly005b2282009-09-10 10:21:56 -0700458 * @return false on immediate error, true if bonding will begin
Nick Pelly18b1e792009-09-24 11:14:15 -0700459 * @hide
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 */
Nick Pellybd022f42009-08-14 18:33:38 -0700461 public boolean createBond() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700463 return sService.createBond(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 } catch (RemoteException e) {Log.e(TAG, "", e);}
465 return false;
466 }
467
468 /**
Jaikumar Ganeshcc5494c2010-09-09 15:37:57 -0700469 * Start the bonding (pairing) process with the remote device using the
470 * Out Of Band mechanism.
471 *
472 * <p>This is an asynchronous call, it will return immediately. Register
473 * for {@link #ACTION_BOND_STATE_CHANGED} intents to be notified when
474 * the bonding process completes, and its result.
475 *
476 * <p>Android system services will handle the necessary user interactions
477 * to confirm and complete the bonding process.
478 *
479 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}.
480 *
481 * @param hash - Simple Secure pairing hash
482 * @param randomizer - The random key obtained using OOB
483 * @return false on immediate error, true if bonding will begin
484 *
485 * @hide
486 */
487 public boolean createBondOutOfBand(byte[] hash, byte[] randomizer) {
488 try {
489 return sService.createBondOutOfBand(mAddress, hash, randomizer);
490 } catch (RemoteException e) {Log.e(TAG, "", e);}
491 return false;
492 }
493
494 /**
495 * Set the Out Of Band data for a remote device to be used later
496 * in the pairing mechanism. Users can obtain this data through other
497 * trusted channels
498 *
499 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}.
500 *
501 * @param hash Simple Secure pairing hash
502 * @param randomizer The random key obtained using OOB
503 * @return false on error; true otherwise
504 *
505 * @hide
506 */
507 public boolean setDeviceOutOfBandData(byte[] hash, byte[] randomizer) {
508 try {
509 return sService.setDeviceOutOfBandData(mAddress, hash, randomizer);
510 } catch (RemoteException e) {Log.e(TAG, "", e);}
511 return false;
512 }
513
514 /**
Nick Pelly005b2282009-09-10 10:21:56 -0700515 * Cancel an in-progress bonding request started with {@link #createBond}.
516 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}.
517 *
Jake Hambyf51eada2010-09-21 13:39:53 -0700518 * @return true on success, false on error
Nick Pelly18b1e792009-09-24 11:14:15 -0700519 * @hide
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800520 */
Nick Pellybd022f42009-08-14 18:33:38 -0700521 public boolean cancelBondProcess() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800522 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700523 return sService.cancelBondProcess(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800524 } catch (RemoteException e) {Log.e(TAG, "", e);}
525 return false;
526 }
527
528 /**
Nick Pelly005b2282009-09-10 10:21:56 -0700529 * Remove bond (pairing) with the remote device.
530 * <p>Delete the link key associated with the remote device, and
531 * immediately terminate connections to that device that require
532 * authentication and encryption.
533 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800534 *
Jake Hambyf51eada2010-09-21 13:39:53 -0700535 * @return true on success, false on error
Nick Pelly18b1e792009-09-24 11:14:15 -0700536 * @hide
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800537 */
Nick Pellybd022f42009-08-14 18:33:38 -0700538 public boolean removeBond() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800539 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700540 return sService.removeBond(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800541 } catch (RemoteException e) {Log.e(TAG, "", e);}
Nick Pellybd022f42009-08-14 18:33:38 -0700542 return false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800543 }
544
545 /**
Nick Pelly005b2282009-09-10 10:21:56 -0700546 * Get the bond state of the remote device.
547 * <p>Possible values for the bond state are:
548 * {@link #BOND_NONE},
549 * {@link #BOND_BONDING},
550 * {@link #BOND_BONDED}.
551 * <p>Requires {@link android.Manifest.permission#BLUETOOTH}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800552 *
Nick Pelly005b2282009-09-10 10:21:56 -0700553 * @return the bond state
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800554 */
Nick Pellybd022f42009-08-14 18:33:38 -0700555 public int getBondState() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800556 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700557 return sService.getBondState(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800558 } catch (RemoteException e) {Log.e(TAG, "", e);}
Nick Pelly005b2282009-09-10 10:21:56 -0700559 return BOND_NONE;
560 }
561
562 /**
563 * Get the Bluetooth class of the remote device.
564 * <p>Requires {@link android.Manifest.permission#BLUETOOTH}.
565 *
566 * @return Bluetooth class object, or null on error
567 */
568 public BluetoothClass getBluetoothClass() {
569 try {
570 int classInt = sService.getRemoteClass(mAddress);
571 if (classInt == BluetoothClass.ERROR) return null;
572 return new BluetoothClass(classInt);
573 } catch (RemoteException e) {Log.e(TAG, "", e);}
574 return null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 }
576
Lixin Yueefa1dd72009-08-31 15:55:13 +0800577 /**
578 * Get trust state of a remote device.
Nick Pellye6ee3be2009-10-08 23:27:28 +0200579 * <p>Requires {@link android.Manifest.permission#BLUETOOTH}.
Lixin Yueefa1dd72009-08-31 15:55:13 +0800580 * @hide
581 */
582 public boolean getTrustState() {
583 try {
584 return sService.getTrustState(mAddress);
585 } catch (RemoteException e) {
586 Log.e(TAG, "", e);
587 }
588 return false;
589 }
590
591 /**
592 * Set trust state for a remote device.
Nick Pellye6ee3be2009-10-08 23:27:28 +0200593 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}.
Lixin Yueefa1dd72009-08-31 15:55:13 +0800594 * @param value the trust state value (true or false)
595 * @hide
596 */
597 public boolean setTrust(boolean value) {
598 try {
599 return sService.setTrust(mAddress, value);
600 } catch (RemoteException e) {
601 Log.e(TAG, "", e);
602 }
603 return false;
604 }
605
Nick Pelly45e27042009-08-19 11:00:00 -0700606 /** @hide */
Jaikumar Ganeshdd0463a2009-09-16 12:30:02 -0700607 public ParcelUuid[] getUuids() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800608 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700609 return sService.getRemoteUuids(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610 } catch (RemoteException e) {Log.e(TAG, "", e);}
611 return null;
612 }
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700613
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -0700614 /**
615 * Perform a SDP query on the remote device to get the UUIDs
616 * supported. This API is asynchronous and an Intent is sent,
617 * with the UUIDs supported by the remote end. If there is an error
618 * in getting the SDP records or if the process takes a long time,
619 * an Intent is sent with the UUIDs that is currently present in the
Jake Hambyf51eada2010-09-21 13:39:53 -0700620 * cache. Clients should use the {@link #getUuids} to get UUIDs
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -0700621 * is SDP is not to be performed.
622 *
623 * @return False if the sanity check fails, True if the process
624 * of initiating an ACL connection to the remote device
625 * was started.
626 * @hide
627 */
628 public boolean fetchUuidsWithSdp() {
629 try {
Nick Pelly16fb88a2009-10-07 07:44:03 +0200630 return sService.fetchRemoteUuids(mAddress, null, null);
Jaikumar Ganesh1caa6d12009-09-18 11:32:54 -0700631 } catch (RemoteException e) {Log.e(TAG, "", e);}
632 return false;
633 }
634
Nick Pelly45e27042009-08-19 11:00:00 -0700635 /** @hide */
Jaikumar Ganeshdd0463a2009-09-16 12:30:02 -0700636 public int getServiceChannel(ParcelUuid uuid) {
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700637 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700638 return sService.getRemoteServiceChannel(mAddress, uuid);
Jaikumar Ganeshd5ac1ae2009-05-05 22:26:12 -0700639 } catch (RemoteException e) {Log.e(TAG, "", e);}
Nick Pellyb24e11b2009-09-08 17:40:43 -0700640 return BluetoothDevice.ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800641 }
642
Nick Pelly45e27042009-08-19 11:00:00 -0700643 /** @hide */
Nick Pellybd022f42009-08-14 18:33:38 -0700644 public boolean setPin(byte[] pin) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800645 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700646 return sService.setPin(mAddress, pin);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800647 } catch (RemoteException e) {Log.e(TAG, "", e);}
648 return false;
649 }
Jaikumar Ganeshb0eca412009-07-16 18:26:28 -0700650
Nick Pelly45e27042009-08-19 11:00:00 -0700651 /** @hide */
Nick Pellybd022f42009-08-14 18:33:38 -0700652 public boolean setPasskey(int passkey) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800653 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700654 return sService.setPasskey(mAddress, passkey);
Jaikumar Ganeshb0eca412009-07-16 18:26:28 -0700655 } catch (RemoteException e) {Log.e(TAG, "", e);}
656 return false;
657 }
658
Nick Pelly45e27042009-08-19 11:00:00 -0700659 /** @hide */
Nick Pellybd022f42009-08-14 18:33:38 -0700660 public boolean setPairingConfirmation(boolean confirm) {
Jaikumar Ganeshb0eca412009-07-16 18:26:28 -0700661 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700662 return sService.setPairingConfirmation(mAddress, confirm);
Jaikumar Ganeshb0eca412009-07-16 18:26:28 -0700663 } catch (RemoteException e) {Log.e(TAG, "", e);}
664 return false;
665 }
666
Nick Pelly45e27042009-08-19 11:00:00 -0700667 /** @hide */
Jaikumar Ganeshcc5494c2010-09-09 15:37:57 -0700668 public boolean setRemoteOutOfBandData() {
669 try {
670 return sService.setRemoteOutOfBandData(mAddress);
671 } catch (RemoteException e) {Log.e(TAG, "", e);}
672 return false;
673 }
674
675 /** @hide */
Nick Pellybd022f42009-08-14 18:33:38 -0700676 public boolean cancelPairingUserInput() {
Jaikumar Ganeshb0eca412009-07-16 18:26:28 -0700677 try {
Nick Pellybd022f42009-08-14 18:33:38 -0700678 return sService.cancelPairingUserInput(mAddress);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679 } catch (RemoteException e) {Log.e(TAG, "", e);}
680 return false;
681 }
682
Jaikumar Ganesh3fbf7b62009-12-02 17:28:38 -0800683 /** @hide */
684 public boolean isBluetoothDock() {
685 try {
686 return sService.isBluetoothDock(mAddress);
687 } catch (RemoteException e) {Log.e(TAG, "", e);}
688 return false;
689 }
690
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691 /**
Nick Pelly45e27042009-08-19 11:00:00 -0700692 * Create an RFCOMM {@link BluetoothSocket} ready to start a secure
Nick Pelly16fb88a2009-10-07 07:44:03 +0200693 * outgoing connection to this remote device on given channel.
Nick Pelly45e27042009-08-19 11:00:00 -0700694 * <p>The remote device will be authenticated and communication on this
695 * socket will be encrypted.
Jake Hambyf51eada2010-09-21 13:39:53 -0700696 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
Nick Pelly45e27042009-08-19 11:00:00 -0700697 * connection.
698 * <p>Valid RFCOMM channels are in range 1 to 30.
Nick Pellycf440592009-09-08 10:12:06 -0700699 * <p>Requires {@link android.Manifest.permission#BLUETOOTH}
Nick Pellyde893f52009-09-08 13:15:33 -0700700 *
Nick Pelly45e27042009-08-19 11:00:00 -0700701 * @param channel RFCOMM channel to connect to
702 * @return a RFCOMM BluetoothServerSocket ready for an outgoing connection
Nick Pellybd022f42009-08-14 18:33:38 -0700703 * @throws IOException on error, for example Bluetooth not available, or
Nick Pelly45e27042009-08-19 11:00:00 -0700704 * insufficient permissions
Nick Pelly16fb88a2009-10-07 07:44:03 +0200705 * @hide
Nick Pellybd022f42009-08-14 18:33:38 -0700706 */
Nick Pelly45e27042009-08-19 11:00:00 -0700707 public BluetoothSocket createRfcommSocket(int channel) throws IOException {
Nick Pelly16fb88a2009-10-07 07:44:03 +0200708 return new BluetoothSocket(BluetoothSocket.TYPE_RFCOMM, -1, true, true, this, channel,
709 null);
710 }
711
712 /**
713 * Create an RFCOMM {@link BluetoothSocket} ready to start a secure
714 * outgoing connection to this remote device using SDP lookup of uuid.
715 * <p>This is designed to be used with {@link
716 * BluetoothAdapter#listenUsingRfcommWithServiceRecord} for peer-peer
717 * Bluetooth applications.
Jake Hambyf51eada2010-09-21 13:39:53 -0700718 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
Nick Pelly16fb88a2009-10-07 07:44:03 +0200719 * connection. This will also perform an SDP lookup of the given uuid to
720 * determine which channel to connect to.
721 * <p>The remote device will be authenticated and communication on this
722 * socket will be encrypted.
Nick Pellyea5056e2010-02-24 11:19:10 -0800723 * <p>Hint: If you are connecting to a Bluetooth serial board then try
724 * using the well-known SPP UUID 00001101-0000-1000-8000-00805F9B34FB.
725 * However if you are connecting to an Android peer then please generate
726 * your own unique UUID.
Nick Pelly16fb88a2009-10-07 07:44:03 +0200727 * <p>Requires {@link android.Manifest.permission#BLUETOOTH}
728 *
729 * @param uuid service record uuid to lookup RFCOMM channel
730 * @return a RFCOMM BluetoothServerSocket ready for an outgoing connection
731 * @throws IOException on error, for example Bluetooth not available, or
732 * insufficient permissions
733 */
734 public BluetoothSocket createRfcommSocketToServiceRecord(UUID uuid) throws IOException {
735 return new BluetoothSocket(BluetoothSocket.TYPE_RFCOMM, -1, true, true, this, -1,
736 new ParcelUuid(uuid));
Nick Pellybd022f42009-08-14 18:33:38 -0700737 }
738
739 /**
Jaikumar Ganesh6eef14a2010-12-23 12:57:02 -0800740 * Create an RFCOMM {@link BluetoothSocket} socket ready to start an insecure
741 * outgoing connection to this remote device using SDP lookup of uuid.
742 * <p> The communication channel will not have an authenticated link key
743 * i.e it will be subject to man-in-the-middle attacks. For Bluetooth 2.1
744 * devices, the link key will be encrypted, as encryption is mandatory.
745 * For legacy devices (pre Bluetooth 2.1 devices) the link key will
746 * be not be encrypted. Use {@link #createRfcommSocketToServiceRecord} if an
747 * encrypted and authenticated communication channel is desired.
748 * <p>This is designed to be used with {@link
749 * BluetoothAdapter#listenUsingInsecureRfcommWithServiceRecord} for peer-peer
750 * Bluetooth applications.
751 * <p>Use {@link BluetoothSocket#connect} to initiate the outgoing
752 * connection. This will also perform an SDP lookup of the given uuid to
753 * determine which channel to connect to.
754 * <p>The remote device will be authenticated and communication on this
755 * socket will be encrypted.
756 * <p>Hint: If you are connecting to a Bluetooth serial board then try
757 * using the well-known SPP UUID 00001101-0000-1000-8000-00805F9B34FB.
758 * However if you are connecting to an Android peer then please generate
759 * your own unique UUID.
760 * <p>Requires {@link android.Manifest.permission#BLUETOOTH}
761 *
762 * @param uuid service record uuid to lookup RFCOMM channel
763 * @return a RFCOMM BluetoothServerSocket ready for an outgoing connection
764 * @throws IOException on error, for example Bluetooth not available, or
765 * insufficient permissions
766 */
767 public BluetoothSocket createInsecureRfcommSocketToServiceRecord(UUID uuid) throws IOException {
768 return new BluetoothSocket(BluetoothSocket.TYPE_RFCOMM, -1, false, false, this, -1,
769 new ParcelUuid(uuid));
770 }
771
772 /**
Nick Pellybd022f42009-08-14 18:33:38 -0700773 * Construct an insecure RFCOMM socket ready to start an outgoing
774 * connection.
775 * Call #connect on the returned #BluetoothSocket to begin the connection.
776 * The remote device will not be authenticated and communication on this
777 * socket will not be encrypted.
Nick Pellye6ee3be2009-10-08 23:27:28 +0200778 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}
779 *
Nick Pellybd022f42009-08-14 18:33:38 -0700780 * @param port remote port
781 * @return An RFCOMM BluetoothSocket
782 * @throws IOException On error, for example Bluetooth not available, or
783 * insufficient permissions.
Nick Pelly45e27042009-08-19 11:00:00 -0700784 * @hide
Nick Pellybd022f42009-08-14 18:33:38 -0700785 */
786 public BluetoothSocket createInsecureRfcommSocket(int port) throws IOException {
Nick Pelly16fb88a2009-10-07 07:44:03 +0200787 return new BluetoothSocket(BluetoothSocket.TYPE_RFCOMM, -1, false, false, this, port,
788 null);
Nick Pellybd022f42009-08-14 18:33:38 -0700789 }
790
791 /**
792 * Construct a SCO socket ready to start an outgoing connection.
793 * Call #connect on the returned #BluetoothSocket to begin the connection.
Nick Pellye6ee3be2009-10-08 23:27:28 +0200794 * <p>Requires {@link android.Manifest.permission#BLUETOOTH_ADMIN}
795 *
Nick Pellybd022f42009-08-14 18:33:38 -0700796 * @return a SCO BluetoothSocket
797 * @throws IOException on error, for example Bluetooth not available, or
798 * insufficient permissions.
Nick Pelly45e27042009-08-19 11:00:00 -0700799 * @hide
Nick Pellybd022f42009-08-14 18:33:38 -0700800 */
801 public BluetoothSocket createScoSocket() throws IOException {
Nick Pelly16fb88a2009-10-07 07:44:03 +0200802 return new BluetoothSocket(BluetoothSocket.TYPE_SCO, -1, true, true, this, -1, null);
Nick Pellybd022f42009-08-14 18:33:38 -0700803 }
804
805 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800806 * Check that a pin is valid and convert to byte array.
807 *
Jake Hambyf51eada2010-09-21 13:39:53 -0700808 * Bluetooth pin's are 1 to 16 bytes of UTF-8 characters.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 * @param pin pin as java String
Jake Hambyf51eada2010-09-21 13:39:53 -0700810 * @return the pin code as a UTF-8 byte array, or null if it is an invalid
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 * Bluetooth pin.
Nick Pelly45e27042009-08-19 11:00:00 -0700812 * @hide
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800813 */
814 public static byte[] convertPinToBytes(String pin) {
815 if (pin == null) {
816 return null;
817 }
818 byte[] pinBytes;
819 try {
Jake Hambyf51eada2010-09-21 13:39:53 -0700820 pinBytes = pin.getBytes("UTF-8");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800821 } catch (UnsupportedEncodingException uee) {
Jake Hambyf51eada2010-09-21 13:39:53 -0700822 Log.e(TAG, "UTF-8 not supported?!?"); // this should not happen
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800823 return null;
824 }
825 if (pinBytes.length <= 0 || pinBytes.length > 16) {
826 return null;
827 }
828 return pinBytes;
829 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800830
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800831}