/* * Copyright 2009-2016 The Android Open Source Project * Copyright 2015 Samsung LSI * * 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 android.bluetooth; import static java.util.Objects.requireNonNull; import android.annotation.BroadcastBehavior; import android.annotation.CallbackExecutor; import android.annotation.FlaggedApi; import android.annotation.IntDef; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.RequiresNoPermission; import android.annotation.RequiresPermission; import android.annotation.SdkConstant; import android.annotation.SdkConstant.SdkConstantType; import android.annotation.SuppressLint; import android.annotation.SystemApi; import android.app.PendingIntent; import android.bluetooth.BluetoothDevice.AddressType; import android.bluetooth.BluetoothDevice.Transport; import android.bluetooth.BluetoothProfile.ConnectionPolicy; import android.bluetooth.annotations.RequiresBluetoothAdvertisePermission; import android.bluetooth.annotations.RequiresBluetoothConnectPermission; import android.bluetooth.annotations.RequiresBluetoothLocationPermission; import android.bluetooth.annotations.RequiresBluetoothScanPermission; import android.bluetooth.annotations.RequiresLegacyBluetoothAdminPermission; import android.bluetooth.annotations.RequiresLegacyBluetoothPermission; import android.bluetooth.le.BluetoothLeAdvertiser; import android.bluetooth.le.BluetoothLeScanner; import android.bluetooth.le.DistanceMeasurementManager; import android.bluetooth.le.PeriodicAdvertisingManager; import android.bluetooth.le.ScanCallback; import android.bluetooth.le.ScanFilter; import android.bluetooth.le.ScanRecord; import android.bluetooth.le.ScanResult; import android.bluetooth.le.ScanSettings; import android.compat.annotation.UnsupportedAppUsage; import android.content.AttributionSource; import android.content.Context; import android.content.pm.PackageManager; import android.os.Binder; import android.os.BluetoothServiceManager; import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.os.IBinder; import android.os.IpcDataCache; import android.os.Looper; import android.os.ParcelUuid; import android.os.Process; import android.os.RemoteException; import android.sysprop.BluetoothProperties; import android.util.Log; import android.util.Pair; import com.android.bluetooth.flags.Flags; import com.android.internal.annotations.GuardedBy; import com.android.modules.expresslog.Counter; import java.io.IOException; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.time.Duration; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Set; import java.util.UUID; import java.util.WeakHashMap; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.Executor; import java.util.concurrent.locks.ReentrantReadWriteLock; import java.util.function.BiFunction; /** * Represents the local device Bluetooth adapter. The {@link BluetoothAdapter} lets you perform * fundamental Bluetooth tasks, such as initiate device discovery, query a list of bonded (paired) * devices, instantiate a {@link BluetoothDevice} using a known MAC address, and create a {@link * BluetoothServerSocket} to listen for connection requests from other devices, and start a scan for * Bluetooth LE devices. * *
To get a {@link BluetoothAdapter} representing the local Bluetooth adapter, call the {@link * BluetoothManager#getAdapter} function on {@link BluetoothManager}. On JELLY_BEAN_MR1 and below * you will need to use the static {@link #getDefaultAdapter} method instead. * *
Fundamentally, this is your starting point for all Bluetooth actions. Once you have the local * adapter, you can get a set of {@link BluetoothDevice} objects representing all paired devices * with {@link #getBondedDevices()}; start device discovery with {@link #startDiscovery()}; or * create a {@link BluetoothServerSocket} to listen for incoming RFComm connection requests with * {@link #listenUsingRfcommWithServiceRecord(String, UUID)}; listen for incoming L2CAP * Connection-oriented Channels (CoC) connection requests with {@link #listenUsingL2capChannel()}; * or start a scan for Bluetooth LE devices with {@link BluetoothLeScanner#startScan(ScanCallback)} * using the scanner from {@link #getBluetoothLeScanner()}. * *
This class is thread safe.
For more information about using Bluetooth, read the Bluetooth developer guide.
Intent.getIntExtra(BluetoothAdapter.EXTRA_STATE,
* BluetoothAdapter.ERROR)
*/
public static final int ERROR = Integer.MIN_VALUE;
/**
* Broadcast Action: The state of the local Bluetooth adapter has been changed.
*
*
For example, Bluetooth has been turned on or off. * *
Always contains the extra fields {@link #EXTRA_STATE} and {@link #EXTRA_PREVIOUS_STATE} * containing the new and old states respectively. */ @RequiresLegacyBluetoothPermission @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_STATE_CHANGED = "android.bluetooth.adapter.action.STATE_CHANGED"; /** * Used as an int extra field in {@link #ACTION_STATE_CHANGED} intents to request the current * power state. Possible values are: {@link #STATE_OFF}, {@link #STATE_TURNING_ON}, {@link * #STATE_ON}, {@link #STATE_TURNING_OFF}, */ public static final String EXTRA_STATE = "android.bluetooth.adapter.extra.STATE"; /** * Used as an int extra field in {@link #ACTION_STATE_CHANGED} intents to request the previous * power state. Possible values are: {@link #STATE_OFF}, {@link #STATE_TURNING_ON}, {@link * #STATE_ON}, {@link #STATE_TURNING_OFF} */ public static final String EXTRA_PREVIOUS_STATE = "android.bluetooth.adapter.extra.PREVIOUS_STATE"; /** @hide */ @IntDef( prefix = {"STATE_"}, value = { STATE_OFF, STATE_TURNING_ON, STATE_ON, STATE_TURNING_OFF, STATE_BLE_TURNING_ON, STATE_BLE_ON, STATE_BLE_TURNING_OFF }) @Retention(RetentionPolicy.SOURCE) public @interface InternalAdapterState {} /** @hide */ @IntDef( prefix = {"STATE_"}, value = { STATE_OFF, STATE_TURNING_ON, STATE_ON, STATE_TURNING_OFF, }) @Retention(RetentionPolicy.SOURCE) public @interface AdapterState {} /** Indicates the local Bluetooth adapter is off. */ public static final int STATE_OFF = 10; /** * Indicates the local Bluetooth adapter is turning on. However local clients should wait for * {@link #STATE_ON} before attempting to use the adapter. */ public static final int STATE_TURNING_ON = 11; /** Indicates the local Bluetooth adapter is on, and ready for use. */ public static final int STATE_ON = 12; /** * Indicates the local Bluetooth adapter is turning off. Local clients should immediately * attempt graceful disconnection of any remote links. */ public static final int STATE_TURNING_OFF = 13; /** * Indicates the local Bluetooth adapter is turning Bluetooth LE mode on. * * @hide */ public static final int STATE_BLE_TURNING_ON = 14; /** * Indicates the local Bluetooth adapter is in LE only mode. * * @hide */ @SystemApi public static final int STATE_BLE_ON = 15; /** * Indicates the local Bluetooth adapter is turning off LE only mode. * * @hide */ public static final int STATE_BLE_TURNING_OFF = 16; /** * Used as an optional extra field for the {@link PendingIntent} provided to {@link * #startRfcommServer(String, UUID, PendingIntent)}. This is useful for when an application * registers multiple RFCOMM listeners, and needs a way to determine which service record the * incoming {@link BluetoothSocket} is using. * * @hide */ @SystemApi @SuppressLint("ActionValue") public static final String EXTRA_RFCOMM_LISTENER_ID = "android.bluetooth.adapter.extra.RFCOMM_LISTENER_ID"; /** @hide */ @IntDef( value = { BluetoothStatusCodes.SUCCESS, BluetoothStatusCodes.ERROR_TIMEOUT, BluetoothStatusCodes.RFCOMM_LISTENER_START_FAILED_UUID_IN_USE, BluetoothStatusCodes.RFCOMM_LISTENER_OPERATION_FAILED_NO_MATCHING_SERVICE_RECORD, BluetoothStatusCodes.RFCOMM_LISTENER_OPERATION_FAILED_DIFFERENT_APP, BluetoothStatusCodes.RFCOMM_LISTENER_FAILED_TO_CREATE_SERVER_SOCKET, BluetoothStatusCodes.RFCOMM_LISTENER_FAILED_TO_CLOSE_SERVER_SOCKET, BluetoothStatusCodes.RFCOMM_LISTENER_NO_SOCKET_AVAILABLE, }) @Retention(RetentionPolicy.SOURCE) public @interface RfcommListenerResult {} /** * Human-readable string helper for AdapterState and InternalAdapterState * * @hide */ @SystemApi @RequiresNoPermission @NonNull public static String nameForState(@InternalAdapterState int state) { switch (state) { case STATE_OFF: return "OFF"; case STATE_TURNING_ON: return "TURNING_ON"; case STATE_ON: return "ON"; case STATE_TURNING_OFF: return "TURNING_OFF"; case STATE_BLE_TURNING_ON: return "BLE_TURNING_ON"; case STATE_BLE_ON: return "BLE_ON"; case STATE_BLE_TURNING_OFF: return "BLE_TURNING_OFF"; default: return "?!?!? (" + state + ")"; } } /** * Activity Action: Show a system activity that requests discoverable mode. This activity will * also request the user to turn on Bluetooth if it is not currently enabled. * *
Discoverable mode is equivalent to {@link #SCAN_MODE_CONNECTABLE_DISCOVERABLE}. It allows * remote devices to see this Bluetooth adapter when they perform a discovery. * *
For privacy, Android is not discoverable by default. * *
The sender of this Intent can optionally use extra field {@link * #EXTRA_DISCOVERABLE_DURATION} to request the duration of discoverability. Currently the * default duration is 120 seconds, and maximum duration is capped at 300 seconds for each * request. * *
Notification of the result of this activity is posted using the {@link
* android.app.Activity#onActivityResult} callback. The resultCode
will be the
* duration (in seconds) of discoverability or {@link android.app.Activity#RESULT_CANCELED} if
* the user rejected discoverability or an error has occurred.
*
*
Applications can also listen for {@link #ACTION_SCAN_MODE_CHANGED} for global notification * whenever the scan mode changes. For example, an application can be notified when the device * has ended discoverability. */ @RequiresLegacyBluetoothPermission @RequiresBluetoothAdvertisePermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_ADVERTISE) @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) public static final String ACTION_REQUEST_DISCOVERABLE = "android.bluetooth.adapter.action.REQUEST_DISCOVERABLE"; /** * Used as an optional int extra field in {@link #ACTION_REQUEST_DISCOVERABLE} intents to * request a specific duration for discoverability in seconds. The current default is 120 * seconds, and requests over 300 seconds will be capped. These values could change. */ public static final String EXTRA_DISCOVERABLE_DURATION = "android.bluetooth.adapter.extra.DISCOVERABLE_DURATION"; /** * Activity Action: Show a system activity that allows the user to turn on Bluetooth. * *
This system activity will return once Bluetooth has completed turning on, or the user has * decided not to turn Bluetooth on. * *
Notification of the result of this activity is posted using the {@link
* android.app.Activity#onActivityResult} callback. The resultCode
will be {@link
* android.app.Activity#RESULT_OK} if Bluetooth has been turned on or {@link
* android.app.Activity#RESULT_CANCELED} if the user has rejected the request or an error has
* occurred.
*
*
Applications can also listen for {@link #ACTION_STATE_CHANGED} for global notification * whenever Bluetooth is turned on or off. */ @RequiresLegacyBluetoothPermission @RequiresBluetoothConnectPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT) @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) public static final String ACTION_REQUEST_ENABLE = "android.bluetooth.adapter.action.REQUEST_ENABLE"; /** * Activity Action: Show a system activity that allows the user to turn off Bluetooth. This is * used only if permission review is enabled which is for apps targeting API less than 23 * require a permission review before any of the app's components can run. * *
This system activity will return once Bluetooth has completed turning off, or the user has * decided not to turn Bluetooth off. * *
Notification of the result of this activity is posted using the {@link
* android.app.Activity#onActivityResult} callback. The resultCode
will be {@link
* android.app.Activity#RESULT_OK} if Bluetooth has been turned off or {@link
* android.app.Activity#RESULT_CANCELED} if the user has rejected the request or an error has
* occurred.
*
*
Applications can also listen for {@link #ACTION_STATE_CHANGED} for global notification * whenever Bluetooth is turned on or off. * * @hide */ @SystemApi @RequiresLegacyBluetoothPermission @RequiresBluetoothConnectPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT) @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) @SuppressLint("ActionValue") public static final String ACTION_REQUEST_DISABLE = "android.bluetooth.adapter.action.REQUEST_DISABLE"; /** * Activity Action: Show a system activity that allows user to enable BLE scans even when * Bluetooth is turned off. * *
Notification of result of this activity is posted using {@link
* android.app.Activity#onActivityResult}. The resultCode
will be {@link
* android.app.Activity#RESULT_OK} if BLE scan always available setting is turned on or {@link
* android.app.Activity#RESULT_CANCELED} if the user has rejected the request or an error
* occurred.
*
* @hide
*/
@SystemApi
@SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
public static final String ACTION_REQUEST_BLE_SCAN_ALWAYS_AVAILABLE =
"android.bluetooth.adapter.action.REQUEST_BLE_SCAN_ALWAYS_AVAILABLE";
/**
* Broadcast Action: Indicates the Bluetooth scan mode of the local Adapter has changed.
*
*
Always contains the extra fields {@link #EXTRA_SCAN_MODE} and {@link * #EXTRA_PREVIOUS_SCAN_MODE} containing the new and old scan modes respectively. */ @RequiresLegacyBluetoothPermission @RequiresBluetoothScanPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_SCAN_MODE_CHANGED = "android.bluetooth.adapter.action.SCAN_MODE_CHANGED"; /** * Used as an int extra field in {@link #ACTION_SCAN_MODE_CHANGED} intents to request the * current scan mode. Possible values are: {@link #SCAN_MODE_NONE}, {@link * #SCAN_MODE_CONNECTABLE}, {@link #SCAN_MODE_CONNECTABLE_DISCOVERABLE}, */ public static final String EXTRA_SCAN_MODE = "android.bluetooth.adapter.extra.SCAN_MODE"; /** * Used as an int extra field in {@link #ACTION_SCAN_MODE_CHANGED} intents to request the * previous scan mode. Possible values are: {@link #SCAN_MODE_NONE}, {@link * #SCAN_MODE_CONNECTABLE}, {@link #SCAN_MODE_CONNECTABLE_DISCOVERABLE}, */ public static final String EXTRA_PREVIOUS_SCAN_MODE = "android.bluetooth.adapter.extra.PREVIOUS_SCAN_MODE"; /** @hide */ @IntDef( prefix = {"SCAN_"}, value = {SCAN_MODE_NONE, SCAN_MODE_CONNECTABLE, SCAN_MODE_CONNECTABLE_DISCOVERABLE}) @Retention(RetentionPolicy.SOURCE) public @interface ScanMode {} /** @hide */ @IntDef( value = { BluetoothStatusCodes.SUCCESS, BluetoothStatusCodes.ERROR_UNKNOWN, BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED, BluetoothStatusCodes.ERROR_MISSING_BLUETOOTH_SCAN_PERMISSION }) @Retention(RetentionPolicy.SOURCE) public @interface ScanModeStatusCode {} /** * Indicates that both inquiry scan and page scan are disabled on the local Bluetooth adapter. * Therefore this device is neither discoverable nor connectable from remote Bluetooth devices. */ public static final int SCAN_MODE_NONE = 20; /** * Indicates that inquiry scan is disabled, but page scan is enabled on the local Bluetooth * adapter. Therefore this device is not discoverable from remote Bluetooth devices, but is * connectable from remote devices that have previously discovered this device. */ public static final int SCAN_MODE_CONNECTABLE = 21; /** * Indicates that both inquiry scan and page scan are enabled on the local Bluetooth adapter. * Therefore this device is both discoverable and connectable from remote Bluetooth devices. */ public static final int SCAN_MODE_CONNECTABLE_DISCOVERABLE = 23; /** * Used as parameter for {@link #setBluetoothHciSnoopLoggingMode}, indicates that the Bluetooth * HCI snoop logging should be disabled. * * @hide */ @SystemApi public static final int BT_SNOOP_LOG_MODE_DISABLED = 0; /** * Used as parameter for {@link #setBluetoothHciSnoopLoggingMode}, indicates that the Bluetooth * HCI snoop logging should be enabled without collecting potential Personally Identifiable * Information and packet data. * *
See {@link #BT_SNOOP_LOG_MODE_FULL} to enable logging of all information available. * * @hide */ @SystemApi public static final int BT_SNOOP_LOG_MODE_FILTERED = 1; /** * Used as parameter for {@link #setSnoopLogMode}, indicates that the Bluetooth HCI snoop * logging should be enabled. * *
See {@link #BT_SNOOP_LOG_MODE_FILTERED} to enable logging with filtered information. * * @hide */ @SystemApi public static final int BT_SNOOP_LOG_MODE_FULL = 2; /** @hide */ @IntDef( value = { BT_SNOOP_LOG_MODE_DISABLED, BT_SNOOP_LOG_MODE_FILTERED, BT_SNOOP_LOG_MODE_FULL }) @Retention(RetentionPolicy.SOURCE) public @interface BluetoothSnoopLogMode {} /** @hide */ @IntDef( value = { BluetoothStatusCodes.SUCCESS, BluetoothStatusCodes.ERROR_UNKNOWN, }) @Retention(RetentionPolicy.SOURCE) public @interface SetSnoopLogModeStatusCode {} /** @hide */ @IntDef( prefix = "ACTIVE_DEVICE_", value = {ACTIVE_DEVICE_AUDIO, ACTIVE_DEVICE_PHONE_CALL, ACTIVE_DEVICE_ALL}) @Retention(RetentionPolicy.SOURCE) public @interface ActiveDeviceUse {} /** * Use the specified device for audio (a2dp and hearing aid profile) * * @hide */ @SystemApi public static final int ACTIVE_DEVICE_AUDIO = 0; /** * Use the specified device for phone calls (headset profile and hearing aid profile) * * @hide */ @SystemApi public static final int ACTIVE_DEVICE_PHONE_CALL = 1; /** * Use the specified device for a2dp, hearing aid profile, and headset profile * * @hide */ @SystemApi public static final int ACTIVE_DEVICE_ALL = 2; /** @hide */ @IntDef({BluetoothProfile.HEADSET, BluetoothProfile.A2DP, BluetoothProfile.HEARING_AID}) @Retention(RetentionPolicy.SOURCE) public @interface ActiveDeviceProfile {} /** * Broadcast Action: The local Bluetooth adapter has started the remote device discovery * process. * *
This usually involves an inquiry scan of about 12 seconds, followed by a page scan of each * new device to retrieve its Bluetooth name. * *
Register for {@link BluetoothDevice#ACTION_FOUND} to be notified as remote Bluetooth * devices are found. * *
Device discovery is a heavyweight procedure. New connections to remote Bluetooth devices * should not be attempted while discovery is in progress, and existing connections will * experience limited bandwidth and high latency. Use {@link #cancelDiscovery()} to cancel an * ongoing discovery. */ @RequiresLegacyBluetoothPermission @RequiresBluetoothScanPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_DISCOVERY_STARTED = "android.bluetooth.adapter.action.DISCOVERY_STARTED"; /** Broadcast Action: The local Bluetooth adapter has finished the device discovery process. */ @RequiresLegacyBluetoothPermission @RequiresBluetoothScanPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_DISCOVERY_FINISHED = "android.bluetooth.adapter.action.DISCOVERY_FINISHED"; /** * Broadcast Action: The local Bluetooth adapter has changed its friendly Bluetooth name. * *
This name is visible to remote Bluetooth devices. * *
Always contains the extra field {@link #EXTRA_LOCAL_NAME} containing the name. */ @RequiresLegacyBluetoothPermission @RequiresBluetoothConnectPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_LOCAL_NAME_CHANGED = "android.bluetooth.adapter.action.LOCAL_NAME_CHANGED"; /** * Used as a String extra field in {@link #ACTION_LOCAL_NAME_CHANGED} intents to request the * local Bluetooth name. */ public static final String EXTRA_LOCAL_NAME = "android.bluetooth.adapter.extra.LOCAL_NAME"; /** * Intent used to broadcast the change in connection state of the local Bluetooth adapter to a * profile of the remote device. When the adapter is not connected to any profiles of any remote * devices and it attempts a connection to a profile this intent will be sent. Once connected, * this intent will not be sent for any more connection attempts to any profiles of any remote * device. When the adapter disconnects from the last profile its connected to of any remote * device, this intent will be sent. * *
This intent is useful for applications that are only concerned about whether the local * adapter is connected to any profile of any device and are not really concerned about which * profile. For example, an application which displays an icon to display whether Bluetooth is * connected or not can use this intent. * *
This intent will have 3 extras: {@link #EXTRA_CONNECTION_STATE} - The current connection * state. {@link #EXTRA_PREVIOUS_CONNECTION_STATE}- The previous connection state. {@link * BluetoothDevice#EXTRA_DEVICE} - The remote device. * *
{@link #EXTRA_CONNECTION_STATE} or {@link #EXTRA_PREVIOUS_CONNECTION_STATE} can be any of * {@link #STATE_DISCONNECTED}, {@link #STATE_CONNECTING}, {@link #STATE_CONNECTED}, {@link * #STATE_DISCONNECTING}. */ @RequiresLegacyBluetoothPermission @RequiresBluetoothConnectPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_CONNECTION_STATE_CHANGED = "android.bluetooth.adapter.action.CONNECTION_STATE_CHANGED"; /** * Extra used by {@link #ACTION_CONNECTION_STATE_CHANGED} * *
This extra represents the current connection state. */ public static final String EXTRA_CONNECTION_STATE = "android.bluetooth.adapter.extra.CONNECTION_STATE"; /** * Extra used by {@link #ACTION_CONNECTION_STATE_CHANGED} * *
This extra represents the previous connection state. */ public static final String EXTRA_PREVIOUS_CONNECTION_STATE = "android.bluetooth.adapter.extra.PREVIOUS_CONNECTION_STATE"; /** * Broadcast Action: The Bluetooth adapter state has changed in LE only mode. * * @hide */ @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) @SystemApi public static final String ACTION_BLE_STATE_CHANGED = "android.bluetooth.adapter.action.BLE_STATE_CHANGED"; /** * Intent used to broadcast the change in the Bluetooth address of the local Bluetooth adapter. * *
Always contains the extra field {@link #EXTRA_BLUETOOTH_ADDRESS} containing the Bluetooth * address. * *
Note: only system level processes are allowed to send this defined broadcast. * * @hide */ @RequiresBluetoothConnectPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_BLUETOOTH_ADDRESS_CHANGED = "android.bluetooth.adapter.action.BLUETOOTH_ADDRESS_CHANGED"; /** * Used as a String extra field in {@link #ACTION_BLUETOOTH_ADDRESS_CHANGED} intent to store the * local Bluetooth address. * * @hide */ public static final String EXTRA_BLUETOOTH_ADDRESS = "android.bluetooth.adapter.extra.BLUETOOTH_ADDRESS"; /** * Broadcast Action: The notifys Bluetooth ACL connected event. This will be by BLE Always on * enabled application to know the ACL_CONNECTED event when Bluetooth state in STATE_BLE_ON. * This denotes GATT connection as Bluetooth LE is the only feature available in STATE_BLE_ON * *
This is counterpart of {@link BluetoothDevice#ACTION_ACL_CONNECTED} which works in * Bluetooth state STATE_ON * * @hide */ @RequiresBluetoothConnectPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_BLE_ACL_CONNECTED = "android.bluetooth.adapter.action.BLE_ACL_CONNECTED"; /** * Broadcast Action: The notifys Bluetooth ACL connected event. This will be by BLE Always on * enabled application to know the ACL_DISCONNECTED event when Bluetooth state in STATE_BLE_ON. * This denotes GATT disconnection as Bluetooth LE is the only feature available in STATE_BLE_ON * *
This is counterpart of {@link BluetoothDevice#ACTION_ACL_DISCONNECTED} which works in * Bluetooth state STATE_ON * * @hide */ @RequiresBluetoothConnectPermission @RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_BLE_ACL_DISCONNECTED = "android.bluetooth.adapter.action.BLE_ACL_DISCONNECTED"; /** The profile is in disconnected state */ public static final int STATE_DISCONNECTED = 0; // BluetoothProtoEnums.CONNECTION_STATE_DISCONNECTED; /** The profile is in connecting state */ public static final int STATE_CONNECTING = 1; // BluetoothProtoEnums.CONNECTION_STATE_CONNECTING; /** The profile is in connected state */ public static final int STATE_CONNECTED = 2; // BluetoothProtoEnums.CONNECTION_STATE_CONNECTED; /** The profile is in disconnecting state */ public static final int STATE_DISCONNECTING = 3; // BluetoothProtoEnums.CONNECTION_STATE_DISCONNECTING; /** @hide */ @Retention(RetentionPolicy.SOURCE) @IntDef( prefix = {"STATE_"}, value = { STATE_DISCONNECTED, STATE_CONNECTING, STATE_CONNECTED, STATE_DISCONNECTING, }) public @interface ConnectionState {} /** * Broadcast Action: The AutoOn feature state has been changed for one user * *
Always contains the extra fields {@link #EXTRA_AUTO_ON_STATE} * * @hide */ @SystemApi @FlaggedApi(Flags.FLAG_AUTO_ON_FEATURE) @RequiresPermission(android.Manifest.permission.BLUETOOTH_PRIVILEGED) @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) @BroadcastBehavior(registeredOnly = true, protectedBroadcast = true) public static final String ACTION_AUTO_ON_STATE_CHANGED = "android.bluetooth.action.AUTO_ON_STATE_CHANGED"; /** * Used as an int extra field in {@link #ACTION_AUTO_ON_STATE_CHANGED} intents. * *
Possible values are: {@link #AUTO_ON_STATE_DISABLED}, {@link #AUTO_ON_STATE_ENABLED}
*
* @hide
*/
@SystemApi
@FlaggedApi(Flags.FLAG_AUTO_ON_FEATURE)
public static final String EXTRA_AUTO_ON_STATE = "android.bluetooth.extra.AUTO_ON_STATE";
/**
* Indicates the AutoOn feature is OFF.
*
* @hide
*/
@SystemApi
@FlaggedApi(Flags.FLAG_AUTO_ON_FEATURE)
public static final int AUTO_ON_STATE_DISABLED = 1;
/**
* Indicates the AutoOn feature is ON.
*
* @hide
*/
@SystemApi
@FlaggedApi(Flags.FLAG_AUTO_ON_FEATURE)
public static final int AUTO_ON_STATE_ENABLED = 2;
/**
* Audio mode representing output only.
*
* @hide
*/
@SystemApi public static final String AUDIO_MODE_OUTPUT_ONLY = "audio_mode_output_only";
/**
* Audio mode representing both output and microphone input.
*
* @hide
*/
@SystemApi public static final String AUDIO_MODE_DUPLEX = "audio_mode_duplex";
/** @hide */
public static final String BLUETOOTH_MANAGER_SERVICE = "bluetooth_manager";
private final IBinder mToken = new Binder(DESCRIPTOR);
/**
* When creating a ServerSocket using listenUsingRfcommOn() or listenUsingL2capOn() use
* SOCKET_CHANNEL_AUTO_STATIC to create a ServerSocket that auto assigns a channel number to the
* first bluetooth socket. The channel number assigned to this first Bluetooth Socket will be
* stored in the ServerSocket, and reused for subsequent Bluetooth sockets.
*
* @hide
*/
public static final int SOCKET_CHANNEL_AUTO_STATIC_NO_SDP = -2;
/** @hide */
public static final Map Currently Android only supports one Bluetooth adapter, but the API could be extended to
* support more. This will always return the default adapter.
*
* @return the default local adapter, or null if Bluetooth is not supported on this hardware
* platform
* @deprecated this method will continue to work, but developers are strongly encouraged to
* migrate to using {@link BluetoothManager#getAdapter()}, since that approach enables
* support for {@link Context#createAttributionContext}.
*/
@Deprecated
@RequiresNoPermission
public static synchronized BluetoothAdapter getDefaultAdapter() {
if (sAdapter == null) {
sAdapter = createAdapter(AttributionSource.myAttributionSource());
}
return sAdapter;
}
/** @hide */
public static BluetoothAdapter createAdapter(AttributionSource attributionSource) {
BluetoothServiceManager manager =
BluetoothFrameworkInitializer.getBluetoothServiceManager();
if (manager == null) {
Log.e(TAG, "BluetoothServiceManager is null");
return null;
}
IBluetoothManager service =
IBluetoothManager.Stub.asInterface(
manager.getBluetoothManagerServiceRegisterer().get());
if (service != null) {
return new BluetoothAdapter(service, attributionSource);
} else {
Log.e(TAG, "Bluetooth service is null");
return null;
}
}
/** Use {@link #getDefaultAdapter} to get the BluetoothAdapter instance. */
BluetoothAdapter(IBluetoothManager managerService, AttributionSource attributionSource) {
mManagerService = requireNonNull(managerService);
mAttributionSource = requireNonNull(attributionSource);
mServiceLock.writeLock().lock();
try {
mService = getBluetoothService(mManagerCallback);
} finally {
mServiceLock.writeLock().unlock();
}
}
/**
* Get a {@link BluetoothDevice} object for the given Bluetooth hardware address.
*
* Valid Bluetooth hardware addresses must be upper case, in big endian byte order, and in a
* format such as "00:11:22:33:AA:BB". The helper {@link #checkBluetoothAddress} is available to
* validate a Bluetooth address.
*
* A {@link BluetoothDevice} will always be returned for a valid hardware address, even if
* this adapter has never seen that device.
*
* @param address valid Bluetooth MAC address
* @throws IllegalArgumentException if address is invalid
*/
@RequiresNoPermission
public BluetoothDevice getRemoteDevice(String address) {
final BluetoothDevice res = new BluetoothDevice(address);
res.setAttributionSource(mAttributionSource);
return res;
}
/**
* Get a {@link BluetoothDevice} object for the given Bluetooth hardware address and
* addressType.
*
* Valid Bluetooth hardware addresses must be upper case, in big endian byte order, and in a
* format such as "00:11:22:33:AA:BB". The helper {@link #checkBluetoothAddress} is available to
* validate a Bluetooth address.
*
* A {@link BluetoothDevice} will always be returned for a valid hardware address and type,
* even if this adapter has never seen that device.
*
* @param address valid Bluetooth MAC address
* @param addressType Bluetooth address type
* @throws IllegalArgumentException if address is invalid
*/
@RequiresNoPermission
@NonNull
public BluetoothDevice getRemoteLeDevice(
@NonNull String address, @AddressType int addressType) {
final BluetoothDevice res = new BluetoothDevice(address, addressType);
res.setAttributionSource(mAttributionSource);
return res;
}
/**
* Get a {@link BluetoothDevice} object for the given Bluetooth hardware address.
*
* Valid Bluetooth hardware addresses must be 6 bytes. This method expects the address in
* network byte order (MSB first).
*
* A {@link BluetoothDevice} will always be returned for a valid hardware address, even if
* this adapter has never seen that device.
*
* @param address Bluetooth MAC address (6 bytes)
* @throws IllegalArgumentException if address is invalid
*/
@RequiresNoPermission
public BluetoothDevice getRemoteDevice(byte[] address) {
if (address == null || address.length != 6) {
throw new IllegalArgumentException("Bluetooth address must have 6 bytes");
}
final BluetoothDevice res =
new BluetoothDevice(
String.format(
Locale.US,
"%02X:%02X:%02X:%02X:%02X:%02X",
address[0],
address[1],
address[2],
address[3],
address[4],
address[5]));
res.setAttributionSource(mAttributionSource);
return res;
}
/**
* Returns a {@link BluetoothLeAdvertiser} object for Bluetooth LE Advertising operations. Will
* return null if Bluetooth is turned off or if Bluetooth LE Advertising is not supported on
* this device.
*
* Use {@link #isMultipleAdvertisementSupported()} to check whether LE Advertising is
* supported on this device before calling this method.
*/
@RequiresNoPermission
public BluetoothLeAdvertiser getBluetoothLeAdvertiser() {
if (!getLeAccess()) {
return null;
}
synchronized (mLock) {
if (mBluetoothLeAdvertiser == null) {
mBluetoothLeAdvertiser = new BluetoothLeAdvertiser(this);
}
return mBluetoothLeAdvertiser;
}
}
/**
* Returns a {@link PeriodicAdvertisingManager} object for Bluetooth LE Periodic Advertising
* operations. Will return null if Bluetooth is turned off or if Bluetooth LE Periodic
* Advertising is not supported on this device.
*
* Use {@link #isLePeriodicAdvertisingSupported()} to check whether LE Periodic Advertising
* is supported on this device before calling this method.
*
* @hide
*/
@RequiresNoPermission
public PeriodicAdvertisingManager getPeriodicAdvertisingManager() {
if (!getLeAccess()) {
return null;
}
if (!isLePeriodicAdvertisingSupported()) {
return null;
}
synchronized (mLock) {
if (mPeriodicAdvertisingManager == null) {
mPeriodicAdvertisingManager = new PeriodicAdvertisingManager(this);
}
return mPeriodicAdvertisingManager;
}
}
/** Returns a {@link BluetoothLeScanner} object for Bluetooth LE scan operations. */
@RequiresNoPermission
public BluetoothLeScanner getBluetoothLeScanner() {
if (!getLeAccess()) {
return null;
}
synchronized (mLock) {
if (mBluetoothLeScanner == null) {
mBluetoothLeScanner = new BluetoothLeScanner(this);
}
return mBluetoothLeScanner;
}
}
/**
* Get a {@link DistanceMeasurementManager} object for distance measurement operations.
*
* Use {@link #isDistanceMeasurementSupported()} to check whether distance measurement is
* supported on this device before calling this method.
*
* @return a new instance of {@link DistanceMeasurementManager}, or {@code null} if Bluetooth is
* turned off
* @throws UnsupportedOperationException if distance measurement is not supported on this device
* @hide
*/
@SystemApi
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public @Nullable DistanceMeasurementManager getDistanceMeasurementManager() {
if (!getLeAccess()) {
return null;
}
if (isDistanceMeasurementSupported() != BluetoothStatusCodes.FEATURE_SUPPORTED) {
throw new UnsupportedOperationException("Distance measurement is unsupported");
}
synchronized (mLock) {
if (mDistanceMeasurementManager == null) {
mDistanceMeasurementManager = new DistanceMeasurementManager(this);
}
return mDistanceMeasurementManager;
}
}
/**
* Return true if Bluetooth is currently enabled and ready for use.
*
* Equivalent to: This returns true if current state is either STATE_ON or STATE_BLE_ON
*
* @return true if the local Bluetooth LE adapter is turned on
* @hide
*/
@SystemApi
@RequiresNoPermission
public boolean isLeEnabled() {
final int state = getLeState();
if (DBG) {
Log.d(TAG, "isLeEnabled(): " + BluetoothAdapter.nameForState(state));
}
return (state == BluetoothAdapter.STATE_ON
|| state == BluetoothAdapter.STATE_BLE_ON
|| state == BluetoothAdapter.STATE_TURNING_ON
|| state == BluetoothAdapter.STATE_TURNING_OFF);
}
/**
* Turns off Bluetooth LE which was earlier turned on by calling enableBLE().
*
* If the internal Adapter state is STATE_BLE_ON, this would trigger the transition to
* STATE_OFF and completely shut-down Bluetooth
*
* If the Adapter state is STATE_ON, This would unregister the existence of special Bluetooth
* LE application and hence the further turning off of Bluetooth from UI would ensure the
* complete turn-off of Bluetooth rather than staying back BLE only state
*
* This is an asynchronous call: it will return immediately, and clients should listen for
* {@link #ACTION_BLE_STATE_CHANGED} to be notified of subsequent adapter state changes If this
* call returns true, then the adapter state will immediately transition from {@link #STATE_ON}
* to {@link #STATE_TURNING_OFF}, and some time later transition to either {@link #STATE_BLE_ON}
* or {@link #STATE_OFF} based on the existence of the further Always BLE ON enabled
* applications If this call returns false then there was an immediate problem that will prevent
* the QAdapter from being turned off - such as the QAadapter already being turned off.
*
* @return true to indicate success, or false on immediate error
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public boolean disableBLE() {
if (!isBleScanAlwaysAvailable()) {
return false;
}
try {
return mManagerService.disableBle(mAttributionSource, mToken);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return false;
}
/**
* Applications who want to only use Bluetooth Low Energy (BLE) can call enableBLE.
*
* enableBLE registers the existence of an app using only LE functions.
*
* enableBLE may enable Bluetooth to an LE only mode so that an app can use LE related
* features (BluetoothGatt or BluetoothGattServer classes)
*
* If the user disables Bluetooth while an app is registered to use LE only features,
* Bluetooth will remain on in LE only mode for the app.
*
* When Bluetooth is in LE only mode, it is not shown as ON to the UI.
*
* This is an asynchronous call: it returns immediately, and clients should listen for {@link
* #ACTION_BLE_STATE_CHANGED} to be notified of adapter state changes.
*
* If this call returns * true, then the adapter state is either in a mode where LE is
* available, or will transition from {@link #STATE_OFF} to {@link #STATE_BLE_TURNING_ON}, and
* some time later transition to either {@link #STATE_OFF} or {@link #STATE_BLE_ON}.
*
* If this call returns false then there was an immediate problem that prevents the adapter
* from being turned on - such as Airplane mode.
*
* {@link #ACTION_BLE_STATE_CHANGED} returns the Bluetooth Adapter's various states, It
* includes all the classic Bluetooth Adapter states along with internal BLE only states
*
* @return true to indicate Bluetooth LE will be available, or false on immediate error
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public boolean enableBLE() {
if (!isBleScanAlwaysAvailable()) {
return false;
}
try {
return mManagerService.enableBle(mAttributionSource, mToken);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return false;
}
/**
* There are several instances of IpcDataCache used in this class. BluetoothCache wraps up the
* common code. All caches are created with a maximum of eight entries, and the key is in the
* bluetooth module. The name is set to the api.
*/
private static class BluetoothCache Possible return values are {@link #STATE_OFF}, {@link #STATE_TURNING_ON}, {@link
* #STATE_ON}, {@link #STATE_TURNING_OFF}.
*
* @return current state of Bluetooth adapter
*/
@RequiresLegacyBluetoothPermission
@RequiresNoPermission
public @AdapterState int getState() {
int state = getStateInternal();
// Consider all internal states as OFF
if (state == BluetoothAdapter.STATE_BLE_ON
|| state == BluetoothAdapter.STATE_BLE_TURNING_ON
|| state == BluetoothAdapter.STATE_BLE_TURNING_OFF) {
if (VDBG) {
Log.d(TAG, "Consider " + BluetoothAdapter.nameForState(state) + " state as OFF");
}
state = BluetoothAdapter.STATE_OFF;
}
if (VDBG) {
Log.d(
TAG,
""
+ hashCode()
+ ": getState(). Returning "
+ BluetoothAdapter.nameForState(state));
}
return state;
}
/**
* Get the current state of the local Bluetooth adapter
*
* This returns current internal state of Adapter including LE ON/OFF
*
* Possible return values are {@link #STATE_OFF}, {@link #STATE_BLE_TURNING_ON}, {@link
* #STATE_BLE_ON}, {@link #STATE_TURNING_ON}, {@link #STATE_ON}, {@link #STATE_TURNING_OFF},
* {@link #STATE_BLE_TURNING_OFF}.
*
* @return current state of Bluetooth adapter
* @hide
*/
@RequiresLegacyBluetoothPermission
@RequiresNoPermission
@UnsupportedAppUsage(
publicAlternatives =
"Use {@link #getState()} instead to determine "
+ "whether you can use BLE & BT classic.")
public @InternalAdapterState int getLeState() {
int state = getStateInternal();
if (VDBG) {
Log.d(TAG, "getLeState() returning " + BluetoothAdapter.nameForState(state));
}
return state;
}
boolean getLeAccess() {
if (getLeState() == STATE_ON) {
return true;
} else if (getLeState() == STATE_BLE_ON) {
return true; // TODO: FILTER SYSTEM APPS HERE <--
}
return false;
}
/**
* Turn on the local Bluetooth adapter—do not use without explicit user action to turn on
* Bluetooth.
*
* This powers on the underlying Bluetooth hardware, and starts all Bluetooth system
* services.
*
* Bluetooth should never be enabled without direct user
* consent. If you want to turn on Bluetooth in order to create a wireless connection,
* you should use the {@link #ACTION_REQUEST_ENABLE} Intent, which will raise a dialog that
* requests user permission to turn on Bluetooth. The {@link #enable()} method is provided only
* for applications that include a user interface for changing system settings, such as a "power
* manager" app.
*
* This is an asynchronous call: it will return immediately, and clients should listen for
* {@link #ACTION_STATE_CHANGED} to be notified of subsequent adapter state changes. If this
* call returns true, then the adapter state will immediately transition from {@link #STATE_OFF}
* to {@link #STATE_TURNING_ON}, and some time later transition to either {@link #STATE_OFF} or
* {@link #STATE_ON}. If this call returns false then there was an immediate problem that will
* prevent the adapter from being turned on - such as Airplane mode, or the adapter is already
* turned on.
*
* @return true to indicate adapter startup has begun, or false on immediate error
* @deprecated Starting with {@link android.os.Build.VERSION_CODES#TIRAMISU}, applications are
* not allowed to enable/disable Bluetooth. Compatibility Note: For applications
* targeting {@link android.os.Build.VERSION_CODES#TIRAMISU} or above, this API will always
* fail and return {@code false}. If apps are targeting an older SDK ({@link
* android.os.Build.VERSION_CODES#S} or below), they can continue to use this API.
* Deprecation Exemptions:
* This gracefully shuts down all Bluetooth connections, stops Bluetooth system services, and
* powers down the underlying Bluetooth hardware.
*
* Bluetooth should never be disabled without direct user
* consent. The {@link #disable()} method is provided only for applications that
* include a user interface for changing system settings, such as a "power manager" app.
*
* This is an asynchronous call: it will return immediately, and clients should listen for
* {@link #ACTION_STATE_CHANGED} to be notified of subsequent adapter state changes. If this
* call returns true, then the adapter state will immediately transition from {@link #STATE_ON}
* to {@link #STATE_TURNING_OFF}, and some time later transition to either {@link #STATE_OFF} or
* {@link #STATE_ON}. If this call returns false then there was an immediate problem that will
* prevent the adapter from being turned off - such as the adapter already being turned off.
*
* @return true to indicate adapter shutdown has begun, or false on immediate error
* @deprecated Starting with {@link android.os.Build.VERSION_CODES#TIRAMISU}, applications are
* not allowed to enable/disable Bluetooth. Compatibility Note: For applications
* targeting {@link android.os.Build.VERSION_CODES#TIRAMISU} or above, this API will always
* fail and return {@code false}. If apps are targeting an older SDK ({@link
* android.os.Build.VERSION_CODES#S} or below), they can continue to use this API.
* Deprecation Exemptions:
* For example, "00:11:22:AA:BB:CC".
*
* @return Bluetooth hardware address as string
* Requires {@code android.Manifest.permission#LOCAL_MAC_ADDRESS} and {@link
* android.Manifest.permission#BLUETOOTH_CONNECT}.
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
public String getAddress() {
try {
return mManagerService.getAddress(mAttributionSource);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return null;
}
/**
* Get the friendly Bluetooth name of the local Bluetooth adapter.
*
* This name is visible to remote Bluetooth devices.
*
* @return the Bluetooth name, or null on error
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public String getName() {
try {
return mManagerService.getName(mAttributionSource);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return null;
}
/** @hide */
@RequiresBluetoothAdvertisePermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_ADVERTISE)
public int getNameLengthForAdvertise() {
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.getNameLengthForAdvertise(mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return -1;
}
/**
* Factory reset bluetooth settings.
*
* @return true to indicate that the config file was successfully cleared
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public boolean clearBluetooth() {
mServiceLock.readLock().lock();
try {
if (mService != null) {
if (mService.factoryReset(mAttributionSource)
&& mManagerService.onFactoryReset(mAttributionSource)) {
return true;
}
}
Log.e(TAG, "factoryReset(): Setting persist.bluetooth.factoryreset to retry later");
BluetoothProperties.factory_reset(true);
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return false;
}
/**
* See {@link #clearBluetooth()}
*
* @return true to indicate that the config file was successfully cleared
* @hide
*/
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public boolean factoryReset() {
return clearBluetooth();
}
/**
* Get the UUIDs supported by the local Bluetooth adapter.
*
* @return the UUIDs supported by the local Bluetooth Adapter.
* @hide
*/
@UnsupportedAppUsage
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public @NonNull ParcelUuid[] getUuids() {
List This name is visible to remote Bluetooth devices.
*
* Valid Bluetooth names are a maximum of 248 bytes using UTF-8 encoding, although many
* remote devices can only display the first 40 characters, and some may be limited to just 20.
*
* If Bluetooth state is not {@link #STATE_ON}, this API will return false. After turning on
* Bluetooth, wait for {@link #ACTION_STATE_CHANGED} with {@link #STATE_ON} to get the updated
* value.
*
* @param name a valid Bluetooth name
* @return true if the name was set, false otherwise
*/
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public boolean setName(String name) {
if (getState() != STATE_ON) {
return false;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.setName(name, mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return false;
}
/**
* Get the current Bluetooth scan mode of the local Bluetooth adapter.
*
* The Bluetooth scan mode determines if the local adapter is connectable and/or discoverable
* from remote Bluetooth devices.
*
* Possible values are: {@link #SCAN_MODE_NONE}, {@link #SCAN_MODE_CONNECTABLE}, {@link
* #SCAN_MODE_CONNECTABLE_DISCOVERABLE}.
*
* If Bluetooth state is not {@link #STATE_ON}, this API will return {@link #SCAN_MODE_NONE}.
* After turning on Bluetooth, wait for {@link #ACTION_STATE_CHANGED} with {@link #STATE_ON} to
* get the updated value.
*
* @return scan mode
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothScanPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN)
@ScanMode
public int getScanMode() {
if (getState() != STATE_ON) {
return SCAN_MODE_NONE;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.getScanMode(mAttributionSource);
}
} catch (RemoteException e) {
throw e.rethrowAsRuntimeException();
} finally {
mServiceLock.readLock().unlock();
}
return SCAN_MODE_NONE;
}
/**
* Set the local Bluetooth adapter connectablility and discoverability.
*
* If the scan mode is set to {@link #SCAN_MODE_CONNECTABLE_DISCOVERABLE}, it will change to
* {@link #SCAN_MODE_CONNECTABLE} after the discoverable timeout. The discoverable timeout can
* be set with {@link #setDiscoverableTimeout} and checked with {@link #getDiscoverableTimeout}.
* By default, the timeout is usually 120 seconds on phones which is enough for a remote device
* to initiate and complete its discovery process.
*
* Applications cannot set the scan mode. They should use {@link
* #ACTION_REQUEST_DISCOVERABLE} instead.
*
* @param mode represents the desired state of the local device scan mode
* @return status code indicating whether the scan mode was successfully set
* @throws IllegalArgumentException if the mode is not a valid scan mode
* @hide
*/
@SystemApi
@RequiresBluetoothScanPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_SCAN,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
@ScanModeStatusCode
public int setScanMode(@ScanMode int mode) {
if (getState() != STATE_ON) {
return BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED;
}
if (mode != SCAN_MODE_NONE
&& mode != SCAN_MODE_CONNECTABLE
&& mode != SCAN_MODE_CONNECTABLE_DISCOVERABLE) {
throw new IllegalArgumentException("Invalid scan mode param value");
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.setScanMode(mode, mAttributionSource);
}
} catch (RemoteException e) {
throw e.rethrowAsRuntimeException();
} finally {
mServiceLock.readLock().unlock();
}
return BluetoothStatusCodes.ERROR_UNKNOWN;
}
/**
* Get the timeout duration of the {@link #SCAN_MODE_CONNECTABLE_DISCOVERABLE}.
*
* @return the duration of the discoverable timeout or null if an error has occurred
*/
@RequiresBluetoothScanPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN)
public @Nullable Duration getDiscoverableTimeout() {
if (getState() != STATE_ON) {
return null;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
long timeout = mService.getDiscoverableTimeout(mAttributionSource);
return (timeout == -1) ? null : Duration.ofSeconds(timeout);
}
} catch (RemoteException e) {
throw e.rethrowAsRuntimeException();
} finally {
mServiceLock.readLock().unlock();
}
return null;
}
/**
* Set the total time the Bluetooth local adapter will stay discoverable when {@link
* #setScanMode} is called with {@link #SCAN_MODE_CONNECTABLE_DISCOVERABLE} mode. After this
* timeout, the scan mode will fallback to {@link #SCAN_MODE_CONNECTABLE}.
*
* If The discovery process usually involves an inquiry scan of about 12 seconds, followed by a
* page scan of each new device to retrieve its Bluetooth name.
*
* This is an asynchronous call, it will return immediately. Register for {@link
* #ACTION_DISCOVERY_STARTED} and {@link #ACTION_DISCOVERY_FINISHED} intents to determine
* exactly when the discovery starts and completes. Register for {@link
* BluetoothDevice#ACTION_FOUND} to be notified as remote Bluetooth devices are found.
*
* Device discovery is a heavyweight procedure. New connections to remote Bluetooth devices
* should not be attempted while discovery is in progress, and existing connections will
* experience limited bandwidth and high latency. Use {@link #cancelDiscovery()} to cancel an
* ongoing discovery. Discovery is not managed by the Activity, but is run as a system service,
* so an application should always call {@link BluetoothAdapter#cancelDiscovery()} even if it
* did not directly request a discovery, just to be sure.
*
* Device discovery will only find remote devices that are currently discoverable
* (inquiry scan enabled). Many Bluetooth devices are not discoverable by default, and need to
* be entered into a special mode.
*
* If Bluetooth state is not {@link #STATE_ON}, this API will return false. After turning on
* Bluetooth, wait for {@link #ACTION_STATE_CHANGED} with {@link #STATE_ON} to get the updated
* value.
*
* If a device is currently bonding, this request will be queued and executed once that
* device has finished bonding. If a request is already queued, this request will be ignored.
*
* @return true on success, false on error
*/
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothScanPermission
@RequiresBluetoothLocationPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN)
public boolean startDiscovery() {
if (getState() != STATE_ON) {
return false;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.startDiscovery(mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return false;
}
/**
* Cancel the current device discovery process.
*
* Because discovery is a heavyweight procedure for the Bluetooth adapter, this method should
* always be called before attempting to connect to a remote device with {@link
* android.bluetooth.BluetoothSocket#connect()}. Discovery is not managed by the Activity, but
* is run as a system service, so an application should always call cancel discovery even if it
* did not directly request a discovery, just to be sure.
*
* If Bluetooth state is not {@link #STATE_ON}, this API will return false. After turning on
* Bluetooth, wait for {@link #ACTION_STATE_CHANGED} with {@link #STATE_ON} to get the updated
* value.
*
* @return true on success, false on error
*/
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothScanPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN)
public boolean cancelDiscovery() {
if (getState() != STATE_ON) {
return false;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.cancelDiscovery(mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return false;
}
/**
* Return true if the local Bluetooth adapter is currently in the device discovery process.
*
* Device discovery is a heavyweight procedure. New connections to remote Bluetooth devices
* should not be attempted while discovery is in progress, and existing connections will
* experience limited bandwidth and high latency. Use {@link #cancelDiscovery()} to cancel an
* ongoing discovery.
*
* Applications can also register for {@link #ACTION_DISCOVERY_STARTED} or {@link
* #ACTION_DISCOVERY_FINISHED} to be notified when discovery starts or completes.
*
* If Bluetooth state is not {@link #STATE_ON}, this API will return false. After turning on
* Bluetooth, wait for {@link #ACTION_STATE_CHANGED} with {@link #STATE_ON} to get the updated
* value.
*
* @return true if discovering
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothScanPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN)
public boolean isDiscovering() {
if (getState() != STATE_ON) {
return false;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.isDiscovering(mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return false;
}
/**
* Removes the active device for the grouping of @ActiveDeviceUse specified
*
* @param profiles represents the purpose for which we are setting this as the active device.
* Possible values are: {@link BluetoothAdapter#ACTIVE_DEVICE_AUDIO}, {@link
* BluetoothAdapter#ACTIVE_DEVICE_PHONE_CALL}, {@link BluetoothAdapter#ACTIVE_DEVICE_ALL}
* @return false on immediate error, true otherwise
* @throws IllegalArgumentException if device is null or profiles is not one of {@link
* ActiveDeviceUse}
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
android.Manifest.permission.MODIFY_PHONE_STATE,
})
public boolean removeActiveDevice(@ActiveDeviceUse int profiles) {
if (profiles != ACTIVE_DEVICE_AUDIO
&& profiles != ACTIVE_DEVICE_PHONE_CALL
&& profiles != ACTIVE_DEVICE_ALL) {
Log.e(TAG, "Invalid profiles param value in removeActiveDevice");
throw new IllegalArgumentException(
"Profiles must be one of "
+ "BluetoothAdapter.ACTIVE_DEVICE_AUDIO, "
+ "BluetoothAdapter.ACTIVE_DEVICE_PHONE_CALL, or "
+ "BluetoothAdapter.ACTIVE_DEVICE_ALL");
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
if (DBG) Log.d(TAG, "removeActiveDevice, profiles: " + profiles);
return mService.removeActiveDevice(profiles, mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return false;
}
/**
* Sets device as the active devices for the use cases passed into the function. Note that in
* order to make a device active for LE Audio, it must be the active device for audio and phone
* calls.
*
* @param device is the remote bluetooth device
* @param profiles represents the purpose for which we are setting this as the active device.
* Possible values are: {@link BluetoothAdapter#ACTIVE_DEVICE_AUDIO}, {@link
* BluetoothAdapter#ACTIVE_DEVICE_PHONE_CALL}, {@link BluetoothAdapter#ACTIVE_DEVICE_ALL}
* @return false on immediate error, true otherwise
* @throws IllegalArgumentException if device is null or profiles is not one of {@link
* ActiveDeviceUse}
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
android.Manifest.permission.MODIFY_PHONE_STATE,
})
public boolean setActiveDevice(@NonNull BluetoothDevice device, @ActiveDeviceUse int profiles) {
if (device == null) {
Log.e(TAG, "setActiveDevice: Null device passed as parameter");
throw new IllegalArgumentException("device cannot be null");
}
if (profiles != ACTIVE_DEVICE_AUDIO
&& profiles != ACTIVE_DEVICE_PHONE_CALL
&& profiles != ACTIVE_DEVICE_ALL) {
Log.e(TAG, "Invalid profiles param value in setActiveDevice");
throw new IllegalArgumentException(
"Profiles must be one of "
+ "BluetoothAdapter.ACTIVE_DEVICE_AUDIO, "
+ "BluetoothAdapter.ACTIVE_DEVICE_PHONE_CALL, or "
+ "BluetoothAdapter.ACTIVE_DEVICE_ALL");
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
if (DBG) {
Log.d(TAG, "setActiveDevice, device: " + device + ", profiles: " + profiles);
}
return mService.setActiveDevice(device, profiles, mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return false;
}
/**
* Get the active devices for the BluetoothProfile specified
*
* @param profile is the profile from which we want the active devices. Possible values are:
* {@link BluetoothProfile#HEADSET}, {@link BluetoothProfile#A2DP}, {@link
* BluetoothProfile#HEARING_AID} {@link BluetoothProfile#LE_AUDIO}
* @return A list of active bluetooth devices
* @throws IllegalArgumentException If profile is not one of {@link ActiveDeviceProfile}
* @hide
*/
@SystemApi
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public @NonNull List If this returns {@code true}, application can issue {@link BluetoothLeScanner#startScan}
* and fetch scan results even when Bluetooth is turned off.
*
* To change this setting, use {@link #ACTION_REQUEST_BLE_SCAN_ALWAYS_AVAILABLE}.
*
* @hide
*/
@SystemApi
@RequiresNoPermission
public boolean isBleScanAlwaysAvailable() {
try {
return mManagerService.isBleScanAvailable();
} catch (RemoteException e) {
Log.e(TAG, "remote exception when calling isBleScanAvailable", e);
return false;
}
}
private static final IpcDataCache.QueryHandler The callback will be called only once, when the record is available.
*
* @param executor the executor that the callback will be invoked on
* @param callback the callback that will be called with either the {@link
* BluetoothActivityEnergyInfo} object, or the error code if an error has occurred
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public void requestControllerActivityEnergyInfo(
@NonNull @CallbackExecutor Executor executor,
@NonNull OnBluetoothActivityEnergyInfoCallback callback) {
requireNonNull(executor, "executor cannot be null");
requireNonNull(callback, "callback cannot be null");
OnBluetoothActivityEnergyInfoProxy proxy =
new OnBluetoothActivityEnergyInfoProxy(executor, callback);
mServiceLock.readLock().lock();
try {
if (mService != null) {
mService.requestActivityInfo(proxy, mAttributionSource);
} else {
proxy.onError(BluetoothStatusCodes.ERROR_PROFILE_SERVICE_NOT_BOUND);
}
} catch (RemoteException e) {
Log.e(TAG, "getControllerActivityEnergyInfoCallback: " + e);
proxy.onError(BluetoothStatusCodes.ERROR_UNKNOWN);
} finally {
mServiceLock.readLock().unlock();
}
}
/**
* Fetches a list of the most recently connected bluetooth devices ordered by how recently they
* were connected with most recently first and least recently last
*
* @return {@link List} of bonded {@link BluetoothDevice} ordered by how recently they were
* connected
* @hide
*/
@SystemApi
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public @NonNull List If Bluetooth state is not {@link #STATE_ON}, this API will return an empty set. After
* turning on Bluetooth, wait for {@link #ACTION_STATE_CHANGED} with {@link #STATE_ON} to get
* the updated value.
*
* @return unmodifiable set of {@link BluetoothDevice}, or null on error
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public Set This can be used to check whether a profile is supported before attempting to connect to
* its respective proxy.
*
* @return a list of integers indicating the ids of supported profiles as defined in {@link
* BluetoothProfile}.
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public @NonNull List Use this function along with {@link #ACTION_CONNECTION_STATE_CHANGED} intent to get the
* connection state of the adapter.
*
* @return the connection state
* @hide
*/
@SystemApi
@RequiresNoPermission
public @ConnectionState int getConnectionState() {
if (getState() != STATE_ON) {
return BluetoothAdapter.STATE_DISCONNECTED;
}
mServiceLock.readLock().lock();
try {
if (mService != null) return sBluetoothGetAdapterConnectionStateCache.query(mService);
} catch (RuntimeException e) {
if (!(e.getCause() instanceof RemoteException)) {
throw e;
}
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return STATE_DISCONNECTED;
}
private static final IpcDataCache.QueryHandler<
Pair Return the profile connection state
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public @ConnectionState int getProfileConnectionState(int profile) {
if (getState() != STATE_ON) {
return STATE_DISCONNECTED;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return sGetProfileConnectionStateCache.query(
new Pair<>(mService, new Pair<>(mAttributionSource, profile)));
}
} catch (RuntimeException e) {
if (!(e.getCause() instanceof RemoteException)) {
throw e;
}
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return STATE_DISCONNECTED;
}
/**
* Create a listening, secure RFCOMM Bluetooth socket.
*
* A remote device connecting to this socket will be authenticated and communication on this
* socket will be encrypted.
*
* Use {@link BluetoothServerSocket#accept} to retrieve incoming connections from a listening
* {@link BluetoothServerSocket}.
*
* Valid RFCOMM channels are in range 1 to 30.
*
* @param channel RFCOMM channel to listen on
* @return a listening RFCOMM BluetoothServerSocket
* @throws IOException on error, for example Bluetooth not available, or insufficient
* permissions, or channel in use.
* @hide
*/
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingRfcommOn(int channel) throws IOException {
return listenUsingRfcommOn(channel, false, false);
}
/**
* Create a listening, secure RFCOMM Bluetooth socket.
*
* A remote device connecting to this socket will be authenticated and communication on this
* socket will be encrypted.
*
* Use {@link BluetoothServerSocket#accept} to retrieve incoming connections from a listening
* {@link BluetoothServerSocket}.
*
* Valid RFCOMM channels are in range 1 to 30.
*
* To auto assign a channel without creating a SDP record use {@link
* #SOCKET_CHANNEL_AUTO_STATIC_NO_SDP} as channel number.
*
* @param channel RFCOMM channel to listen on
* @param mitm enforce person-in-the-middle protection for authentication.
* @param min16DigitPin enforce a pin key length og minimum 16 digit for sec mode 2 connections.
* @return a listening RFCOMM BluetoothServerSocket
* @throws IOException on error, for example Bluetooth not available, or insufficient
* permissions, or channel in use.
* @hide
*/
@UnsupportedAppUsage
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingRfcommOn(
int channel, boolean mitm, boolean min16DigitPin) throws IOException {
BluetoothServerSocket socket =
new BluetoothServerSocket(
BluetoothSocket.TYPE_RFCOMM, true, true, channel, mitm, min16DigitPin);
int errno = socket.mSocket.bindListen();
if (channel == SOCKET_CHANNEL_AUTO_STATIC_NO_SDP) {
socket.setChannel(socket.mSocket.getPort());
}
if (errno != 0) {
// TODO(BT): Throw the same exception error code
// that the previous code was using.
// socket.mSocket.throwErrnoNative(errno);
throw new IOException("Error: " + errno);
}
return socket;
}
/**
* Create a listening, secure RFCOMM Bluetooth socket with Service Record.
*
* A remote device connecting to this socket will be authenticated and communication on this
* socket will be encrypted.
*
* Use {@link BluetoothServerSocket#accept} to retrieve incoming connections from a listening
* {@link BluetoothServerSocket}.
*
* The system will assign an unused RFCOMM channel to listen on.
*
* The system will also register a Service Discovery Protocol (SDP) record with the local SDP
* server containing the specified UUID, service name, and auto-assigned channel. Remote
* Bluetooth devices can use the same UUID to query our SDP server and discover which channel to
* connect to. This SDP record will be removed when this socket is closed, or if this
* application closes unexpectedly.
*
* Use {@link BluetoothDevice#createRfcommSocketToServiceRecord} to connect to this socket
* from another device using the same {@link UUID}.
*
* @param name service name for SDP record
* @param uuid uuid for SDP record
* @return a listening RFCOMM BluetoothServerSocket
* @throws IOException on error, for example Bluetooth not available, or insufficient
* permissions, or channel in use.
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingRfcommWithServiceRecord(String name, UUID uuid)
throws IOException {
return createNewRfcommSocketAndRecord(name, uuid, true, true);
}
/**
* Requests the framework to start an RFCOMM socket server which listens based on the provided
* {@code name} and {@code uuid}.
*
* Incoming connections will cause the system to start the component described in the {@link
* PendingIntent}, {@code pendingIntent}. After the component is started, it should obtain a
* {@link BluetoothAdapter} and retrieve the {@link BluetoothSocket} via {@link
* #retrieveConnectedRfcommSocket(UUID)}.
*
* An application may register multiple RFCOMM listeners. It is recommended to set the extra
* field {@link #EXTRA_RFCOMM_LISTENER_ID} to help determine which service record the incoming
* {@link BluetoothSocket} is using.
*
* The provided {@link PendingIntent} must be created with the {@link
* PendingIntent#FLAG_IMMUTABLE} flag.
*
* @param name service name for SDP record
* @param uuid uuid for SDP record
* @param pendingIntent component which is called when a new RFCOMM connection is available
* @return a status code from {@link BluetoothStatusCodes}
* @throws IllegalArgumentException if {@code pendingIntent} is not created with the {@link
* PendingIntent#FLAG_IMMUTABLE} flag.
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED
})
@RfcommListenerResult
public int startRfcommServer(
@NonNull String name, @NonNull UUID uuid, @NonNull PendingIntent pendingIntent) {
if (!pendingIntent.isImmutable()) {
throw new IllegalArgumentException("The provided PendingIntent is not immutable");
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.startRfcommListener(
name, new ParcelUuid(uuid), pendingIntent, mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, "Failed to transact RFCOMM listener start request", e);
return BluetoothStatusCodes.ERROR_TIMEOUT;
} finally {
mServiceLock.readLock().unlock();
}
return BluetoothStatusCodes.ERROR_PROFILE_SERVICE_NOT_BOUND;
}
/**
* Closes the RFCOMM socket server listening on the given SDP record name and UUID. This can be
* called by applications after calling {@link #startRfcommServer(String, UUID, PendingIntent)}
* to stop listening for incoming RFCOMM connections.
*
* @param uuid uuid for SDP record
* @return a status code from {@link BluetoothStatusCodes}
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
@RfcommListenerResult
public int stopRfcommServer(@NonNull UUID uuid) {
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.stopRfcommListener(new ParcelUuid(uuid), mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, "Failed to transact RFCOMM listener stop request", e);
} finally {
mServiceLock.readLock().unlock();
}
return BluetoothStatusCodes.ERROR_PROFILE_SERVICE_NOT_BOUND;
}
/**
* Retrieves a connected {@link BluetoothSocket} for the given service record from a RFCOMM
* listener which was registered with {@link #startRfcommServer(String, UUID, PendingIntent)}.
*
* This method should be called by the component started by the {@link PendingIntent} which
* was registered during the call to {@link #startRfcommServer(String, UUID, PendingIntent)} in
* order to retrieve the socket.
*
* @param uuid the same UUID used to register the listener previously
* @return a connected {@link BluetoothSocket} or {@code null} if no socket is available
* @throws IllegalStateException if the socket could not be retrieved because the application is
* trying to obtain a socket for a listener it did not register (incorrect {@code uuid}).
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public @NonNull BluetoothSocket retrieveConnectedRfcommSocket(@NonNull UUID uuid) {
IncomingRfcommSocketInfo socketInfo = null;
mServiceLock.readLock().lock();
try {
if (mService != null) {
socketInfo =
mService.retrievePendingSocketForServiceRecord(
new ParcelUuid(uuid), mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
return null;
} finally {
mServiceLock.readLock().unlock();
}
if (socketInfo == null) {
return null;
}
switch (socketInfo.status) {
case BluetoothStatusCodes.SUCCESS:
try {
return BluetoothSocket.createSocketFromOpenFd(
socketInfo.pfd, socketInfo.bluetoothDevice, new ParcelUuid(uuid));
} catch (IOException e) {
return null;
}
case BluetoothStatusCodes.RFCOMM_LISTENER_OPERATION_FAILED_DIFFERENT_APP:
throw new IllegalStateException(
String.format(
"RFCOMM listener for UUID %s was not registered by this app",
uuid));
case BluetoothStatusCodes.RFCOMM_LISTENER_NO_SOCKET_AVAILABLE:
return null;
default:
Log.e(
TAG,
String.format(
"Unexpected result: (%d), from the adapter service while retrieving"
+ " an rfcomm socket",
socketInfo.status));
return null;
}
}
/**
* Create a listening, insecure RFCOMM Bluetooth socket with Service Record.
*
* The link key is not required to be authenticated, i.e. the communication may be vulnerable
* to Person In the Middle attacks. For Bluetooth 2.1 devices, the link will be encrypted, as
* encryption is mandatory. For legacy devices (pre Bluetooth 2.1 devices) the link will not be
* encrypted. Use {@link #listenUsingRfcommWithServiceRecord}, if an encrypted and authenticated
* communication channel is desired.
*
* Use {@link BluetoothServerSocket#accept} to retrieve incoming connections from a listening
* {@link BluetoothServerSocket}.
*
* The system will assign an unused RFCOMM channel to listen on.
*
* The system will also register a Service Discovery Protocol (SDP) record with the local SDP
* server containing the specified UUID, service name, and auto-assigned channel. Remote
* Bluetooth devices can use the same UUID to query our SDP server and discover which channel to
* connect to. This SDP record will be removed when this socket is closed, or if this
* application closes unexpectedly.
*
* Use {@link BluetoothDevice#createInsecureRfcommSocketToServiceRecord} to connect to this
* socket from another device using the same {@link UUID}.
*
* @param name service name for SDP record
* @param uuid uuid for SDP record
* @return a listening RFCOMM BluetoothServerSocket
* @throws IOException on error, for example Bluetooth not available, or insufficient
* permissions, or channel in use.
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingInsecureRfcommWithServiceRecord(String name, UUID uuid)
throws IOException {
return createNewRfcommSocketAndRecord(name, uuid, false, false);
}
/**
* Create a listening, encrypted, RFCOMM Bluetooth socket with Service Record.
*
* The link will be encrypted, but the link key is not required to be authenticated i.e. the
* communication is vulnerable to Person In the Middle attacks. Use {@link
* #listenUsingRfcommWithServiceRecord}, to ensure an authenticated link key.
*
* Use this socket if authentication of link key is not possible. For example, for Bluetooth
* 2.1 devices, if any of the devices does not have an input and output capability or just has
* the ability to display a numeric key, a secure socket connection is not possible and this
* socket can be used. Use {@link #listenUsingInsecureRfcommWithServiceRecord}, if encryption is
* not required. For Bluetooth 2.1 devices, the link will be encrypted, as encryption is
* mandatory. For more details, refer to the Security Model section 5.2 (vol 3) of Bluetooth
* Core Specification version 2.1 + EDR.
*
* Use {@link BluetoothServerSocket#accept} to retrieve incoming connections from a listening
* {@link BluetoothServerSocket}.
*
* The system will assign an unused RFCOMM channel to listen on.
*
* The system will also register a Service Discovery Protocol (SDP) record with the local SDP
* server containing the specified UUID, service name, and auto-assigned channel. Remote
* Bluetooth devices can use the same UUID to query our SDP server and discover which channel to
* connect to. This SDP record will be removed when this socket is closed, or if this
* application closes unexpectedly.
*
* Use {@link BluetoothDevice#createRfcommSocketToServiceRecord} to connect to this socket
* from another device using the same {@link UUID}.
*
* @param name service name for SDP record
* @param uuid uuid for SDP record
* @return a listening RFCOMM BluetoothServerSocket
* @throws IOException on error, for example Bluetooth not available, or insufficient
* permissions, or channel in use.
* @hide
*/
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553)
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingEncryptedRfcommWithServiceRecord(String name, UUID uuid)
throws IOException {
return createNewRfcommSocketAndRecord(name, uuid, false, true);
}
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
private BluetoothServerSocket createNewRfcommSocketAndRecord(
String name, UUID uuid, boolean auth, boolean encrypt) throws IOException {
BluetoothServerSocket socket;
socket =
new BluetoothServerSocket(
BluetoothSocket.TYPE_RFCOMM, auth, encrypt, new ParcelUuid(uuid));
socket.setServiceName(name);
int errno = socket.mSocket.bindListen();
if (errno != 0) {
// TODO(BT): Throw the same exception error code
// that the previous code was using.
// socket.mSocket.throwErrnoNative(errno);
throw new IOException("Error: " + errno);
}
return socket;
}
/**
* Construct an unencrypted, unauthenticated, RFCOMM server socket. Call #accept to retrieve
* connections to this socket.
*
* @return An RFCOMM BluetoothServerSocket
* @throws IOException On error, for example Bluetooth not available, or insufficient
* permissions.
* @hide
*/
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingInsecureRfcommOn(int port) throws IOException {
BluetoothServerSocket socket =
new BluetoothServerSocket(BluetoothSocket.TYPE_RFCOMM, false, false, port);
int errno = socket.mSocket.bindListen();
if (port == SOCKET_CHANNEL_AUTO_STATIC_NO_SDP) {
socket.setChannel(socket.mSocket.getPort());
}
if (errno != 0) {
// TODO(BT): Throw the same exception error code
// that the previous code was using.
// socket.mSocket.throwErrnoNative(errno);
throw new IOException("Error: " + errno);
}
return socket;
}
/**
* Construct an encrypted, authenticated, L2CAP server socket. Call #accept to retrieve
* connections to this socket.
*
* To auto assign a port without creating a SDP record use {@link
* #SOCKET_CHANNEL_AUTO_STATIC_NO_SDP} as port number.
*
* @param port the PSM to listen on
* @param mitm enforce person-in-the-middle protection for authentication.
* @param min16DigitPin enforce a pin key length og minimum 16 digit for sec mode 2 connections.
* @return An L2CAP BluetoothServerSocket
* @throws IOException On error, for example Bluetooth not available, or insufficient
* permissions.
* @hide
*/
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingL2capOn(int port, boolean mitm, boolean min16DigitPin)
throws IOException {
BluetoothServerSocket socket =
new BluetoothServerSocket(
BluetoothSocket.TYPE_L2CAP, true, true, port, mitm, min16DigitPin);
int errno = socket.mSocket.bindListen();
if (port == SOCKET_CHANNEL_AUTO_STATIC_NO_SDP) {
int assignedChannel = socket.mSocket.getPort();
if (DBG) Log.d(TAG, "listenUsingL2capOn: set assigned channel to " + assignedChannel);
socket.setChannel(assignedChannel);
}
if (errno != 0) {
// TODO(BT): Throw the same exception error code
// that the previous code was using.
// socket.mSocket.throwErrnoNative(errno);
throw new IOException("Error: " + errno);
}
return socket;
}
/**
* Construct an encrypted, authenticated, L2CAP server socket. Call #accept to retrieve
* connections to this socket.
*
* To auto assign a port without creating a SDP record use {@link
* #SOCKET_CHANNEL_AUTO_STATIC_NO_SDP} as port number.
*
* @param port the PSM to listen on
* @return An L2CAP BluetoothServerSocket
* @throws IOException On error, for example Bluetooth not available, or insufficient
* permissions.
* @hide
*/
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingL2capOn(int port) throws IOException {
return listenUsingL2capOn(port, false, false);
}
/**
* Construct an insecure L2CAP server socket. Call #accept to retrieve connections to this
* socket.
*
* To auto assign a port without creating a SDP record use {@link
* #SOCKET_CHANNEL_AUTO_STATIC_NO_SDP} as port number.
*
* @param port the PSM to listen on
* @return An L2CAP BluetoothServerSocket
* @throws IOException On error, for example Bluetooth not available, or insufficient
* permissions.
* @hide
*/
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public BluetoothServerSocket listenUsingInsecureL2capOn(int port) throws IOException {
Log.d(TAG, "listenUsingInsecureL2capOn: port=" + port);
BluetoothServerSocket socket =
new BluetoothServerSocket(
BluetoothSocket.TYPE_L2CAP, false, false, port, false, false);
int errno = socket.mSocket.bindListen();
if (port == SOCKET_CHANNEL_AUTO_STATIC_NO_SDP) {
int assignedChannel = socket.mSocket.getPort();
if (DBG) {
Log.d(
TAG,
"listenUsingInsecureL2capOn: set assigned channel to " + assignedChannel);
}
socket.setChannel(assignedChannel);
}
if (errno != 0) {
// TODO(BT): Throw the same exception error code
// that the previous code was using.
// socket.mSocket.throwErrnoNative(errno);
throw new IOException("Error: " + errno);
}
return socket;
}
/**
* Read the local Out of Band Pairing Data
*
* @return Pair Profile can be one of {@link BluetoothProfile#HEADSET}, {@link BluetoothProfile#A2DP},
* {@link BluetoothProfile#GATT}, {@link BluetoothProfile#HEARING_AID}, or {@link
* BluetoothProfile#GATT_SERVER}. Clients must implement {@link
* BluetoothProfile.ServiceListener} to get notified of the connection status and to get the
* proxy object.
*
* @param context Context of the application
* @param listener The service Listener for connection callbacks.
* @param profile The Bluetooth profile; either {@link BluetoothProfile#HEADSET}, {@link
* BluetoothProfile#A2DP}, {@link BluetoothProfile#GATT}, {@link
* BluetoothProfile#HEARING_AID} or {@link BluetoothProfile#GATT_SERVER}.
* @return true on success, false on error
*/
@SuppressLint({"AndroidFrameworkRequiresPermission", "AndroidFrameworkBluetoothPermission"})
public boolean getProfileProxy(
Context context, BluetoothProfile.ServiceListener listener, int profile) {
if (context == null || listener == null) {
return false;
}
if (profile == BluetoothProfile.HEALTH) {
Log.e(TAG, "getProfileProxy(): BluetoothHealth is deprecated");
return false;
}
if (profile == BluetoothProfile.HEARING_AID && !isHearingAidProfileSupported()) {
Log.e(TAG, "getProfileProxy(): BluetoothHearingAid is not supported");
return false;
}
BiFunction Clients should call this when they are no longer using the proxy obtained from {@link
* #getProfileProxy}.
*
* @param proxy Profile proxy object
* @hide
*/
public void closeProfileProxy(@NonNull BluetoothProfile proxy) {
if (proxy instanceof BluetoothGatt gatt) {
gatt.close();
return;
} else if (proxy instanceof BluetoothGattServer gatt) {
gatt.close();
return;
}
if (proxy.getAdapter() != this) {
Log.e(
TAG,
"closeProfileProxy(): Called on wrong instance was "
+ proxy.getAdapter()
+ " but expected "
+ this);
Counter.logIncrementWithUid(
"bluetooth.value_close_profile_proxy_adapter_mismatch", Process.myUid());
proxy.getAdapter().closeProfileProxy(proxy);
return;
}
ProfileConnection connection = mProfileConnections.remove(proxy);
if (connection != null) {
if (proxy instanceof BluetoothLeCallControl callControl) {
callControl.unregisterBearer();
}
connection.disconnect(proxy);
}
}
/**
* Close the connection of the profile proxy to the Service.
*
* Clients should call this when they are no longer using the proxy obtained from {@link
* #getProfileProxy}. Profile can be one of {@link BluetoothProfile#HEADSET} or {@link
* BluetoothProfile#A2DP}
*
* @param proxy Profile proxy object
*/
@SuppressLint({"AndroidFrameworkRequiresPermission", "AndroidFrameworkBluetoothPermission"})
public void closeProfileProxy(int unusedProfile, BluetoothProfile proxy) {
if (proxy == null) {
return;
}
closeProfileProxy(proxy);
}
private static final IBluetoothManagerCallback sManagerCallback =
new IBluetoothManagerCallback.Stub() {
public void onBluetoothServiceUp(IBinder bluetoothService) {
if (DBG) {
Log.d(TAG, "onBluetoothServiceUp: " + bluetoothService);
}
synchronized (sServiceLock) {
sService = IBluetooth.Stub.asInterface(bluetoothService);
for (IBluetoothManagerCallback cb : sProxyServiceStateCallbacks.keySet()) {
try {
if (cb != null) {
cb.onBluetoothServiceUp(bluetoothService);
} else {
Log.d(TAG, "onBluetoothServiceUp: cb is null!");
}
} catch (Exception e) {
Log.e(TAG, "", e);
}
}
}
}
public void onBluetoothServiceDown() {
if (DBG) {
Log.d(TAG, "onBluetoothServiceDown");
}
synchronized (sServiceLock) {
sService = null;
for (IBluetoothManagerCallback cb : sProxyServiceStateCallbacks.keySet()) {
try {
if (cb != null) {
cb.onBluetoothServiceDown();
} else {
Log.d(TAG, "onBluetoothServiceDown: cb is null!");
}
} catch (Exception e) {
Log.e(TAG, "", e);
}
}
}
}
public void onBluetoothOn() {
if (DBG) {
Log.d(TAG, "onBluetoothOn");
}
synchronized (sServiceLock) {
for (IBluetoothManagerCallback cb : sProxyServiceStateCallbacks.keySet()) {
try {
if (cb != null) {
cb.onBluetoothOn();
} else {
Log.d(TAG, "onBluetoothOn: cb is null!");
}
} catch (Exception e) {
Log.e(TAG, "", e);
}
}
}
}
public void onBluetoothOff() {
if (DBG) {
Log.d(TAG, "onBluetoothOff");
}
synchronized (sServiceLock) {
for (IBluetoothManagerCallback cb : sProxyServiceStateCallbacks.keySet()) {
try {
if (cb != null) {
cb.onBluetoothOff();
} else {
Log.d(TAG, "onBluetoothOff: cb is null!");
}
} catch (Exception e) {
Log.e(TAG, "", e);
}
}
}
}
};
private final IBluetoothManagerCallback mManagerCallback =
new IBluetoothManagerCallback.Stub() {
public void onBluetoothServiceUp(@NonNull IBinder bluetoothService) {
requireNonNull(bluetoothService, "bluetoothService cannot be null");
mServiceLock.writeLock().lock();
try {
mService = IBluetooth.Stub.asInterface(bluetoothService);
} finally {
// lock downgrade is possible in ReentrantReadWriteLock
mServiceLock.readLock().lock();
mServiceLock.writeLock().unlock();
}
try {
synchronized (mMetadataListeners) {
mMetadataListeners.forEach(
(device, pair) -> {
try {
mService.registerMetadataListener(
mBluetoothMetadataListener,
device,
mAttributionSource);
} catch (RemoteException e) {
Log.e(TAG, "Failed to register metadata listener", e);
Log.e(
TAG,
e.toString()
+ "\n"
+ Log.getStackTraceString(
new Throwable()));
}
});
}
synchronized (mAudioProfilesChangedCallbackExecutorMap) {
if (!mAudioProfilesChangedCallbackExecutorMap.isEmpty()) {
try {
mService.registerPreferredAudioProfilesChangedCallback(
mPreferredAudioProfilesChangedCallback,
mAttributionSource);
} catch (RemoteException e) {
Log.e(
TAG,
"onBluetoothServiceUp: Failed to register bluetooth"
+ "connection callback",
e);
}
}
}
synchronized (mBluetoothQualityReportReadyCallbackExecutorMap) {
if (!mBluetoothQualityReportReadyCallbackExecutorMap.isEmpty()) {
try {
mService.registerBluetoothQualityReportReadyCallback(
mBluetoothQualityReportReadyCallback,
mAttributionSource);
} catch (RemoteException e) {
Log.e(
TAG,
"onBluetoothServiceUp: Failed to register bluetooth"
+ "quality report callback",
e);
}
}
}
} finally {
mServiceLock.readLock().unlock();
}
registerBluetoothConnectionCallbackIfNeeded();
}
public void onBluetoothServiceDown() {
mServiceLock.writeLock().lock();
try {
mService = null;
mLeScanClients.clear();
synchronized (mLock) {
if (mBluetoothLeAdvertiser != null) {
mBluetoothLeAdvertiser.cleanup();
}
if (mBluetoothLeScanner != null) {
mBluetoothLeScanner.cleanup();
}
}
} finally {
mServiceLock.writeLock().unlock();
}
}
public void onBluetoothOn() {
mMainHandler.post(
() -> {
mProfileConnections.forEach(
(proxy, connection) -> {
if (connection.mConnected) return;
IBinder binder = getProfile(connection.mProfile);
if (binder != null) {
connection.connect(proxy, binder);
} else {
Log.e(
TAG,
"onBluetoothOn: Binder null for "
+ BluetoothProfile.getProfileName(
connection.mProfile));
}
});
});
}
public void onBluetoothOff() {
mMainHandler.post(
() -> {
mProfileConnections.forEach(
(proxy, connection) -> {
if (connection.mConnected) {
connection.disconnect(proxy);
}
});
});
}
};
/**
* Enable the Bluetooth Adapter, but don't auto-connect devices and don't persist state. Only
* for use by system applications.
*
* @hide
*/
@SystemApi
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public boolean enableNoAutoConnect() {
if (isEnabled()) {
if (DBG) {
Log.d(TAG, "enableNoAutoConnect(): BT already enabled!");
}
return true;
}
try {
return mManagerService.enableNoAutoConnect(mAttributionSource);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return false;
}
/** @hide */
@Retention(RetentionPolicy.SOURCE)
@IntDef(
value = {
BluetoothStatusCodes.ERROR_UNKNOWN,
BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED,
BluetoothStatusCodes.ERROR_ANOTHER_ACTIVE_OOB_REQUEST,
})
public @interface OobError {}
/**
* Provides callback methods for receiving {@link OobData} from the host stack, as well as an
* error interface in order to allow the caller to determine next steps based on the {@code
* ErrorCode}.
*
* @hide
*/
@SystemApi
public interface OobDataCallback {
/**
* Handles the {@link OobData} received from the host stack.
*
* @param transport - whether the {@link OobData} is generated for LE or Classic.
* @param oobData - data generated in the host stack(LE) or controller (Classic)
*/
void onOobData(@Transport int transport, @NonNull OobData oobData);
/**
* Provides feedback when things don't go as expected.
*
* @param errorCode - the code describing the type of error that occurred.
*/
void onError(@OobError int errorCode);
}
/**
* Wraps an AIDL interface around an {@link OobDataCallback} interface.
*
* @see IBluetoothOobDataCallback for interface definition.
* @hide
*/
private static class WrappedOobDataCallback extends IBluetoothOobDataCallback.Stub {
private final OobDataCallback mCallback;
private final Executor mExecutor;
/**
* @param callback - object to receive {@link OobData} must be a non null argument
* @throws NullPointerException if the callback is null.
*/
WrappedOobDataCallback(
@NonNull OobDataCallback callback, @NonNull @CallbackExecutor Executor executor) {
requireNonNull(callback);
requireNonNull(executor);
mCallback = callback;
mExecutor = executor;
}
public void onOobData(@Transport int transport, @NonNull OobData oobData) {
mExecutor.execute(() -> mCallback.onOobData(transport, oobData));
}
public void onError(@OobError int errorCode) {
mExecutor.execute(() -> mCallback.onError(errorCode));
}
}
/**
* Fetches a secret data value that can be used for a secure and simple pairing experience.
*
* This is the Local Out of Band data the comes from the
*
* This secret is the local Out of Band data. This data is used to securely and quickly pair
* two devices with minimal user interaction.
*
* For example, this secret can be transferred to a remote device out of band (meaning any
* other way besides using bluetooth). Once the remote device finds this device using the
* information given in the data, such as the PUBLIC ADDRESS, the remote device could then
* connect to this device using this secret when the pairing sequenece asks for the secret. This
* device will respond by automatically accepting the pairing due to the secret being so
* trustworthy.
*
* @param transport - provide type of transport (e.g. LE or Classic).
* @param callback - target object to receive the {@link OobData} value.
* @throws NullPointerException if callback is null.
* @throws IllegalArgumentException if the transport is not valid.
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public void generateLocalOobData(
@Transport int transport,
@NonNull @CallbackExecutor Executor executor,
@NonNull OobDataCallback callback) {
if (transport != BluetoothDevice.TRANSPORT_BREDR
&& transport != BluetoothDevice.TRANSPORT_LE) {
throw new IllegalArgumentException("Invalid transport '" + transport + "'!");
}
requireNonNull(callback);
if (!isEnabled()) {
Log.w(TAG, "generateLocalOobData(): Adapter isn't enabled!");
callback.onError(BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED);
} else {
mServiceLock.readLock().lock();
try {
if (mService != null) {
mService.generateLocalOobData(
transport,
new WrappedOobDataCallback(callback, executor),
mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
}
}
private Set Alphabetic characters must be uppercase to be valid.
*
* @param address Bluetooth address as string
* @return true if the address is valid, false otherwise
*/
public static boolean checkBluetoothAddress(String address) {
if (address == null || address.length() != ADDRESS_LENGTH) {
return false;
}
for (int i = 0; i < ADDRESS_LENGTH; i++) {
char c = address.charAt(i);
switch (i % 3) {
case 0:
case 1:
if ((c >= '0' && c <= '9') || (c >= 'A' && c <= 'F')) {
// hex character, OK
break;
}
return false;
case 2:
if (c == ':') {
break; // OK
}
return false;
}
}
return true;
}
/**
* Determines whether a String Bluetooth address, such as "F0:43:A8:23:10:00" is a RANDOM STATIC
* address.
*
* RANDOM STATIC: (addr & 0xC0) == 0xC0 RANDOM RESOLVABLE: (addr & 0xC0) == 0x40 RANDOM
* non-RESOLVABLE: (addr & 0xC0) == 0x00
*
* @param address Bluetooth address as string
* @return true if the 2 Most Significant Bits of the address equals 0xC0.
* @hide
*/
public static boolean isAddressRandomStatic(@NonNull String address) {
requireNonNull(address);
return checkBluetoothAddress(address)
&& (Integer.parseInt(address.split(":")[0], 16) & 0xC0) == 0xC0;
}
/** @hide */
@UnsupportedAppUsage
@RequiresNoPermission
public IBluetoothManager getBluetoothManager() {
return mManagerService;
}
/** @hide */
@RequiresNoPermission
public AttributionSource getAttributionSource() {
return mAttributionSource;
}
@GuardedBy("sServiceLock")
private static final WeakHashMap TODO: rename this API to registerBlueoothManagerCallback or something? the current name
* does not match what it does very well.
*
* / @UnsupportedAppUsage /*package
*/
IBluetooth getBluetoothService(IBluetoothManagerCallback cb) {
requireNonNull(cb);
synchronized (sServiceLock) {
sProxyServiceStateCallbacks.put(cb, null);
registerOrUnregisterAdapterLocked();
return sService;
}
}
/**
* Return a binder to BluetoothGatt service
*
* @hide
*/
public @Nullable IBluetoothGatt getBluetoothGatt() {
mServiceLock.readLock().lock();
try {
if (mService != null) {
return IBluetoothGatt.Stub.asInterface(mService.getBluetoothGatt());
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return null;
}
/**
* Return a binder to BluetoothScan
*
* @hide
*/
public @Nullable IBluetoothScan getBluetoothScan() {
mServiceLock.readLock().lock();
try {
if (mService != null) {
return IBluetoothScan.Stub.asInterface(mService.getBluetoothScan());
}
} catch (RemoteException e) {
Log.e(TAG, e + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return null;
}
/** Return a binder to a Profile service */
private @Nullable IBinder getProfile(int profile) {
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.getProfile(profile);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return null;
}
/*package*/ void removeServiceStateCallback(IBluetoothManagerCallback cb) {
requireNonNull(cb);
synchronized (sServiceLock) {
sProxyServiceStateCallbacks.remove(cb);
registerOrUnregisterAdapterLocked();
}
}
/**
* Handle registering (or unregistering) a single process-wide {@link IBluetoothManagerCallback}
* based on the presence of local {@link #sProxyServiceStateCallbacks} clients.
*/
@GuardedBy("sServiceLock")
private void registerOrUnregisterAdapterLocked() {
final boolean isRegistered = sServiceRegistered;
final boolean wantRegistered = !sProxyServiceStateCallbacks.isEmpty();
if (isRegistered != wantRegistered) {
if (wantRegistered) {
try {
sService =
IBluetooth.Stub.asInterface(
mManagerService.registerAdapter(sManagerCallback));
} catch (RemoteException e) {
throw e.rethrowAsRuntimeException();
}
} else {
try {
mManagerService.unregisterAdapter(sManagerCallback);
sService = null;
} catch (RemoteException e) {
throw e.rethrowAsRuntimeException();
}
}
sServiceRegistered = wantRegistered;
}
}
/**
* Callback interface used to deliver LE scan results.
*
* @see #startLeScan(LeScanCallback)
* @see #startLeScan(UUID[], LeScanCallback)
*/
public interface LeScanCallback {
/**
* Callback reporting an LE device found during a device scan initiated by the {@link
* BluetoothAdapter#startLeScan} function.
*
* @param device Identifies the remote device
* @param rssi The RSSI value for the remote device as reported by the Bluetooth hardware. 0
* if no RSSI value is available.
* @param scanRecord The content of the advertisement record offered by the remote device.
*/
void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord);
}
/**
* Starts a scan for Bluetooth LE devices.
*
* Results of the scan are reported using the {@link LeScanCallback#onLeScan} callback.
*
* @param callback the callback LE scan results are delivered
* @return true, if the scan was started successfully
* @deprecated use {@link BluetoothLeScanner#startScan(List, ScanSettings, ScanCallback)}
* instead.
*/
@Deprecated
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothScanPermission
@RequiresBluetoothLocationPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN)
public boolean startLeScan(LeScanCallback callback) {
return startLeScan(null, callback);
}
/**
* Starts a scan for Bluetooth LE devices, looking for devices that advertise given services.
*
* Devices which advertise all specified services are reported using the {@link
* LeScanCallback#onLeScan} callback.
*
* @param serviceUuids Array of services to look for
* @param callback the callback LE scan results are delivered
* @return true, if the scan was started successfully
* @deprecated use {@link BluetoothLeScanner#startScan(List, ScanSettings, ScanCallback)}
* instead.
*/
@Deprecated
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothScanPermission
@RequiresBluetoothLocationPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_SCAN)
public boolean startLeScan(final UUID[] serviceUuids, final LeScanCallback callback) {
if (DBG) {
Log.d(TAG, "startLeScan(): " + Arrays.toString(serviceUuids));
}
if (callback == null) {
if (DBG) {
Log.e(TAG, "startLeScan: null callback");
}
return false;
}
BluetoothLeScanner scanner = getBluetoothLeScanner();
if (scanner == null) {
if (DBG) {
Log.e(TAG, "startLeScan: cannot get BluetoothLeScanner");
}
return false;
}
synchronized (mLeScanClients) {
if (mLeScanClients.containsKey(callback)) {
if (DBG) {
Log.e(TAG, "LE Scan has already started");
}
return false;
}
IBluetoothGatt iGatt = getBluetoothGatt();
if (iGatt == null) {
// BLE is not supported
return false;
}
@SuppressLint("AndroidFrameworkBluetoothPermission")
ScanCallback scanCallback =
new ScanCallback() {
@Override
public void onScanResult(int callbackType, ScanResult result) {
if (callbackType != ScanSettings.CALLBACK_TYPE_ALL_MATCHES) {
// Should not happen.
Log.e(TAG, "LE Scan has already started");
return;
}
ScanRecord scanRecord = result.getScanRecord();
if (scanRecord == null) {
return;
}
if (serviceUuids != null) {
List A remote device connecting to this socket will be authenticated and communication on this
* socket will be encrypted.
*
* Use {@link BluetoothServerSocket#accept} to retrieve incoming connections from a listening
* {@link BluetoothServerSocket}.
*
* The system will assign a dynamic PSM value. This PSM value can be read from the {@link
* BluetoothServerSocket#getPsm()} and this value will be released when this server socket is
* closed, Bluetooth is turned off, or the application exits unexpectedly.
*
* The mechanism of disclosing the assigned dynamic PSM value to the initiating peer is
* defined and performed by the application.
*
* Use {@link BluetoothDevice#createL2capChannel(int)} to connect to this server socket from
* another Android device that is given the PSM value.
*
* @return an L2CAP CoC BluetoothServerSocket
* @throws IOException on error, for example Bluetooth not available, or insufficient
* permissions, or unable to start this CoC
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public @NonNull BluetoothServerSocket listenUsingL2capChannel() throws IOException {
BluetoothServerSocket socket =
new BluetoothServerSocket(
BluetoothSocket.TYPE_L2CAP_LE,
true,
true,
SOCKET_CHANNEL_AUTO_STATIC_NO_SDP,
false,
false);
int errno = socket.mSocket.bindListen();
if (errno != 0) {
throw new IOException("Error: " + errno);
}
int assignedPsm = socket.mSocket.getPort();
if (assignedPsm == 0) {
throw new IOException("Error: Unable to assign PSM value");
}
if (DBG) {
Log.d(TAG, "listenUsingL2capChannel: set assigned PSM to " + assignedPsm);
}
socket.setChannel(assignedPsm);
return socket;
}
/**
* Create an insecure L2CAP Connection-oriented Channel (CoC) {@link BluetoothServerSocket} and
* assign a dynamic PSM value. This socket can be used to listen for incoming connections. The
* supported Bluetooth transport is LE only.
*
* The link key is not required to be authenticated, i.e. the communication may be vulnerable
* to person-in-the-middle attacks. Use {@link #listenUsingL2capChannel}, if an encrypted and
* authenticated communication channel is desired.
*
* Use {@link BluetoothServerSocket#accept} to retrieve incoming connections from a listening
* {@link BluetoothServerSocket}.
*
* The system will assign a dynamic protocol/service multiplexer (PSM) value. This PSM value
* can be read from the {@link BluetoothServerSocket#getPsm()} and this value will be released
* when this server socket is closed, Bluetooth is turned off, or the application exits
* unexpectedly.
*
* The mechanism of disclosing the assigned dynamic PSM value to the initiating peer is
* defined and performed by the application.
*
* Use {@link BluetoothDevice#createInsecureL2capChannel(int)} to connect to this server
* socket from another Android device that is given the PSM value.
*
* @return an L2CAP CoC BluetoothServerSocket
* @throws IOException on error, for example Bluetooth not available, or insufficient
* permissions, or unable to start this CoC
*/
@RequiresLegacyBluetoothPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public @NonNull BluetoothServerSocket listenUsingInsecureL2capChannel() throws IOException {
BluetoothServerSocket socket =
new BluetoothServerSocket(
BluetoothSocket.TYPE_L2CAP_LE,
false,
false,
SOCKET_CHANNEL_AUTO_STATIC_NO_SDP,
false,
false);
int errno = socket.mSocket.bindListen();
if (errno != 0) {
throw new IOException("Error: " + errno);
}
int assignedPsm = socket.mSocket.getPort();
if (assignedPsm == 0) {
throw new IOException("Error: Unable to assign PSM value");
}
if (DBG) {
Log.d(TAG, "listenUsingInsecureL2capChannel: set assigned PSM to " + assignedPsm);
}
socket.setChannel(assignedPsm);
return socket;
}
/**
* Register a {@link #OnMetadataChangedListener} to receive update about metadata changes for
* this {@link BluetoothDevice}. Registration must be done when Bluetooth is ON and will last
* until {@link #removeOnMetadataChangedListener(BluetoothDevice)} is called, even when
* Bluetooth restarted in the middle. All input parameters should not be null or {@link
* NullPointerException} will be triggered. The same {@link BluetoothDevice} and {@link
* #OnMetadataChangedListener} pair can only be registered once, double registration would cause
* {@link IllegalArgumentException}.
*
* @param device {@link BluetoothDevice} that will be registered
* @param executor the executor for listener callback
* @param listener {@link #OnMetadataChangedListener} that will receive asynchronous callbacks
* @return true on success, false on error
* @throws NullPointerException If one of {@code listener}, {@code device} or {@code executor}
* is null.
* @throws IllegalArgumentException The same {@link #OnMetadataChangedListener} and {@link
* BluetoothDevice} are registered twice.
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public boolean addOnMetadataChangedListener(
@NonNull BluetoothDevice device,
@NonNull Executor executor,
@NonNull OnMetadataChangedListener listener) {
if (DBG) Log.d(TAG, "addOnMetadataChangedListener()");
if (listener == null) {
throw new NullPointerException("listener is null");
}
if (device == null) {
throw new NullPointerException("device is null");
}
if (executor == null) {
throw new NullPointerException("executor is null");
}
mServiceLock.readLock().lock();
try {
if (mService == null) {
Log.e(TAG, "Bluetooth is not enabled. Cannot register metadata listener");
return false;
}
synchronized (mMetadataListeners) {
List Note: apps that invoke profile-specific audio APIs are not subject to the preference noted
* here. These preferences will also be ignored if the remote device is not simultaneously
* connected to a classic audio profile (A2DP and/or HFP) and LE Audio at the same time. If the
* remote device does not support both BR/EDR audio and LE Audio, this API returns {@link
* BluetoothStatusCodes#ERROR_NOT_DUAL_MODE_AUDIO_DEVICE}. If the system property
* persist.bluetooth.enable_dual_mode_audio is set to {@code false}, this API returns {@link
* BluetoothStatusCodes#FEATURE_NOT_SUPPORTED}.
*
* The Bundle is expected to contain the following mappings: 1. For key {@link
* #AUDIO_MODE_OUTPUT_ONLY}, it expects an integer value of either {@link BluetoothProfile#A2DP}
* or {@link BluetoothProfile#LE_AUDIO}. 2. For key {@link #AUDIO_MODE_DUPLEX}, it expects an
* integer value of either {@link BluetoothProfile#HEADSET} or {@link
* BluetoothProfile#LE_AUDIO}.
*
* Apps should register for a callback with {@link
* #registerPreferredAudioProfilesChangedCallback(Executor,
* PreferredAudioProfilesChangedCallback)} to know if the preferences were successfully applied
* to the audio framework. If there is an active preference change for this device that has not
* taken effect with the audio framework, no additional calls to this API will be allowed until
* that completes.
*
* @param modeToProfileBundle a mapping to indicate the preferred profile for each audio mode
* @return whether the preferred audio profiles were requested to be set
* @throws NullPointerException if modeToProfileBundle or device is null
* @throws IllegalArgumentException if this BluetoothDevice object has an invalid address or the
* Bundle doesn't conform to its requirements
* @hide
*/
@SystemApi
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
@SetPreferredAudioProfilesReturnValues
public int setPreferredAudioProfiles(
@NonNull BluetoothDevice device, @NonNull Bundle modeToProfileBundle) {
if (DBG) {
Log.d(TAG, "setPreferredAudioProfiles( " + modeToProfileBundle + ", " + device + ")");
}
requireNonNull(modeToProfileBundle, "modeToProfileBundle must not be null");
requireNonNull(device, "device must not be null");
if (!BluetoothAdapter.checkBluetoothAddress(getAddress())) {
throw new IllegalArgumentException("device cannot have an invalid address");
}
if (!modeToProfileBundle.containsKey(AUDIO_MODE_OUTPUT_ONLY)
&& !modeToProfileBundle.containsKey(AUDIO_MODE_DUPLEX)) {
throw new IllegalArgumentException(
"Bundle does not contain a key "
+ "AUDIO_MODE_OUTPUT_ONLY or AUDIO_MODE_DUPLEX");
}
if (modeToProfileBundle.containsKey(AUDIO_MODE_OUTPUT_ONLY)
&& modeToProfileBundle.getInt(AUDIO_MODE_OUTPUT_ONLY) != BluetoothProfile.A2DP
&& modeToProfileBundle.getInt(AUDIO_MODE_OUTPUT_ONLY)
!= BluetoothProfile.LE_AUDIO) {
throw new IllegalArgumentException(
"Key AUDIO_MODE_OUTPUT_ONLY has an invalid value: "
+ modeToProfileBundle.getInt(AUDIO_MODE_OUTPUT_ONLY));
}
if (modeToProfileBundle.containsKey(AUDIO_MODE_DUPLEX)
&& modeToProfileBundle.getInt(AUDIO_MODE_DUPLEX) != BluetoothProfile.HEADSET
&& modeToProfileBundle.getInt(AUDIO_MODE_DUPLEX) != BluetoothProfile.LE_AUDIO) {
throw new IllegalArgumentException(
"Key AUDIO_MODE_DUPLEX has an invalid value: "
+ modeToProfileBundle.getInt(AUDIO_MODE_DUPLEX));
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.setPreferredAudioProfiles(
device, modeToProfileBundle, mAttributionSource);
} else {
return BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED;
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
throw e.rethrowAsRuntimeException();
} finally {
mServiceLock.readLock().unlock();
}
}
/**
* Gets the preferred profile for each audio mode for system routed audio. This API returns a
* Bundle with mappings between each audio mode and its preferred audio profile. If no values
* are set via {@link #setPreferredAudioProfiles(BluetoothDevice, Bundle)}, this API returns the
* default system preferences set via the sysprops {@link
* BluetoothProperties#getDefaultOutputOnlyAudioProfile()} and {@link
* BluetoothProperties#getDefaultDuplexAudioProfile()}.
*
* An audio capable device must support at least one audio mode with a preferred audio
* profile. If a device does not support an audio mode, the audio mode will be omitted from the
* keys of the Bundle. If the device is not recognized as a dual mode audio capable device (e.g.
* because it is not bonded, does not support any audio profiles, or does not support both
* BR/EDR audio and LE Audio), this API returns an empty Bundle. If the system property
* persist.bluetooth.enable_dual_mode_audio is set to {@code false}, this API returns an empty
* Bundle.
*
* The Bundle can contain the following mappings:
*
* This method will return {@link BluetoothStatusCodes#ERROR_BLUETOOTH_NOT_ALLOWED} if called
* outside system server.
*
* @param device is the BluetoothDevice that had its preferred audio profile changed
* @return whether the Bluetooth stack acknowledged the change successfully
* @throws NullPointerException if device is null
* @throws IllegalArgumentException if the device's address is invalid
* @hide
*/
@SystemApi
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
@NotifyActiveDeviceChangeAppliedReturnValues
public int notifyActiveDeviceChangeApplied(@NonNull BluetoothDevice device) {
if (DBG) Log.d(TAG, "notifyActiveDeviceChangeApplied(" + device + ")");
requireNonNull(device, "device cannot be null");
if (!BluetoothAdapter.checkBluetoothAddress(device.getAddress())) {
throw new IllegalArgumentException("device cannot have an invalid address");
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.notifyActiveDeviceChangeApplied(device, mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
throw e.rethrowAsRuntimeException();
} finally {
mServiceLock.readLock().unlock();
}
return BluetoothStatusCodes.ERROR_UNKNOWN;
}
@SuppressLint("AndroidFrameworkBluetoothPermission")
private final IBluetoothPreferredAudioProfilesCallback mPreferredAudioProfilesChangedCallback =
new IBluetoothPreferredAudioProfilesCallback.Stub() {
@Override
public void onPreferredAudioProfilesChanged(
BluetoothDevice device, Bundle preferredAudioProfiles, int status) {
for (Map.Entry The Bundle can contain the following mappings:
*
* Please note that Bluetooth needs to be restarted in order for the change to take effect.
*
* @return status code indicating whether the logging mode was successfully set
* @throws IllegalArgumentException if the mode is not a valid logging mode
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.BLUETOOTH_PRIVILEGED)
@SetSnoopLogModeStatusCode
public int setBluetoothHciSnoopLoggingMode(@BluetoothSnoopLogMode int mode) {
if (mode != BT_SNOOP_LOG_MODE_DISABLED
&& mode != BT_SNOOP_LOG_MODE_FILTERED
&& mode != BT_SNOOP_LOG_MODE_FULL) {
throw new IllegalArgumentException("Invalid Bluetooth HCI snoop log mode param value");
}
try {
return mManagerService.setBtHciSnoopLogMode(mode);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return BluetoothStatusCodes.ERROR_UNKNOWN;
}
/**
* Gets the current desired mode of HCI snoop logging applied at Bluetooth startup.
*
* @return the current HCI snoop logging mode applied at Bluetooth startup
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.BLUETOOTH_PRIVILEGED)
@BluetoothSnoopLogMode
public int getBluetoothHciSnoopLoggingMode() {
try {
return mManagerService.getBtHciSnoopLogMode();
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return BT_SNOOP_LOG_MODE_DISABLED;
}
/**
* Returns true if the auto on feature is supported on the device
*
* @hide
*/
@SystemApi
@FlaggedApi(Flags.FLAG_AUTO_ON_FEATURE)
@RequiresPermission(android.Manifest.permission.BLUETOOTH_PRIVILEGED)
public boolean isAutoOnSupported() {
try {
return mManagerService.isAutoOnSupported();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
/**
* Get the value of the automatic restart of the Bluetooth stack for the current user
*
* @return true if the auto on feature is enabled for the current user
* @throws IllegalStateException if feature is not supported
* @hide
*/
@SystemApi
@FlaggedApi(Flags.FLAG_AUTO_ON_FEATURE)
@RequiresPermission(android.Manifest.permission.BLUETOOTH_PRIVILEGED)
public boolean isAutoOnEnabled() {
try {
return mManagerService.isAutoOnEnabled();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
/**
* Set the value of the automatic restart of the Bluetooth stack for the current user. Client
* can subscribe to update by listening to {@link ACTION_AUTO_ON_STATE_CHANGED} intent
*
* @param status true if the feature is enabled
* @throws IllegalStateException if feature is not supported
* @hide
*/
@SystemApi
@FlaggedApi(Flags.FLAG_AUTO_ON_FEATURE)
@RequiresPermission(android.Manifest.permission.BLUETOOTH_PRIVILEGED)
public void setAutoOnEnabled(boolean status) {
try {
mManagerService.setAutoOnEnabled(status);
} catch (RemoteException e) {
e.rethrowFromSystemServer();
}
}
/** @hide */
@Retention(RetentionPolicy.SOURCE)
@IntDef(
value = {
BluetoothStatusCodes.FEATURE_SUPPORTED,
BluetoothStatusCodes.ERROR_UNKNOWN,
BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED,
BluetoothStatusCodes.ERROR_MISSING_BLUETOOTH_SCAN_PERMISSION,
BluetoothStatusCodes.FEATURE_NOT_SUPPORTED
})
public @interface GetOffloadedTransportDiscoveryDataScanSupportedReturnValues {}
/**
* Check if offloaded transport discovery data scan is supported or not.
*
* @return {@code BluetoothStatusCodes.FEATURE_SUPPORTED} if chipset supports on-chip tds filter
* scan
* @hide
*/
@SystemApi
@RequiresBluetoothScanPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_SCAN,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
@GetOffloadedTransportDiscoveryDataScanSupportedReturnValues
public int getOffloadedTransportDiscoveryDataScanSupported() {
if (!getLeAccess()) {
return BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED;
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.getOffloadedTransportDiscoveryDataScanSupported(mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return BluetoothStatusCodes.ERROR_UNKNOWN;
}
}
getBluetoothState() == STATE_ON
*
* @return true if the local adapter is turned on
*/
@RequiresLegacyBluetoothPermission
@RequiresNoPermission
public boolean isEnabled() {
return getState() == BluetoothAdapter.STATE_ON;
}
/**
* Return true if Bluetooth LE(Always BLE On feature) is currently enabled and ready for use
*
* extends IpcDataCache
{
BluetoothCache(String api, IpcDataCache.QueryHandler query) {
super(8, IpcDataCache.MODULE_BLUETOOTH, api, api, query);
}
}
;
/**
* Invalidate a bluetooth cache. This method is just a short-hand wrapper that enforces the
* bluetooth module.
*/
private static void invalidateCache(@NonNull String api) {
IpcDataCache.invalidateCache(IpcDataCache.MODULE_BLUETOOTH, api);
}
private static final IpcDataCache.QueryHandler
*
*/
@Deprecated
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public boolean enable() {
if (isEnabled()) {
if (DBG) {
Log.d(TAG, "enable(): BT already enabled!");
}
return true;
}
try {
return mManagerService.enable(mAttributionSource);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return false;
}
/**
* Turn off the local Bluetooth adapter—do not use without explicit user action to turn
* off Bluetooth.
*
*
*
*/
@Deprecated
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)
public boolean disable() {
return disable(true);
}
/**
* Turn off the local Bluetooth adapter and don't persist the setting.
*
* @param persist Indicate whether the off state should be persisted following the next reboot
* @return true to indicate adapter shutdown has begun, or false on immediate error
* @hide
*/
@SystemApi
@RequiresLegacyBluetoothAdminPermission
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public boolean disable(boolean persist) {
try {
return mManagerService.disable(mAttributionSource, persist);
} catch (RemoteException e) {
Log.e(TAG, "", e);
}
return false;
}
/**
* Returns the hardware address of the local Bluetooth adapter.
*
* timeout
is set to 0, no timeout will occur and the scan mode will be
* persisted until a subsequent call to {@link #setScanMode}.
*
* @param timeout represents the total duration the local Bluetooth adapter will remain
* discoverable, or no timeout if set to 0
* @return whether the timeout was successfully set
* @throws IllegalArgumentException if timeout
duration in seconds is more than
* {@link Integer#MAX_VALUE}
* @hide
*/
@SystemApi
@RequiresBluetoothScanPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_SCAN,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
@ScanModeStatusCode
public int setDiscoverableTimeout(@NonNull Duration timeout) {
if (getState() != STATE_ON) {
return BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED;
}
if (timeout.toSeconds() > Integer.MAX_VALUE) {
throw new IllegalArgumentException(
"Timeout in seconds must be less or equal to " + Integer.MAX_VALUE);
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.setDiscoverableTimeout(timeout.toSeconds(), mAttributionSource);
}
} catch (RemoteException e) {
throw e.rethrowAsRuntimeException();
} finally {
mServiceLock.readLock().unlock();
}
return BluetoothStatusCodes.ERROR_UNKNOWN;
}
/**
* Get the end time of the latest remote device discovery process.
*
* @return the latest time that the bluetooth adapter was/will be in discovery mode, in
* milliseconds since the epoch. This time can be in the future if {@link #startDiscovery()}
* has been called recently.
* @hide
*/
@SystemApi
@RequiresBluetoothConnectPermission
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
public long getDiscoveryEndMillis() {
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.getDiscoveryEndMillis(mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
} finally {
mServiceLock.readLock().unlock();
}
return -1;
}
/**
* Start the remote device discovery process.
*
*
*
*
* @return a Bundle mapping each set audio mode and preferred audio profile pair
* @throws NullPointerException if modeToProfileBundle or device is null
* @throws IllegalArgumentException if this BluetoothDevice object has an invalid address or the
* Bundle doesn't conform to its requirements
* @hide
*/
@SystemApi
@RequiresPermission(
allOf = {
android.Manifest.permission.BLUETOOTH_CONNECT,
android.Manifest.permission.BLUETOOTH_PRIVILEGED,
})
@NonNull
public Bundle getPreferredAudioProfiles(@NonNull BluetoothDevice device) {
if (DBG) Log.d(TAG, "getPreferredAudioProfiles(" + device + ")");
requireNonNull(device, "device cannot be null");
if (!BluetoothAdapter.checkBluetoothAddress(device.getAddress())) {
throw new IllegalArgumentException("device cannot have an invalid address");
}
mServiceLock.readLock().lock();
try {
if (mService != null) {
return mService.getPreferredAudioProfiles(device, mAttributionSource);
}
} catch (RemoteException e) {
Log.e(TAG, e.toString() + "\n" + Log.getStackTraceString(new Throwable()));
throw e.rethrowAsRuntimeException();
} finally {
mServiceLock.readLock().unlock();
}
return Bundle.EMPTY;
}
/** @hide */
@Retention(RetentionPolicy.SOURCE)
@IntDef(
value = {
BluetoothStatusCodes.SUCCESS,
BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ENABLED,
BluetoothStatusCodes.ERROR_BLUETOOTH_NOT_ALLOWED,
BluetoothStatusCodes.ERROR_DEVICE_NOT_BONDED,
BluetoothStatusCodes.ERROR_MISSING_BLUETOOTH_CONNECT_PERMISSION,
BluetoothStatusCodes.ERROR_UNKNOWN
})
public @interface NotifyActiveDeviceChangeAppliedReturnValues {}
/**
* Called by audio framework to inform the Bluetooth stack that an active device change has
* taken effect. If this active device change is triggered by an app calling {@link
* #setPreferredAudioProfiles(BluetoothDevice, Bundle)}, the Bluetooth stack will invoke {@link
* PreferredAudioProfilesChangedCallback#onPreferredAudioProfilesChanged( BluetoothDevice,
* Bundle, int)} if all requested changes for the device have been applied.
*
*
*
*
* @param device is the device which had its preferred audio profiles changed
* @param preferredAudioProfiles a Bundle mapping audio mode to its preferred audio profile
* @param status whether the operation succeeded or timed out
* @hide
*/
@SystemApi
void onPreferredAudioProfilesChanged(
@NonNull BluetoothDevice device,
@NonNull Bundle preferredAudioProfiles,
int status);
}
@SuppressLint("AndroidFrameworkBluetoothPermission")
private final IBluetoothQualityReportReadyCallback mBluetoothQualityReportReadyCallback =
new IBluetoothQualityReportReadyCallback.Stub() {
@Override
public void onBluetoothQualityReportReady(
BluetoothDevice device,
BluetoothQualityReport bluetoothQualityReport,
int status) {
for (Map.Entry