blob: 5b24f9cd97bf29838a89d1f81a275e7088654378 [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,
phweissbd8d0332017-06-12 11:38:09 +020078 UserHandle.of(mCurrentUser))
79 && !mUserManager.hasUserRestriction(UserManager.DISALLOW_BLUETOOTH,
Sudheer Shankab6fc9312016-01-27 19:59:03 +000080 UserHandle.of(mCurrentUser));
John Spurlockaf8d6c42014-05-07 17:49:08 -040081 }
82
John Spurlock486b78e2014-07-07 08:37:56 -040083 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
84 pw.println("BluetoothController state:");
Jason Monkbe3c5db2015-02-04 13:00:55 -050085 pw.print(" mLocalBluetoothManager="); pw.println(mLocalBluetoothManager);
Jason Monk09389a92015-05-19 16:06:52 -040086 if (mLocalBluetoothManager == null) {
87 return;
88 }
John Spurlock486b78e2014-07-07 08:37:56 -040089 pw.print(" mEnabled="); pw.println(mEnabled);
Jason Monka7d92b62015-05-27 10:20:37 -040090 pw.print(" mConnectionState="); pw.println(stateToString(mConnectionState));
John Spurlock486b78e2014-07-07 08:37:56 -040091 pw.print(" mLastDevice="); pw.println(mLastDevice);
Adrian Roosa4b54862016-06-17 14:28:27 -070092 pw.print(" mCallbacks.size="); pw.println(mHandler.mCallbacks.size());
Jason Monkbe3c5db2015-02-04 13:00:55 -050093 pw.println(" Bluetooth Devices:");
94 for (CachedBluetoothDevice device :
95 mLocalBluetoothManager.getCachedDeviceManager().getCachedDevicesCopy()) {
96 pw.println(" " + getDeviceString(device));
John Spurlock486b78e2014-07-07 08:37:56 -040097 }
98 }
99
Jason Monka7d92b62015-05-27 10:20:37 -0400100 private static String stateToString(int state) {
101 switch (state) {
102 case BluetoothAdapter.STATE_CONNECTED:
103 return "CONNECTED";
104 case BluetoothAdapter.STATE_CONNECTING:
105 return "CONNECTING";
106 case BluetoothAdapter.STATE_DISCONNECTED:
107 return "DISCONNECTED";
108 case BluetoothAdapter.STATE_DISCONNECTING:
109 return "DISCONNECTING";
110 }
111 return "UNKNOWN(" + state + ")";
112 }
113
Jason Monkbe3c5db2015-02-04 13:00:55 -0500114 private String getDeviceString(CachedBluetoothDevice device) {
115 return device.getName() + " " + device.getBondState() + " " + device.isConnected();
John Spurlock486b78e2014-07-07 08:37:56 -0400116 }
117
Jason Monka7d92b62015-05-27 10:20:37 -0400118 @Override
Jason Monk9ef03b42017-06-13 12:49:55 -0400119 public int getBondState(CachedBluetoothDevice device) {
120 return getCachedState(device).mBondState;
121 }
122
123 @Override
124 public int getMaxConnectionState(CachedBluetoothDevice device) {
125 return getCachedState(device).mMaxConnectionState;
126 }
127
128 @Override
Jason Monk88529052016-11-04 13:29:58 -0400129 public void addCallback(Callback cb) {
Adrian Roosa4b54862016-06-17 14:28:27 -0700130 mHandler.obtainMessage(H.MSG_ADD_CALLBACK, cb).sendToTarget();
Jason Monk744cf642015-05-19 12:04:41 -0400131 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400132 }
133
134 @Override
Jason Monk88529052016-11-04 13:29:58 -0400135 public void removeCallback(Callback cb) {
Adrian Roosa4b54862016-06-17 14:28:27 -0700136 mHandler.obtainMessage(H.MSG_REMOVE_CALLBACK, cb).sendToTarget();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400137 }
138
139 @Override
140 public boolean isBluetoothEnabled() {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500141 return mEnabled;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400142 }
143
144 @Override
Jason Monkfac25382016-07-19 14:13:37 -0400145 public int getBluetoothState() {
146 return mState;
147 }
148
149 @Override
John Spurlockaf8d6c42014-05-07 17:49:08 -0400150 public boolean isBluetoothConnected() {
Jason Monka7d92b62015-05-27 10:20:37 -0400151 return mConnectionState == BluetoothAdapter.STATE_CONNECTED;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400152 }
153
154 @Override
John Spurlockd1c86e22014-06-01 00:04:53 -0400155 public boolean isBluetoothConnecting() {
Jason Monka7d92b62015-05-27 10:20:37 -0400156 return mConnectionState == BluetoothAdapter.STATE_CONNECTING;
John Spurlockd1c86e22014-06-01 00:04:53 -0400157 }
158
159 @Override
John Spurlockaf8d6c42014-05-07 17:49:08 -0400160 public void setBluetoothEnabled(boolean enabled) {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500161 if (mLocalBluetoothManager != null) {
162 mLocalBluetoothManager.getBluetoothAdapter().setBluetoothEnabled(enabled);
John Spurlockaf8d6c42014-05-07 17:49:08 -0400163 }
164 }
165
166 @Override
167 public boolean isBluetoothSupported() {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500168 return mLocalBluetoothManager != null;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400169 }
170
John Spurlock486b78e2014-07-07 08:37:56 -0400171 @Override
Jason Monkbe3c5db2015-02-04 13:00:55 -0500172 public void connect(final CachedBluetoothDevice device) {
173 if (mLocalBluetoothManager == null || device == null) return;
174 device.connect(true);
John Spurlock486b78e2014-07-07 08:37:56 -0400175 }
176
177 @Override
Jason Monkbe3c5db2015-02-04 13:00:55 -0500178 public void disconnect(CachedBluetoothDevice device) {
179 if (mLocalBluetoothManager == null || device == null) return;
180 device.disconnect();
John Spurlockaf8d6c42014-05-07 17:49:08 -0400181 }
182
183 @Override
John Spurlockd1c86e22014-06-01 00:04:53 -0400184 public String getLastDeviceName() {
Jason Monkbe3c5db2015-02-04 13:00:55 -0500185 return mLastDevice != null ? mLastDevice.getName() : null;
John Spurlockaf8d6c42014-05-07 17:49:08 -0400186 }
187
Jason Monkbe3c5db2015-02-04 13:00:55 -0500188 @Override
189 public Collection<CachedBluetoothDevice> getDevices() {
190 return mLocalBluetoothManager != null
191 ? mLocalBluetoothManager.getCachedDeviceManager().getCachedDevicesCopy()
192 : null;
Jason Monk4630c892014-12-08 16:36:16 -0500193 }
194
Jason Monkbe3c5db2015-02-04 13:00:55 -0500195 private void updateConnected() {
Jason Monk90970562015-06-19 10:04:49 -0400196 // Make sure our connection state is up to date.
197 int state = mLocalBluetoothManager.getBluetoothAdapter().getConnectionState();
Jason Monk6a73e632017-03-17 11:08:30 -0400198 if (mLastDevice != null && !mLastDevice.isConnected()) {
199 // Clear out last device if no longer connected.
200 mLastDevice = null;
Jason Monk90970562015-06-19 10:04:49 -0400201 }
Jason Monk6a73e632017-03-17 11:08:30 -0400202 // If any of the devices are in a higher state than the adapter, move the adapter into
203 // that state.
Jason Monkbe3c5db2015-02-04 13:00:55 -0500204 for (CachedBluetoothDevice device : getDevices()) {
Jason Monk6a73e632017-03-17 11:08:30 -0400205 int maxDeviceState = device.getMaxConnectionState();
206 if (maxDeviceState > state) {
207 state = maxDeviceState;
208 }
209 if (mLastDevice == null && device.isConnected()) {
210 // Set as last connected device only if we don't have one.
John Spurlock486b78e2014-07-07 08:37:56 -0400211 mLastDevice = device;
John Spurlock486b78e2014-07-07 08:37:56 -0400212 }
John Spurlock486b78e2014-07-07 08:37:56 -0400213 }
Jason Monk6a73e632017-03-17 11:08:30 -0400214
215 if (mLastDevice == null && state == BluetoothAdapter.STATE_CONNECTED) {
Jason Monkbba73172015-08-12 16:17:34 -0400216 // If somehow we think we are connected, but have no connected devices, we aren't
217 // connected.
Jason Monk6a73e632017-03-17 11:08:30 -0400218 state = BluetoothAdapter.STATE_DISCONNECTED;
219 }
220 if (state != mConnectionState) {
221 mConnectionState = state;
Jason Monkbba73172015-08-12 16:17:34 -0400222 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
223 }
John Spurlock486b78e2014-07-07 08:37:56 -0400224 }
225
Jason Monkbe3c5db2015-02-04 13:00:55 -0500226 @Override
227 public void onBluetoothStateChanged(int bluetoothState) {
Jason Monkfac25382016-07-19 14:13:37 -0400228 mEnabled = bluetoothState == BluetoothAdapter.STATE_ON
229 || bluetoothState == BluetoothAdapter.STATE_TURNING_ON;
230 mState = bluetoothState;
Jason Monk744cf642015-05-19 12:04:41 -0400231 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
John Spurlock486b78e2014-07-07 08:37:56 -0400232 }
233
Jason Monkbe3c5db2015-02-04 13:00:55 -0500234 @Override
235 public void onScanningStateChanged(boolean started) {
236 // Don't care.
237 }
Jason Monk4ae97d32014-12-17 10:14:33 -0500238
Jason Monkbe3c5db2015-02-04 13:00:55 -0500239 @Override
240 public void onDeviceAdded(CachedBluetoothDevice cachedDevice) {
241 cachedDevice.registerCallback(this);
242 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400243 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500244 }
Jason Monk4ae97d32014-12-17 10:14:33 -0500245
Jason Monkbe3c5db2015-02-04 13:00:55 -0500246 @Override
247 public void onDeviceDeleted(CachedBluetoothDevice cachedDevice) {
Jason Monk9ef03b42017-06-13 12:49:55 -0400248 mCachedState.remove(cachedDevice);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500249 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400250 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500251 }
252
253 @Override
254 public void onDeviceBondStateChanged(CachedBluetoothDevice cachedDevice, int bondState) {
Jason Monk9ef03b42017-06-13 12:49:55 -0400255 mCachedState.remove(cachedDevice);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500256 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400257 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500258 }
259
260 @Override
261 public void onDeviceAttributesChanged() {
262 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400263 mHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500264 }
265
266 @Override
267 public void onConnectionStateChanged(CachedBluetoothDevice cachedDevice, int state) {
Jason Monk9ef03b42017-06-13 12:49:55 -0400268 mCachedState.remove(cachedDevice);
Jason Monkbe3c5db2015-02-04 13:00:55 -0500269 mLastDevice = cachedDevice;
270 updateConnected();
Jason Monk744cf642015-05-19 12:04:41 -0400271 mHandler.sendEmptyMessage(H.MSG_STATE_CHANGED);
272 }
273
Jason Monk9ef03b42017-06-13 12:49:55 -0400274 private ActuallyCachedState getCachedState(CachedBluetoothDevice device) {
275 ActuallyCachedState state = mCachedState.get(device);
276 if (state == null) {
277 state = new ActuallyCachedState(device, mHandler);
278 mBgHandler.post(state);
279 mCachedState.put(device, state);
280 return state;
281 }
282 return state;
283 }
284
285 private static class ActuallyCachedState implements Runnable {
286
287 private final WeakReference<CachedBluetoothDevice> mDevice;
288 private final Handler mUiHandler;
289 private int mBondState = BluetoothDevice.BOND_NONE;
290 private int mMaxConnectionState = BluetoothProfile.STATE_DISCONNECTED;
291
292 private ActuallyCachedState(CachedBluetoothDevice device, Handler uiHandler) {
293 mDevice = new WeakReference<>(device);
294 mUiHandler = uiHandler;
295 }
296
297 @Override
298 public void run() {
Jason Monk0f5d4022017-08-15 14:29:49 -0400299 CachedBluetoothDevice device = mDevice.get();
300 if (device != null) {
301 mBondState = device.getBondState();
302 mMaxConnectionState = device.getMaxConnectionState();
303 mUiHandler.removeMessages(H.MSG_PAIRED_DEVICES_CHANGED);
304 mUiHandler.sendEmptyMessage(H.MSG_PAIRED_DEVICES_CHANGED);
305 }
Jason Monk9ef03b42017-06-13 12:49:55 -0400306 }
307 }
308
Jason Monk744cf642015-05-19 12:04:41 -0400309 private final class H extends Handler {
Adrian Roosa4b54862016-06-17 14:28:27 -0700310 private final ArrayList<BluetoothController.Callback> mCallbacks = new ArrayList<>();
311
Jason Monk744cf642015-05-19 12:04:41 -0400312 private static final int MSG_PAIRED_DEVICES_CHANGED = 1;
313 private static final int MSG_STATE_CHANGED = 2;
Adrian Roosa4b54862016-06-17 14:28:27 -0700314 private static final int MSG_ADD_CALLBACK = 3;
315 private static final int MSG_REMOVE_CALLBACK = 4;
Jason Monk744cf642015-05-19 12:04:41 -0400316
Jason Monk9ef03b42017-06-13 12:49:55 -0400317 public H(Looper looper) {
318 super(looper);
319 }
320
Jason Monk744cf642015-05-19 12:04:41 -0400321 @Override
322 public void handleMessage(Message msg) {
323 switch (msg.what) {
324 case MSG_PAIRED_DEVICES_CHANGED:
325 firePairedDevicesChanged();
326 break;
327 case MSG_STATE_CHANGED:
328 fireStateChange();
329 break;
Adrian Roosa4b54862016-06-17 14:28:27 -0700330 case MSG_ADD_CALLBACK:
331 mCallbacks.add((BluetoothController.Callback) msg.obj);
332 break;
333 case MSG_REMOVE_CALLBACK:
334 mCallbacks.remove((BluetoothController.Callback) msg.obj);
335 break;
Jason Monk744cf642015-05-19 12:04:41 -0400336 }
337 }
338
339 private void firePairedDevicesChanged() {
340 for (BluetoothController.Callback cb : mCallbacks) {
341 cb.onBluetoothDevicesChanged();
342 }
343 }
344
345 private void fireStateChange() {
346 for (BluetoothController.Callback cb : mCallbacks) {
347 fireStateChange(cb);
348 }
349 }
350
351 private void fireStateChange(BluetoothController.Callback cb) {
Jason Monka7d92b62015-05-27 10:20:37 -0400352 cb.onBluetoothStateChange(mEnabled);
Jason Monk744cf642015-05-19 12:04:41 -0400353 }
John Spurlock486b78e2014-07-07 08:37:56 -0400354 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400355}