Bug: 3148095 Also fix an NPE crash I saw when exiting Settings immediately after toggling the airplane mode. Change-Id: I83eb2d90e203fd56b09269cf9fa8f74a4354834f
799 lines
25 KiB
Java
799 lines
25 KiB
Java
/*
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.settings.bluetooth;
|
|
|
|
import com.android.settings.R;
|
|
|
|
import com.android.settings.SettingsPreferenceFragment;
|
|
import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
|
|
|
|
import android.app.AlertDialog;
|
|
import android.bluetooth.BluetoothAdapter;
|
|
import android.bluetooth.BluetoothClass;
|
|
import android.bluetooth.BluetoothDevice;
|
|
import android.content.Context;
|
|
import android.content.DialogInterface;
|
|
import android.content.res.Resources;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.os.ParcelUuid;
|
|
import android.os.SystemClock;
|
|
import android.preference.Preference;
|
|
import android.preference.PreferenceActivity;
|
|
import android.text.TextUtils;
|
|
import android.util.Log;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* CachedBluetoothDevice represents a remote Bluetooth device. It contains
|
|
* attributes of the device (such as the address, name, RSSI, etc.) and
|
|
* functionality that can be performed on the device (connect, pair, disconnect,
|
|
* etc.).
|
|
*/
|
|
class CachedBluetoothDevice implements Comparable<CachedBluetoothDevice> {
|
|
private static final String TAG = "CachedBluetoothDevice";
|
|
private static final boolean D = LocalBluetoothManager.D;
|
|
private static final boolean V = LocalBluetoothManager.V;
|
|
private static final boolean DEBUG = false;
|
|
|
|
private final BluetoothDevice mDevice;
|
|
private String mName;
|
|
private short mRssi;
|
|
private BluetoothClass mBtClass;
|
|
private Context mContext;
|
|
|
|
private List<Profile> mProfiles = new ArrayList<Profile>();
|
|
|
|
private boolean mVisible;
|
|
|
|
private final LocalBluetoothManager mLocalManager;
|
|
|
|
private AlertDialog mDialog = null;
|
|
|
|
private List<Callback> mCallbacks = new ArrayList<Callback>();
|
|
|
|
/**
|
|
* When we connect to multiple profiles, we only want to display a single
|
|
* error even if they all fail. This tracks that state.
|
|
*/
|
|
private boolean mIsConnectingErrorPossible;
|
|
|
|
/**
|
|
* Last time a bt profile auto-connect was attempted.
|
|
* If an ACTION_UUID intent comes in within
|
|
* MAX_UUID_DELAY_FOR_AUTO_CONNECT milliseconds, we will try auto-connect
|
|
* again with the new UUIDs
|
|
*/
|
|
private long mConnectAttempted;
|
|
|
|
// See mConnectAttempted
|
|
private static final long MAX_UUID_DELAY_FOR_AUTO_CONNECT = 5000;
|
|
|
|
/** Auto-connect after pairing only if locally initiated. */
|
|
private boolean mConnectAfterPairing;
|
|
|
|
/**
|
|
* Describes the current device and profile for logging.
|
|
*
|
|
* @param profile Profile to describe
|
|
* @return Description of the device and profile
|
|
*/
|
|
private String describe(Profile profile) {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("Address:").append(mDevice);
|
|
if (profile != null) {
|
|
sb.append(" Profile:").append(profile.name());
|
|
}
|
|
|
|
return sb.toString();
|
|
}
|
|
|
|
public void onProfileStateChanged(Profile profile, int newProfileState) {
|
|
if (D) {
|
|
Log.d(TAG, "onProfileStateChanged: profile " + profile.toString() +
|
|
" newProfileState " + newProfileState);
|
|
}
|
|
|
|
final LocalBluetoothProfileManager pm =
|
|
LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile);
|
|
if (pm == null) return;
|
|
int newState = pm.convertState(newProfileState);
|
|
|
|
if (newState == SettingsBtStatus.CONNECTION_STATUS_CONNECTED) {
|
|
if (!mProfiles.contains(profile)) {
|
|
mProfiles.add(profile);
|
|
}
|
|
}
|
|
}
|
|
|
|
CachedBluetoothDevice(Context context, BluetoothDevice device) {
|
|
mLocalManager = LocalBluetoothManager.getInstance(context);
|
|
if (mLocalManager == null) {
|
|
throw new IllegalStateException(
|
|
"Cannot use CachedBluetoothDevice without Bluetooth hardware");
|
|
}
|
|
|
|
mDevice = device;
|
|
mContext = context;
|
|
|
|
fillData();
|
|
}
|
|
|
|
public void onClicked() {
|
|
int bondState = getBondState();
|
|
|
|
if (isConnected()) {
|
|
askDisconnect();
|
|
} else if (bondState == BluetoothDevice.BOND_BONDED) {
|
|
connect(true);
|
|
} else if (bondState == BluetoothDevice.BOND_NONE) {
|
|
pair();
|
|
}
|
|
}
|
|
|
|
public void disconnect() {
|
|
for (Profile profile : mProfiles) {
|
|
disconnect(profile);
|
|
}
|
|
}
|
|
|
|
public void disconnect(Profile profile) {
|
|
LocalBluetoothProfileManager profileManager =
|
|
LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile);
|
|
if (profileManager.disconnect(mDevice)) {
|
|
if (D) {
|
|
Log.d(TAG, "Command sent successfully:DISCONNECT " + describe(profile));
|
|
}
|
|
}
|
|
}
|
|
|
|
public void askDisconnect() {
|
|
Context context = mLocalManager.getForegroundActivity();
|
|
if (context == null) {
|
|
// Cannot ask, since we need an activity context
|
|
disconnect();
|
|
return;
|
|
}
|
|
|
|
Resources res = context.getResources();
|
|
|
|
String name = getName();
|
|
if (TextUtils.isEmpty(name)) {
|
|
name = res.getString(R.string.bluetooth_device);
|
|
}
|
|
String message = res.getString(R.string.bluetooth_disconnect_blank, name);
|
|
|
|
DialogInterface.OnClickListener disconnectListener = new DialogInterface.OnClickListener() {
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
disconnect();
|
|
}
|
|
};
|
|
|
|
showDisconnectDialog(context, disconnectListener, message);
|
|
}
|
|
|
|
public void askDisconnect(final Profile profile) {
|
|
Context context = mLocalManager.getForegroundActivity();
|
|
if (context == null) {
|
|
// Cannot ask, since we need an activity context
|
|
disconnect(profile);
|
|
return;
|
|
}
|
|
|
|
Resources res = context.getResources();
|
|
|
|
String name = getName();
|
|
if (TextUtils.isEmpty(name)) {
|
|
name = res.getString(R.string.bluetooth_device);
|
|
}
|
|
int disconnectMessage;
|
|
switch (profile) {
|
|
case A2DP:
|
|
disconnectMessage = R.string.bluetooth_disconnect_a2dp_profile;
|
|
break;
|
|
case HEADSET:
|
|
disconnectMessage = R.string.bluetooth_disconnect_headset_profile;
|
|
break;
|
|
case HID:
|
|
disconnectMessage = R.string.bluetooth_disconnect_hid_profile;
|
|
break;
|
|
case PAN:
|
|
disconnectMessage = R.string.bluetooth_disconnect_pan_profile;
|
|
break;
|
|
default:
|
|
Log.w(TAG, "askDisconnect: unexpected profile " + profile);
|
|
disconnectMessage = R.string.bluetooth_disconnect_blank;
|
|
break;
|
|
}
|
|
String message = res.getString(disconnectMessage, name);
|
|
|
|
DialogInterface.OnClickListener disconnectListener =
|
|
new DialogInterface.OnClickListener() {
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
disconnect(profile);
|
|
}
|
|
};
|
|
|
|
showDisconnectDialog(context, disconnectListener, message);
|
|
}
|
|
|
|
private void showDisconnectDialog(Context context,
|
|
DialogInterface.OnClickListener disconnectListener,
|
|
String message) {
|
|
if (mDialog == null) {
|
|
mDialog = new AlertDialog.Builder(context)
|
|
.setPositiveButton(android.R.string.ok, disconnectListener)
|
|
.setNegativeButton(android.R.string.cancel, null)
|
|
.create();
|
|
} else {
|
|
if (mDialog.isShowing()) {
|
|
mDialog.dismiss();
|
|
}
|
|
// use disconnectListener for the correct profile(s)
|
|
CharSequence okText = context.getText(android.R.string.ok);
|
|
mDialog.setButton(DialogInterface.BUTTON_POSITIVE,
|
|
okText, disconnectListener);
|
|
}
|
|
mDialog.setTitle(getName());
|
|
mDialog.setMessage(message);
|
|
mDialog.show();
|
|
}
|
|
|
|
@Override
|
|
protected void finalize() throws Throwable {
|
|
if (mDialog != null) {
|
|
mDialog.dismiss();
|
|
mDialog = null;
|
|
}
|
|
|
|
super.finalize();
|
|
}
|
|
|
|
public void connect(boolean connectAllProfiles) {
|
|
if (!ensurePaired()) return;
|
|
|
|
mConnectAttempted = SystemClock.elapsedRealtime();
|
|
|
|
connectWithoutResettingTimer(connectAllProfiles);
|
|
}
|
|
|
|
/*package*/ void onBondingDockConnect() {
|
|
// Attempt to connect if UUIDs are available. Otherwise,
|
|
// we will connect when the ACTION_UUID intent arrives.
|
|
connect(false);
|
|
}
|
|
|
|
private void connectWithoutResettingTimer(boolean connectAllProfiles) {
|
|
// Try to initialize the profiles if they were not.
|
|
if (mProfiles.size() == 0) {
|
|
if (!updateProfiles()) {
|
|
// If UUIDs are not available yet, connect will be happen
|
|
// upon arrival of the ACTION_UUID intent.
|
|
if (DEBUG) Log.d(TAG, "No profiles. Maybe we will connect later");
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Reset the only-show-one-error-dialog tracking variable
|
|
mIsConnectingErrorPossible = true;
|
|
|
|
int preferredProfiles = 0;
|
|
for (Profile profile : mProfiles) {
|
|
if (connectAllProfiles ? profile.isConnectable() : profile.isAutoConnectable()) {
|
|
LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
|
|
.getProfileManager(mLocalManager, profile);
|
|
if (profileManager.isPreferred(mDevice)) {
|
|
++preferredProfiles;
|
|
connectInt(this, profile);
|
|
}
|
|
}
|
|
}
|
|
if (DEBUG) Log.d(TAG, "Preferred profiles = " + preferredProfiles);
|
|
|
|
if (preferredProfiles == 0) {
|
|
connectAllAutoConnectableProfiles();
|
|
}
|
|
}
|
|
|
|
private void connectAllAutoConnectableProfiles() {
|
|
if (!ensurePaired()) return;
|
|
|
|
// Reset the only-show-one-error-dialog tracking variable
|
|
mIsConnectingErrorPossible = true;
|
|
|
|
for (Profile profile : mProfiles) {
|
|
if (profile.isAutoConnectable()) {
|
|
LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
|
|
.getProfileManager(mLocalManager, profile);
|
|
profileManager.setPreferred(mDevice, true);
|
|
connectInt(this, profile);
|
|
}
|
|
}
|
|
}
|
|
|
|
public void connect(Profile profile) {
|
|
mConnectAttempted = SystemClock.elapsedRealtime();
|
|
// Reset the only-show-one-error-dialog tracking variable
|
|
mIsConnectingErrorPossible = true;
|
|
connectInt(this, profile);
|
|
}
|
|
|
|
private boolean connectInt(CachedBluetoothDevice cachedDevice, Profile profile) {
|
|
if (!cachedDevice.ensurePaired()) return false;
|
|
|
|
LocalBluetoothProfileManager profileManager =
|
|
LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile);
|
|
|
|
if (profileManager.connect(cachedDevice.mDevice)) {
|
|
if (D) {
|
|
Log.d(TAG, "Command sent successfully:CONNECT " + describe(profile));
|
|
}
|
|
return true;
|
|
}
|
|
Log.i(TAG, "Failed to connect " + profile.toString() + " to " + cachedDevice.mName);
|
|
|
|
return false;
|
|
}
|
|
|
|
public void showConnectingError() {
|
|
if (!mIsConnectingErrorPossible) return;
|
|
mIsConnectingErrorPossible = false;
|
|
|
|
mLocalManager.showError(mDevice,
|
|
R.string.bluetooth_connecting_error_message);
|
|
}
|
|
|
|
private boolean ensurePaired() {
|
|
if (getBondState() == BluetoothDevice.BOND_NONE) {
|
|
pair();
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public void pair() {
|
|
BluetoothAdapter adapter = mLocalManager.getBluetoothAdapter();
|
|
|
|
// Pairing is unreliable while scanning, so cancel discovery
|
|
if (adapter.isDiscovering()) {
|
|
adapter.cancelDiscovery();
|
|
}
|
|
|
|
if (!mDevice.createBond()) {
|
|
mLocalManager.showError(mDevice,
|
|
R.string.bluetooth_pairing_error_message);
|
|
return;
|
|
}
|
|
|
|
mConnectAfterPairing = true; // auto-connect after pairing
|
|
}
|
|
|
|
public void unpair() {
|
|
disconnect();
|
|
|
|
int state = getBondState();
|
|
|
|
if (state == BluetoothDevice.BOND_BONDING) {
|
|
mDevice.cancelBondProcess();
|
|
}
|
|
|
|
if (state != BluetoothDevice.BOND_NONE) {
|
|
final BluetoothDevice dev = getDevice();
|
|
if (dev != null) {
|
|
final boolean successful = dev.removeBond();
|
|
if (successful) {
|
|
if (D) {
|
|
Log.d(TAG, "Command sent successfully:REMOVE_BOND " + describe(null));
|
|
}
|
|
} else if (V) {
|
|
Log.v(TAG, "Framework rejected command immediately:REMOVE_BOND " +
|
|
describe(null));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private void fillData() {
|
|
fetchName();
|
|
fetchBtClass();
|
|
updateProfiles();
|
|
|
|
mVisible = false;
|
|
|
|
dispatchAttributesChanged();
|
|
}
|
|
|
|
public BluetoothDevice getDevice() {
|
|
return mDevice;
|
|
}
|
|
|
|
public String getName() {
|
|
return mName;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
if (!mName.equals(name)) {
|
|
if (TextUtils.isEmpty(name)) {
|
|
// TODO: use friendly name for unknown device (bug 1181856)
|
|
mName = mDevice.getAddress();
|
|
} else {
|
|
mName = name;
|
|
}
|
|
// TODO: save custom device name in preferences
|
|
dispatchAttributesChanged();
|
|
}
|
|
}
|
|
|
|
public void refreshName() {
|
|
fetchName();
|
|
dispatchAttributesChanged();
|
|
}
|
|
|
|
private void fetchName() {
|
|
mName = mDevice.getName();
|
|
|
|
if (TextUtils.isEmpty(mName)) {
|
|
mName = mDevice.getAddress();
|
|
if (DEBUG) Log.d(TAG, "Default to address. Device has no name (yet) " + mName);
|
|
}
|
|
}
|
|
|
|
public void refresh() {
|
|
dispatchAttributesChanged();
|
|
}
|
|
|
|
public boolean isVisible() {
|
|
return mVisible;
|
|
}
|
|
|
|
void setVisible(boolean visible) {
|
|
if (mVisible != visible) {
|
|
mVisible = visible;
|
|
dispatchAttributesChanged();
|
|
}
|
|
}
|
|
|
|
public int getBondState() {
|
|
return mDevice.getBondState();
|
|
}
|
|
|
|
void setRssi(short rssi) {
|
|
if (mRssi != rssi) {
|
|
mRssi = rssi;
|
|
dispatchAttributesChanged();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks whether we are connected to this device (any profile counts).
|
|
*
|
|
* @return Whether it is connected.
|
|
*/
|
|
public boolean isConnected() {
|
|
for (Profile profile : mProfiles) {
|
|
int status = LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile)
|
|
.getConnectionStatus(mDevice);
|
|
if (SettingsBtStatus.isConnectionStatusConnected(status)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public boolean isConnectedProfile(Profile profile) {
|
|
int status = LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile)
|
|
.getConnectionStatus(mDevice);
|
|
if (SettingsBtStatus.isConnectionStatusConnected(status)) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public boolean isBusy() {
|
|
for (Profile profile : mProfiles) {
|
|
int status = LocalBluetoothProfileManager.getProfileManager(mLocalManager, profile)
|
|
.getConnectionStatus(mDevice);
|
|
if (SettingsBtStatus.isConnectionStatusBusy(status)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if (getBondState() == BluetoothDevice.BOND_BONDING) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public int getBtClassDrawable() {
|
|
if (mBtClass != null) {
|
|
switch (mBtClass.getMajorDeviceClass()) {
|
|
case BluetoothClass.Device.Major.COMPUTER:
|
|
return R.drawable.ic_bt_laptop;
|
|
|
|
case BluetoothClass.Device.Major.PHONE:
|
|
return R.drawable.ic_bt_cellphone;
|
|
|
|
case BluetoothClass.Device.Major.PERIPHERAL:
|
|
return getHidClassDrawable();
|
|
}
|
|
} else {
|
|
Log.w(TAG, "mBtClass is null");
|
|
}
|
|
|
|
if (mProfiles.size() > 0) {
|
|
if (mProfiles.contains(Profile.A2DP)) {
|
|
return R.drawable.ic_bt_headphones_a2dp;
|
|
} else if (mProfiles.contains(Profile.HEADSET)) {
|
|
return R.drawable.ic_bt_headset_hfp;
|
|
}
|
|
} else if (mBtClass != null) {
|
|
if (mBtClass.doesClassMatch(BluetoothClass.PROFILE_A2DP)) {
|
|
return R.drawable.ic_bt_headphones_a2dp;
|
|
|
|
}
|
|
if (mBtClass.doesClassMatch(BluetoothClass.PROFILE_HEADSET)) {
|
|
return R.drawable.ic_bt_headset_hfp;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
private int getHidClassDrawable() {
|
|
switch (mBtClass.getDeviceClass()) {
|
|
case BluetoothClass.Device.PERIPHERAL_KEYBOARD:
|
|
case BluetoothClass.Device.PERIPHERAL_KEYBOARD_POINTING:
|
|
return R.drawable.ic_bt_keyboard_hid;
|
|
|
|
case BluetoothClass.Device.PERIPHERAL_POINTING:
|
|
return R.drawable.ic_bt_pointing_hid;
|
|
|
|
default:
|
|
return R.drawable.ic_bt_misc_hid;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Fetches a new value for the cached BT class.
|
|
*/
|
|
private void fetchBtClass() {
|
|
mBtClass = mDevice.getBluetoothClass();
|
|
}
|
|
|
|
private boolean updateProfiles() {
|
|
ParcelUuid[] uuids = mDevice.getUuids();
|
|
if (uuids == null) return false;
|
|
|
|
BluetoothAdapter adapter = mLocalManager.getBluetoothAdapter();
|
|
ParcelUuid[] localUuids = adapter.getUuids();
|
|
if (localUuids == null) return false;
|
|
|
|
LocalBluetoothProfileManager.updateProfiles(uuids, localUuids, mProfiles);
|
|
|
|
if (DEBUG) {
|
|
Log.e(TAG, "updating profiles for " + mDevice.getName());
|
|
BluetoothClass bluetoothClass = mDevice.getBluetoothClass();
|
|
|
|
if (bluetoothClass != null) Log.v(TAG, "Class: " + bluetoothClass.toString());
|
|
Log.v(TAG, "UUID:");
|
|
for (int i = 0; i < uuids.length; i++) {
|
|
Log.v(TAG, " " + uuids[i]);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Refreshes the UI for the BT class, including fetching the latest value
|
|
* for the class.
|
|
*/
|
|
public void refreshBtClass() {
|
|
fetchBtClass();
|
|
dispatchAttributesChanged();
|
|
}
|
|
|
|
/**
|
|
* Refreshes the UI when framework alerts us of a UUID change.
|
|
*/
|
|
public void onUuidChanged() {
|
|
updateProfiles();
|
|
|
|
if (DEBUG) {
|
|
Log.e(TAG, "onUuidChanged: Time since last connect"
|
|
+ (SystemClock.elapsedRealtime() - mConnectAttempted));
|
|
}
|
|
|
|
/*
|
|
* If a connect was attempted earlier without any UUID, we will do the
|
|
* connect now.
|
|
*/
|
|
if (mProfiles.size() > 0
|
|
&& (mConnectAttempted + MAX_UUID_DELAY_FOR_AUTO_CONNECT) > SystemClock
|
|
.elapsedRealtime()) {
|
|
connectWithoutResettingTimer(false);
|
|
}
|
|
dispatchAttributesChanged();
|
|
}
|
|
|
|
public void onBondingStateChanged(int bondState) {
|
|
if (bondState == BluetoothDevice.BOND_NONE) {
|
|
mProfiles.clear();
|
|
mConnectAfterPairing = false; // cancel auto-connect
|
|
}
|
|
|
|
refresh();
|
|
|
|
if (bondState == BluetoothDevice.BOND_BONDED) {
|
|
if (mDevice.isBluetoothDock()) {
|
|
onBondingDockConnect();
|
|
} else if (mConnectAfterPairing) {
|
|
connect(false);
|
|
}
|
|
mConnectAfterPairing = false;
|
|
}
|
|
}
|
|
|
|
public void setBtClass(BluetoothClass btClass) {
|
|
if (btClass != null && mBtClass != btClass) {
|
|
mBtClass = btClass;
|
|
dispatchAttributesChanged();
|
|
}
|
|
}
|
|
|
|
public int getSummary() {
|
|
for (Profile profile : mProfiles) {
|
|
LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
|
|
.getProfileManager(mLocalManager, profile);
|
|
int connectionStatus = profileManager.getConnectionStatus(mDevice);
|
|
|
|
if (SettingsBtStatus.isConnectionStatusConnected(connectionStatus) ||
|
|
connectionStatus == SettingsBtStatus.CONNECTION_STATUS_CONNECTING ||
|
|
connectionStatus == SettingsBtStatus.CONNECTION_STATUS_DISCONNECTING) {
|
|
return SettingsBtStatus.getConnectionStatusSummary(connectionStatus);
|
|
}
|
|
}
|
|
|
|
return SettingsBtStatus.getPairingStatusSummary(getBondState());
|
|
}
|
|
|
|
public Map<Profile, Drawable> getProfileIcons() {
|
|
Map<Profile, Drawable> drawables = new HashMap<Profile, Drawable>();
|
|
|
|
for (Profile profile : mProfiles) {
|
|
int iconResource;
|
|
if (profile == Profile.HID && mBtClass != null) {
|
|
iconResource = getHidClassDrawable();
|
|
} else {
|
|
LocalBluetoothProfileManager profileManager = LocalBluetoothProfileManager
|
|
.getProfileManager(mLocalManager, profile);
|
|
iconResource = profileManager.getDrawableResource();
|
|
}
|
|
if (iconResource != 0) {
|
|
drawables.put(profile, mContext.getResources().getDrawable(iconResource));
|
|
}
|
|
}
|
|
|
|
return drawables;
|
|
}
|
|
|
|
public List<Profile> getConnectableProfiles() {
|
|
ArrayList<Profile> connectableProfiles = new ArrayList<Profile>();
|
|
for (Profile profile : mProfiles) {
|
|
if (profile.isConnectable()) {
|
|
connectableProfiles.add(profile);
|
|
}
|
|
}
|
|
return connectableProfiles;
|
|
}
|
|
|
|
public void onClickedAdvancedOptions(SettingsPreferenceFragment fragment) {
|
|
// TODO: Verify if there really is a case when there's no foreground
|
|
// activity
|
|
|
|
// Intent intent = new Intent();
|
|
// // Need an activity context to open this in our task
|
|
// Context context = mLocalManager.getForegroundActivity();
|
|
// if (context == null) {
|
|
// // Fallback on application context, and open in a new task
|
|
// context = mLocalManager.getContext();
|
|
// intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
// }
|
|
// intent.setClass(context, ConnectSpecificProfilesActivity.class);
|
|
// intent.putExtra(ConnectSpecificProfilesActivity.EXTRA_DEVICE,
|
|
// mDevice);
|
|
// context.startActivity(intent);
|
|
Preference pref = new Preference(fragment.getActivity());
|
|
pref.setTitle(getName());
|
|
pref.setFragment(DeviceProfilesSettings.class.getName());
|
|
pref.getExtras().putParcelable(DeviceProfilesSettings.EXTRA_DEVICE, mDevice);
|
|
((PreferenceActivity) fragment.getActivity()).onPreferenceStartFragment(fragment, pref);
|
|
}
|
|
|
|
public void registerCallback(Callback callback) {
|
|
synchronized (mCallbacks) {
|
|
mCallbacks.add(callback);
|
|
}
|
|
}
|
|
|
|
public void unregisterCallback(Callback callback) {
|
|
synchronized (mCallbacks) {
|
|
mCallbacks.remove(callback);
|
|
}
|
|
}
|
|
|
|
private void dispatchAttributesChanged() {
|
|
synchronized (mCallbacks) {
|
|
for (Callback callback : mCallbacks) {
|
|
callback.onDeviceAttributesChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return mDevice.toString();
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if ((o == null) || !(o instanceof CachedBluetoothDevice)) {
|
|
throw new ClassCastException();
|
|
}
|
|
|
|
return mDevice.equals(((CachedBluetoothDevice) o).mDevice);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return mDevice.getAddress().hashCode();
|
|
}
|
|
|
|
public int compareTo(CachedBluetoothDevice another) {
|
|
int comparison;
|
|
|
|
// Connected above not connected
|
|
comparison = (another.isConnected() ? 1 : 0) - (isConnected() ? 1 : 0);
|
|
if (comparison != 0) return comparison;
|
|
|
|
// Paired above not paired
|
|
comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
|
|
(getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0);
|
|
if (comparison != 0) return comparison;
|
|
|
|
// Visible above not visible
|
|
comparison = (another.mVisible ? 1 : 0) - (mVisible ? 1 : 0);
|
|
if (comparison != 0) return comparison;
|
|
|
|
// Stronger signal above weaker signal
|
|
comparison = another.mRssi - mRssi;
|
|
if (comparison != 0) return comparison;
|
|
|
|
// Fallback on name
|
|
return getName().compareTo(another.getName());
|
|
}
|
|
|
|
public interface Callback {
|
|
void onDeviceAttributesChanged();
|
|
}
|
|
}
|