blob: 07c904883f9cb82847f2daa48fd605183cadcd15 [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);
Dianne Hackbornd83a0962014-05-02 16:28:33 -0700215 filter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY);
Matthew Xie6fde3092012-07-11 17:10:07 -0700216 mContext.registerReceiver(mReceiver, filter);
fredc0f420372012-04-12 00:02:00 -0700217 loadStoredNameAndAddress();
Zhihai Xu401202b2012-12-03 11:36:21 -0800218 if (isBluetoothPersistedStateOn()) {
219 mEnableExternal = true;
fredc0f420372012-04-12 00:02:00 -0700220 }
221 }
222
fredc649fe492012-04-19 01:07:18 -0700223 /**
224 * Returns true if airplane mode is currently on
225 */
226 private final boolean isAirplaneModeOn() {
Christopher Tatec09cdce2012-09-10 16:50:14 -0700227 return Settings.Global.getInt(mContext.getContentResolver(),
228 Settings.Global.AIRPLANE_MODE_ON, 0) == 1;
fredc649fe492012-04-19 01:07:18 -0700229 }
230
231 /**
232 * Returns true if the Bluetooth saved state is "on"
233 */
234 private final boolean isBluetoothPersistedStateOn() {
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700235 return Settings.Global.getInt(mContentResolver,
Zhihai Xu401202b2012-12-03 11:36:21 -0800236 Settings.Global.BLUETOOTH_ON, 0) != BLUETOOTH_OFF;
237 }
238
239 /**
240 * Returns true if the Bluetooth saved state is BLUETOOTH_ON_BLUETOOTH
241 */
242 private final boolean isBluetoothPersistedStateOnBluetooth() {
243 return Settings.Global.getInt(mContentResolver,
244 Settings.Global.BLUETOOTH_ON, 0) == BLUETOOTH_ON_BLUETOOTH;
fredc649fe492012-04-19 01:07:18 -0700245 }
246
247 /**
248 * Save the Bluetooth on/off state
249 *
250 */
Zhihai Xu401202b2012-12-03 11:36:21 -0800251 private void persistBluetoothSetting(int value) {
Jeff Brownbf6f6f92012-09-25 15:03:20 -0700252 Settings.Global.putInt(mContext.getContentResolver(),
253 Settings.Global.BLUETOOTH_ON,
Zhihai Xu401202b2012-12-03 11:36:21 -0800254 value);
fredc649fe492012-04-19 01:07:18 -0700255 }
256
257 /**
258 * Returns true if the Bluetooth Adapter's name and address is
259 * locally cached
260 * @return
261 */
fredc0f420372012-04-12 00:02:00 -0700262 private boolean isNameAndAddressSet() {
263 return mName !=null && mAddress!= null && mName.length()>0 && mAddress.length()>0;
264 }
265
fredc649fe492012-04-19 01:07:18 -0700266 /**
267 * Retrieve the Bluetooth Adapter's name and address and save it in
268 * in the local cache
269 */
fredc0f420372012-04-12 00:02:00 -0700270 private void loadStoredNameAndAddress() {
271 if (DBG) Log.d(TAG, "Loading stored name and address");
Zhihai Xud31c3222012-10-31 16:08:57 -0700272 if (mContext.getResources().getBoolean
273 (com.android.internal.R.bool.config_bluetooth_address_validation) &&
274 Settings.Secure.getInt(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDR_VALID, 0) == 0) {
275 // if the valid flag is not set, don't load the address and name
276 if (DBG) Log.d(TAG, "invalid bluetooth name and address stored");
277 return;
278 }
fredc0f420372012-04-12 00:02:00 -0700279 mName = Settings.Secure.getString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_NAME);
280 mAddress = Settings.Secure.getString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDRESS);
Zhihai Xud31c3222012-10-31 16:08:57 -0700281 if (DBG) Log.d(TAG, "Stored bluetooth Name=" + mName + ",Address=" + mAddress);
fredc0f420372012-04-12 00:02:00 -0700282 }
283
fredc649fe492012-04-19 01:07:18 -0700284 /**
285 * Save the Bluetooth name and address in the persistent store.
286 * Only non-null values will be saved.
287 * @param name
288 * @param address
289 */
fredc0f420372012-04-12 00:02:00 -0700290 private void storeNameAndAddress(String name, String address) {
291 if (name != null) {
292 Settings.Secure.putString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_NAME, name);
fredc0f420372012-04-12 00:02:00 -0700293 mName = name;
fredc649fe492012-04-19 01:07:18 -0700294 if (DBG) Log.d(TAG,"Stored Bluetooth name: " +
295 Settings.Secure.getString(mContentResolver,SECURE_SETTINGS_BLUETOOTH_NAME));
fredc0f420372012-04-12 00:02:00 -0700296 }
297
298 if (address != null) {
299 Settings.Secure.putString(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDRESS, address);
fredc0f420372012-04-12 00:02:00 -0700300 mAddress=address;
fredc649fe492012-04-19 01:07:18 -0700301 if (DBG) Log.d(TAG,"Stored Bluetoothaddress: " +
302 Settings.Secure.getString(mContentResolver,SECURE_SETTINGS_BLUETOOTH_ADDRESS));
fredc0f420372012-04-12 00:02:00 -0700303 }
Zhihai Xud31c3222012-10-31 16:08:57 -0700304
305 if ((name != null) && (address != null)) {
306 Settings.Secure.putInt(mContentResolver, SECURE_SETTINGS_BLUETOOTH_ADDR_VALID, 1);
307 }
fredc0f420372012-04-12 00:02:00 -0700308 }
309
310 public IBluetooth registerAdapter(IBluetoothManagerCallback callback){
Natalie Silvanovich55db6462014-05-01 16:12:23 -0700311 if (callback == null) {
312 Log.w(TAG, "Callback is null in registerAdapter");
313 return null;
314 }
fredc0f420372012-04-12 00:02:00 -0700315 Message msg = mHandler.obtainMessage(MESSAGE_REGISTER_ADAPTER);
316 msg.obj = callback;
317 mHandler.sendMessage(msg);
318 synchronized(mConnection) {
319 return mBluetooth;
320 }
321 }
322
323 public void unregisterAdapter(IBluetoothManagerCallback callback) {
Natalie Silvanovich55db6462014-05-01 16:12:23 -0700324 if (callback == null) {
325 Log.w(TAG, "Callback is null in unregisterAdapter");
326 return;
327 }
fredc0f420372012-04-12 00:02:00 -0700328 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
329 "Need BLUETOOTH permission");
330 Message msg = mHandler.obtainMessage(MESSAGE_UNREGISTER_ADAPTER);
331 msg.obj = callback;
332 mHandler.sendMessage(msg);
333 }
334
335 public void registerStateChangeCallback(IBluetoothStateChangeCallback callback) {
336 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
337 "Need BLUETOOTH permission");
338 Message msg = mHandler.obtainMessage(MESSAGE_REGISTER_STATE_CHANGE_CALLBACK);
339 msg.obj = callback;
340 mHandler.sendMessage(msg);
341 }
342
343 public void unregisterStateChangeCallback(IBluetoothStateChangeCallback callback) {
344 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
345 "Need BLUETOOTH permission");
346 Message msg = mHandler.obtainMessage(MESSAGE_UNREGISTER_STATE_CHANGE_CALLBACK);
347 msg.obj = callback;
348 mHandler.sendMessage(msg);
349 }
350
351 public boolean isEnabled() {
Zhihai Xu6eb76522012-11-29 15:41:04 -0800352 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
353 (!checkIfCallerIsForegroundUser())) {
354 Log.w(TAG,"isEnabled(): not allowed for non-active and non system user");
Zhihai Xu40874a02012-10-08 17:57:03 -0700355 return false;
356 }
357
fredc0f420372012-04-12 00:02:00 -0700358 synchronized(mConnection) {
359 try {
360 return (mBluetooth != null && mBluetooth.isEnabled());
361 } catch (RemoteException e) {
362 Log.e(TAG, "isEnabled()", e);
363 }
364 }
365 return false;
366 }
367
368 public void getNameAndAddress() {
fredcf2458862012-04-16 15:18:27 -0700369 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700370 Log.d(TAG,"getNameAndAddress(): mBluetooth = " + mBluetooth +
371 " mBinding = " + mBinding);
fredcf2458862012-04-16 15:18:27 -0700372 }
fredc0f420372012-04-12 00:02:00 -0700373 Message msg = mHandler.obtainMessage(MESSAGE_GET_NAME_AND_ADDRESS);
374 mHandler.sendMessage(msg);
375 }
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700376 public boolean enableNoAutoConnect()
377 {
378 mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
379 "Need BLUETOOTH ADMIN permission");
Zhihai Xu40874a02012-10-08 17:57:03 -0700380
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700381 if (DBG) {
382 Log.d(TAG,"enableNoAutoConnect(): mBluetooth =" + mBluetooth +
383 " mBinding = " + mBinding);
384 }
Martijn Coenen8385c5a2012-11-29 10:14:16 -0800385 int callingAppId = UserHandle.getAppId(Binder.getCallingUid());
386
387 if (callingAppId != Process.NFC_UID) {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700388 throw new SecurityException("no permission to enable Bluetooth quietly");
389 }
Martijn Coenen8385c5a2012-11-29 10:14:16 -0800390
Zhihai Xu401202b2012-12-03 11:36:21 -0800391 synchronized(mReceiver) {
392 mQuietEnableExternal = true;
393 mEnableExternal = true;
394 sendEnableMsg(true);
395 }
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700396 return true;
397
398 }
fredc0f420372012-04-12 00:02:00 -0700399 public boolean enable() {
Zhihai Xu6eb76522012-11-29 15:41:04 -0800400 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
401 (!checkIfCallerIsForegroundUser())) {
402 Log.w(TAG,"enable(): not allowed for non-active and non system user");
Zhihai Xu40874a02012-10-08 17:57:03 -0700403 return false;
fredcf2458862012-04-16 15:18:27 -0700404 }
405
Zhihai Xu401202b2012-12-03 11:36:21 -0800406 mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
407 "Need BLUETOOTH ADMIN permission");
408 if (DBG) {
409 Log.d(TAG,"enable(): mBluetooth =" + mBluetooth +
410 " mBinding = " + mBinding);
411 }
412
413 synchronized(mReceiver) {
414 mQuietEnableExternal = false;
415 mEnableExternal = true;
416 // waive WRITE_SECURE_SETTINGS permission check
417 long callingIdentity = Binder.clearCallingIdentity();
418 persistBluetoothSetting(BLUETOOTH_ON_BLUETOOTH);
419 Binder.restoreCallingIdentity(callingIdentity);
420 sendEnableMsg(false);
421 }
422 return true;
fredc0f420372012-04-12 00:02:00 -0700423 }
424
425 public boolean disable(boolean persist) {
426 mContext.enforceCallingOrSelfPermission(BLUETOOTH_ADMIN_PERM,
427 "Need BLUETOOTH ADMIN permissicacheNameAndAddresson");
Zhihai Xu40874a02012-10-08 17:57:03 -0700428
Zhihai Xu6eb76522012-11-29 15:41:04 -0800429 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
430 (!checkIfCallerIsForegroundUser())) {
431 Log.w(TAG,"disable(): not allowed for non-active and non system user");
Zhihai Xu40874a02012-10-08 17:57:03 -0700432 return false;
433 }
434
fredcf2458862012-04-16 15:18:27 -0700435 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700436 Log.d(TAG,"disable(): mBluetooth = " + mBluetooth +
437 " mBinding = " + mBinding);
438 }
fredcf2458862012-04-16 15:18:27 -0700439
Zhihai Xu401202b2012-12-03 11:36:21 -0800440 synchronized(mReceiver) {
441 if (persist) {
442 // waive WRITE_SECURE_SETTINGS permission check
443 long callingIdentity = Binder.clearCallingIdentity();
444 persistBluetoothSetting(BLUETOOTH_OFF);
445 Binder.restoreCallingIdentity(callingIdentity);
446 }
447 mEnableExternal = false;
448 sendDisableMsg();
449 }
fredc0f420372012-04-12 00:02:00 -0700450 return true;
451 }
452
fredc649fe492012-04-19 01:07:18 -0700453 public void unbindAndFinish() {
fredcf2458862012-04-16 15:18:27 -0700454 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700455 Log.d(TAG,"unbindAndFinish(): " + mBluetooth +
456 " mBinding = " + mBinding);
fredcf2458862012-04-16 15:18:27 -0700457 }
458
fredc0f420372012-04-12 00:02:00 -0700459 synchronized (mConnection) {
460 if (mUnbinding) return;
461 mUnbinding = true;
Zhihai Xu40874a02012-10-08 17:57:03 -0700462 if (mBluetooth != null) {
fredcbf072a72012-05-09 16:52:50 -0700463 if (!mConnection.isGetNameAddressOnly()) {
464 //Unregister callback object
465 try {
466 mBluetooth.unregisterCallback(mBluetoothCallback);
467 } catch (RemoteException re) {
Zhihai Xu40874a02012-10-08 17:57:03 -0700468 Log.e(TAG, "Unable to unregister BluetoothCallback",re);
fredcbf072a72012-05-09 16:52:50 -0700469 }
470 }
fredc0f420372012-04-12 00:02:00 -0700471 if (DBG) Log.d(TAG, "Sending unbind request.");
fredcd6883532012-04-25 17:46:13 -0700472 mBluetooth = null;
473 //Unbind
fredc0f420372012-04-12 00:02:00 -0700474 mContext.unbindService(mConnection);
fredcd6883532012-04-25 17:46:13 -0700475 mUnbinding = false;
Zhihai Xu40874a02012-10-08 17:57:03 -0700476 mBinding = false;
fredcf2458862012-04-16 15:18:27 -0700477 } else {
478 mUnbinding=false;
fredc0f420372012-04-12 00:02:00 -0700479 }
480 }
481 }
482
Matthew Xieddf7e472013-03-01 18:41:02 -0800483 public IBluetoothGatt getBluetoothGatt() {
484 // sync protection
485 return mBluetoothGatt;
486 }
487
fredcbf072a72012-05-09 16:52:50 -0700488 private void sendBluetoothStateCallback(boolean isUp) {
489 int n = mStateChangeCallbacks.beginBroadcast();
Freda8c6df02012-07-11 10:25:23 -0700490 if (DBG) Log.d(TAG,"Broadcasting onBluetoothStateChange("+isUp+") to " + n + " receivers.");
fredcbf072a72012-05-09 16:52:50 -0700491 for (int i=0; i <n;i++) {
492 try {
493 mStateChangeCallbacks.getBroadcastItem(i).onBluetoothStateChange(isUp);
494 } catch (RemoteException e) {
495 Log.e(TAG, "Unable to call onBluetoothStateChange() on callback #" + i , e);
496 }
497 }
498 mStateChangeCallbacks.finishBroadcast();
499 }
500
501 /**
Zhihai Xu40874a02012-10-08 17:57:03 -0700502 * Inform BluetoothAdapter instances that Adapter service is up
503 */
504 private void sendBluetoothServiceUpCallback() {
505 if (!mConnection.isGetNameAddressOnly()) {
506 if (DBG) Log.d(TAG,"Calling onBluetoothServiceUp callbacks");
507 int n = mCallbacks.beginBroadcast();
508 Log.d(TAG,"Broadcasting onBluetoothServiceUp() to " + n + " receivers.");
509 for (int i=0; i <n;i++) {
510 try {
511 mCallbacks.getBroadcastItem(i).onBluetoothServiceUp(mBluetooth);
512 } catch (RemoteException e) {
513 Log.e(TAG, "Unable to call onBluetoothServiceUp() on callback #" + i, e);
514 }
515 }
516 mCallbacks.finishBroadcast();
517 }
518 }
519 /**
fredcbf072a72012-05-09 16:52:50 -0700520 * Inform BluetoothAdapter instances that Adapter service is down
521 */
522 private void sendBluetoothServiceDownCallback() {
fredcd6883532012-04-25 17:46:13 -0700523 if (!mConnection.isGetNameAddressOnly()) {
524 if (DBG) Log.d(TAG,"Calling onBluetoothServiceDown callbacks");
525 int n = mCallbacks.beginBroadcast();
526 Log.d(TAG,"Broadcasting onBluetoothServiceDown() to " + n + " receivers.");
527 for (int i=0; i <n;i++) {
528 try {
529 mCallbacks.getBroadcastItem(i).onBluetoothServiceDown();
530 } catch (RemoteException e) {
531 Log.e(TAG, "Unable to call onBluetoothServiceDown() on callback #" + i, e);
532 }
533 }
534 mCallbacks.finishBroadcast();
535 }
536 }
fredc0f420372012-04-12 00:02:00 -0700537 public String getAddress() {
Matthew Xieaf5ddbf2012-12-04 10:47:43 -0800538 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
539 "Need BLUETOOTH permission");
Zhihai Xu40874a02012-10-08 17:57:03 -0700540
Zhihai Xu6eb76522012-11-29 15:41:04 -0800541 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
542 (!checkIfCallerIsForegroundUser())) {
543 Log.w(TAG,"getAddress(): not allowed for non-active and non system user");
544 return null;
Zhihai Xu40874a02012-10-08 17:57:03 -0700545 }
546
fredc116d1d462012-04-20 14:47:08 -0700547 synchronized(mConnection) {
548 if (mBluetooth != null) {
549 try {
550 return mBluetooth.getAddress();
551 } catch (RemoteException e) {
552 Log.e(TAG, "getAddress(): Unable to retrieve address remotely..Returning cached address",e);
553 }
554 }
555 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700556 // mAddress is accessed from outside.
557 // It is alright without a lock. Here, bluetooth is off, no other thread is
558 // changing mAddress
fredc0f420372012-04-12 00:02:00 -0700559 return mAddress;
560 }
fredc649fe492012-04-19 01:07:18 -0700561
fredc0f420372012-04-12 00:02:00 -0700562 public String getName() {
Matthew Xieaf5ddbf2012-12-04 10:47:43 -0800563 mContext.enforceCallingOrSelfPermission(BLUETOOTH_PERM,
564 "Need BLUETOOTH permission");
Zhihai Xu40874a02012-10-08 17:57:03 -0700565
Zhihai Xu6eb76522012-11-29 15:41:04 -0800566 if ((Binder.getCallingUid() != Process.SYSTEM_UID) &&
567 (!checkIfCallerIsForegroundUser())) {
568 Log.w(TAG,"getName(): not allowed for non-active and non system user");
569 return null;
Zhihai Xu40874a02012-10-08 17:57:03 -0700570 }
571
fredc116d1d462012-04-20 14:47:08 -0700572 synchronized(mConnection) {
573 if (mBluetooth != null) {
574 try {
575 return mBluetooth.getName();
576 } catch (RemoteException e) {
577 Log.e(TAG, "getName(): Unable to retrieve name remotely..Returning cached name",e);
578 }
579 }
580 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700581 // mName is accessed from outside.
582 // It alright without a lock. Here, bluetooth is off, no other thread is
583 // changing mName
fredc0f420372012-04-12 00:02:00 -0700584 return mName;
585 }
586
fredc0f420372012-04-12 00:02:00 -0700587 private class BluetoothServiceConnection implements ServiceConnection {
588
589 private boolean mGetNameAddressOnly;
590
591 public void setGetNameAddressOnly(boolean getOnly) {
592 mGetNameAddressOnly = getOnly;
593 }
594
595 public boolean isGetNameAddressOnly() {
596 return mGetNameAddressOnly;
597 }
598
599 public void onServiceConnected(ComponentName className, IBinder service) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800600 if (DBG) Log.d(TAG, "BluetoothServiceConnection: " + className.getClassName());
fredc0f420372012-04-12 00:02:00 -0700601 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_SERVICE_CONNECTED);
Matthew Xieddf7e472013-03-01 18:41:02 -0800602 // TBD if (className.getClassName().equals(IBluetooth.class.getName())) {
603 if (className.getClassName().equals("com.android.bluetooth.btservice.AdapterService")) {
604 msg.arg1 = SERVICE_IBLUETOOTH;
605 // } else if (className.getClassName().equals(IBluetoothGatt.class.getName())) {
606 } else if (className.getClassName().equals("com.android.bluetooth.gatt.GattService")) {
607 msg.arg1 = SERVICE_IBLUETOOTHGATT;
608 } else {
609 Log.e(TAG, "Unknown service connected: " + className.getClassName());
610 return;
611 }
fredc0f420372012-04-12 00:02:00 -0700612 msg.obj = service;
613 mHandler.sendMessage(msg);
614 }
615
616 public void onServiceDisconnected(ComponentName className) {
fredc0f420372012-04-12 00:02:00 -0700617 // Called if we unexpected disconnected.
Matthew Xieddf7e472013-03-01 18:41:02 -0800618 if (DBG) Log.d(TAG, "BluetoothServiceConnection, disconnected: " +
619 className.getClassName());
fredc0f420372012-04-12 00:02:00 -0700620 Message msg = mHandler.obtainMessage(MESSAGE_BLUETOOTH_SERVICE_DISCONNECTED);
Matthew Xieddf7e472013-03-01 18:41:02 -0800621 if (className.getClassName().equals("com.android.bluetooth.btservice.AdapterService")) {
622 msg.arg1 = SERVICE_IBLUETOOTH;
623 } else if (className.getClassName().equals("com.android.bluetooth.gatt.GattService")) {
624 msg.arg1 = SERVICE_IBLUETOOTHGATT;
625 } else {
626 Log.e(TAG, "Unknown service disconnected: " + className.getClassName());
627 return;
628 }
fredc0f420372012-04-12 00:02:00 -0700629 mHandler.sendMessage(msg);
630 }
631 }
632
633 private BluetoothServiceConnection mConnection = new BluetoothServiceConnection();
634
Zhihai Xu40874a02012-10-08 17:57:03 -0700635 private class BluetoothHandler extends Handler {
636 public BluetoothHandler(Looper looper) {
637 super(looper);
638 }
639
fredc0f420372012-04-12 00:02:00 -0700640 @Override
641 public void handleMessage(Message msg) {
642 if (DBG) Log.d (TAG, "Message: " + msg.what);
fredc0f420372012-04-12 00:02:00 -0700643 switch (msg.what) {
644 case MESSAGE_GET_NAME_AND_ADDRESS: {
fredc649fe492012-04-19 01:07:18 -0700645 if (DBG) Log.d(TAG,"MESSAGE_GET_NAME_AND_ADDRESS");
Matthew Xiecdce0b92012-07-12 19:06:15 -0700646 synchronized(mConnection) {
fredc0f420372012-04-12 00:02:00 -0700647 //Start bind request
Zhihai Xu40874a02012-10-08 17:57:03 -0700648 if ((mBluetooth == null) && (!mBinding)) {
fredc0f420372012-04-12 00:02:00 -0700649 if (DBG) Log.d(TAG, "Binding to service to get name and address");
650 mConnection.setGetNameAddressOnly(true);
651 //Start bind timeout and bind
652 Message timeoutMsg = mHandler.obtainMessage(MESSAGE_TIMEOUT_BIND);
653 mHandler.sendMessageDelayed(timeoutMsg,TIMEOUT_BIND_MS);
654 Intent i = new Intent(IBluetooth.class.getName());
Dianne Hackborn221ea892013-08-04 16:50:16 -0700655 if (!doBind(i, mConnection,
656 Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
fredc0f420372012-04-12 00:02:00 -0700657 mHandler.removeMessages(MESSAGE_TIMEOUT_BIND);
Zhihai Xu40874a02012-10-08 17:57:03 -0700658 } else {
659 mBinding = true;
fredc0f420372012-04-12 00:02:00 -0700660 }
661 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700662 else {
663 Message saveMsg= mHandler.obtainMessage(MESSAGE_SAVE_NAME_AND_ADDRESS);
Zhihai Xu40874a02012-10-08 17:57:03 -0700664 saveMsg.arg1 = 0;
665 if (mBluetooth != null) {
666 mHandler.sendMessage(saveMsg);
667 } else {
668 // if enable is also called to bind the service
669 // wait for MESSAGE_BLUETOOTH_SERVICE_CONNECTED
670 mHandler.sendMessageDelayed(saveMsg, TIMEOUT_SAVE_MS);
671 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700672 }
fredc0f420372012-04-12 00:02:00 -0700673 }
fredc649fe492012-04-19 01:07:18 -0700674 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700675 }
fredc0f420372012-04-12 00:02:00 -0700676 case MESSAGE_SAVE_NAME_AND_ADDRESS: {
Zhihai Xud31c3222012-10-31 16:08:57 -0700677 boolean unbind = false;
fredc649fe492012-04-19 01:07:18 -0700678 if (DBG) Log.d(TAG,"MESSAGE_SAVE_NAME_AND_ADDRESS");
Matthew Xiecdce0b92012-07-12 19:06:15 -0700679 synchronized(mConnection) {
Zhihai Xud31c3222012-10-31 16:08:57 -0700680 if (!mEnable && mBluetooth != null) {
681 try {
682 mBluetooth.enable();
683 } catch (RemoteException e) {
684 Log.e(TAG,"Unable to call enable()",e);
685 }
686 }
687 }
688 if (mBluetooth != null) waitForOnOff(true, false);
689 synchronized(mConnection) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700690 if (mBluetooth != null) {
691 String name = null;
692 String address = null;
693 try {
694 name = mBluetooth.getName();
695 address = mBluetooth.getAddress();
696 } catch (RemoteException re) {
697 Log.e(TAG,"",re);
698 }
fredc0f420372012-04-12 00:02:00 -0700699
Matthew Xiecdce0b92012-07-12 19:06:15 -0700700 if (name != null && address != null) {
701 storeNameAndAddress(name,address);
Zhihai Xu40874a02012-10-08 17:57:03 -0700702 if (mConnection.isGetNameAddressOnly()) {
Zhihai Xud31c3222012-10-31 16:08:57 -0700703 unbind = true;
Zhihai Xu40874a02012-10-08 17:57:03 -0700704 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700705 } else {
706 if (msg.arg1 < MAX_SAVE_RETRIES) {
707 Message retryMsg = mHandler.obtainMessage(MESSAGE_SAVE_NAME_AND_ADDRESS);
708 retryMsg.arg1= 1+msg.arg1;
709 if (DBG) Log.d(TAG,"Retrying name/address remote retrieval and save.....Retry count =" + retryMsg.arg1);
710 mHandler.sendMessageDelayed(retryMsg, TIMEOUT_SAVE_MS);
711 } else {
712 Log.w(TAG,"Maximum name/address remote retrieval retry exceeded");
Zhihai Xu40874a02012-10-08 17:57:03 -0700713 if (mConnection.isGetNameAddressOnly()) {
Zhihai Xud31c3222012-10-31 16:08:57 -0700714 unbind = true;
Zhihai Xu40874a02012-10-08 17:57:03 -0700715 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700716 }
fredc0f420372012-04-12 00:02:00 -0700717 }
Zhihai Xud31c3222012-10-31 16:08:57 -0700718 if (!mEnable) {
719 try {
720 mBluetooth.disable();
721 } catch (RemoteException e) {
722 Log.e(TAG,"Unable to call disable()",e);
723 }
724 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700725 } else {
726 // rebind service by Request GET NAME AND ADDRESS
727 // if service is unbinded by disable or
728 // MESSAGE_BLUETOOTH_SERVICE_CONNECTED is not received
729 Message getMsg = mHandler.obtainMessage(MESSAGE_GET_NAME_AND_ADDRESS);
730 mHandler.sendMessage(getMsg);
fredc0f420372012-04-12 00:02:00 -0700731 }
732 }
Zhihai Xud31c3222012-10-31 16:08:57 -0700733 if (!mEnable && mBluetooth != null) waitForOnOff(false, true);
734 if (unbind) {
735 unbindAndFinish();
736 }
fredc649fe492012-04-19 01:07:18 -0700737 break;
fredc649fe492012-04-19 01:07:18 -0700738 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700739 case MESSAGE_ENABLE:
fredcf2458862012-04-16 15:18:27 -0700740 if (DBG) {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700741 Log.d(TAG, "MESSAGE_ENABLE: mBluetooth = " + mBluetooth);
fredc649fe492012-04-19 01:07:18 -0700742 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700743 mHandler.removeMessages(MESSAGE_RESTART_BLUETOOTH_SERVICE);
744 mEnable = true;
Zhihai Xu401202b2012-12-03 11:36:21 -0800745 handleEnable(msg.arg1 == 1);
fredc649fe492012-04-19 01:07:18 -0700746 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700747
fredc0f420372012-04-12 00:02:00 -0700748 case MESSAGE_DISABLE:
Zhihai Xu40874a02012-10-08 17:57:03 -0700749 mHandler.removeMessages(MESSAGE_RESTART_BLUETOOTH_SERVICE);
750 if (mEnable && mBluetooth != null) {
751 waitForOnOff(true, false);
752 mEnable = false;
Zhihai Xu401202b2012-12-03 11:36:21 -0800753 handleDisable();
Zhihai Xu40874a02012-10-08 17:57:03 -0700754 waitForOnOff(false, false);
755 } else {
756 mEnable = false;
Zhihai Xu401202b2012-12-03 11:36:21 -0800757 handleDisable();
Zhihai Xu40874a02012-10-08 17:57:03 -0700758 }
fredc0f420372012-04-12 00:02:00 -0700759 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700760
fredc0f420372012-04-12 00:02:00 -0700761 case MESSAGE_REGISTER_ADAPTER:
762 {
763 IBluetoothManagerCallback callback = (IBluetoothManagerCallback) msg.obj;
fredcd6883532012-04-25 17:46:13 -0700764 boolean added = mCallbacks.register(callback);
765 Log.d(TAG,"Added callback: " + (callback == null? "null": callback) +":" +added );
fredc0f420372012-04-12 00:02:00 -0700766 }
767 break;
768 case MESSAGE_UNREGISTER_ADAPTER:
769 {
770 IBluetoothManagerCallback callback = (IBluetoothManagerCallback) msg.obj;
fredcd6883532012-04-25 17:46:13 -0700771 boolean removed = mCallbacks.unregister(callback);
772 Log.d(TAG,"Removed callback: " + (callback == null? "null": callback) +":" + removed);
fredc0f420372012-04-12 00:02:00 -0700773 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700774 }
fredc0f420372012-04-12 00:02:00 -0700775 case MESSAGE_REGISTER_STATE_CHANGE_CALLBACK:
776 {
777 IBluetoothStateChangeCallback callback = (IBluetoothStateChangeCallback) msg.obj;
Matthew Xie9b693992013-10-10 11:21:40 -0700778 if (callback != null) {
779 mStateChangeCallbacks.register(callback);
780 }
fredc0f420372012-04-12 00:02:00 -0700781 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700782 }
fredc0f420372012-04-12 00:02:00 -0700783 case MESSAGE_UNREGISTER_STATE_CHANGE_CALLBACK:
784 {
785 IBluetoothStateChangeCallback callback = (IBluetoothStateChangeCallback) msg.obj;
Matthew Xie9b693992013-10-10 11:21:40 -0700786 if (callback != null) {
787 mStateChangeCallbacks.unregister(callback);
788 }
fredc0f420372012-04-12 00:02:00 -0700789 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700790 }
fredc0f420372012-04-12 00:02:00 -0700791 case MESSAGE_BLUETOOTH_SERVICE_CONNECTED:
792 {
Matthew Xieddf7e472013-03-01 18:41:02 -0800793 if (DBG) Log.d(TAG,"MESSAGE_BLUETOOTH_SERVICE_CONNECTED: " + msg.arg1);
fredc0f420372012-04-12 00:02:00 -0700794
795 IBinder service = (IBinder) msg.obj;
796 synchronized(mConnection) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800797 if (msg.arg1 == SERVICE_IBLUETOOTHGATT) {
798 mBluetoothGatt = IBluetoothGatt.Stub.asInterface(service);
799 break;
800 } // else must be SERVICE_IBLUETOOTH
801
802 //Remove timeout
Zhihai Xuaf5971e2013-06-10 20:28:31 -0700803 mHandler.removeMessages(MESSAGE_TIMEOUT_BIND);
Matthew Xieddf7e472013-03-01 18:41:02 -0800804
fredc0f420372012-04-12 00:02:00 -0700805 mBinding = false;
806 mBluetooth = IBluetooth.Stub.asInterface(service);
fredc0f420372012-04-12 00:02:00 -0700807
Zhihai Xuaf5971e2013-06-10 20:28:31 -0700808 try {
809 boolean enableHciSnoopLog = (Settings.Secure.getInt(mContentResolver,
810 Settings.Secure.BLUETOOTH_HCI_LOG, 0) == 1);
811 if (!mBluetooth.configHciSnoopLog(enableHciSnoopLog)) {
812 Log.e(TAG,"IBluetooth.configHciSnoopLog return false");
813 }
814 } catch (RemoteException e) {
815 Log.e(TAG,"Unable to call configHciSnoopLog", e);
816 }
817
Matthew Xiecdce0b92012-07-12 19:06:15 -0700818 if (mConnection.isGetNameAddressOnly()) {
819 //Request GET NAME AND ADDRESS
820 Message getMsg = mHandler.obtainMessage(MESSAGE_GET_NAME_AND_ADDRESS);
821 mHandler.sendMessage(getMsg);
Zhihai Xu40874a02012-10-08 17:57:03 -0700822 if (!mEnable) return;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700823 }
fredc0f420372012-04-12 00:02:00 -0700824
Zhihai Xu40874a02012-10-08 17:57:03 -0700825 mConnection.setGetNameAddressOnly(false);
Matthew Xiecdce0b92012-07-12 19:06:15 -0700826 //Register callback object
fredcbf072a72012-05-09 16:52:50 -0700827 try {
Matthew Xiecdce0b92012-07-12 19:06:15 -0700828 mBluetooth.registerCallback(mBluetoothCallback);
829 } catch (RemoteException re) {
830 Log.e(TAG, "Unable to register BluetoothCallback",re);
fredcbf072a72012-05-09 16:52:50 -0700831 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700832 //Inform BluetoothAdapter instances that service is up
Zhihai Xu40874a02012-10-08 17:57:03 -0700833 sendBluetoothServiceUpCallback();
834
Matthew Xiecdce0b92012-07-12 19:06:15 -0700835 //Do enable request
836 try {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -0700837 if (mQuietEnable == false) {
838 if(!mBluetooth.enable()) {
839 Log.e(TAG,"IBluetooth.enable() returned false");
840 }
841 }
842 else
843 {
844 if(!mBluetooth.enableNoAutoConnect()) {
845 Log.e(TAG,"IBluetooth.enableNoAutoConnect() returned false");
846 }
Matthew Xiecdce0b92012-07-12 19:06:15 -0700847 }
848 } catch (RemoteException e) {
849 Log.e(TAG,"Unable to call enable()",e);
850 }
Freda8c6df02012-07-11 10:25:23 -0700851 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700852
853 if (!mEnable) {
854 waitForOnOff(true, false);
Zhihai Xu401202b2012-12-03 11:36:21 -0800855 handleDisable();
Zhihai Xu40874a02012-10-08 17:57:03 -0700856 waitForOnOff(false, false);
857 }
fredc649fe492012-04-19 01:07:18 -0700858 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700859 }
fredc649fe492012-04-19 01:07:18 -0700860 case MESSAGE_TIMEOUT_BIND: {
861 Log.e(TAG, "MESSAGE_TIMEOUT_BIND");
fredc0f420372012-04-12 00:02:00 -0700862 synchronized(mConnection) {
863 mBinding = false;
864 }
fredc649fe492012-04-19 01:07:18 -0700865 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700866 }
fredcbf072a72012-05-09 16:52:50 -0700867 case MESSAGE_BLUETOOTH_STATE_CHANGE:
fredc0f420372012-04-12 00:02:00 -0700868 {
fredcbf072a72012-05-09 16:52:50 -0700869 int prevState = msg.arg1;
870 int newState = msg.arg2;
871 if (DBG) Log.d(TAG, "MESSAGE_BLUETOOTH_STATE_CHANGE: prevState = " + prevState + ", newState=" + newState);
Zhihai Xu40874a02012-10-08 17:57:03 -0700872 mState = newState;
873 bluetoothStateChangeHandler(prevState, newState);
Zhihai Xudd9d17d2013-01-08 17:05:58 -0800874 // handle error state transition case from TURNING_ON to OFF
875 // unbind and rebind bluetooth service and enable bluetooth
876 if ((prevState == BluetoothAdapter.STATE_TURNING_ON) &&
877 (newState == BluetoothAdapter.STATE_OFF) &&
878 (mBluetooth != null) && mEnable) {
879 recoverBluetoothServiceFromError();
880 }
881 if (newState == BluetoothAdapter.STATE_ON) {
882 // bluetooth is working, reset the counter
883 if (mErrorRecoveryRetryCounter != 0) {
884 Log.w(TAG, "bluetooth is recovered from error");
885 mErrorRecoveryRetryCounter = 0;
886 }
887 }
fredc649fe492012-04-19 01:07:18 -0700888 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700889 }
fredc0f420372012-04-12 00:02:00 -0700890 case MESSAGE_BLUETOOTH_SERVICE_DISCONNECTED:
891 {
Matthew Xieddf7e472013-03-01 18:41:02 -0800892 Log.e(TAG, "MESSAGE_BLUETOOTH_SERVICE_DISCONNECTED: " + msg.arg1);
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530893 synchronized(mConnection) {
Matthew Xieddf7e472013-03-01 18:41:02 -0800894 if (msg.arg1 == SERVICE_IBLUETOOTH) {
895 // if service is unbinded already, do nothing and return
896 if (mBluetooth == null) break;
897 mBluetooth = null;
898 } else if (msg.arg1 == SERVICE_IBLUETOOTHGATT) {
899 mBluetoothGatt = null;
900 break;
901 } else {
902 Log.e(TAG, "Bad msg.arg1: " + msg.arg1);
903 break;
904 }
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530905 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700906
907 if (mEnable) {
908 mEnable = false;
909 // Send a Bluetooth Restart message
910 Message restartMsg = mHandler.obtainMessage(
911 MESSAGE_RESTART_BLUETOOTH_SERVICE);
912 mHandler.sendMessageDelayed(restartMsg,
913 SERVICE_RESTART_TIME_MS);
914 }
915
916 if (!mConnection.isGetNameAddressOnly()) {
917 sendBluetoothServiceDownCallback();
918
919 // Send BT state broadcast to update
920 // the BT icon correctly
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800921 if ((mState == BluetoothAdapter.STATE_TURNING_ON) ||
922 (mState == BluetoothAdapter.STATE_ON)) {
923 bluetoothStateChangeHandler(BluetoothAdapter.STATE_ON,
924 BluetoothAdapter.STATE_TURNING_OFF);
925 mState = BluetoothAdapter.STATE_TURNING_OFF;
926 }
927 if (mState == BluetoothAdapter.STATE_TURNING_OFF) {
928 bluetoothStateChangeHandler(BluetoothAdapter.STATE_TURNING_OFF,
929 BluetoothAdapter.STATE_OFF);
930 }
931
932 mHandler.removeMessages(MESSAGE_BLUETOOTH_STATE_CHANGE);
Zhihai Xu40874a02012-10-08 17:57:03 -0700933 mState = BluetoothAdapter.STATE_OFF;
934 }
fredc649fe492012-04-19 01:07:18 -0700935 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700936 }
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530937 case MESSAGE_RESTART_BLUETOOTH_SERVICE:
938 {
939 Log.d(TAG, "MESSAGE_RESTART_BLUETOOTH_SERVICE:"
940 +" Restart IBluetooth service");
941 /* Enable without persisting the setting as
942 it doesnt change when IBluetooth
943 service restarts */
Zhihai Xu40874a02012-10-08 17:57:03 -0700944 mEnable = true;
Zhihai Xu401202b2012-12-03 11:36:21 -0800945 handleEnable(mQuietEnable);
Syed Ibrahim M1223e5a2012-08-29 18:07:26 +0530946 break;
947 }
948
fredc0f420372012-04-12 00:02:00 -0700949 case MESSAGE_TIMEOUT_UNBIND:
950 {
fredc649fe492012-04-19 01:07:18 -0700951 Log.e(TAG, "MESSAGE_TIMEOUT_UNBIND");
fredc0f420372012-04-12 00:02:00 -0700952 synchronized(mConnection) {
953 mUnbinding = false;
954 }
fredc649fe492012-04-19 01:07:18 -0700955 break;
Matthew Xiecdce0b92012-07-12 19:06:15 -0700956 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700957
958 case MESSAGE_USER_SWITCHED:
959 {
960 if (DBG) {
961 Log.d(TAG, "MESSAGE_USER_SWITCHED");
962 }
963 mHandler.removeMessages(MESSAGE_USER_SWITCHED);
964 /* disable and enable BT when detect a user switch */
965 if (mEnable && mBluetooth != null) {
966 synchronized (mConnection) {
967 if (mBluetooth != null) {
968 //Unregister callback object
969 try {
970 mBluetooth.unregisterCallback(mBluetoothCallback);
971 } catch (RemoteException re) {
972 Log.e(TAG, "Unable to unregister",re);
973 }
974 }
975 }
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800976
977 if (mState == BluetoothAdapter.STATE_TURNING_OFF) {
978 // MESSAGE_USER_SWITCHED happened right after MESSAGE_ENABLE
979 bluetoothStateChangeHandler(mState, BluetoothAdapter.STATE_OFF);
980 mState = BluetoothAdapter.STATE_OFF;
981 }
982 if (mState == BluetoothAdapter.STATE_OFF) {
983 bluetoothStateChangeHandler(mState, BluetoothAdapter.STATE_TURNING_ON);
984 mState = BluetoothAdapter.STATE_TURNING_ON;
985 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700986
987 waitForOnOff(true, false);
988
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800989 if (mState == BluetoothAdapter.STATE_TURNING_ON) {
990 bluetoothStateChangeHandler(mState, BluetoothAdapter.STATE_ON);
991 }
Zhihai Xu40874a02012-10-08 17:57:03 -0700992
993 // disable
Zhihai Xu401202b2012-12-03 11:36:21 -0800994 handleDisable();
Zhihai Xu4e22ad32012-11-13 15:11:26 -0800995 // Pbap service need receive STATE_TURNING_OFF intent to close
996 bluetoothStateChangeHandler(BluetoothAdapter.STATE_ON,
997 BluetoothAdapter.STATE_TURNING_OFF);
Zhihai Xu40874a02012-10-08 17:57:03 -0700998
999 waitForOnOff(false, true);
1000
Zhihai Xu4e22ad32012-11-13 15:11:26 -08001001 bluetoothStateChangeHandler(BluetoothAdapter.STATE_TURNING_OFF,
Zhihai Xu40874a02012-10-08 17:57:03 -07001002 BluetoothAdapter.STATE_OFF);
Zhihai Xu40874a02012-10-08 17:57:03 -07001003 sendBluetoothServiceDownCallback();
1004 synchronized (mConnection) {
1005 if (mBluetooth != null) {
1006 mBluetooth = null;
1007 //Unbind
1008 mContext.unbindService(mConnection);
1009 }
1010 }
1011 SystemClock.sleep(100);
1012
Zhihai Xu4e22ad32012-11-13 15:11:26 -08001013 mHandler.removeMessages(MESSAGE_BLUETOOTH_STATE_CHANGE);
1014 mState = BluetoothAdapter.STATE_OFF;
Zhihai Xu40874a02012-10-08 17:57:03 -07001015 // enable
Zhihai Xu401202b2012-12-03 11:36:21 -08001016 handleEnable(mQuietEnable);
John Spurlock8a985d22014-02-25 09:40:05 -05001017 } else if (mBinding || mBluetooth != null) {
Zhihai Xu40874a02012-10-08 17:57:03 -07001018 Message userMsg = mHandler.obtainMessage(MESSAGE_USER_SWITCHED);
1019 userMsg.arg2 = 1 + msg.arg2;
1020 // if user is switched when service is being binding
1021 // delay sending MESSAGE_USER_SWITCHED
1022 mHandler.sendMessageDelayed(userMsg, USER_SWITCHED_TIME_MS);
1023 if (DBG) {
1024 Log.d(TAG, "delay MESSAGE_USER_SWITCHED " + userMsg.arg2);
1025 }
John Spurlock8a985d22014-02-25 09:40:05 -05001026 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001027 break;
1028 }
fredc0f420372012-04-12 00:02:00 -07001029 }
1030 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001031 }
Matthew Xiecdce0b92012-07-12 19:06:15 -07001032
Zhihai Xu401202b2012-12-03 11:36:21 -08001033 private void handleEnable(boolean quietMode) {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -07001034 mQuietEnable = quietMode;
1035
Matthew Xiecdce0b92012-07-12 19:06:15 -07001036 synchronized(mConnection) {
Zhihai Xu40874a02012-10-08 17:57:03 -07001037 if ((mBluetooth == null) && (!mBinding)) {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001038 //Start bind timeout and bind
1039 Message timeoutMsg=mHandler.obtainMessage(MESSAGE_TIMEOUT_BIND);
1040 mHandler.sendMessageDelayed(timeoutMsg,TIMEOUT_BIND_MS);
1041 mConnection.setGetNameAddressOnly(false);
1042 Intent i = new Intent(IBluetooth.class.getName());
Dianne Hackborn221ea892013-08-04 16:50:16 -07001043 if (!doBind(i, mConnection,Context.BIND_AUTO_CREATE, UserHandle.CURRENT)) {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001044 mHandler.removeMessages(MESSAGE_TIMEOUT_BIND);
Zhihai Xu40874a02012-10-08 17:57:03 -07001045 } else {
1046 mBinding = true;
Matthew Xiecdce0b92012-07-12 19:06:15 -07001047 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001048 } else if (mBluetooth != null) {
1049 if (mConnection.isGetNameAddressOnly()) {
1050 // if GetNameAddressOnly is set, we can clear this flag,
1051 // so the service won't be unbind
1052 // after name and address are saved
1053 mConnection.setGetNameAddressOnly(false);
1054 //Register callback object
1055 try {
1056 mBluetooth.registerCallback(mBluetoothCallback);
1057 } catch (RemoteException re) {
1058 Log.e(TAG, "Unable to register BluetoothCallback",re);
1059 }
1060 //Inform BluetoothAdapter instances that service is up
1061 sendBluetoothServiceUpCallback();
1062 }
1063
Matthew Xiecdce0b92012-07-12 19:06:15 -07001064 //Enable bluetooth
1065 try {
Ganesh Ganapathi Battafffa86b2012-08-08 15:35:49 -07001066 if (!mQuietEnable) {
1067 if(!mBluetooth.enable()) {
1068 Log.e(TAG,"IBluetooth.enable() returned false");
1069 }
1070 }
1071 else {
1072 if(!mBluetooth.enableNoAutoConnect()) {
1073 Log.e(TAG,"IBluetooth.enableNoAutoConnect() returned false");
1074 }
Matthew Xiecdce0b92012-07-12 19:06:15 -07001075 }
1076 } catch (RemoteException e) {
1077 Log.e(TAG,"Unable to call enable()",e);
1078 }
1079 }
1080 }
1081 }
1082
Dianne Hackborn221ea892013-08-04 16:50:16 -07001083 boolean doBind(Intent intent, ServiceConnection conn, int flags, UserHandle user) {
1084 ComponentName comp = intent.resolveSystemService(mContext.getPackageManager(), 0);
1085 intent.setComponent(comp);
1086 if (comp == null || !mContext.bindServiceAsUser(intent, conn, flags, user)) {
1087 Log.e(TAG, "Fail to bind to: " + intent);
1088 return false;
1089 }
1090 return true;
1091 }
1092
Zhihai Xu401202b2012-12-03 11:36:21 -08001093 private void handleDisable() {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001094 synchronized(mConnection) {
Zhihai Xu40874a02012-10-08 17:57:03 -07001095 // don't need to disable if GetNameAddressOnly is set,
1096 // service will be unbinded after Name and Address are saved
1097 if ((mBluetooth != null) && (!mConnection.isGetNameAddressOnly())) {
Matthew Xiecdce0b92012-07-12 19:06:15 -07001098 if (DBG) Log.d(TAG,"Sending off request.");
1099
1100 try {
1101 if(!mBluetooth.disable()) {
1102 Log.e(TAG,"IBluetooth.disable() returned false");
1103 }
1104 } catch (RemoteException e) {
1105 Log.e(TAG,"Unable to call disable()",e);
1106 }
1107 }
1108 }
1109 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001110
1111 private boolean checkIfCallerIsForegroundUser() {
1112 int foregroundUser;
1113 int callingUser = UserHandle.getCallingUserId();
Martijn Coenen8385c5a2012-11-29 10:14:16 -08001114 int callingUid = Binder.getCallingUid();
Zhihai Xu40874a02012-10-08 17:57:03 -07001115 long callingIdentity = Binder.clearCallingIdentity();
Martijn Coenen8385c5a2012-11-29 10:14:16 -08001116 int callingAppId = UserHandle.getAppId(callingUid);
Zhihai Xu40874a02012-10-08 17:57:03 -07001117 boolean valid = false;
1118 try {
1119 foregroundUser = ActivityManager.getCurrentUser();
Martijn Coenen8385c5a2012-11-29 10:14:16 -08001120 valid = (callingUser == foregroundUser) ||
1121 callingAppId == Process.NFC_UID;
Zhihai Xu40874a02012-10-08 17:57:03 -07001122 if (DBG) {
1123 Log.d(TAG, "checkIfCallerIsForegroundUser: valid=" + valid
1124 + " callingUser=" + callingUser
1125 + " foregroundUser=" + foregroundUser);
1126 }
1127 } finally {
1128 Binder.restoreCallingIdentity(callingIdentity);
1129 }
1130 return valid;
1131 }
1132
Zhihai Xu40874a02012-10-08 17:57:03 -07001133 private void bluetoothStateChangeHandler(int prevState, int newState) {
1134 if (prevState != newState) {
1135 //Notify all proxy objects first of adapter state change
1136 if (newState == BluetoothAdapter.STATE_ON || newState == BluetoothAdapter.STATE_OFF) {
1137 boolean isUp = (newState==BluetoothAdapter.STATE_ON);
1138 sendBluetoothStateCallback(isUp);
1139
Matthew Xieddf7e472013-03-01 18:41:02 -08001140 if (isUp) {
1141 // connect to GattService
Matthew Xie32ab77b2013-05-08 19:26:57 -07001142 if (mContext.getPackageManager().hasSystemFeature(
1143 PackageManager.FEATURE_BLUETOOTH_LE)) {
1144 Intent i = new Intent(IBluetoothGatt.class.getName());
Dianne Hackborn221ea892013-08-04 16:50:16 -07001145 doBind(i, mConnection, Context.BIND_AUTO_CREATE, UserHandle.CURRENT);
Matthew Xieddf7e472013-03-01 18:41:02 -08001146 }
1147 } else {
1148 //If Bluetooth is off, send service down event to proxy objects, and unbind
1149 if (!isUp && canUnbindBluetoothService()) {
1150 sendBluetoothServiceDownCallback();
1151 unbindAndFinish();
1152 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001153 }
1154 }
1155
1156 //Send broadcast message to everyone else
1157 Intent intent = new Intent(BluetoothAdapter.ACTION_STATE_CHANGED);
1158 intent.putExtra(BluetoothAdapter.EXTRA_PREVIOUS_STATE, prevState);
1159 intent.putExtra(BluetoothAdapter.EXTRA_STATE, newState);
1160 intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
1161 if (DBG) Log.d(TAG,"Bluetooth State Change Intent: " + prevState + " -> " + newState);
1162 mContext.sendBroadcastAsUser(intent, UserHandle.ALL,
1163 BLUETOOTH_PERM);
1164 }
1165 }
1166
1167 /**
1168 * if on is true, wait for state become ON
1169 * if off is true, wait for state become OFF
1170 * if both on and off are false, wait for state not ON
1171 */
1172 private boolean waitForOnOff(boolean on, boolean off) {
1173 int i = 0;
1174 while (i < 10) {
1175 synchronized(mConnection) {
1176 try {
1177 if (mBluetooth == null) break;
1178 if (on) {
1179 if (mBluetooth.getState() == BluetoothAdapter.STATE_ON) return true;
1180 } else if (off) {
1181 if (mBluetooth.getState() == BluetoothAdapter.STATE_OFF) return true;
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001182 } else {
Zhihai Xu40874a02012-10-08 17:57:03 -07001183 if (mBluetooth.getState() != BluetoothAdapter.STATE_ON) return true;
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001184 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001185 } catch (RemoteException e) {
1186 Log.e(TAG, "getState()", e);
1187 break;
1188 }
1189 }
1190 if (on || off) {
1191 SystemClock.sleep(300);
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001192 } else {
Zhihai Xu40874a02012-10-08 17:57:03 -07001193 SystemClock.sleep(50);
Robert Greenwalt665e1ae2012-08-21 19:27:00 -07001194 }
Zhihai Xu40874a02012-10-08 17:57:03 -07001195 i++;
1196 }
1197 Log.e(TAG,"waitForOnOff time out");
1198 return false;
1199 }
Zhihai Xu681ae7f2012-11-12 15:14:18 -08001200
Zhihai Xu401202b2012-12-03 11:36:21 -08001201 private void sendDisableMsg() {
1202 mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_DISABLE));
1203 }
1204
1205 private void sendEnableMsg(boolean quietMode) {
1206 mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_ENABLE,
1207 quietMode ? 1 : 0, 0));
1208 }
1209
Zhihai Xu681ae7f2012-11-12 15:14:18 -08001210 private boolean canUnbindBluetoothService() {
1211 synchronized(mConnection) {
1212 //Only unbind with mEnable flag not set
1213 //For race condition: disable and enable back-to-back
1214 //Avoid unbind right after enable due to callback from disable
1215 //Only unbind with Bluetooth at OFF state
1216 //Only unbind without any MESSAGE_BLUETOOTH_STATE_CHANGE message
1217 try {
1218 if (mEnable || (mBluetooth == null)) return false;
1219 if (mHandler.hasMessages(MESSAGE_BLUETOOTH_STATE_CHANGE)) return false;
1220 return (mBluetooth.getState() == BluetoothAdapter.STATE_OFF);
1221 } catch (RemoteException e) {
1222 Log.e(TAG, "getState()", e);
1223 }
1224 }
1225 return false;
1226 }
Zhihai Xudd9d17d2013-01-08 17:05:58 -08001227
1228 private void recoverBluetoothServiceFromError() {
1229 Log.e(TAG,"recoverBluetoothServiceFromError");
1230 synchronized (mConnection) {
1231 if (mBluetooth != null) {
1232 //Unregister callback object
1233 try {
1234 mBluetooth.unregisterCallback(mBluetoothCallback);
1235 } catch (RemoteException re) {
1236 Log.e(TAG, "Unable to unregister",re);
1237 }
1238 }
1239 }
1240
1241 SystemClock.sleep(500);
1242
1243 // disable
1244 handleDisable();
1245
1246 waitForOnOff(false, true);
1247
1248 sendBluetoothServiceDownCallback();
1249 synchronized (mConnection) {
1250 if (mBluetooth != null) {
1251 mBluetooth = null;
1252 //Unbind
1253 mContext.unbindService(mConnection);
1254 }
1255 }
1256
1257 mHandler.removeMessages(MESSAGE_BLUETOOTH_STATE_CHANGE);
1258 mState = BluetoothAdapter.STATE_OFF;
1259
1260 mEnable = false;
1261
1262 if (mErrorRecoveryRetryCounter++ < MAX_ERROR_RESTART_RETRIES) {
1263 // Send a Bluetooth Restart message to reenable bluetooth
1264 Message restartMsg = mHandler.obtainMessage(
1265 MESSAGE_RESTART_BLUETOOTH_SERVICE);
1266 mHandler.sendMessageDelayed(restartMsg, ERROR_RESTART_TIME_MS);
1267 } else {
1268 // todo: notify user to power down and power up phone to make bluetooth work.
1269 }
1270 }
fredc0f420372012-04-12 00:02:00 -07001271}