blob: dc4b1158c1cf1ad266361bc4e75b9e2dae5347a6 [file] [log] [blame]
John Spurlockaf8d6c42014-05-07 17:49:08 -04001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.systemui.statusbar.policy;
18
Sudheer Shankab6fc9312016-01-27 19:59:03 +000019import android.app.ActivityManager;
John Spurlockaf8d6c42014-05-07 17:49:08 -040020import android.bluetooth.BluetoothAdapter;
Jason Monk9ef03b42017-06-13 12:49:55 -040021import android.bluetooth.BluetoothDevice;
22import android.bluetooth.BluetoothProfile;
John Spurlockaf8d6c42014-05-07 17:49:08 -040023import android.content.Context;
Jason Monk744cf642015-05-19 12:04:41 -040024import android.os.Handler;
Jason Monk4ae97d32014-12-17 10:14:33 -050025import android.os.Looper;
Jason Monk744cf642015-05-19 12:04:41 -040026import android.os.Message;
Sudheer Shankab6fc9312016-01-27 19:59:03 +000027import android.os.UserHandle;
28import android.os.UserManager;
John Spurlock486b78e2014-07-07 08:37:56 -040029import android.util.Log;
John Spurlockaf8d6c42014-05-07 17:49:08 -040030
Jason Monkbe3c5db2015-02-04 13:00:55 -050031import com.android.settingslib.bluetooth.BluetoothCallback;
32import com.android.settingslib.bluetooth.CachedBluetoothDevice;
33import com.android.settingslib.bluetooth.LocalBluetoothManager;
Jason Monk6a73e632017-03-17 11:08:30 -040034import com.android.systemui.Dependency;
John Spurlock486b78e2014-07-07 08:37:56 -040035
36import java.io.FileDescriptor;
37import java.io.PrintWriter;
Jason Monk9ef03b42017-06-13 12:49:55 -040038import java.lang.ref.WeakReference;
John Spurlockaf8d6c42014-05-07 17:49:08 -040039import java.util.ArrayList;
Jason Monkbe3c5db2015-02-04 13:00:55 -050040import java.util.Collection;
Jason Monk9ef03b42017-06-13 12:49:55 -040041import java.util.WeakHashMap;
John Spurlockaf8d6c42014-05-07 17:49:08 -040042
Jason Monkbe3c5db2015-02-04 13:00:55 -050043public class BluetoothControllerImpl implements BluetoothController, BluetoothCallback,
44 CachedBluetoothDevice.Callback {
John Spurlock486b78e2014-07-07 08:37:56 -040045 private static final String TAG = "BluetoothController";
46 private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
Jason Monk4ae97d32014-12-17 10:14:33 -050047
Jason Monkbe3c5db2015-02-04 13:00:55 -050048 private final LocalBluetoothManager mLocalBluetoothManager;
Sudheer Shankab6fc9312016-01-27 19:59:03 +000049 private final UserManager mUserManager;
50 private final int mCurrentUser;
Jason Monk9ef03b42017-06-13 12:49:55 -040051 private final WeakHashMap<CachedBluetoothDevice, ActuallyCachedState> mCachedState =
52 new WeakHashMap<>();
53 private final Handler mBgHandler;
Jason Monk4ae97d32014-12-17 10:14:33 -050054
John Spurlockd1c86e22014-06-01 00:04:53 -040055 private boolean mEnabled;
Jason Monka7d92b62015-05-27 10:20:37 -040056 private int mConnectionState = BluetoothAdapter.STATE_DISCONNECTED;
Jason Monkbe3c5db2015-02-04 13:00:55 -050057 private CachedBluetoothDevice mLastDevice;
John Spurlockaf8d6c42014-05-07 17:49:08 -040058
Jason Monk9ef03b42017-06-13 12:49:55 -040059 private final H mHandler = new H(Looper.getMainLooper());
Jason Monkfac25382016-07-19 14:13:37 -040060 private int mState;
Jason Monk744cf642015-05-19 12:04:41 -040061
Jason Monk4ae97d32014-12-17 10:14:33 -050062 public BluetoothControllerImpl(Context context, Looper bgLooper) {
Jason Monk6a73e632017-03-17 11:08:30 -040063 mLocalBluetoothManager = Dependency.get(LocalBluetoothManager.class);
Jason Monk9ef03b42017-06-13 12:49:55 -040064 mBgHandler = new Handler(bgLooper);
Jason Monkbe3c5db2015-02-04 13:00:55 -050065 if (mLocalBluetoothManager != null) {
Jason Monk9ef03b42017-06-13 12:49:55 -040066 mLocalBluetoothManager.getEventManager().setReceiverHandler(mBgHandler);
Jason Monkbe3c5db2015-02-04 13:00:55 -050067 mLocalBluetoothManager.getEventManager().registerCallback(this);
68 onBluetoothStateChanged(
69 mLocalBluetoothManager.getBluetoothAdapter().getBluetoothState());
John Spurlockaf8d6c42014-05-07 17:49:08 -040070 }
Sudheer Shankab6fc9312016-01-27 19:59:03 +000071 mUserManager = (UserManager) context.getSystemService(Context.USER_SERVICE);
72 mCurrentUser = ActivityManager.getCurrentUser();
73 }
74
75 @Override
76 public boolean canConfigBluetooth() {
77 return !mUserManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_BLUETOOTH,
78 UserHandle.of(mCurrentUser));
John Spurlockaf8d6c42014-05-07 17:49:08 -040079 }
80
John Spurlock486b78e2014-07-07 08:37:56 -040081 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
82 pw.println("BluetoothController state:");
Jason Monkbe3c5db2015-02-04 13:00:55 -050083 pw.print(" mLocalBluetoothManager="); pw.println(mLocalBluetoothManager);
Jason Monk09389a92015-05-19 16:06:52 -040084 if (mLocalBluetoothManager == null) {
85 return;
86 }
John Spurlock486b78e2014-07-07 08:37:56 -040087 pw.print(" mEnabled="); pw.println(mEnabled);
Jason Monka7d92b62015-05-27 10:20:37 -040088 pw.print(" mConnectionState="); pw.println(stateToString(mConnectionState));
John Spurlock486b78e2014-07-07 08:37:56 -040089 pw.print(" mLastDevice="); pw.println(mLastDevice);
Adrian Roosa4b54862016-06-17 14:28:27 -070090 pw.print(" mCallbacks.size="); pw.println(mHandler.mCallbacks.size());
Jason Monkbe3c5db2015-02-04 13:00:55 -050091 pw.println(" Bluetooth Devices:");
92 for (CachedBluetoothDevice device :
93 mLocalBluetoothManager.getCachedDeviceManager().getCachedDevicesCopy()) {
94 pw.println(" " + getDeviceString(device));
John Spurlock486b78e2014-07-07 08:37:56 -040095 }
96 }
97
Jason Monka7d92b62015-05-27 10:20:37 -040098 private static String stateToString(int state) {
99 switch (state) {
100 case BluetoothAdapter.STATE_CONNECTED:
101 return "CONNECTED";
102 case BluetoothAdapter.STATE_CONNECTING:
103 return "CONNECTING";
104 case BluetoothAdapter.STATE_DISCONNECTED:
105 return "DISCONNECTED";
106 case BluetoothAdapter.STATE_DISCONNECTING:
107 return "DISCONNECTING";
108 }
109 return "UNKNOWN(" + state + ")";
110 }
111
Jason Monkbe3c5db2015-02-04 13:00:55 -0500112 private String getDeviceString(CachedBluetoothDevice device) {
113 return device.getName() + " " + device.getBondState() + " " + device.isConnected();
John Spurlock486b78e2014-07-07 08:37:56 -0400114 }
115
Jason Monka7d92b62015-05-27 10:20:37 -0400116 @Override
Jason Monk9ef03b42017-06-13 12:49:55 -0400117 public int getBondState(CachedBluetoothDevice device) {
118 return getCachedState(device).mBondState;
119 }
120
121 @Override
122 public int getMaxConnectionState(CachedBluetoothDevice device) {
123 return getCachedState(device).mMaxConnectionState;
124 }
125
126 @Override
Jason Monk88529052016-11-04 13:29:58 -0400127 public void addCallback(Callback cb) {
Adrian Roosa4b54862016-06-17 14:28:27 -0700128 mHandler.obtainMessage(H.MSG_ADD_CALLBACK, cb).sendToTarget();
Jason Monk744cf642015-05-19 12:04:41 -0400129 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400130 }
131
132 @Override
Jason Monk88529052016-11-04 13:29:58 -0400133 public void removeCallback(Callback cb) {
Adrian Roosa4b54862016-06-17 14:28:27 -0700134 mHandler.obtainMessage(H.MSG_REMOVE_CALLBACK, cb).sendToTarget();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400135 }
136
137 @Override
138 public boolean isBluetoothEnabled() {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500139 return mEnabled;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400140 }
141
142 @Override
Jason Monkfac25382016-07-19 14:13:37 -0400143 public int getBluetoothState() {
144 return mState;
145 }
146
147 @Override
John Spurlockaf8d6c42014-05-07 17:49:08 -0400148 public boolean isBluetoothConnected() {
Jason Monka7d92b62015-05-27 10:20:37 -0400149 return mConnectionState == BluetoothAdapter.STATE_CONNECTED;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400150 }
151
152 @Override
John Spurlockd1c86e22014-06-01 00:04:53 -0400153 public boolean isBluetoothConnecting() {
Jason Monka7d92b62015-05-27 10:20:37 -0400154 return mConnectionState == BluetoothAdapter.STATE_CONNECTING;
John Spurlockd1c86e22014-06-01 00:04:53 -0400155 }
156
157 @Override
John Spurlockaf8d6c42014-05-07 17:49:08 -0400158 public void setBluetoothEnabled(boolean enabled) {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500159 if (mLocalBluetoothManager != null) {
160 mLocalBluetoothManager.getBluetoothAdapter().setBluetoothEnabled(enabled);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400161 }
162 }
163
164 @Override
165 public boolean isBluetoothSupported() {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500166 return mLocalBluetoothManager != null;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400167 }
168
John Spurlock486b78e2014-07-07 08:37:56 -0400169 @Override
Jason Monkbe3c5db2015-02-04 13:00:55 -0500170 public void connect(final CachedBluetoothDevice device) {
171 if (mLocalBluetoothManager == null || device == null) return;
172 device.connect(true);
John Spurlock486b78e2014-07-07 08:37:56 -0400173 }
174
175 @Override
Jason Monkbe3c5db2015-02-04 13:00:55 -0500176 public void disconnect(CachedBluetoothDevice device) {
177 if (mLocalBluetoothManager == null || device == null) return;
178 device.disconnect();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400179 }
180
181 @Override
John Spurlockd1c86e22014-06-01 00:04:53 -0400182 public String getLastDeviceName() {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500183 return mLastDevice != null ? mLastDevice.getName() : null;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400184 }
185
Jason Monkbe3c5db2015-02-04 13:00:55 -0500186 @Override
187 public Collection<CachedBluetoothDevice> getDevices() {
188 return mLocalBluetoothManager != null
189 ? mLocalBluetoothManager.getCachedDeviceManager().getCachedDevicesCopy()
190 : null;
Jason Monk4630c892014-12-08 16:36:16 -0500191 }
192
Jason Monkbe3c5db2015-02-04 13:00:55 -0500193 private void updateConnected() {
Jason Monk90970562015-06-19 10:04:49 -0400194 // Make sure our connection state is up to date.
195 int state = mLocalBluetoothManager.getBluetoothAdapter().getConnectionState();
Jason Monk6a73e632017-03-17 11:08:30 -0400196 if (mLastDevice != null && !mLastDevice.isConnected()) {
197 // Clear out last device if no longer connected.
198 mLastDevice = null;
Jason Monk90970562015-06-19 10:04:49 -0400199 }
Jason Monk6a73e632017-03-17 11:08:30 -0400200 // If any of the devices are in a higher state than the adapter, move the adapter into
201 // that state.
Jason Monkbe3c5db2015-02-04 13:00:55 -0500202 for (CachedBluetoothDevice device : getDevices()) {
Jason Monk6a73e632017-03-17 11:08:30 -0400203 int maxDeviceState = device.getMaxConnectionState();
204 if (maxDeviceState > state) {
205 state = maxDeviceState;
206 }
207 if (mLastDevice == null && device.isConnected()) {
208 // Set as last connected device only if we don't have one.
John Spurlock486b78e2014-07-07 08:37:56 -0400209 mLastDevice = device;
John Spurlock486b78e2014-07-07 08:37:56 -0400210 }
John Spurlock486b78e2014-07-07 08:37:56 -0400211 }
Jason Monk6a73e632017-03-17 11:08:30 -0400212
213 if (mLastDevice == null && state == BluetoothAdapter.STATE_CONNECTED) {
Jason Monkbba73172015-08-12 16:17:34 -0400214 // If somehow we think we are connected, but have no connected devices, we aren't
215 // connected.
Jason Monk6a73e632017-03-17 11:08:30 -0400216 state = BluetoothAdapter.STATE_DISCONNECTED;
217 }
218 if (state != mConnectionState) {
219 mConnectionState = state;
Jason Monkbba73172015-08-12 16:17:34 -0400220 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
221 }
John Spurlock486b78e2014-07-07 08:37:56 -0400222 }
223
Jason Monkbe3c5db2015-02-04 13:00:55 -0500224 @Override
225 public void onBluetoothStateChanged(int bluetoothState) {
Jason Monkfac25382016-07-19 14:13:37 -0400226 mEnabled = bluetoothState == BluetoothAdapter.STATE_ON
227 || bluetoothState == BluetoothAdapter.STATE_TURNING_ON;
228 mState = bluetoothState;
Jason Monk744cf642015-05-19 12:04:41 -0400229 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
John Spurlock486b78e2014-07-07 08:37:56 -0400230 }
231
Jason Monkbe3c5db2015-02-04 13:00:55 -0500232 @Override
233 public void onScanningStateChanged(boolean started) {
234 // Don't care.
235 }
Jason Monk4ae97d32014-12-17 10:14:33 -0500236
Jason Monkbe3c5db2015-02-04 13:00:55 -0500237 @Override
238 public void onDeviceAdded(CachedBluetoothDevice cachedDevice) {
239 cachedDevice.registerCallback(this);
240 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400241 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500242 }
Jason Monk4ae97d32014-12-17 10:14:33 -0500243
Jason Monkbe3c5db2015-02-04 13:00:55 -0500244 @Override
245 public void onDeviceDeleted(CachedBluetoothDevice cachedDevice) {
Jason Monk9ef03b42017-06-13 12:49:55 -0400246 mCachedState.remove(cachedDevice);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500247 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400248 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500249 }
250
251 @Override
252 public void onDeviceBondStateChanged(CachedBluetoothDevice cachedDevice, int bondState) {
Jason Monk9ef03b42017-06-13 12:49:55 -0400253 mCachedState.remove(cachedDevice);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500254 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400255 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500256 }
257
258 @Override
259 public void onDeviceAttributesChanged() {
260 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400261 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500262 }
263
264 @Override
265 public void onConnectionStateChanged(CachedBluetoothDevice cachedDevice, int state) {
Jason Monk9ef03b42017-06-13 12:49:55 -0400266 mCachedState.remove(cachedDevice);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500267 mLastDevice = cachedDevice;
268 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400269 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
270 }
271
Jason Monk9ef03b42017-06-13 12:49:55 -0400272 private ActuallyCachedState getCachedState(CachedBluetoothDevice device) {
273 ActuallyCachedState state = mCachedState.get(device);
274 if (state == null) {
275 state = new ActuallyCachedState(device, mHandler);
276 mBgHandler.post(state);
277 mCachedState.put(device, state);
278 return state;
279 }
280 return state;
281 }
282
283 private static class ActuallyCachedState implements Runnable {
284
285 private final WeakReference<CachedBluetoothDevice> mDevice;
286 private final Handler mUiHandler;
287 private int mBondState = BluetoothDevice.BOND_NONE;
288 private int mMaxConnectionState = BluetoothProfile.STATE_DISCONNECTED;
289
290 private ActuallyCachedState(CachedBluetoothDevice device, Handler uiHandler) {
291 mDevice = new WeakReference<>(device);
292 mUiHandler = uiHandler;
293 }
294
295 @Override
296 public void run() {
297 mBondState = mDevice.get().getBondState();
298 mMaxConnectionState = mDevice.get().getMaxConnectionState();
299 mUiHandler.removeMessages(H.MSG_PAIRED_DEVICES_CHANGED);
300 mUiHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
301 }
302 }
303
Jason Monk744cf642015-05-19 12:04:41 -0400304 private final class H extends Handler {
Adrian Roosa4b54862016-06-17 14:28:27 -0700305 private final ArrayList<BluetoothController.Callback> mCallbacks = new ArrayList<>();
306
Jason Monk744cf642015-05-19 12:04:41 -0400307 private static final int MSG_PAIRED_DEVICES_CHANGED = 1;
308 private static final int MSG_STATE_CHANGED = 2;
Adrian Roosa4b54862016-06-17 14:28:27 -0700309 private static final int MSG_ADD_CALLBACK = 3;
310 private static final int MSG_REMOVE_CALLBACK = 4;
Jason Monk744cf642015-05-19 12:04:41 -0400311
Jason Monk9ef03b42017-06-13 12:49:55 -0400312 public H(Looper looper) {
313 super(looper);
314 }
315
Jason Monk744cf642015-05-19 12:04:41 -0400316 @Override
317 public void handleMessage(Message msg) {
318 switch (msg.what) {
319 case MSG_PAIRED_DEVICES_CHANGED:
320 firePairedDevicesChanged();
321 break;
322 case MSG_STATE_CHANGED:
323 fireStateChange();
324 break;
Adrian Roosa4b54862016-06-17 14:28:27 -0700325 case MSG_ADD_CALLBACK:
326 mCallbacks.add((BluetoothController.Callback) msg.obj);
327 break;
328 case MSG_REMOVE_CALLBACK:
329 mCallbacks.remove((BluetoothController.Callback) msg.obj);
330 break;
Jason Monk744cf642015-05-19 12:04:41 -0400331 }
332 }
333
334 private void firePairedDevicesChanged() {
335 for (BluetoothController.Callback cb : mCallbacks) {
336 cb.onBluetoothDevicesChanged();
337 }
338 }
339
340 private void fireStateChange() {
341 for (BluetoothController.Callback cb : mCallbacks) {
342 fireStateChange(cb);
343 }
344 }
345
346 private void fireStateChange(BluetoothController.Callback cb) {
Jason Monka7d92b62015-05-27 10:20:37 -0400347 cb.onBluetoothStateChange(mEnabled);
Jason Monk744cf642015-05-19 12:04:41 -0400348 }
John Spurlock486b78e2014-07-07 08:37:56 -0400349 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400350}