blob: d2d5280208224a1092ccbf31c24edfb759846894 [file] [log] [blame]
fredc0f420372012-04-12 00:02:00 -07001/*
Zhihai Xufa0fd392012-10-23 17:31:56 -07002 * Copyright (C) 2012 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.
fredc0f420372012-04-12 00:02:00 -070015 */
16
17package com.android.server;
18
Zhihai Xu40874a02012-10-08 17:57:03 -070019import android.app.ActivityManager;
fredc0f420372012-04-12 00:02:00 -070020import android.bluetooth.BluetoothAdapter;
21import android.bluetooth.IBluetooth;
Matthew Xieddf7e472013-03-01 18:41:02 -080022import android.bluetooth.IBluetoothGatt;
fredcbf072a72012-05-09 16:52:50 -070023import android.bluetooth.IBluetoothCallback;
fredc0f420372012-04-12 00:02:00 -070024import android.bluetooth.IBluetoothManager;
25import android.bluetooth.IBluetoothManagerCallback;
26import android.bluetooth.IBluetoothStateChangeCallback;
fredc0f420372012-04-12 00:02:00 -070027import android.content.BroadcastReceiver;
28import android.content.ComponentName;
29import android.content.ContentResolver;
30import android.content.Context;
31import android.content.Intent;
32import android.content.IntentFilter;
33import android.content.ServiceConnection;
Matthew Xie32ab77b2013-05-08 19:26:57 -070034import android.content.pm.PackageManager;
Zhihai Xu40874a02012-10-08 17:57:03 -070035import android.os.Binder;
fredc0f420372012-04-12 00:02:00 -070036import android.os.Handler;
fredc0f420372012-04-12 00:02:00 -070037import android.os.IBinder;
Zhihai Xu40874a02012-10-08 17:57:03 -070038import android.os.Looper;
fredc0f420372012-04-12 00:02:00 -070039import android.os.Message;
Zhihai Xu40874a02012-10-08 17:57:03 -070040import android.os.Process;
fredcd6883532012-04-25 17:46:13 -070041import android.os.RemoteCallbackList;
fredc0f420372012-04-12 00:02:00 -070042import android.os.RemoteException;
Zhihai Xu40874a02012-10-08 17:57:03 -070043import android.os.SystemClock;
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070044import android.os.UserHandle;
fredc0f420372012-04-12 00:02:00 -070045import android.provider.Settings;
46import android.util.Log;
fredc0f420372012-04-12 00:02:00 -070047class BluetoothManagerService extends IBluetoothManager.Stub {
48 private static final String TAG = "BluetoothManagerService";
49 private static final boolean DBG = true;
50
fredc0f420372012-04-12 00:02:00 -070051 private static final String BLUETOOTH_ADMIN_PERM = android.Manifest.permission.BLUETOOTH_ADMIN;
52 private static final String BLUETOOTH_PERM = android.Manifest.permission.BLUETOOTH;
fredc0f420372012-04-12 00:02:00 -070053 private static final String ACTION_SERVICE_STATE_CHANGED="com.android.bluetooth.btservice.action.STATE_CHANGED";
54 private static final String EXTRA_ACTION="action";
Zhihai Xud31c3222012-10-31 16:08:57 -070055 private static final String SECURE_SETTINGS_BLUETOOTH_ADDR_VALID="bluetooth_addr_valid";
fredc0f420372012-04-12 00:02:00 -070056 private static final String SECURE_SETTINGS_BLUETOOTH_ADDRESS="bluetooth_address";
57 private static final String SECURE_SETTINGS_BLUETOOTH_NAME="bluetooth_name";
fredc0f420372012-04-12 00:02:00 -070058 private static final int TIMEOUT_BIND_MS = 3000; //Maximum msec to wait for a bind
59 private static final int TIMEOUT_SAVE_MS = 500; //Maximum msec to wait for a save
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +053060 //Maximum msec to wait for service restart
61 private static final int SERVICE_RESTART_TIME_MS = 200;
Zhihai Xudd9d17d2013-01-08 17:05:58 -080062 //Maximum msec to wait for restart due to error
63 private static final int ERROR_RESTART_TIME_MS = 3000;
Zhihai Xu40874a02012-10-08 17:57:03 -070064 //Maximum msec to delay MESSAGE_USER_SWITCHED
65 private static final int USER_SWITCHED_TIME_MS = 200;
fredc0f420372012-04-12 00:02:00 -070066
67 private static final int MESSAGE_ENABLE = 1;
68 private static final int MESSAGE_DISABLE = 2;
fredc649fe492012-04-19 01:07:18 -070069 private static final int MESSAGE_REGISTER_ADAPTER = 20;
70 private static final int MESSAGE_UNREGISTER_ADAPTER = 21;
71 private static final int MESSAGE_REGISTER_STATE_CHANGE_CALLBACK = 30;
72 private static final int MESSAGE_UNREGISTER_STATE_CHANGE_CALLBACK = 31;
73 private static final int MESSAGE_BLUETOOTH_SERVICE_CONNECTED = 40;
74 private static final int MESSAGE_BLUETOOTH_SERVICE_DISCONNECTED = 41;
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +053075 private static final int MESSAGE_RESTART_BLUETOOTH_SERVICE = 42;
fredcbf072a72012-05-09 16:52:50 -070076 private static final int MESSAGE_BLUETOOTH_STATE_CHANGE=60;
fredc0f420372012-04-12 00:02:00 -070077 private static final int MESSAGE_TIMEOUT_BIND =100;
78 private static final int MESSAGE_TIMEOUT_UNBIND =101;
79 private static final int MESSAGE_GET_NAME_AND_ADDRESS=200;
80 private static final int MESSAGE_SAVE_NAME_AND_ADDRESS=201;
Zhihai Xu40874a02012-10-08 17:57:03 -070081 private static final int MESSAGE_USER_SWITCHED = 300;
fredc0f420372012-04-12 00:02:00 -070082 private static final int MAX_SAVE_RETRIES=3;
Zhihai Xudd9d17d2013-01-08 17:05:58 -080083 private static final int MAX_ERROR_RESTART_RETRIES=6;
84
Zhihai Xu401202b2012-12-03 11:36:21 -080085 // Bluetooth persisted setting is off
86 private static final int BLUETOOTH_OFF=0;
87 // Bluetooth persisted setting is on
88 // and Airplane mode won't affect Bluetooth state at start up
89 private static final int BLUETOOTH_ON_BLUETOOTH=1;
90 // Bluetooth persisted setting is on
91 // but Airplane mode will affect Bluetooth state at start up
92 // and Airplane mode will have higher priority.
93 private static final int BLUETOOTH_ON_AIRPLANE=2;
fredc0f420372012-04-12 00:02:00 -070094
Matthew Xieddf7e472013-03-01 18:41:02 -080095 private static final int SERVICE_IBLUETOOTH = 1;
96 private static final int SERVICE_IBLUETOOTHGATT = 2;
97
fredc0f420372012-04-12 00:02:00 -070098 private final Context mContext;
Matthew Xiecdce0b92012-07-12 19:06:15 -070099
100 // Locks are not provided for mName and mAddress.
101 // They are accessed in handler or broadcast receiver, same thread context.
fredc0f420372012-04-12 00:02:00 -0700102 private String mAddress;
103 private String mName;
Matthew Xie6fde3092012-07-11 17:10:07 -0700104 private final ContentResolver mContentResolver;
105 private final RemoteCallbackList<IBluetoothManagerCallback> mCallbacks;
106 private final RemoteCallbackList<IBluetoothStateChangeCallback> mStateChangeCallbacks;
fredc649fe492012-04-19 01:07:18 -0700107 private IBluetooth mBluetooth;
Matthew Xieddf7e472013-03-01 18:41:02 -0800108 private IBluetoothGatt mBluetoothGatt;
fredc649fe492012-04-19 01:07:18 -0700109 private boolean mBinding;
110 private boolean mUnbinding;
Zhihai Xu401202b2012-12-03 11:36:21 -0800111 // used inside handler thread
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700112 private boolean mQuietEnable = false;
Zhihai Xu401202b2012-12-03 11:36:21 -0800113 // configuarion from external IBinder call which is used to
114 // synchronize with broadcast receiver.
115 private boolean mQuietEnableExternal;
116 // configuarion from external IBinder call which is used to
117 // synchronize with broadcast receiver.
118 private boolean mEnableExternal;
119 // used inside handler thread
Zhihai Xu40874a02012-10-08 17:57:03 -0700120 private boolean mEnable;
121 private int mState;
Zhihai Xu40874a02012-10-08 17:57:03 -0700122 private final BluetoothHandler mHandler;
Zhihai Xudd9d17d2013-01-08 17:05:58 -0800123 private int mErrorRecoveryRetryCounter;
fredc0f420372012-04-12 00:02:00 -0700124
fredc649fe492012-04-19 01:07:18 -0700125 private void registerForAirplaneMode(IntentFilter filter) {
126 final ContentResolver resolver = mContext.getContentResolver();
Christopher Tatec09cdce2012-09-10 16:50:14 -0700127 final String airplaneModeRadios = Settings.Global.getString(resolver,
128 Settings.Global.AIRPLANE_MODE_RADIOS);
129 final String toggleableRadios = Settings.Global.getString(resolver,
130 Settings.Global.AIRPLANE_MODE_TOGGLEABLE_RADIOS);
fredc649fe492012-04-19 01:07:18 -0700131 boolean mIsAirplaneSensitive = airplaneModeRadios == null ? true :
Christopher Tatec09cdce2012-09-10 16:50:14 -0700132 airplaneModeRadios.contains(Settings.Global.RADIO_BLUETOOTH);
fredc649fe492012-04-19 01:07:18 -0700133 if (mIsAirplaneSensitive) {
134 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
135 }
136 }
137
fredcbf072a72012-05-09 16:52:50 -0700138 private final IBluetoothCallback mBluetoothCallback = new IBluetoothCallback.Stub() {
139 @Override
140 public void onBluetoothStateChange(int prevState, int newState) throws RemoteException {
141 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_STATE_CHANGE,prevState,newState);
142 mHandler.sendMessage(msg);
143 }
144 };
145
146 private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
fredc0f420372012-04-12 00:02:00 -0700147 @Override
148 public void onReceive(Context context, Intent intent) {
149 String action = intent.getAction();
fredcbf072a72012-05-09 16:52:50 -0700150 if (BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED.equals(action)) {
fredc0f420372012-04-12 00:02:00 -0700151 String newName = intent.getStringExtra(BluetoothAdapter.EXTRA_LOCAL_NAME);
Freda8c6df02012-07-11 10:25:23 -0700152 if (DBG) Log.d(TAG, "Bluetooth Adapter name changed to " + newName);
fredc0f420372012-04-12 00:02:00 -0700153 if (newName != null) {
154 storeNameAndAddress(newName, null);
155 }
fredc649fe492012-04-19 01:07:18 -0700156 } else if (Intent.ACTION_AIRPLANE_MODE_CHANGED.equals(action)) {
Zhihai Xu401202b2012-12-03 11:36:21 -0800157 synchronized(mReceiver) {
158 if (isBluetoothPersistedStateOn()) {
159 if (isAirplaneModeOn()) {
160 persistBluetoothSetting(BLUETOOTH_ON_AIRPLANE);
161 } else {
162 persistBluetoothSetting(BLUETOOTH_ON_BLUETOOTH);
163 }
164 }
165 if (isAirplaneModeOn()) {
166 // disable without persisting the setting
167 sendDisableMsg();
168 } else if (mEnableExternal) {
169 // enable without persisting the setting
170 sendEnableMsg(mQuietEnableExternal);
171 }
fredc649fe492012-04-19 01:07:18 -0700172 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700173 } else if (Intent.ACTION_USER_SWITCHED.equals(action)) {
174 mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_USER_SWITCHED,
175 intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0), 0));
Zhihai Xu401202b2012-12-03 11:36:21 -0800176 } else if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
177 synchronized(mReceiver) {
178 if (mEnableExternal && isBluetoothPersistedStateOnBluetooth()) {
179 //Enable
180 if (DBG) Log.d(TAG, "Auto-enabling Bluetooth.");
181 sendEnableMsg(mQuietEnableExternal);
182 }
183 }
184
185 if (!isNameAndAddressSet()) {
186 //Sync the Bluetooth name and address from the Bluetooth Adapter
187 if (DBG) Log.d(TAG,"Retrieving Bluetooth Adapter name and address...");
188 getNameAndAddress();
189 }
fredc0f420372012-04-12 00:02:00 -0700190 }
191 }
192 };
193
194 BluetoothManagerService(Context context) {
Dianne Hackborn8d044e82013-04-30 17:24:15 -0700195 mHandler = new BluetoothHandler(IoThread.get().getLooper());
Zhihai Xu40874a02012-10-08 17:57:03 -0700196
fredc0f420372012-04-12 00:02:00 -0700197 mContext = context;
198 mBluetooth = null;
199 mBinding = false;
200 mUnbinding = false;
Zhihai Xu40874a02012-10-08 17:57:03 -0700201 mEnable = false;
202 mState = BluetoothAdapter.STATE_OFF;
Zhihai Xu401202b2012-12-03 11:36:21 -0800203 mQuietEnableExternal = false;
204 mEnableExternal = false;
fredc0f420372012-04-12 00:02:00 -0700205 mAddress = null;
206 mName = null;
Zhihai Xudd9d17d2013-01-08 17:05:58 -0800207 mErrorRecoveryRetryCounter = 0;
fredc0f420372012-04-12 00:02:00 -0700208 mContentResolver = context.getContentResolver();
fredcd6883532012-04-25 17:46:13 -0700209 mCallbacks = new RemoteCallbackList<IBluetoothManagerCallback>();
210 mStateChangeCallbacks = new RemoteCallbackList<IBluetoothStateChangeCallback>();
Zhihai Xu401202b2012-12-03 11:36:21 -0800211 IntentFilter filter = new IntentFilter(Intent.ACTION_BOOT_COMPLETED);
Matthew Xie6fde3092012-07-11 17:10:07 -0700212 filter.addAction(BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED);
Zhihai Xu40874a02012-10-08 17:57:03 -0700213 filter.addAction(Intent.ACTION_USER_SWITCHED);
Matthew Xie6fde3092012-07-11 17:10:07 -0700214 registerForAirplaneMode(filter);
215 mContext.registerReceiver(mReceiver, filter);
fredc0f420372012-04-12 00:02:00 -0700216 loadStoredNameAndAddress();
Zhihai Xu401202b2012-12-03 11:36:21 -0800217 if (isBluetoothPersistedStateOn()) {
218 mEnableExternal = true;
fredc0f420372012-04-12 00:02:00 -0700219 }
220 }
221
fredc649fe492012-04-19 01:07:18 -0700222 /**
223 * Returns true if airplane mode is currently on
224 */
225 private final boolean isAirplaneModeOn() {
Christopher Tatec09cdce2012-09-10 16:50:14 -0700226 return Settings.Global.getInt(mContext.getContentResolver(),
227 Settings.Global.AIRPLANE_MODE_ON, 0) == 1;
fredc649fe492012-04-19 01:07:18 -0700228 }
229
230 /**
231 * Returns true if the Bluetooth saved state is "on"
232 */
233 private final boolean isBluetoothPersistedStateOn() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700234 return Settings.Global.getInt(mContentResolver,
Zhihai Xu401202b2012-12-03 11:36:21 -0800235 Settings.Global.BLUETOOTH_ON, 0) != BLUETOOTH_OFF;
236 }
237
238 /**
239 * Returns true if the Bluetooth saved state is BLUETOOTH_ON_BLUETOOTH
240 */
241 private final boolean isBluetoothPersistedStateOnBluetooth() {
242 return Settings.Global.getInt(mContentResolver,
243 Settings.Global.BLUETOOTH_ON, 0) == BLUETOOTH_ON_BLUETOOTH;
fredc649fe492012-04-19 01:07:18 -0700244 }
245
246 /**
247 * Save the Bluetooth on/off state
248 *
249 */
Zhihai Xu401202b2012-12-03 11:36:21 -0800250 private void persistBluetoothSetting(int value) {
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700251 Settings.Global.putInt(mContext.getContentResolver(),
252 Settings.Global.BLUETOOTH_ON,
Zhihai Xu401202b2012-12-03 11:36:21 -0800253 value);
fredc649fe492012-04-19 01:07:18 -0700254 }
255
256 /**
257 * Returns true if the Bluetooth Adapter's name and address is
258 * locally cached
259 * @return
260 */
fredc0f420372012-04-12 00:02:00 -0700261 private boolean isNameAndAddressSet() {
262 return mName !=null && mAddress!= null && mName.length()>0 && mAddress.length()>0;
263 }
264
fredc649fe492012-04-19 01:07:18 -0700265 /**
266 * Retrieve the Bluetooth Adapter's name and address and save it in
267 * in the local cache
268 */
fredc0f420372012-04-12 00:02:00 -0700269 private void loadStoredNameAndAddress() {
270 if (DBG) Log.d(TAG, "Loading stored name and address");
Zhihai Xud31c3222012-10-31 16:08:57 -0700271 if (mContext.getResources().getBoolean
272 (com.android.internal.R.bool.config_bluetooth_address_validation) &&
273 Settings.Secure.getInt(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDR_VALID, 0) == 0) {
274 // if the valid flag is not set, don't load the address and name
275 if (DBG) Log.d(TAG, "invalid bluetooth name and address stored");
276 return;
277 }
fredc0f420372012-04-12 00:02:00 -0700278 mName = Settings.Secure.getString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_NAME);
279 mAddress = Settings.Secure.getString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDRESS);
Zhihai Xud31c3222012-10-31 16:08:57 -0700280 if (DBG) Log.d(TAG, "Stored bluetooth Name=" + mName + ",Address=" + mAddress);
fredc0f420372012-04-12 00:02:00 -0700281 }
282
fredc649fe492012-04-19 01:07:18 -0700283 /**
284 * Save the Bluetooth name and address in the persistent store.
285 * Only non-null values will be saved.
286 * @param name
287 * @param address
288 */
fredc0f420372012-04-12 00:02:00 -0700289 private void storeNameAndAddress(String name, String address) {
290 if (name != null) {
291 Settings.Secure.putString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_NAME, name);
fredc0f420372012-04-12 00:02:00 -0700292 mName = name;
fredc649fe492012-04-19 01:07:18 -0700293 if (DBG) Log.d(TAG,"Stored Bluetooth name: " +
294 Settings.Secure.getString(mContentResolver,SECURE_SETTINGS_BLUETOOTH_NAME));
fredc0f420372012-04-12 00:02:00 -0700295 }
296
297 if (address != null) {
298 Settings.Secure.putString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDRESS, address);
fredc0f420372012-04-12 00:02:00 -0700299 mAddress=address;
fredc649fe492012-04-19 01:07:18 -0700300 if (DBG) Log.d(TAG,"Stored Bluetoothaddress: " +
301 Settings.Secure.getString(mContentResolver,SECURE_SETTINGS_BLUETOOTH_ADDRESS));
fredc0f420372012-04-12 00:02:00 -0700302 }
Zhihai Xud31c3222012-10-31 16:08:57 -0700303
304 if ((name != null) && (address != null)) {
305 Settings.Secure.putInt(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDR_VALID, 1);
306 }
fredc0f420372012-04-12 00:02:00 -0700307 }
308
309 public IBluetooth registerAdapter(IBluetoothManagerCallback callback){
fredc0f420372012-04-12 00:02:00 -0700310 Message msg = mHandler.obtainMessage(MESSAGE_REGISTER_ADAPTER);
311 msg.obj = callback;
312 mHandler.sendMessage(msg);
313 synchronized(mConnection) {
314 return mBluetooth;
315 }
316 }
317
318 public void unregisterAdapter(IBluetoothManagerCallback callback) {
319 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
320 "Need BLUETOOTH permission");
321 Message msg = mHandler.obtainMessage(MESSAGE_UNREGISTER_ADAPTER);
322 msg.obj = callback;
323 mHandler.sendMessage(msg);
324 }
325
326 public void registerStateChangeCallback(IBluetoothStateChangeCallback callback) {
327 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
328 "Need BLUETOOTH permission");
329 Message msg = mHandler.obtainMessage(MESSAGE_REGISTER_STATE_CHANGE_CALLBACK);
330 msg.obj = callback;
331 mHandler.sendMessage(msg);
332 }
333
334 public void unregisterStateChangeCallback(IBluetoothStateChangeCallback callback) {
335 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
336 "Need BLUETOOTH permission");
337 Message msg = mHandler.obtainMessage(MESSAGE_UNREGISTER_STATE_CHANGE_CALLBACK);
338 msg.obj = callback;
339 mHandler.sendMessage(msg);
340 }
341
342 public boolean isEnabled() {
Zhihai Xu6eb76522012-11-29 15:41:04 -0800343 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
344 (!checkIfCallerIsForegroundUser())) {
345 Log.w(TAG,"isEnabled(): not allowed for non-active and non system user");
Zhihai Xu40874a02012-10-08 17:57:03 -0700346 return false;
347 }
348
fredc0f420372012-04-12 00:02:00 -0700349 synchronized(mConnection) {
350 try {
351 return (mBluetooth != null && mBluetooth.isEnabled());
352 } catch (RemoteException e) {
353 Log.e(TAG, "isEnabled()", e);
354 }
355 }
356 return false;
357 }
358
359 public void getNameAndAddress() {
fredcf2458862012-04-16 15:18:27 -0700360 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700361 Log.d(TAG,"getNameAndAddress(): mBluetooth = " + mBluetooth +
362 " mBinding = " + mBinding);
fredcf2458862012-04-16 15:18:27 -0700363 }
fredc0f420372012-04-12 00:02:00 -0700364 Message msg = mHandler.obtainMessage(MESSAGE_GET_NAME_AND_ADDRESS);
365 mHandler.sendMessage(msg);
366 }
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700367 public boolean enableNoAutoConnect()
368 {
369 mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
370 "Need BLUETOOTH ADMIN permission");
Zhihai Xu40874a02012-10-08 17:57:03 -0700371
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700372 if (DBG) {
373 Log.d(TAG,"enableNoAutoConnect(): mBluetooth =" + mBluetooth +
374 " mBinding = " + mBinding);
375 }
Martijn Coenen8385c5a2012-11-29 10:14:16 -0800376 int callingAppId = UserHandle.getAppId(Binder.getCallingUid());
377
378 if (callingAppId != Process.NFC_UID) {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700379 throw new SecurityException("no permission to enable Bluetooth quietly");
380 }
Martijn Coenen8385c5a2012-11-29 10:14:16 -0800381
Zhihai Xu401202b2012-12-03 11:36:21 -0800382 synchronized(mReceiver) {
383 mQuietEnableExternal = true;
384 mEnableExternal = true;
385 sendEnableMsg(true);
386 }
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700387 return true;
388
389 }
fredc0f420372012-04-12 00:02:00 -0700390 public boolean enable() {
Zhihai Xu6eb76522012-11-29 15:41:04 -0800391 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
392 (!checkIfCallerIsForegroundUser())) {
393 Log.w(TAG,"enable(): not allowed for non-active and non system user");
Zhihai Xu40874a02012-10-08 17:57:03 -0700394 return false;
fredcf2458862012-04-16 15:18:27 -0700395 }
396
Zhihai Xu401202b2012-12-03 11:36:21 -0800397 mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
398 "Need BLUETOOTH ADMIN permission");
399 if (DBG) {
400 Log.d(TAG,"enable(): mBluetooth =" + mBluetooth +
401 " mBinding = " + mBinding);
402 }
403
404 synchronized(mReceiver) {
405 mQuietEnableExternal = false;
406 mEnableExternal = true;
407 // waive WRITE_SECURE_SETTINGS permission check
408 long callingIdentity = Binder.clearCallingIdentity();
409 persistBluetoothSetting(BLUETOOTH_ON_BLUETOOTH);
410 Binder.restoreCallingIdentity(callingIdentity);
411 sendEnableMsg(false);
412 }
413 return true;
fredc0f420372012-04-12 00:02:00 -0700414 }
415
416 public boolean disable(boolean persist) {
417 mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
418 "Need BLUETOOTH ADMIN permissicacheNameAndAddresson");
Zhihai Xu40874a02012-10-08 17:57:03 -0700419
Zhihai Xu6eb76522012-11-29 15:41:04 -0800420 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
421 (!checkIfCallerIsForegroundUser())) {
422 Log.w(TAG,"disable(): not allowed for non-active and non system user");
Zhihai Xu40874a02012-10-08 17:57:03 -0700423 return false;
424 }
425
fredcf2458862012-04-16 15:18:27 -0700426 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700427 Log.d(TAG,"disable(): mBluetooth = " + mBluetooth +
428 " mBinding = " + mBinding);
429 }
fredcf2458862012-04-16 15:18:27 -0700430
Zhihai Xu401202b2012-12-03 11:36:21 -0800431 synchronized(mReceiver) {
432 if (persist) {
433 // waive WRITE_SECURE_SETTINGS permission check
434 long callingIdentity = Binder.clearCallingIdentity();
435 persistBluetoothSetting(BLUETOOTH_OFF);
436 Binder.restoreCallingIdentity(callingIdentity);
437 }
438 mEnableExternal = false;
439 sendDisableMsg();
440 }
fredc0f420372012-04-12 00:02:00 -0700441 return true;
442 }
443
fredc649fe492012-04-19 01:07:18 -0700444 public void unbindAndFinish() {
fredcf2458862012-04-16 15:18:27 -0700445 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700446 Log.d(TAG,"unbindAndFinish(): " + mBluetooth +
447 " mBinding = " + mBinding);
fredcf2458862012-04-16 15:18:27 -0700448 }
449
fredc0f420372012-04-12 00:02:00 -0700450 synchronized (mConnection) {
451 if (mUnbinding) return;
452 mUnbinding = true;
Zhihai Xu40874a02012-10-08 17:57:03 -0700453 if (mBluetooth != null) {
fredcbf072a72012-05-09 16:52:50 -0700454 if (!mConnection.isGetNameAddressOnly()) {
455 //Unregister callback object
456 try {
457 mBluetooth.unregisterCallback(mBluetoothCallback);
458 } catch (RemoteException re) {
Zhihai Xu40874a02012-10-08 17:57:03 -0700459 Log.e(TAG, "Unable to unregister BluetoothCallback",re);
fredcbf072a72012-05-09 16:52:50 -0700460 }
461 }
fredc0f420372012-04-12 00:02:00 -0700462 if (DBG) Log.d(TAG, "Sending unbind request.");
fredcd6883532012-04-25 17:46:13 -0700463 mBluetooth = null;
464 //Unbind
fredc0f420372012-04-12 00:02:00 -0700465 mContext.unbindService(mConnection);
fredcd6883532012-04-25 17:46:13 -0700466 mUnbinding = false;
Zhihai Xu40874a02012-10-08 17:57:03 -0700467 mBinding = false;
fredcf2458862012-04-16 15:18:27 -0700468 } else {
469 mUnbinding=false;
fredc0f420372012-04-12 00:02:00 -0700470 }
471 }
472 }
473
Matthew Xieddf7e472013-03-01 18:41:02 -0800474 public IBluetoothGatt getBluetoothGatt() {
475 // sync protection
476 return mBluetoothGatt;
477 }
478
fredcbf072a72012-05-09 16:52:50 -0700479 private void sendBluetoothStateCallback(boolean isUp) {
480 int n = mStateChangeCallbacks.beginBroadcast();
Freda8c6df02012-07-11 10:25:23 -0700481 if (DBG) Log.d(TAG,"Broadcasting onBluetoothStateChange("+isUp+") to " + n + " receivers.");
fredcbf072a72012-05-09 16:52:50 -0700482 for (int i=0; i <n;i++) {
483 try {
484 mStateChangeCallbacks.getBroadcastItem(i).onBluetoothStateChange(isUp);
485 } catch (RemoteException e) {
486 Log.e(TAG, "Unable to call onBluetoothStateChange() on callback #" + i , e);
487 }
488 }
489 mStateChangeCallbacks.finishBroadcast();
490 }
491
492 /**
Zhihai Xu40874a02012-10-08 17:57:03 -0700493 * Inform BluetoothAdapter instances that Adapter service is up
494 */
495 private void sendBluetoothServiceUpCallback() {
496 if (!mConnection.isGetNameAddressOnly()) {
497 if (DBG) Log.d(TAG,"Calling onBluetoothServiceUp callbacks");
498 int n = mCallbacks.beginBroadcast();
499 Log.d(TAG,"Broadcasting onBluetoothServiceUp() to " + n + " receivers.");
500 for (int i=0; i <n;i++) {
501 try {
502 mCallbacks.getBroadcastItem(i).onBluetoothServiceUp(mBluetooth);
503 } catch (RemoteException e) {
504 Log.e(TAG, "Unable to call onBluetoothServiceUp() on callback #" + i, e);
505 }
506 }
507 mCallbacks.finishBroadcast();
508 }
509 }
510 /**
fredcbf072a72012-05-09 16:52:50 -0700511 * Inform BluetoothAdapter instances that Adapter service is down
512 */
513 private void sendBluetoothServiceDownCallback() {
fredcd6883532012-04-25 17:46:13 -0700514 if (!mConnection.isGetNameAddressOnly()) {
515 if (DBG) Log.d(TAG,"Calling onBluetoothServiceDown callbacks");
516 int n = mCallbacks.beginBroadcast();
517 Log.d(TAG,"Broadcasting onBluetoothServiceDown() to " + n + " receivers.");
518 for (int i=0; i <n;i++) {
519 try {
520 mCallbacks.getBroadcastItem(i).onBluetoothServiceDown();
521 } catch (RemoteException e) {
522 Log.e(TAG, "Unable to call onBluetoothServiceDown() on callback #" + i, e);
523 }
524 }
525 mCallbacks.finishBroadcast();
526 }
527 }
fredc0f420372012-04-12 00:02:00 -0700528 public String getAddress() {
Matthew Xieaf5ddbf2012-12-04 10:47:43 -0800529 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
530 "Need BLUETOOTH permission");
Zhihai Xu40874a02012-10-08 17:57:03 -0700531
Zhihai Xu6eb76522012-11-29 15:41:04 -0800532 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
533 (!checkIfCallerIsForegroundUser())) {
534 Log.w(TAG,"getAddress(): not allowed for non-active and non system user");
535 return null;
Zhihai Xu40874a02012-10-08 17:57:03 -0700536 }
537
fredc116d1d462012-04-20 14:47:08 -0700538 synchronized(mConnection) {
539 if (mBluetooth != null) {
540 try {
541 return mBluetooth.getAddress();
542 } catch (RemoteException e) {
543 Log.e(TAG, "getAddress(): Unable to retrieve address remotely..Returning cached address",e);
544 }
545 }
546 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700547 // mAddress is accessed from outside.
548 // It is alright without a lock. Here, bluetooth is off, no other thread is
549 // changing mAddress
fredc0f420372012-04-12 00:02:00 -0700550 return mAddress;
551 }
fredc649fe492012-04-19 01:07:18 -0700552
fredc0f420372012-04-12 00:02:00 -0700553 public String getName() {
Matthew Xieaf5ddbf2012-12-04 10:47:43 -0800554 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
555 "Need BLUETOOTH permission");
Zhihai Xu40874a02012-10-08 17:57:03 -0700556
Zhihai Xu6eb76522012-11-29 15:41:04 -0800557 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
558 (!checkIfCallerIsForegroundUser())) {
559 Log.w(TAG,"getName(): not allowed for non-active and non system user");
560 return null;
Zhihai Xu40874a02012-10-08 17:57:03 -0700561 }
562
fredc116d1d462012-04-20 14:47:08 -0700563 synchronized(mConnection) {
564 if (mBluetooth != null) {
565 try {
566 return mBluetooth.getName();
567 } catch (RemoteException e) {
568 Log.e(TAG, "getName(): Unable to retrieve name remotely..Returning cached name",e);
569 }
570 }
571 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700572 // mName is accessed from outside.
573 // It alright without a lock. Here, bluetooth is off, no other thread is
574 // changing mName
fredc0f420372012-04-12 00:02:00 -0700575 return mName;
576 }
577
fredc0f420372012-04-12 00:02:00 -0700578 private class BluetoothServiceConnection implements ServiceConnection {
579
580 private boolean mGetNameAddressOnly;
581
582 public void setGetNameAddressOnly(boolean getOnly) {
583 mGetNameAddressOnly = getOnly;
584 }
585
586 public boolean isGetNameAddressOnly() {
587 return mGetNameAddressOnly;
588 }
589
590 public void onServiceConnected(ComponentName className, IBinder service) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800591 if (DBG) Log.d(TAG, "BluetoothServiceConnection: " + className.getClassName());
fredc0f420372012-04-12 00:02:00 -0700592 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_SERVICE_CONNECTED);
Matthew Xieddf7e472013-03-01 18:41:02 -0800593 // TBD if (className.getClassName().equals(IBluetooth.class.getName())) {
594 if (className.getClassName().equals("com.android.bluetooth.btservice.AdapterService")) {
595 msg.arg1 = SERVICE_IBLUETOOTH;
596 // } else if (className.getClassName().equals(IBluetoothGatt.class.getName())) {
597 } else if (className.getClassName().equals("com.android.bluetooth.gatt.GattService")) {
598 msg.arg1 = SERVICE_IBLUETOOTHGATT;
599 } else {
600 Log.e(TAG, "Unknown service connected: " + className.getClassName());
601 return;
602 }
fredc0f420372012-04-12 00:02:00 -0700603 msg.obj = service;
604 mHandler.sendMessage(msg);
605 }
606
607 public void onServiceDisconnected(ComponentName className) {
fredc0f420372012-04-12 00:02:00 -0700608 // Called if we unexpected disconnected.
Matthew Xieddf7e472013-03-01 18:41:02 -0800609 if (DBG) Log.d(TAG, "BluetoothServiceConnection, disconnected: " +
610 className.getClassName());
fredc0f420372012-04-12 00:02:00 -0700611 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_SERVICE_DISCONNECTED);
Matthew Xieddf7e472013-03-01 18:41:02 -0800612 if (className.getClassName().equals("com.android.bluetooth.btservice.AdapterService")) {
613 msg.arg1 = SERVICE_IBLUETOOTH;
614 } else if (className.getClassName().equals("com.android.bluetooth.gatt.GattService")) {
615 msg.arg1 = SERVICE_IBLUETOOTHGATT;
616 } else {
617 Log.e(TAG, "Unknown service disconnected: " + className.getClassName());
618 return;
619 }
fredc0f420372012-04-12 00:02:00 -0700620 mHandler.sendMessage(msg);
621 }
622 }
623
624 private BluetoothServiceConnection mConnection = new BluetoothServiceConnection();
625
Zhihai Xu40874a02012-10-08 17:57:03 -0700626 private class BluetoothHandler extends Handler {
627 public BluetoothHandler(Looper looper) {
628 super(looper);
629 }
630
fredc0f420372012-04-12 00:02:00 -0700631 @Override
632 public void handleMessage(Message msg) {
633 if (DBG) Log.d (TAG, "Message: " + msg.what);
fredc0f420372012-04-12 00:02:00 -0700634 switch (msg.what) {
635 case MESSAGE_GET_NAME_AND_ADDRESS: {
fredc649fe492012-04-19 01:07:18 -0700636 if (DBG) Log.d(TAG,"MESSAGE_GET_NAME_AND_ADDRESS");
Matthew Xiecdce0b92012-07-12 19:06:15 -0700637 synchronized(mConnection) {
fredc0f420372012-04-12 00:02:00 -0700638 //Start bind request
Zhihai Xu40874a02012-10-08 17:57:03 -0700639 if ((mBluetooth == null) && (!mBinding)) {
fredc0f420372012-04-12 00:02:00 -0700640 if (DBG) Log.d(TAG, "Binding to service to get name and address");
641 mConnection.setGetNameAddressOnly(true);
642 //Start bind timeout and bind
643 Message timeoutMsg = mHandler.obtainMessage(MESSAGE_TIMEOUT_BIND);
644 mHandler.sendMessageDelayed(timeoutMsg,TIMEOUT_BIND_MS);
645 Intent i = new Intent(IBluetooth.class.getName());
Dianne Hackborn221ea892013-08-04 16:50:16 -0700646 if (!doBind(i, mConnection,
647 Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
fredc0f420372012-04-12 00:02:00 -0700648 mHandler.removeMessages(MESSAGE_TIMEOUT_BIND);
Zhihai Xu40874a02012-10-08 17:57:03 -0700649 } else {
650 mBinding = true;
fredc0f420372012-04-12 00:02:00 -0700651 }
652 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700653 else {
654 Message saveMsg= mHandler.obtainMessage(MESSAGE_SAVE_NAME_AND_ADDRESS);
Zhihai Xu40874a02012-10-08 17:57:03 -0700655 saveMsg.arg1 = 0;
656 if (mBluetooth != null) {
657 mHandler.sendMessage(saveMsg);
658 } else {
659 // if enable is also called to bind the service
660 // wait for MESSAGE_BLUETOOTH_SERVICE_CONNECTED
661 mHandler.sendMessageDelayed(saveMsg, TIMEOUT_SAVE_MS);
662 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700663 }
fredc0f420372012-04-12 00:02:00 -0700664 }
fredc649fe492012-04-19 01:07:18 -0700665 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700666 }
fredc0f420372012-04-12 00:02:00 -0700667 case MESSAGE_SAVE_NAME_AND_ADDRESS: {
Zhihai Xud31c3222012-10-31 16:08:57 -0700668 boolean unbind = false;
fredc649fe492012-04-19 01:07:18 -0700669 if (DBG) Log.d(TAG,"MESSAGE_SAVE_NAME_AND_ADDRESS");
Matthew Xiecdce0b92012-07-12 19:06:15 -0700670 synchronized(mConnection) {
Zhihai Xud31c3222012-10-31 16:08:57 -0700671 if (!mEnable && mBluetooth != null) {
672 try {
673 mBluetooth.enable();
674 } catch (RemoteException e) {
675 Log.e(TAG,"Unable to call enable()",e);
676 }
677 }
678 }
679 if (mBluetooth != null) waitForOnOff(true, false);
680 synchronized(mConnection) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700681 if (mBluetooth != null) {
682 String name = null;
683 String address = null;
684 try {
685 name = mBluetooth.getName();
686 address = mBluetooth.getAddress();
687 } catch (RemoteException re) {
688 Log.e(TAG,"",re);
689 }
fredc0f420372012-04-12 00:02:00 -0700690
Matthew Xiecdce0b92012-07-12 19:06:15 -0700691 if (name != null && address != null) {
692 storeNameAndAddress(name,address);
Zhihai Xu40874a02012-10-08 17:57:03 -0700693 if (mConnection.isGetNameAddressOnly()) {
Zhihai Xud31c3222012-10-31 16:08:57 -0700694 unbind = true;
Zhihai Xu40874a02012-10-08 17:57:03 -0700695 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700696 } else {
697 if (msg.arg1 < MAX_SAVE_RETRIES) {
698 Message retryMsg = mHandler.obtainMessage(MESSAGE_SAVE_NAME_AND_ADDRESS);
699 retryMsg.arg1= 1+msg.arg1;
700 if (DBG) Log.d(TAG,"Retrying name/address remote retrieval and save.....Retry count =" + retryMsg.arg1);
701 mHandler.sendMessageDelayed(retryMsg, TIMEOUT_SAVE_MS);
702 } else {
703 Log.w(TAG,"Maximum name/address remote retrieval retry exceeded");
Zhihai Xu40874a02012-10-08 17:57:03 -0700704 if (mConnection.isGetNameAddressOnly()) {
Zhihai Xud31c3222012-10-31 16:08:57 -0700705 unbind = true;
Zhihai Xu40874a02012-10-08 17:57:03 -0700706 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700707 }
fredc0f420372012-04-12 00:02:00 -0700708 }
Zhihai Xud31c3222012-10-31 16:08:57 -0700709 if (!mEnable) {
710 try {
711 mBluetooth.disable();
712 } catch (RemoteException e) {
713 Log.e(TAG,"Unable to call disable()",e);
714 }
715 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700716 } else {
717 // rebind service by Request GET NAME AND ADDRESS
718 // if service is unbinded by disable or
719 // MESSAGE_BLUETOOTH_SERVICE_CONNECTED is not received
720 Message getMsg = mHandler.obtainMessage(MESSAGE_GET_NAME_AND_ADDRESS);
721 mHandler.sendMessage(getMsg);
fredc0f420372012-04-12 00:02:00 -0700722 }
723 }
Zhihai Xud31c3222012-10-31 16:08:57 -0700724 if (!mEnable && mBluetooth != null) waitForOnOff(false, true);
725 if (unbind) {
726 unbindAndFinish();
727 }
fredc649fe492012-04-19 01:07:18 -0700728 break;
fredc649fe492012-04-19 01:07:18 -0700729 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700730 case MESSAGE_ENABLE:
fredcf2458862012-04-16 15:18:27 -0700731 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700732 Log.d(TAG, "MESSAGE_ENABLE: mBluetooth = " + mBluetooth);
fredc649fe492012-04-19 01:07:18 -0700733 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700734 mHandler.removeMessages(MESSAGE_RESTART_BLUETOOTH_SERVICE);
735 mEnable = true;
Zhihai Xu401202b2012-12-03 11:36:21 -0800736 handleEnable(msg.arg1 == 1);
fredc649fe492012-04-19 01:07:18 -0700737 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700738
fredc0f420372012-04-12 00:02:00 -0700739 case MESSAGE_DISABLE:
Zhihai Xu40874a02012-10-08 17:57:03 -0700740 mHandler.removeMessages(MESSAGE_RESTART_BLUETOOTH_SERVICE);
741 if (mEnable && mBluetooth != null) {
742 waitForOnOff(true, false);
743 mEnable = false;
Zhihai Xu401202b2012-12-03 11:36:21 -0800744 handleDisable();
Zhihai Xu40874a02012-10-08 17:57:03 -0700745 waitForOnOff(false, false);
746 } else {
747 mEnable = false;
Zhihai Xu401202b2012-12-03 11:36:21 -0800748 handleDisable();
Zhihai Xu40874a02012-10-08 17:57:03 -0700749 }
fredc0f420372012-04-12 00:02:00 -0700750 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700751
fredc0f420372012-04-12 00:02:00 -0700752 case MESSAGE_REGISTER_ADAPTER:
753 {
754 IBluetoothManagerCallback callback = (IBluetoothManagerCallback) msg.obj;
fredcd6883532012-04-25 17:46:13 -0700755 boolean added = mCallbacks.register(callback);
756 Log.d(TAG,"Added callback: " + (callback == null? "null": callback) +":" +added );
fredc0f420372012-04-12 00:02:00 -0700757 }
758 break;
759 case MESSAGE_UNREGISTER_ADAPTER:
760 {
761 IBluetoothManagerCallback callback = (IBluetoothManagerCallback) msg.obj;
fredcd6883532012-04-25 17:46:13 -0700762 boolean removed = mCallbacks.unregister(callback);
763 Log.d(TAG,"Removed callback: " + (callback == null? "null": callback) +":" + removed);
fredc0f420372012-04-12 00:02:00 -0700764 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700765 }
fredc0f420372012-04-12 00:02:00 -0700766 case MESSAGE_REGISTER_STATE_CHANGE_CALLBACK:
767 {
768 IBluetoothStateChangeCallback callback = (IBluetoothStateChangeCallback) msg.obj;
fredcd6883532012-04-25 17:46:13 -0700769 mStateChangeCallbacks.register(callback);
fredc0f420372012-04-12 00:02:00 -0700770 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700771 }
fredc0f420372012-04-12 00:02:00 -0700772 case MESSAGE_UNREGISTER_STATE_CHANGE_CALLBACK:
773 {
774 IBluetoothStateChangeCallback callback = (IBluetoothStateChangeCallback) msg.obj;
fredcd6883532012-04-25 17:46:13 -0700775 mStateChangeCallbacks.unregister(callback);
fredc0f420372012-04-12 00:02:00 -0700776 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700777 }
fredc0f420372012-04-12 00:02:00 -0700778 case MESSAGE_BLUETOOTH_SERVICE_CONNECTED:
779 {
Matthew Xieddf7e472013-03-01 18:41:02 -0800780 if (DBG) Log.d(TAG,"MESSAGE_BLUETOOTH_SERVICE_CONNECTED: " + msg.arg1);
fredc0f420372012-04-12 00:02:00 -0700781
782 IBinder service = (IBinder) msg.obj;
783 synchronized(mConnection) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800784 if (msg.arg1 == SERVICE_IBLUETOOTHGATT) {
785 mBluetoothGatt = IBluetoothGatt.Stub.asInterface(service);
786 break;
787 } // else must be SERVICE_IBLUETOOTH
788
789 //Remove timeout
Zhihai Xuaf5971e2013-06-10 20:28:31 -0700790 mHandler.removeMessages(MESSAGE_TIMEOUT_BIND);
Matthew Xieddf7e472013-03-01 18:41:02 -0800791
fredc0f420372012-04-12 00:02:00 -0700792 mBinding = false;
793 mBluetooth = IBluetooth.Stub.asInterface(service);
fredc0f420372012-04-12 00:02:00 -0700794
Zhihai Xuaf5971e2013-06-10 20:28:31 -0700795 try {
796 boolean enableHciSnoopLog = (Settings.Secure.getInt(mContentResolver,
797 Settings.Secure.BLUETOOTH_HCI_LOG, 0) == 1);
798 if (!mBluetooth.configHciSnoopLog(enableHciSnoopLog)) {
799 Log.e(TAG,"IBluetooth.configHciSnoopLog return false");
800 }
801 } catch (RemoteException e) {
802 Log.e(TAG,"Unable to call configHciSnoopLog", e);
803 }
804
Matthew Xiecdce0b92012-07-12 19:06:15 -0700805 if (mConnection.isGetNameAddressOnly()) {
806 //Request GET NAME AND ADDRESS
807 Message getMsg = mHandler.obtainMessage(MESSAGE_GET_NAME_AND_ADDRESS);
808 mHandler.sendMessage(getMsg);
Zhihai Xu40874a02012-10-08 17:57:03 -0700809 if (!mEnable) return;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700810 }
fredc0f420372012-04-12 00:02:00 -0700811
Zhihai Xu40874a02012-10-08 17:57:03 -0700812 mConnection.setGetNameAddressOnly(false);
Matthew Xiecdce0b92012-07-12 19:06:15 -0700813 //Register callback object
fredcbf072a72012-05-09 16:52:50 -0700814 try {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700815 mBluetooth.registerCallback(mBluetoothCallback);
816 } catch (RemoteException re) {
817 Log.e(TAG, "Unable to register BluetoothCallback",re);
fredcbf072a72012-05-09 16:52:50 -0700818 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700819 //Inform BluetoothAdapter instances that service is up
Zhihai Xu40874a02012-10-08 17:57:03 -0700820 sendBluetoothServiceUpCallback();
821
Matthew Xiecdce0b92012-07-12 19:06:15 -0700822 //Do enable request
823 try {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700824 if (mQuietEnable == false) {
825 if(!mBluetooth.enable()) {
826 Log.e(TAG,"IBluetooth.enable() returned false");
827 }
828 }
829 else
830 {
831 if(!mBluetooth.enableNoAutoConnect()) {
832 Log.e(TAG,"IBluetooth.enableNoAutoConnect() returned false");
833 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700834 }
835 } catch (RemoteException e) {
836 Log.e(TAG,"Unable to call enable()",e);
837 }
Freda8c6df02012-07-11 10:25:23 -0700838 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700839
840 if (!mEnable) {
841 waitForOnOff(true, false);
Zhihai Xu401202b2012-12-03 11:36:21 -0800842 handleDisable();
Zhihai Xu40874a02012-10-08 17:57:03 -0700843 waitForOnOff(false, false);
844 }
fredc649fe492012-04-19 01:07:18 -0700845 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700846 }
fredc649fe492012-04-19 01:07:18 -0700847 case MESSAGE_TIMEOUT_BIND: {
848 Log.e(TAG, "MESSAGE_TIMEOUT_BIND");
fredc0f420372012-04-12 00:02:00 -0700849 synchronized(mConnection) {
850 mBinding = false;
851 }
fredc649fe492012-04-19 01:07:18 -0700852 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700853 }
fredcbf072a72012-05-09 16:52:50 -0700854 case MESSAGE_BLUETOOTH_STATE_CHANGE:
fredc0f420372012-04-12 00:02:00 -0700855 {
fredcbf072a72012-05-09 16:52:50 -0700856 int prevState = msg.arg1;
857 int newState = msg.arg2;
858 if (DBG) Log.d(TAG, "MESSAGE_BLUETOOTH_STATE_CHANGE: prevState = " + prevState + ", newState=" + newState);
Zhihai Xu40874a02012-10-08 17:57:03 -0700859 mState = newState;
860 bluetoothStateChangeHandler(prevState, newState);
Zhihai Xudd9d17d2013-01-08 17:05:58 -0800861 // handle error state transition case from TURNING_ON to OFF
862 // unbind and rebind bluetooth service and enable bluetooth
863 if ((prevState == BluetoothAdapter.STATE_TURNING_ON) &&
864 (newState == BluetoothAdapter.STATE_OFF) &&
865 (mBluetooth != null) && mEnable) {
866 recoverBluetoothServiceFromError();
867 }
868 if (newState == BluetoothAdapter.STATE_ON) {
869 // bluetooth is working, reset the counter
870 if (mErrorRecoveryRetryCounter != 0) {
871 Log.w(TAG, "bluetooth is recovered from error");
872 mErrorRecoveryRetryCounter = 0;
873 }
874 }
fredc649fe492012-04-19 01:07:18 -0700875 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700876 }
fredc0f420372012-04-12 00:02:00 -0700877 case MESSAGE_BLUETOOTH_SERVICE_DISCONNECTED:
878 {
Matthew Xieddf7e472013-03-01 18:41:02 -0800879 Log.e(TAG, "MESSAGE_BLUETOOTH_SERVICE_DISCONNECTED: " + msg.arg1);
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530880 synchronized(mConnection) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800881 if (msg.arg1 == SERVICE_IBLUETOOTH) {
882 // if service is unbinded already, do nothing and return
883 if (mBluetooth == null) break;
884 mBluetooth = null;
885 } else if (msg.arg1 == SERVICE_IBLUETOOTHGATT) {
886 mBluetoothGatt = null;
887 break;
888 } else {
889 Log.e(TAG, "Bad msg.arg1: " + msg.arg1);
890 break;
891 }
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530892 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700893
894 if (mEnable) {
895 mEnable = false;
896 // Send a Bluetooth Restart message
897 Message restartMsg = mHandler.obtainMessage(
898 MESSAGE_RESTART_BLUETOOTH_SERVICE);
899 mHandler.sendMessageDelayed(restartMsg,
900 SERVICE_RESTART_TIME_MS);
901 }
902
903 if (!mConnection.isGetNameAddressOnly()) {
904 sendBluetoothServiceDownCallback();
905
906 // Send BT state broadcast to update
907 // the BT icon correctly
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800908 if ((mState == BluetoothAdapter.STATE_TURNING_ON) ||
909 (mState == BluetoothAdapter.STATE_ON)) {
910 bluetoothStateChangeHandler(BluetoothAdapter.STATE_ON,
911 BluetoothAdapter.STATE_TURNING_OFF);
912 mState = BluetoothAdapter.STATE_TURNING_OFF;
913 }
914 if (mState == BluetoothAdapter.STATE_TURNING_OFF) {
915 bluetoothStateChangeHandler(BluetoothAdapter.STATE_TURNING_OFF,
916 BluetoothAdapter.STATE_OFF);
917 }
918
919 mHandler.removeMessages(MESSAGE_BLUETOOTH_STATE_CHANGE);
Zhihai Xu40874a02012-10-08 17:57:03 -0700920 mState = BluetoothAdapter.STATE_OFF;
921 }
fredc649fe492012-04-19 01:07:18 -0700922 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700923 }
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530924 case MESSAGE_RESTART_BLUETOOTH_SERVICE:
925 {
926 Log.d(TAG, "MESSAGE_RESTART_BLUETOOTH_SERVICE:"
927 +" Restart IBluetooth service");
928 /* Enable without persisting the setting as
929 it doesnt change when IBluetooth
930 service restarts */
Zhihai Xu40874a02012-10-08 17:57:03 -0700931 mEnable = true;
Zhihai Xu401202b2012-12-03 11:36:21 -0800932 handleEnable(mQuietEnable);
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530933 break;
934 }
935
fredc0f420372012-04-12 00:02:00 -0700936 case MESSAGE_TIMEOUT_UNBIND:
937 {
fredc649fe492012-04-19 01:07:18 -0700938 Log.e(TAG, "MESSAGE_TIMEOUT_UNBIND");
fredc0f420372012-04-12 00:02:00 -0700939 synchronized(mConnection) {
940 mUnbinding = false;
941 }
fredc649fe492012-04-19 01:07:18 -0700942 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700943 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700944
945 case MESSAGE_USER_SWITCHED:
946 {
947 if (DBG) {
948 Log.d(TAG, "MESSAGE_USER_SWITCHED");
949 }
950 mHandler.removeMessages(MESSAGE_USER_SWITCHED);
951 /* disable and enable BT when detect a user switch */
952 if (mEnable && mBluetooth != null) {
953 synchronized (mConnection) {
954 if (mBluetooth != null) {
955 //Unregister callback object
956 try {
957 mBluetooth.unregisterCallback(mBluetoothCallback);
958 } catch (RemoteException re) {
959 Log.e(TAG, "Unable to unregister",re);
960 }
961 }
962 }
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800963
964 if (mState == BluetoothAdapter.STATE_TURNING_OFF) {
965 // MESSAGE_USER_SWITCHED happened right after MESSAGE_ENABLE
966 bluetoothStateChangeHandler(mState, BluetoothAdapter.STATE_OFF);
967 mState = BluetoothAdapter.STATE_OFF;
968 }
969 if (mState == BluetoothAdapter.STATE_OFF) {
970 bluetoothStateChangeHandler(mState, BluetoothAdapter.STATE_TURNING_ON);
971 mState = BluetoothAdapter.STATE_TURNING_ON;
972 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700973
974 waitForOnOff(true, false);
975
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800976 if (mState == BluetoothAdapter.STATE_TURNING_ON) {
977 bluetoothStateChangeHandler(mState, BluetoothAdapter.STATE_ON);
978 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700979
980 // disable
Zhihai Xu401202b2012-12-03 11:36:21 -0800981 handleDisable();
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800982 // Pbap service need receive STATE_TURNING_OFF intent to close
983 bluetoothStateChangeHandler(BluetoothAdapter.STATE_ON,
984 BluetoothAdapter.STATE_TURNING_OFF);
Zhihai Xu40874a02012-10-08 17:57:03 -0700985
986 waitForOnOff(false, true);
987
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800988 bluetoothStateChangeHandler(BluetoothAdapter.STATE_TURNING_OFF,
Zhihai Xu40874a02012-10-08 17:57:03 -0700989 BluetoothAdapter.STATE_OFF);
Zhihai Xu40874a02012-10-08 17:57:03 -0700990 sendBluetoothServiceDownCallback();
991 synchronized (mConnection) {
992 if (mBluetooth != null) {
993 mBluetooth = null;
994 //Unbind
995 mContext.unbindService(mConnection);
996 }
997 }
998 SystemClock.sleep(100);
999
Zhihai Xu4e22ad32012-11-13 15:11:26 -08001000 mHandler.removeMessages(MESSAGE_BLUETOOTH_STATE_CHANGE);
1001 mState = BluetoothAdapter.STATE_OFF;
Zhihai Xu40874a02012-10-08 17:57:03 -07001002 // enable
Zhihai Xu401202b2012-12-03 11:36:21 -08001003 handleEnable(mQuietEnable);
Zhihai Xu40874a02012-10-08 17:57:03 -07001004 } else if (mBinding || mBluetooth != null) {
1005 Message userMsg = mHandler.obtainMessage(MESSAGE_USER_SWITCHED);
1006 userMsg.arg2 = 1 + msg.arg2;
1007 // if user is switched when service is being binding
1008 // delay sending MESSAGE_USER_SWITCHED
1009 mHandler.sendMessageDelayed(userMsg, USER_SWITCHED_TIME_MS);
1010 if (DBG) {
1011 Log.d(TAG, "delay MESSAGE_USER_SWITCHED " + userMsg.arg2);
1012 }
1013 }
1014 break;
1015 }
fredc0f420372012-04-12 00:02:00 -07001016 }
1017 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001018 }
Matthew Xiecdce0b92012-07-12 19:06:15 -07001019
Zhihai Xu401202b2012-12-03 11:36:21 -08001020 private void handleEnable(boolean quietMode) {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -07001021 mQuietEnable = quietMode;
1022
Matthew Xiecdce0b92012-07-12 19:06:15 -07001023 synchronized(mConnection) {
Zhihai Xu40874a02012-10-08 17:57:03 -07001024 if ((mBluetooth == null) && (!mBinding)) {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001025 //Start bind timeout and bind
1026 Message timeoutMsg=mHandler.obtainMessage(MESSAGE_TIMEOUT_BIND);
1027 mHandler.sendMessageDelayed(timeoutMsg,TIMEOUT_BIND_MS);
1028 mConnection.setGetNameAddressOnly(false);
1029 Intent i = new Intent(IBluetooth.class.getName());
Dianne Hackborn221ea892013-08-04 16:50:16 -07001030 if (!doBind(i, mConnection,Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001031 mHandler.removeMessages(MESSAGE_TIMEOUT_BIND);
Zhihai Xu40874a02012-10-08 17:57:03 -07001032 } else {
1033 mBinding = true;
Matthew Xiecdce0b92012-07-12 19:06:15 -07001034 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001035 } else if (mBluetooth != null) {
1036 if (mConnection.isGetNameAddressOnly()) {
1037 // if GetNameAddressOnly is set, we can clear this flag,
1038 // so the service won't be unbind
1039 // after name and address are saved
1040 mConnection.setGetNameAddressOnly(false);
1041 //Register callback object
1042 try {
1043 mBluetooth.registerCallback(mBluetoothCallback);
1044 } catch (RemoteException re) {
1045 Log.e(TAG, "Unable to register BluetoothCallback",re);
1046 }
1047 //Inform BluetoothAdapter instances that service is up
1048 sendBluetoothServiceUpCallback();
1049 }
1050
Matthew Xiecdce0b92012-07-12 19:06:15 -07001051 //Enable bluetooth
1052 try {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -07001053 if (!mQuietEnable) {
1054 if(!mBluetooth.enable()) {
1055 Log.e(TAG,"IBluetooth.enable() returned false");
1056 }
1057 }
1058 else {
1059 if(!mBluetooth.enableNoAutoConnect()) {
1060 Log.e(TAG,"IBluetooth.enableNoAutoConnect() returned false");
1061 }
Matthew Xiecdce0b92012-07-12 19:06:15 -07001062 }
1063 } catch (RemoteException e) {
1064 Log.e(TAG,"Unable to call enable()",e);
1065 }
1066 }
1067 }
1068 }
1069
Dianne Hackborn221ea892013-08-04 16:50:16 -07001070 boolean doBind(Intent intent, ServiceConnection conn, int flags, UserHandle user) {
1071 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0);
1072 intent.setComponent(comp);
1073 if (comp == null || !mContext.bindServiceAsUser(intent, conn, flags, user)) {
1074 Log.e(TAG, "Fail to bind to: " + intent);
1075 return false;
1076 }
1077 return true;
1078 }
1079
Zhihai Xu401202b2012-12-03 11:36:21 -08001080 private void handleDisable() {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001081 synchronized(mConnection) {
Zhihai Xu40874a02012-10-08 17:57:03 -07001082 // don't need to disable if GetNameAddressOnly is set,
1083 // service will be unbinded after Name and Address are saved
1084 if ((mBluetooth != null) && (!mConnection.isGetNameAddressOnly())) {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001085 if (DBG) Log.d(TAG,"Sending off request.");
1086
1087 try {
1088 if(!mBluetooth.disable()) {
1089 Log.e(TAG,"IBluetooth.disable() returned false");
1090 }
1091 } catch (RemoteException e) {
1092 Log.e(TAG,"Unable to call disable()",e);
1093 }
1094 }
1095 }
1096 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001097
1098 private boolean checkIfCallerIsForegroundUser() {
1099 int foregroundUser;
1100 int callingUser = UserHandle.getCallingUserId();
Martijn Coenen8385c5a2012-11-29 10:14:16 -08001101 int callingUid = Binder.getCallingUid();
Zhihai Xu40874a02012-10-08 17:57:03 -07001102 long callingIdentity = Binder.clearCallingIdentity();
Martijn Coenen8385c5a2012-11-29 10:14:16 -08001103 int callingAppId = UserHandle.getAppId(callingUid);
Zhihai Xu40874a02012-10-08 17:57:03 -07001104 boolean valid = false;
1105 try {
1106 foregroundUser = ActivityManager.getCurrentUser();
Martijn Coenen8385c5a2012-11-29 10:14:16 -08001107 valid = (callingUser == foregroundUser) ||
1108 callingAppId == Process.NFC_UID;
Zhihai Xu40874a02012-10-08 17:57:03 -07001109 if (DBG) {
1110 Log.d(TAG, "checkIfCallerIsForegroundUser: valid=" + valid
1111 + " callingUser=" + callingUser
1112 + " foregroundUser=" + foregroundUser);
1113 }
1114 } finally {
1115 Binder.restoreCallingIdentity(callingIdentity);
1116 }
1117 return valid;
1118 }
1119
Zhihai Xu40874a02012-10-08 17:57:03 -07001120 private void bluetoothStateChangeHandler(int prevState, int newState) {
1121 if (prevState != newState) {
1122 //Notify all proxy objects first of adapter state change
1123 if (newState == BluetoothAdapter.STATE_ON || newState == BluetoothAdapter.STATE_OFF) {
1124 boolean isUp = (newState==BluetoothAdapter.STATE_ON);
1125 sendBluetoothStateCallback(isUp);
1126
Matthew Xieddf7e472013-03-01 18:41:02 -08001127 if (isUp) {
1128 // connect to GattService
Matthew Xie32ab77b2013-05-08 19:26:57 -07001129 if (mContext.getPackageManager().hasSystemFeature(
1130 PackageManager.FEATURE_BLUETOOTH_LE)) {
1131 Intent i = new Intent(IBluetoothGatt.class.getName());
Dianne Hackborn221ea892013-08-04 16:50:16 -07001132 doBind(i, mConnection, Context.BIND_AUTO_CREATE, UserHandle.CURRENT);
Matthew Xieddf7e472013-03-01 18:41:02 -08001133 }
1134 } else {
1135 //If Bluetooth is off, send service down event to proxy objects, and unbind
1136 if (!isUp && canUnbindBluetoothService()) {
1137 sendBluetoothServiceDownCallback();
1138 unbindAndFinish();
1139 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001140 }
1141 }
1142
1143 //Send broadcast message to everyone else
1144 Intent intent = new Intent(BluetoothAdapter.ACTION_STATE_CHANGED);
1145 intent.putExtra(BluetoothAdapter.EXTRA_PREVIOUS_STATE, prevState);
1146 intent.putExtra(BluetoothAdapter.EXTRA_STATE, newState);
1147 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
1148 if (DBG) Log.d(TAG,"Bluetooth State Change Intent: " + prevState + " -> " + newState);
1149 mContext.sendBroadcastAsUser(intent, UserHandle.ALL,
1150 BLUETOOTH_PERM);
1151 }
1152 }
1153
1154 /**
1155 * if on is true, wait for state become ON
1156 * if off is true, wait for state become OFF
1157 * if both on and off are false, wait for state not ON
1158 */
1159 private boolean waitForOnOff(boolean on, boolean off) {
1160 int i = 0;
1161 while (i < 10) {
1162 synchronized(mConnection) {
1163 try {
1164 if (mBluetooth == null) break;
1165 if (on) {
1166 if (mBluetooth.getState() == BluetoothAdapter.STATE_ON) return true;
1167 } else if (off) {
1168 if (mBluetooth.getState() == BluetoothAdapter.STATE_OFF) return true;
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001169 } else {
Zhihai Xu40874a02012-10-08 17:57:03 -07001170 if (mBluetooth.getState() != BluetoothAdapter.STATE_ON) return true;
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001171 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001172 } catch (RemoteException e) {
1173 Log.e(TAG, "getState()", e);
1174 break;
1175 }
1176 }
1177 if (on || off) {
1178 SystemClock.sleep(300);
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001179 } else {
Zhihai Xu40874a02012-10-08 17:57:03 -07001180 SystemClock.sleep(50);
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001181 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001182 i++;
1183 }
1184 Log.e(TAG,"waitForOnOff time out");
1185 return false;
1186 }
Zhihai Xu681ae7f2012-11-12 15:14:18 -08001187
Zhihai Xu401202b2012-12-03 11:36:21 -08001188 private void sendDisableMsg() {
1189 mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_DISABLE));
1190 }
1191
1192 private void sendEnableMsg(boolean quietMode) {
1193 mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_ENABLE,
1194 quietMode ? 1 : 0, 0));
1195 }
1196
Zhihai Xu681ae7f2012-11-12 15:14:18 -08001197 private boolean canUnbindBluetoothService() {
1198 synchronized(mConnection) {
1199 //Only unbind with mEnable flag not set
1200 //For race condition: disable and enable back-to-back
1201 //Avoid unbind right after enable due to callback from disable
1202 //Only unbind with Bluetooth at OFF state
1203 //Only unbind without any MESSAGE_BLUETOOTH_STATE_CHANGE message
1204 try {
1205 if (mEnable || (mBluetooth == null)) return false;
1206 if (mHandler.hasMessages(MESSAGE_BLUETOOTH_STATE_CHANGE)) return false;
1207 return (mBluetooth.getState() == BluetoothAdapter.STATE_OFF);
1208 } catch (RemoteException e) {
1209 Log.e(TAG, "getState()", e);
1210 }
1211 }
1212 return false;
1213 }
Zhihai Xudd9d17d2013-01-08 17:05:58 -08001214
1215 private void recoverBluetoothServiceFromError() {
1216 Log.e(TAG,"recoverBluetoothServiceFromError");
1217 synchronized (mConnection) {
1218 if (mBluetooth != null) {
1219 //Unregister callback object
1220 try {
1221 mBluetooth.unregisterCallback(mBluetoothCallback);
1222 } catch (RemoteException re) {
1223 Log.e(TAG, "Unable to unregister",re);
1224 }
1225 }
1226 }
1227
1228 SystemClock.sleep(500);
1229
1230 // disable
1231 handleDisable();
1232
1233 waitForOnOff(false, true);
1234
1235 sendBluetoothServiceDownCallback();
1236 synchronized (mConnection) {
1237 if (mBluetooth != null) {
1238 mBluetooth = null;
1239 //Unbind
1240 mContext.unbindService(mConnection);
1241 }
1242 }
1243
1244 mHandler.removeMessages(MESSAGE_BLUETOOTH_STATE_CHANGE);
1245 mState = BluetoothAdapter.STATE_OFF;
1246
1247 mEnable = false;
1248
1249 if (mErrorRecoveryRetryCounter++ < MAX_ERROR_RESTART_RETRIES) {
1250 // Send a Bluetooth Restart message to reenable bluetooth
1251 Message restartMsg = mHandler.obtainMessage(
1252 MESSAGE_RESTART_BLUETOOTH_SERVICE);
1253 mHandler.sendMessageDelayed(restartMsg, ERROR_RESTART_TIME_MS);
1254 } else {
1255 // todo: notify user to power down and power up phone to make bluetooth work.
1256 }
1257 }
fredc0f420372012-04-12 00:02:00 -07001258}