blob: b8a40dc6895a764b6a39c66d173fd13311c21acd [file] [log] [blame]
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
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
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080019import android.content.Context;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080020import android.os.ParcelUuid;
21import android.os.RemoteException;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080022import android.util.Log;
23
24import java.util.ArrayList;
25import java.util.List;
26import java.util.UUID;
27
28/**
Matthew Xieddf7e472013-03-01 18:41:02 -080029 * Public API for the Bluetooth GATT Profile.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080030 *
Matthew Xieddf7e472013-03-01 18:41:02 -080031 * <p>This class provides Bluetooth GATT functionality to enable communication
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080032 * with Bluetooth Smart or Smart Ready devices.
33 *
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080034 * <p>To connect to a remote peripheral device, create a {@link BluetoothGattCallback}
Matthew Xie33ec9842013-04-03 00:29:27 -070035 * and call {@link BluetoothDevice#connectGatt} to get a instance of this class.
Matthew Xieddf7e472013-03-01 18:41:02 -080036 * GATT capable devices can be discovered using the Bluetooth device discovery or BLE
37 * scan process.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080038 */
39public final class BluetoothGatt implements BluetoothProfile {
40 private static final String TAG = "BluetoothGatt";
41 private static final boolean DBG = true;
Andre Eisenbach55d19e42014-07-18 14:38:36 -070042 private static final boolean VDBG = false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080043
Matthew Xieddf7e472013-03-01 18:41:02 -080044 private final Context mContext;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080045 private IBluetoothGatt mService;
46 private BluetoothGattCallback mCallback;
47 private int mClientIf;
48 private boolean mAuthRetry = false;
Matthew Xieddf7e472013-03-01 18:41:02 -080049 private BluetoothDevice mDevice;
50 private boolean mAutoConnect;
51 private int mConnState;
52 private final Object mStateLock = new Object();
Andre Eisenbachcc68cc92014-03-18 14:26:51 -070053 private Boolean mDeviceBusy = false;
Ganesh Ganapathi Battab88fa822014-04-18 10:00:40 -070054 private int mTransport;
Matthew Xieddf7e472013-03-01 18:41:02 -080055
56 private static final int CONN_STATE_IDLE = 0;
57 private static final int CONN_STATE_CONNECTING = 1;
58 private static final int CONN_STATE_CONNECTED = 2;
59 private static final int CONN_STATE_DISCONNECTING = 3;
Matthew Xie33ec9842013-04-03 00:29:27 -070060 private static final int CONN_STATE_CLOSED = 4;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080061
62 private List<BluetoothGattService> mServices;
63
Matthew Xieddf7e472013-03-01 18:41:02 -080064 /** A GATT operation completed successfully */
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080065 public static final int GATT_SUCCESS = 0;
66
Matthew Xieddf7e472013-03-01 18:41:02 -080067 /** GATT read operation is not permitted */
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080068 public static final int GATT_READ_NOT_PERMITTED = 0x2;
69
Matthew Xieddf7e472013-03-01 18:41:02 -080070 /** GATT write operation is not permitted */
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080071 public static final int GATT_WRITE_NOT_PERMITTED = 0x3;
72
73 /** Insufficient authentication for a given operation */
74 public static final int GATT_INSUFFICIENT_AUTHENTICATION = 0x5;
75
76 /** The given request is not supported */
77 public static final int GATT_REQUEST_NOT_SUPPORTED = 0x6;
78
79 /** Insufficient encryption for a given operation */
80 public static final int GATT_INSUFFICIENT_ENCRYPTION = 0xf;
81
82 /** A read or write operation was requested with an invalid offset */
83 public static final int GATT_INVALID_OFFSET = 0x7;
84
85 /** A write operation exceeds the maximum length of the attribute */
86 public static final int GATT_INVALID_ATTRIBUTE_LENGTH = 0xd;
87
Andre Eisenbach45a0a1a2014-06-30 11:37:05 -070088 /** A remote device connection is congested. */
Andre Eisenbachdadefda2014-03-28 14:54:53 -070089 public static final int GATT_CONNECTION_CONGESTED = 0x8f;
90
Matthew Xie90ca8072013-05-28 21:06:50 +000091 /** A GATT operation failed, errors other than the above */
92 public static final int GATT_FAILURE = 0x101;
93
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -080094 /**
Andre Eisenbach6ce4db02014-07-16 23:02:42 -070095 * Connection paramter update - Use the connection paramters recommended by the
96 * Bluetooth SIG. This is the default value if no connection parameter update
97 * is requested.
98 */
Andre Eisenbach4072da02014-08-19 17:58:55 -070099 public static final int CONNECTION_PRIORITY_BALANCED = 0;
Andre Eisenbach6ce4db02014-07-16 23:02:42 -0700100
101 /**
102 * Connection paramter update - Request a high priority, low latency connection.
103 * An application should only request high priority connection paramters to transfer
104 * large amounts of data over LE quickly. Once the transfer is complete, the application
Andre Eisenbach4072da02014-08-19 17:58:55 -0700105 * should request {@link BluetoothGatt#CONNECTION_PRIORITY_BALANCED} connectoin parameters
Andre Eisenbach6ce4db02014-07-16 23:02:42 -0700106 * to reduce energy use.
107 */
Andre Eisenbach4072da02014-08-19 17:58:55 -0700108 public static final int CONNECTION_PRIORITY_HIGH = 1;
Andre Eisenbach6ce4db02014-07-16 23:02:42 -0700109
110 /** Connection paramter update - Request low power, reduced data rate connection parameters. */
Andre Eisenbach4072da02014-08-19 17:58:55 -0700111 public static final int CONNECTION_PRIORITY_LOW_POWER = 2;
Andre Eisenbach6ce4db02014-07-16 23:02:42 -0700112
113 /**
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800114 * No authentication required.
115 * @hide
116 */
117 /*package*/ static final int AUTHENTICATION_NONE = 0;
118
119 /**
120 * Authentication requested; no man-in-the-middle protection required.
121 * @hide
122 */
123 /*package*/ static final int AUTHENTICATION_NO_MITM = 1;
124
125 /**
126 * Authentication with man-in-the-middle protection requested.
127 * @hide
128 */
129 /*package*/ static final int AUTHENTICATION_MITM = 2;
130
131 /**
Wei Wange0d4afb2014-07-29 21:34:25 -0700132 * Bluetooth GATT callbacks. Overrides the default BluetoothGattCallback implementation.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800133 */
134 private final IBluetoothGattCallback mBluetoothGattCallback =
Wei Wange0d4afb2014-07-29 21:34:25 -0700135 new BluetoothGattCallbackWrapper() {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800136 /**
137 * Application interface registered - app is ready to go
138 * @hide
139 */
140 public void onClientRegistered(int status, int clientIf) {
141 if (DBG) Log.d(TAG, "onClientRegistered() - status=" + status
142 + " clientIf=" + clientIf);
Matthew Xieddf7e472013-03-01 18:41:02 -0800143 if (VDBG) {
144 synchronized(mStateLock) {
145 if (mConnState != CONN_STATE_CONNECTING) {
146 Log.e(TAG, "Bad connection state: " + mConnState);
147 }
148 }
149 }
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800150 mClientIf = clientIf;
Matthew Xieddf7e472013-03-01 18:41:02 -0800151 if (status != GATT_SUCCESS) {
Matthew Xie33ec9842013-04-03 00:29:27 -0700152 mCallback.onConnectionStateChange(BluetoothGatt.this, GATT_FAILURE,
Matthew Xieddf7e472013-03-01 18:41:02 -0800153 BluetoothProfile.STATE_DISCONNECTED);
154 synchronized(mStateLock) {
155 mConnState = CONN_STATE_IDLE;
156 }
157 return;
158 }
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800159 try {
Matthew Xieddf7e472013-03-01 18:41:02 -0800160 mService.clientConnect(mClientIf, mDevice.getAddress(),
Ganesh Ganapathi Battab88fa822014-04-18 10:00:40 -0700161 !mAutoConnect, mTransport); // autoConnect is inverse of "isDirect"
Matthew Xieddf7e472013-03-01 18:41:02 -0800162 } catch (RemoteException e) {
163 Log.e(TAG,"",e);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800164 }
165 }
166
167 /**
168 * Client connection state changed
169 * @hide
170 */
171 public void onClientConnectionState(int status, int clientIf,
172 boolean connected, String address) {
173 if (DBG) Log.d(TAG, "onClientConnectionState() - status=" + status
174 + " clientIf=" + clientIf + " device=" + address);
Matthew Xieddf7e472013-03-01 18:41:02 -0800175 if (!address.equals(mDevice.getAddress())) {
176 return;
177 }
178 int profileState = connected ? BluetoothProfile.STATE_CONNECTED :
179 BluetoothProfile.STATE_DISCONNECTED;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800180 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700181 mCallback.onConnectionStateChange(BluetoothGatt.this, status, profileState);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800182 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700183 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800184 }
Matthew Xieddf7e472013-03-01 18:41:02 -0800185
186 synchronized(mStateLock) {
187 if (connected) {
188 mConnState = CONN_STATE_CONNECTED;
189 } else {
190 mConnState = CONN_STATE_IDLE;
191 }
192 }
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700193
194 synchronized(mDeviceBusy) {
195 mDeviceBusy = false;
196 }
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800197 }
198
199 /**
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800200 * Remote search has been completed.
201 * The internal object structure should now reflect the state
202 * of the remote device database. Let the application know that
203 * we are done at this point.
204 * @hide
205 */
Jakub Pawlowskibf0faed2016-03-01 18:50:27 -0800206 public void onSearchComplete(String address, List<BluetoothGattService> services,
207 int status) {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800208 if (DBG) Log.d(TAG, "onSearchComplete() = Device=" + address + " Status=" + status);
Matthew Xieddf7e472013-03-01 18:41:02 -0800209 if (!address.equals(mDevice.getAddress())) {
210 return;
211 }
Jakub Pawlowskibf0faed2016-03-01 18:50:27 -0800212
213 for (BluetoothGattService s : services) {
214 //services we receive don't have device set properly.
215 s.setDevice(mDevice);
216 }
217
218 mServices.addAll(services);
219
220 // Fix references to included services, as they doesn't point to right objects.
221 for (BluetoothGattService fixedService : mServices) {
222 ArrayList<BluetoothGattService> includedServices =
223 new ArrayList(fixedService.getIncludedServices());
224 fixedService.getIncludedServices().clear();
225
226 for(BluetoothGattService brokenRef : includedServices) {
227 BluetoothGattService includedService = getService(mDevice,
228 brokenRef.getUuid(), brokenRef.getInstanceId(), brokenRef.getType());
229 if (includedService != null) {
230 fixedService.addIncludedService(includedService);
231 } else {
232 Log.e(TAG, "Broken GATT database: can't find included service.");
233 }
234 }
235 }
236
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800237 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700238 mCallback.onServicesDiscovered(BluetoothGatt.this, status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800239 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700240 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800241 }
242 }
243
244 /**
245 * Remote characteristic has been read.
246 * Updates the internal value.
247 * @hide
248 */
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700249 public void onCharacteristicRead(String address, int status, int handle, byte[] value) {
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700250 if (VDBG) Log.d(TAG, "onCharacteristicRead() - Device=" + address
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700251 + " handle=" + handle + " Status=" + status);
252
253 Log.w(TAG, "onCharacteristicRead() - Device=" + address
254 + " handle=" + handle + " Status=" + status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800255
Matthew Xieddf7e472013-03-01 18:41:02 -0800256 if (!address.equals(mDevice.getAddress())) {
257 return;
258 }
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700259
260 synchronized(mDeviceBusy) {
261 mDeviceBusy = false;
262 }
263
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800264 if ((status == GATT_INSUFFICIENT_AUTHENTICATION
265 || status == GATT_INSUFFICIENT_ENCRYPTION)
266 && mAuthRetry == false) {
267 try {
268 mAuthRetry = true;
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700269 mService.readCharacteristic(mClientIf, address, handle, AUTHENTICATION_MITM);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800270 return;
271 } catch (RemoteException e) {
272 Log.e(TAG,"",e);
273 }
274 }
275
276 mAuthRetry = false;
277
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700278 BluetoothGattCharacteristic characteristic = getCharacteristicById(mDevice, handle);
279 if (characteristic == null) {
280 Log.w(TAG, "onCharacteristicRead() failed to find characteristic!");
281 return;
282 }
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800283
284 if (status == 0) characteristic.setValue(value);
285
286 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700287 mCallback.onCharacteristicRead(BluetoothGatt.this, characteristic, status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800288 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700289 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800290 }
291 }
292
293 /**
294 * Characteristic has been written to the remote device.
295 * Let the app know how we did...
296 * @hide
297 */
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700298 public void onCharacteristicWrite(String address, int status, int handle) {
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700299 if (VDBG) Log.d(TAG, "onCharacteristicWrite() - Device=" + address
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700300 + " handle=" + handle + " Status=" + status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800301
Matthew Xieddf7e472013-03-01 18:41:02 -0800302 if (!address.equals(mDevice.getAddress())) {
303 return;
304 }
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700305
306 synchronized(mDeviceBusy) {
307 mDeviceBusy = false;
308 }
309
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700310 BluetoothGattCharacteristic characteristic = getCharacteristicById(mDevice, handle);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800311 if (characteristic == null) return;
312
313 if ((status == GATT_INSUFFICIENT_AUTHENTICATION
314 || status == GATT_INSUFFICIENT_ENCRYPTION)
315 && mAuthRetry == false) {
316 try {
317 mAuthRetry = true;
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700318 mService.writeCharacteristic(mClientIf, address, handle,
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800319 characteristic.getWriteType(), AUTHENTICATION_MITM,
320 characteristic.getValue());
321 return;
322 } catch (RemoteException e) {
323 Log.e(TAG,"",e);
324 }
325 }
326
327 mAuthRetry = false;
328
329 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700330 mCallback.onCharacteristicWrite(BluetoothGatt.this, characteristic, status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800331 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700332 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800333 }
334 }
335
336 /**
337 * Remote characteristic has been updated.
338 * Updates the internal value.
339 * @hide
340 */
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700341 public void onNotify(String address, int handle, byte[] value) {
342 if (VDBG) Log.d(TAG, "onNotify() - Device=" + address + " handle=" + handle);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800343
Matthew Xieddf7e472013-03-01 18:41:02 -0800344 if (!address.equals(mDevice.getAddress())) {
345 return;
346 }
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800347
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700348 BluetoothGattCharacteristic characteristic = getCharacteristicById(mDevice, handle);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800349 if (characteristic == null) return;
350
351 characteristic.setValue(value);
352
353 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700354 mCallback.onCharacteristicChanged(BluetoothGatt.this, characteristic);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800355 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700356 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800357 }
358 }
359
360 /**
361 * Descriptor has been read.
362 * @hide
363 */
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700364 public void onDescriptorRead(String address, int status, int handle, byte[] value) {
365 if (VDBG) Log.d(TAG, "onDescriptorRead() - Device=" + address + " handle=" + handle);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800366
Matthew Xieddf7e472013-03-01 18:41:02 -0800367 if (!address.equals(mDevice.getAddress())) {
368 return;
369 }
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700370
371 synchronized(mDeviceBusy) {
372 mDeviceBusy = false;
373 }
374
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700375 BluetoothGattDescriptor descriptor = getDescriptorById(mDevice, handle);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800376 if (descriptor == null) return;
377
378 if (status == 0) descriptor.setValue(value);
379
380 if ((status == GATT_INSUFFICIENT_AUTHENTICATION
381 || status == GATT_INSUFFICIENT_ENCRYPTION)
382 && mAuthRetry == false) {
383 try {
384 mAuthRetry = true;
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700385 mService.readDescriptor(mClientIf, address, handle, AUTHENTICATION_MITM);
Andre Eisenbachd65e8f42014-07-25 15:16:11 -0700386 return;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800387 } catch (RemoteException e) {
388 Log.e(TAG,"",e);
389 }
390 }
391
392 mAuthRetry = true;
393
394 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700395 mCallback.onDescriptorRead(BluetoothGatt.this, descriptor, status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800396 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700397 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800398 }
399 }
400
401 /**
402 * Descriptor write operation complete.
403 * @hide
404 */
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700405 public void onDescriptorWrite(String address, int status, int handle) {
406 if (VDBG) Log.d(TAG, "onDescriptorWrite() - Device=" + address + " handle=" + handle);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800407
Matthew Xieddf7e472013-03-01 18:41:02 -0800408 if (!address.equals(mDevice.getAddress())) {
409 return;
410 }
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700411
412 synchronized(mDeviceBusy) {
413 mDeviceBusy = false;
414 }
415
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700416 BluetoothGattDescriptor descriptor = getDescriptorById(mDevice, handle);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800417 if (descriptor == null) return;
418
419 if ((status == GATT_INSUFFICIENT_AUTHENTICATION
420 || status == GATT_INSUFFICIENT_ENCRYPTION)
421 && mAuthRetry == false) {
422 try {
423 mAuthRetry = true;
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700424 mService.writeDescriptor(mClientIf, address, handle,
Andre Eisenbach613f4302016-03-29 20:52:38 -0700425 BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT,
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800426 AUTHENTICATION_MITM, descriptor.getValue());
Andre Eisenbachd65e8f42014-07-25 15:16:11 -0700427 return;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800428 } catch (RemoteException e) {
429 Log.e(TAG,"",e);
430 }
431 }
432
433 mAuthRetry = false;
434
435 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700436 mCallback.onDescriptorWrite(BluetoothGatt.this, descriptor, status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800437 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700438 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800439 }
440 }
441
442 /**
443 * Prepared write transaction completed (or aborted)
444 * @hide
445 */
446 public void onExecuteWrite(String address, int status) {
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700447 if (VDBG) Log.d(TAG, "onExecuteWrite() - Device=" + address
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800448 + " status=" + status);
Matthew Xieddf7e472013-03-01 18:41:02 -0800449 if (!address.equals(mDevice.getAddress())) {
450 return;
451 }
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700452
453 synchronized(mDeviceBusy) {
454 mDeviceBusy = false;
455 }
456
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800457 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700458 mCallback.onReliableWriteCompleted(BluetoothGatt.this, status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800459 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700460 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800461 }
462 }
463
464 /**
465 * Remote device RSSI has been read
466 * @hide
467 */
468 public void onReadRemoteRssi(String address, int rssi, int status) {
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700469 if (VDBG) Log.d(TAG, "onReadRemoteRssi() - Device=" + address +
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800470 " rssi=" + rssi + " status=" + status);
Matthew Xieddf7e472013-03-01 18:41:02 -0800471 if (!address.equals(mDevice.getAddress())) {
472 return;
473 }
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800474 try {
Matthew Xie33ec9842013-04-03 00:29:27 -0700475 mCallback.onReadRemoteRssi(BluetoothGatt.this, rssi, status);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800476 } catch (Exception ex) {
Mike Lockwood0998ff12013-05-13 14:04:12 -0700477 Log.w(TAG, "Unhandled exception in callback", ex);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800478 }
479 }
Wei Wangf3055892014-03-11 22:22:41 -0700480
481 /**
Andre Eisenbach580b0a12014-03-25 06:31:50 -0700482 * Callback invoked when the MTU for a given connection changes
483 * @hide
484 */
485 public void onConfigureMTU(String address, int mtu, int status) {
486 if (DBG) Log.d(TAG, "onConfigureMTU() - Device=" + address +
487 " mtu=" + mtu + " status=" + status);
488 if (!address.equals(mDevice.getAddress())) {
489 return;
490 }
491 try {
Andre Eisenbach4072da02014-08-19 17:58:55 -0700492 mCallback.onMtuChanged(BluetoothGatt.this, mtu, status);
Andre Eisenbach580b0a12014-03-25 06:31:50 -0700493 } catch (Exception ex) {
494 Log.w(TAG, "Unhandled exception in callback", ex);
495 }
Wei Wangf3055892014-03-11 22:22:41 -0700496 }
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800497 };
498
Ganesh Ganapathi Battab88fa822014-04-18 10:00:40 -0700499 /*package*/ BluetoothGatt(Context context, IBluetoothGatt iGatt, BluetoothDevice device,
500 int transport) {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800501 mContext = context;
Matthew Xieddf7e472013-03-01 18:41:02 -0800502 mService = iGatt;
503 mDevice = device;
Ganesh Ganapathi Battab88fa822014-04-18 10:00:40 -0700504 mTransport = transport;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800505 mServices = new ArrayList<BluetoothGattService>();
506
Matthew Xieddf7e472013-03-01 18:41:02 -0800507 mConnState = CONN_STATE_IDLE;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800508 }
509
510 /**
Matthew Xie33ec9842013-04-03 00:29:27 -0700511 * Close this Bluetooth GATT client.
Matthew Xieb30f91e2013-05-29 10:19:06 -0700512 *
513 * Application should call this method as early as possible after it is done with
514 * this GATT client.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800515 */
Matthew Xie33ec9842013-04-03 00:29:27 -0700516 public void close() {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800517 if (DBG) Log.d(TAG, "close()");
518
519 unregisterApp();
Matthew Xie33ec9842013-04-03 00:29:27 -0700520 mConnState = CONN_STATE_CLOSED;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800521 }
522
523 /**
524 * Returns a service by UUID, instance and type.
525 * @hide
526 */
527 /*package*/ BluetoothGattService getService(BluetoothDevice device, UUID uuid,
528 int instanceId, int type) {
529 for(BluetoothGattService svc : mServices) {
530 if (svc.getDevice().equals(device) &&
531 svc.getType() == type &&
532 svc.getInstanceId() == instanceId &&
533 svc.getUuid().equals(uuid)) {
534 return svc;
535 }
536 }
537 return null;
538 }
539
540
541 /**
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700542 * Returns a characteristic with id equal to instanceId.
543 * @hide
544 */
545 /*package*/ BluetoothGattCharacteristic getCharacteristicById(BluetoothDevice device, int instanceId) {
546 for(BluetoothGattService svc : mServices) {
547 for(BluetoothGattCharacteristic charac : svc.getCharacteristics()) {
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700548 if (charac.getInstanceId() == instanceId)
549 return charac;
550 }
551 }
552 return null;
553 }
554
555 /**
556 * Returns a descriptor with id equal to instanceId.
557 * @hide
558 */
559 /*package*/ BluetoothGattDescriptor getDescriptorById(BluetoothDevice device, int instanceId) {
560 for(BluetoothGattService svc : mServices) {
561 for(BluetoothGattCharacteristic charac : svc.getCharacteristics()) {
562 for(BluetoothGattDescriptor desc : charac.getDescriptors()) {
563 if (desc.getInstanceId() == instanceId)
564 return desc;
565 }
566 }
567 }
568 return null;
569 }
570
571 /**
Matthew Xieddf7e472013-03-01 18:41:02 -0800572 * Register an application callback to start using GATT.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800573 *
Matthew Xieddf7e472013-03-01 18:41:02 -0800574 * <p>This is an asynchronous call. The callback {@link BluetoothGattCallback#onAppRegistered}
575 * is used to notify success or failure if the function returns true.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800576 *
577 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
578 *
Matthew Xieddf7e472013-03-01 18:41:02 -0800579 * @param callback GATT callback handler that will receive asynchronous callbacks.
580 * @return If true, the callback will be called to notify success or failure,
581 * false on immediate error
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800582 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800583 private boolean registerApp(BluetoothGattCallback callback) {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800584 if (DBG) Log.d(TAG, "registerApp()");
585 if (mService == null) return false;
586
587 mCallback = callback;
588 UUID uuid = UUID.randomUUID();
589 if (DBG) Log.d(TAG, "registerApp() - UUID=" + uuid);
590
591 try {
592 mService.registerClient(new ParcelUuid(uuid), mBluetoothGattCallback);
593 } catch (RemoteException e) {
594 Log.e(TAG,"",e);
595 return false;
596 }
597
598 return true;
599 }
600
601 /**
602 * Unregister the current application and callbacks.
603 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800604 private void unregisterApp() {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800605 if (DBG) Log.d(TAG, "unregisterApp() - mClientIf=" + mClientIf);
606 if (mService == null || mClientIf == 0) return;
607
608 try {
609 mCallback = null;
610 mService.unregisterClient(mClientIf);
611 mClientIf = 0;
612 } catch (RemoteException e) {
613 Log.e(TAG,"",e);
614 }
615 }
616
617 /**
Matthew Xieddf7e472013-03-01 18:41:02 -0800618 * Initiate a connection to a Bluetooth GATT capable device.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800619 *
620 * <p>The connection may not be established right away, but will be
621 * completed when the remote device is available. A
622 * {@link BluetoothGattCallback#onConnectionStateChange} callback will be
623 * invoked when the connection state changes as a result of this function.
624 *
Andre Eisenbach6ce4db02014-07-16 23:02:42 -0700625 * <p>The autoConnect parameter determines whether to actively connect to
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800626 * the remote device, or rather passively scan and finalize the connection
627 * when the remote device is in range/available. Generally, the first ever
628 * connection to a device should be direct (autoConnect set to false) and
629 * subsequent connections to known devices should be invoked with the
Matthew Xieddf7e472013-03-01 18:41:02 -0800630 * autoConnect parameter set to true.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800631 *
632 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
633 *
634 * @param device Remote device to connect to
635 * @param autoConnect Whether to directly connect to the remote device (false)
636 * or to automatically connect as soon as the remote
637 * device becomes available (true).
638 * @return true, if the connection attempt was initiated successfully
639 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800640 /*package*/ boolean connect(Boolean autoConnect, BluetoothGattCallback callback) {
641 if (DBG) Log.d(TAG, "connect() - device: " + mDevice.getAddress() + ", auto: " + autoConnect);
642 synchronized(mStateLock) {
643 if (mConnState != CONN_STATE_IDLE) {
644 throw new IllegalStateException("Not idle");
645 }
646 mConnState = CONN_STATE_CONNECTING;
647 }
648 if (!registerApp(callback)) {
649 synchronized(mStateLock) {
650 mConnState = CONN_STATE_IDLE;
651 }
652 Log.e(TAG, "Failed to register callback");
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800653 return false;
654 }
655
Matthew Xieddf7e472013-03-01 18:41:02 -0800656 // the connection will continue after successful callback registration
657 mAutoConnect = autoConnect;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800658 return true;
659 }
660
661 /**
662 * Disconnects an established connection, or cancels a connection attempt
663 * currently in progress.
664 *
665 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800666 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800667 public void disconnect() {
668 if (DBG) Log.d(TAG, "cancelOpen() - device: " + mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800669 if (mService == null || mClientIf == 0) return;
670
671 try {
Matthew Xieddf7e472013-03-01 18:41:02 -0800672 mService.clientDisconnect(mClientIf, mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800673 } catch (RemoteException e) {
674 Log.e(TAG,"",e);
675 }
Matthew Xie33ec9842013-04-03 00:29:27 -0700676 }
677
678 /**
679 * Connect back to remote device.
680 *
681 * <p>This method is used to re-connect to a remote device after the
682 * connection has been dropped. If the device is not in range, the
683 * re-connection will be triggered once the device is back in range.
684 *
685 * @return true, if the connection attempt was initiated successfully
686 */
687 public boolean connect() {
688 try {
689 mService.clientConnect(mClientIf, mDevice.getAddress(),
Ganesh Ganapathi Battab88fa822014-04-18 10:00:40 -0700690 false, mTransport); // autoConnect is inverse of "isDirect"
Matthew Xie33ec9842013-04-03 00:29:27 -0700691 return true;
692 } catch (RemoteException e) {
693 Log.e(TAG,"",e);
694 return false;
695 }
696 }
697
698 /**
699 * Return the remote bluetooth device this GATT client targets to
700 *
701 * @return remote bluetooth device
702 */
703 public BluetoothDevice getDevice() {
704 return mDevice;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800705 }
706
707 /**
708 * Discovers services offered by a remote device as well as their
709 * characteristics and descriptors.
710 *
711 * <p>This is an asynchronous operation. Once service discovery is completed,
712 * the {@link BluetoothGattCallback#onServicesDiscovered} callback is
713 * triggered. If the discovery was successful, the remote services can be
714 * retrieved using the {@link #getServices} function.
715 *
716 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
717 *
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800718 * @return true, if the remote service discovery has been started
719 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800720 public boolean discoverServices() {
721 if (DBG) Log.d(TAG, "discoverServices() - device: " + mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800722 if (mService == null || mClientIf == 0) return false;
723
724 mServices.clear();
725
726 try {
Matthew Xieddf7e472013-03-01 18:41:02 -0800727 mService.discoverServices(mClientIf, mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800728 } catch (RemoteException e) {
729 Log.e(TAG,"",e);
730 return false;
731 }
732
733 return true;
734 }
735
736 /**
737 * Returns a list of GATT services offered by the remote device.
738 *
739 * <p>This function requires that service discovery has been completed
740 * for the given device.
741 *
742 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
743 *
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800744 * @return List of services on the remote device. Returns an empty list
745 * if service discovery has not yet been performed.
746 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800747 public List<BluetoothGattService> getServices() {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800748 List<BluetoothGattService> result =
749 new ArrayList<BluetoothGattService>();
750
751 for (BluetoothGattService service : mServices) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800752 if (service.getDevice().equals(mDevice)) {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800753 result.add(service);
754 }
755 }
756
757 return result;
758 }
759
760 /**
761 * Returns a {@link BluetoothGattService}, if the requested UUID is
762 * supported by the remote device.
763 *
764 * <p>This function requires that service discovery has been completed
765 * for the given device.
766 *
767 * <p>If multiple instances of the same service (as identified by UUID)
768 * exist, the first instance of the service is returned.
769 *
770 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
771 *
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800772 * @param uuid UUID of the requested service
773 * @return BluetoothGattService if supported, or null if the requested
774 * service is not offered by the remote device.
775 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800776 public BluetoothGattService getService(UUID uuid) {
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800777 for (BluetoothGattService service : mServices) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800778 if (service.getDevice().equals(mDevice) &&
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800779 service.getUuid().equals(uuid)) {
780 return service;
781 }
782 }
783
784 return null;
785 }
786
787 /**
788 * Reads the requested characteristic from the associated remote device.
789 *
790 * <p>This is an asynchronous operation. The result of the read operation
791 * is reported by the {@link BluetoothGattCallback#onCharacteristicRead}
792 * callback.
793 *
794 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
795 *
796 * @param characteristic Characteristic to read from the remote device
797 * @return true, if the read operation was initiated successfully
798 */
799 public boolean readCharacteristic(BluetoothGattCharacteristic characteristic) {
800 if ((characteristic.getProperties() &
801 BluetoothGattCharacteristic.PROPERTY_READ) == 0) return false;
802
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700803 if (VDBG) Log.d(TAG, "readCharacteristic() - uuid: " + characteristic.getUuid());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800804 if (mService == null || mClientIf == 0) return false;
805
806 BluetoothGattService service = characteristic.getService();
807 if (service == null) return false;
808
809 BluetoothDevice device = service.getDevice();
810 if (device == null) return false;
811
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700812 synchronized(mDeviceBusy) {
813 if (mDeviceBusy) return false;
814 mDeviceBusy = true;
815 }
816
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800817 try {
818 mService.readCharacteristic(mClientIf, device.getAddress(),
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700819 characteristic.getInstanceId(), AUTHENTICATION_NONE);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800820 } catch (RemoteException e) {
821 Log.e(TAG,"",e);
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700822 mDeviceBusy = false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800823 return false;
824 }
825
826 return true;
827 }
828
829 /**
Matthew Xieddf7e472013-03-01 18:41:02 -0800830 * Writes a given characteristic and its values to the associated remote device.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800831 *
832 * <p>Once the write operation has been completed, the
833 * {@link BluetoothGattCallback#onCharacteristicWrite} callback is invoked,
834 * reporting the result of the operation.
835 *
836 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
837 *
838 * @param characteristic Characteristic to write on the remote device
839 * @return true, if the write operation was initiated successfully
840 */
841 public boolean writeCharacteristic(BluetoothGattCharacteristic characteristic) {
842 if ((characteristic.getProperties() & BluetoothGattCharacteristic.PROPERTY_WRITE) == 0
843 && (characteristic.getProperties() &
844 BluetoothGattCharacteristic.PROPERTY_WRITE_NO_RESPONSE) == 0) return false;
845
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700846 if (VDBG) Log.d(TAG, "writeCharacteristic() - uuid: " + characteristic.getUuid());
Prerepa Viswanadhamff5e5db32014-12-04 10:12:55 -0800847 if (mService == null || mClientIf == 0 || characteristic.getValue() == null) return false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800848
849 BluetoothGattService service = characteristic.getService();
850 if (service == null) return false;
851
852 BluetoothDevice device = service.getDevice();
853 if (device == null) return false;
854
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700855 synchronized(mDeviceBusy) {
856 if (mDeviceBusy) return false;
857 mDeviceBusy = true;
858 }
859
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800860 try {
861 mService.writeCharacteristic(mClientIf, device.getAddress(),
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700862 characteristic.getInstanceId(), characteristic.getWriteType(),
863 AUTHENTICATION_NONE, characteristic.getValue());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800864 } catch (RemoteException e) {
865 Log.e(TAG,"",e);
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700866 mDeviceBusy = false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800867 return false;
868 }
869
870 return true;
871 }
872
873 /**
874 * Reads the value for a given descriptor from the associated remote device.
875 *
876 * <p>Once the read operation has been completed, the
877 * {@link BluetoothGattCallback#onDescriptorRead} callback is
878 * triggered, signaling the result of the operation.
879 *
880 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
881 *
882 * @param descriptor Descriptor value to read from the remote device
883 * @return true, if the read operation was initiated successfully
884 */
885 public boolean readDescriptor(BluetoothGattDescriptor descriptor) {
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700886 if (VDBG) Log.d(TAG, "readDescriptor() - uuid: " + descriptor.getUuid());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800887 if (mService == null || mClientIf == 0) return false;
888
889 BluetoothGattCharacteristic characteristic = descriptor.getCharacteristic();
890 if (characteristic == null) return false;
891
892 BluetoothGattService service = characteristic.getService();
893 if (service == null) return false;
894
895 BluetoothDevice device = service.getDevice();
896 if (device == null) return false;
897
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700898 synchronized(mDeviceBusy) {
899 if (mDeviceBusy) return false;
900 mDeviceBusy = true;
901 }
902
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800903 try {
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700904 mService.readDescriptor(mClientIf, device.getAddress(),
905 descriptor.getInstanceId(), AUTHENTICATION_NONE);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800906 } catch (RemoteException e) {
907 Log.e(TAG,"",e);
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700908 mDeviceBusy = false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800909 return false;
910 }
911
912 return true;
913 }
914
915 /**
916 * Write the value of a given descriptor to the associated remote device.
917 *
918 * <p>A {@link BluetoothGattCallback#onDescriptorWrite} callback is
919 * triggered to report the result of the write operation.
920 *
921 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
922 *
923 * @param descriptor Descriptor to write to the associated remote device
924 * @return true, if the write operation was initiated successfully
925 */
926 public boolean writeDescriptor(BluetoothGattDescriptor descriptor) {
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700927 if (VDBG) Log.d(TAG, "writeDescriptor() - uuid: " + descriptor.getUuid());
Prerepa Viswanadhamff5e5db32014-12-04 10:12:55 -0800928 if (mService == null || mClientIf == 0 || descriptor.getValue() == null) return false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800929
930 BluetoothGattCharacteristic characteristic = descriptor.getCharacteristic();
931 if (characteristic == null) return false;
932
933 BluetoothGattService service = characteristic.getService();
934 if (service == null) return false;
935
936 BluetoothDevice device = service.getDevice();
937 if (device == null) return false;
938
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700939 synchronized(mDeviceBusy) {
940 if (mDeviceBusy) return false;
941 mDeviceBusy = true;
942 }
943
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800944 try {
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -0700945 mService.writeDescriptor(mClientIf, device.getAddress(), descriptor.getInstanceId(),
Andre Eisenbach613f4302016-03-29 20:52:38 -0700946 BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT, AUTHENTICATION_NONE,
947 descriptor.getValue());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800948 } catch (RemoteException e) {
949 Log.e(TAG,"",e);
Andre Eisenbachcc68cc92014-03-18 14:26:51 -0700950 mDeviceBusy = false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800951 return false;
952 }
953
954 return true;
955 }
956
957 /**
958 * Initiates a reliable write transaction for a given remote device.
959 *
960 * <p>Once a reliable write transaction has been initiated, all calls
961 * to {@link #writeCharacteristic} are sent to the remote device for
962 * verification and queued up for atomic execution. The application will
963 * receive an {@link BluetoothGattCallback#onCharacteristicWrite} callback
964 * in response to every {@link #writeCharacteristic} call and is responsible
965 * for verifying if the value has been transmitted accurately.
966 *
967 * <p>After all characteristics have been queued up and verified,
968 * {@link #executeReliableWrite} will execute all writes. If a characteristic
969 * was not written correctly, calling {@link #abortReliableWrite} will
970 * cancel the current transaction without commiting any values on the
971 * remote device.
972 *
973 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
974 *
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800975 * @return true, if the reliable write transaction has been initiated
976 */
Matthew Xieddf7e472013-03-01 18:41:02 -0800977 public boolean beginReliableWrite() {
Andre Eisenbach55d19e42014-07-18 14:38:36 -0700978 if (VDBG) Log.d(TAG, "beginReliableWrite() - device: " + mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800979 if (mService == null || mClientIf == 0) return false;
980
981 try {
Matthew Xieddf7e472013-03-01 18:41:02 -0800982 mService.beginReliableWrite(mClientIf, mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -0800983 } catch (RemoteException e) {
984 Log.e(TAG,"",e);
985 return false;
986 }
987
988 return true;
989 }
990
991 /**
992 * Executes a reliable write transaction for a given remote device.
993 *
994 * <p>This function will commit all queued up characteristic write
995 * operations for a given remote device.
996 *
997 * <p>A {@link BluetoothGattCallback#onReliableWriteCompleted} callback is
998 * invoked to indicate whether the transaction has been executed correctly.
999 *
1000 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
1001 *
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001002 * @return true, if the request to execute the transaction has been sent
1003 */
Matthew Xieddf7e472013-03-01 18:41:02 -08001004 public boolean executeReliableWrite() {
Andre Eisenbach55d19e42014-07-18 14:38:36 -07001005 if (VDBG) Log.d(TAG, "executeReliableWrite() - device: " + mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001006 if (mService == null || mClientIf == 0) return false;
1007
Andre Eisenbachcc68cc92014-03-18 14:26:51 -07001008 synchronized(mDeviceBusy) {
1009 if (mDeviceBusy) return false;
1010 mDeviceBusy = true;
1011 }
1012
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001013 try {
Matthew Xieddf7e472013-03-01 18:41:02 -08001014 mService.endReliableWrite(mClientIf, mDevice.getAddress(), true);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001015 } catch (RemoteException e) {
1016 Log.e(TAG,"",e);
Andre Eisenbachcc68cc92014-03-18 14:26:51 -07001017 mDeviceBusy = false;
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001018 return false;
1019 }
1020
1021 return true;
1022 }
1023
1024 /**
1025 * Cancels a reliable write transaction for a given device.
1026 *
1027 * <p>Calling this function will discard all queued characteristic write
1028 * operations for a given remote device.
1029 *
1030 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001031 */
John Du48f8b5d2013-08-19 12:20:37 -07001032 public void abortReliableWrite() {
Andre Eisenbach55d19e42014-07-18 14:38:36 -07001033 if (VDBG) Log.d(TAG, "abortReliableWrite() - device: " + mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001034 if (mService == null || mClientIf == 0) return;
1035
1036 try {
Matthew Xieddf7e472013-03-01 18:41:02 -08001037 mService.endReliableWrite(mClientIf, mDevice.getAddress(), false);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001038 } catch (RemoteException e) {
1039 Log.e(TAG,"",e);
1040 }
1041 }
1042
1043 /**
John Dub7b7d7a2013-08-20 14:03:28 -07001044 * @deprecated Use {@link #abortReliableWrite()}
John Du48f8b5d2013-08-19 12:20:37 -07001045 */
1046 public void abortReliableWrite(BluetoothDevice mDevice) {
1047 abortReliableWrite();
1048 }
1049
1050 /**
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001051 * Enable or disable notifications/indications for a given characteristic.
1052 *
1053 * <p>Once notifications are enabled for a characteristic, a
1054 * {@link BluetoothGattCallback#onCharacteristicChanged} callback will be
1055 * triggered if the remote device indicates that the given characteristic
1056 * has changed.
1057 *
1058 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
1059 *
1060 * @param characteristic The characteristic for which to enable notifications
1061 * @param enable Set to true to enable notifications/indications
1062 * @return true, if the requested notification status was set successfully
1063 */
1064 public boolean setCharacteristicNotification(BluetoothGattCharacteristic characteristic,
1065 boolean enable) {
1066 if (DBG) Log.d(TAG, "setCharacteristicNotification() - uuid: " + characteristic.getUuid()
1067 + " enable: " + enable);
1068 if (mService == null || mClientIf == 0) return false;
1069
1070 BluetoothGattService service = characteristic.getService();
1071 if (service == null) return false;
1072
1073 BluetoothDevice device = service.getDevice();
1074 if (device == null) return false;
1075
1076 try {
1077 mService.registerForNotification(mClientIf, device.getAddress(),
Jakub Pawlowskic9d13c32016-03-17 16:00:16 -07001078 characteristic.getInstanceId(), enable);
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001079 } catch (RemoteException e) {
1080 Log.e(TAG,"",e);
1081 return false;
1082 }
1083
1084 return true;
1085 }
1086
1087 /**
1088 * Clears the internal cache and forces a refresh of the services from the
1089 * remote device.
1090 * @hide
1091 */
Matthew Xieddf7e472013-03-01 18:41:02 -08001092 public boolean refresh() {
1093 if (DBG) Log.d(TAG, "refresh() - device: " + mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001094 if (mService == null || mClientIf == 0) return false;
1095
1096 try {
Matthew Xieddf7e472013-03-01 18:41:02 -08001097 mService.refreshDevice(mClientIf, mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001098 } catch (RemoteException e) {
1099 Log.e(TAG,"",e);
1100 return false;
1101 }
1102
1103 return true;
1104 }
1105
1106 /**
1107 * Read the RSSI for a connected remote device.
1108 *
1109 * <p>The {@link BluetoothGattCallback#onReadRemoteRssi} callback will be
1110 * invoked when the RSSI value has been read.
1111 *
1112 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
1113 *
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001114 * @return true, if the RSSI value has been requested successfully
1115 */
Matthew Xieddf7e472013-03-01 18:41:02 -08001116 public boolean readRemoteRssi() {
1117 if (DBG) Log.d(TAG, "readRssi() - device: " + mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001118 if (mService == null || mClientIf == 0) return false;
1119
1120 try {
Matthew Xieddf7e472013-03-01 18:41:02 -08001121 mService.readRemoteRssi(mClientIf, mDevice.getAddress());
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001122 } catch (RemoteException e) {
1123 Log.e(TAG,"",e);
1124 return false;
1125 }
1126
1127 return true;
1128 }
1129
1130 /**
Andre Eisenbach4072da02014-08-19 17:58:55 -07001131 * Request an MTU size used for a given connection.
Andre Eisenbach580b0a12014-03-25 06:31:50 -07001132 *
1133 * <p>When performing a write request operation (write without response),
1134 * the data sent is truncated to the MTU size. This function may be used
Andre Eisenbach4072da02014-08-19 17:58:55 -07001135 * to request a larger MTU size to be able to send more data at once.
Andre Eisenbach580b0a12014-03-25 06:31:50 -07001136 *
Andre Eisenbach4072da02014-08-19 17:58:55 -07001137 * <p>A {@link BluetoothGattCallback#onMtuChanged} callback will indicate
Andre Eisenbach580b0a12014-03-25 06:31:50 -07001138 * whether this operation was successful.
1139 *
1140 * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission.
1141 *
1142 * @return true, if the new MTU value has been requested successfully
Andre Eisenbach580b0a12014-03-25 06:31:50 -07001143 */
Andre Eisenbach4072da02014-08-19 17:58:55 -07001144 public boolean requestMtu(int mtu) {
Andre Eisenbach580b0a12014-03-25 06:31:50 -07001145 if (DBG) Log.d(TAG, "configureMTU() - device: " + mDevice.getAddress()
1146 + " mtu: " + mtu);
1147 if (mService == null || mClientIf == 0) return false;
1148
1149 try {
1150 mService.configureMTU(mClientIf, mDevice.getAddress(), mtu);
1151 } catch (RemoteException e) {
1152 Log.e(TAG,"",e);
1153 return false;
1154 }
1155
1156 return true;
1157 }
1158
1159 /**
Andre Eisenbach6ce4db02014-07-16 23:02:42 -07001160 * Request a connection parameter update.
1161 *
1162 * <p>This function will send a connection parameter update request to the
1163 * remote device.
1164 *
1165 * @param connectionPriority Request a specific connection priority. Must be one of
Andre Eisenbach4072da02014-08-19 17:58:55 -07001166 * {@link BluetoothGatt#CONNECTION_PRIORITY_BALANCED},
1167 * {@link BluetoothGatt#CONNECTION_PRIORITY_HIGH}
1168 * or {@link BluetoothGatt#CONNECTION_PRIORITY_LOW_POWER}.
Andre Eisenbach6ce4db02014-07-16 23:02:42 -07001169 * @throws IllegalArgumentException If the parameters are outside of their
1170 * specified range.
1171 */
Andre Eisenbach4072da02014-08-19 17:58:55 -07001172 public boolean requestConnectionPriority(int connectionPriority) {
1173 if (connectionPriority < CONNECTION_PRIORITY_BALANCED ||
1174 connectionPriority > CONNECTION_PRIORITY_LOW_POWER) {
Andre Eisenbach6ce4db02014-07-16 23:02:42 -07001175 throw new IllegalArgumentException("connectionPriority not within valid range");
1176 }
1177
Andre Eisenbach4072da02014-08-19 17:58:55 -07001178 if (DBG) Log.d(TAG, "requestConnectionPriority() - params: " + connectionPriority);
Andre Eisenbach6ce4db02014-07-16 23:02:42 -07001179 if (mService == null || mClientIf == 0) return false;
1180
1181 try {
1182 mService.connectionParameterUpdate(mClientIf, mDevice.getAddress(), connectionPriority);
1183 } catch (RemoteException e) {
1184 Log.e(TAG,"",e);
1185 return false;
1186 }
1187
1188 return true;
1189 }
1190
1191 /**
Matthew Xieddf7e472013-03-01 18:41:02 -08001192 * Not supported - please use {@link BluetoothManager#getConnectedDevices(int)}
1193 * with {@link BluetoothProfile#GATT} as argument
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001194 *
Matthew Xieddf7e472013-03-01 18:41:02 -08001195 * @throws UnsupportedOperationException
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001196 */
1197 @Override
1198 public int getConnectionState(BluetoothDevice device) {
Matthew Xieddf7e472013-03-01 18:41:02 -08001199 throw new UnsupportedOperationException("Use BluetoothManager#getConnectionState instead.");
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001200 }
1201
1202 /**
Matthew Xieddf7e472013-03-01 18:41:02 -08001203 * Not supported - please use {@link BluetoothManager#getConnectedDevices(int)}
1204 * with {@link BluetoothProfile#GATT} as argument
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001205 *
Matthew Xieddf7e472013-03-01 18:41:02 -08001206 * @throws UnsupportedOperationException
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001207 */
1208 @Override
1209 public List<BluetoothDevice> getConnectedDevices() {
Matthew Xieddf7e472013-03-01 18:41:02 -08001210 throw new UnsupportedOperationException
1211 ("Use BluetoothManager#getConnectedDevices instead.");
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001212 }
1213
1214 /**
Matthew Xieddf7e472013-03-01 18:41:02 -08001215 * Not supported - please use
1216 * {@link BluetoothManager#getDevicesMatchingConnectionStates(int, int[])}
1217 * with {@link BluetoothProfile#GATT} as first argument
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001218 *
Matthew Xieddf7e472013-03-01 18:41:02 -08001219 * @throws UnsupportedOperationException
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001220 */
1221 @Override
1222 public List<BluetoothDevice> getDevicesMatchingConnectionStates(int[] states) {
Matthew Xieddf7e472013-03-01 18:41:02 -08001223 throw new UnsupportedOperationException
1224 ("Use BluetoothManager#getDevicesMatchingConnectionStates instead.");
Ganesh Ganapathi Batta99081122013-02-05 15:28:33 -08001225 }
1226}