summaryrefslogtreecommitdiffstats
path: root/src/android/bluetooth/src/org/qtproject/qt
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/bluetooth/src/org/qtproject/qt')
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothBroadcastReceiver.java188
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattCharacteristic.java44
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattDescriptor.java39
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothInputStreamThread.java69
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLE.java1849
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLEServer.java989
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothSocketServer.java155
7 files changed, 3333 insertions, 0 deletions
diff --git a/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothBroadcastReceiver.java b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothBroadcastReceiver.java
new file mode 100644
index 00000000..5df5cb81
--- /dev/null
+++ b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothBroadcastReceiver.java
@@ -0,0 +1,188 @@
+// Copyright (C) 2016 Lauri Laanmets (Proekspert AS) <lauri.laanmets@eesti.ee>
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+package org.qtproject.qt.android.bluetooth;
+
+import android.app.Activity;
+import android.bluetooth.BluetoothAdapter;
+import android.bluetooth.BluetoothDevice;
+import android.bluetooth.BluetoothProfile;
+import android.bluetooth.BluetoothManager;
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.util.Log;
+
+import java.lang.reflect.Method;
+import java.util.HashSet;
+import java.util.List;
+
+public class QtBluetoothBroadcastReceiver extends BroadcastReceiver
+{
+ /* Pointer to the Qt object that "owns" the Java object */
+ @SuppressWarnings("WeakerAccess")
+ long qtObject = 0;
+ @SuppressWarnings("WeakerAccess")
+ static Context qtContext = null;
+
+ // These are opaque tokens that could be used to match the completed action
+ private static final int TURN_BT_ENABLED = 3330;
+ private static final int TURN_BT_DISCOVERABLE = 3331;
+ private static final int TURN_BT_DISABLED = 3332;
+
+ // The 'Disable' action identifier is hidden in the public APIs so we define it here
+ static final String ACTION_REQUEST_DISABLE =
+ "android.bluetooth.adapter.action.REQUEST_DISABLE";
+
+ private static final String TAG = "QtBluetoothBroadcastReceiver";
+
+ @Override
+ public void onReceive(Context context, Intent intent)
+ {
+ synchronized (qtContext) {
+ if (qtObject == 0)
+ return;
+
+ jniOnReceive(qtObject, context, intent);
+ }
+ }
+
+ void unregisterReceiver()
+ {
+ synchronized (qtContext) {
+ qtObject = 0;
+ try {
+ qtContext.unregisterReceiver(this);
+ } catch (Exception ex) {
+ Log.d(TAG, "Trying to unregister a BroadcastReceiver which is not yet registered");
+ }
+ }
+ }
+
+ native void jniOnReceive(long qtObject, Context context, Intent intent);
+
+ public static void setContext(Context context)
+ {
+ qtContext = context;
+ }
+
+ static boolean setDisabled()
+ {
+ if (!(qtContext instanceof android.app.Activity)) {
+ Log.w(TAG, "Bluetooth cannot be disabled from a service.");
+ return false;
+ }
+ // The 'disable' is hidden in the public API and as such
+ // there are no availability guarantees; may throw an "ActivityNotFoundException"
+ Intent intent = new Intent(ACTION_REQUEST_DISABLE);
+
+ try {
+ ((Activity)qtContext).startActivityForResult(intent, TURN_BT_DISABLED);
+ } catch (Exception ex) {
+ Log.w(TAG, "setDisabled() failed to initiate Bluetooth disablement");
+ ex.printStackTrace();
+ return false;
+ }
+ return true;
+ }
+
+ static boolean setDiscoverable()
+ {
+ if (!(qtContext instanceof android.app.Activity)) {
+ Log.w(TAG, "Discovery mode cannot be enabled from a service.");
+ return false;
+ }
+
+ Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
+ intent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
+ try {
+ ((Activity)qtContext).startActivityForResult(intent, TURN_BT_DISCOVERABLE);
+ } catch (Exception ex) {
+ Log.w(TAG, "setDiscoverable() failed to initiate Bluetooth discoverability change");
+ ex.printStackTrace();
+ return false;
+ }
+ return true;
+ }
+
+ static boolean setEnabled()
+ {
+ if (!(qtContext instanceof android.app.Activity)) {
+ Log.w(TAG, "Bluetooth cannot be enabled from a service.");
+ return false;
+ }
+
+ Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
+ try {
+ ((Activity)qtContext).startActivityForResult(intent, TURN_BT_ENABLED);
+ } catch (Exception ex) {
+ Log.w(TAG, "setEnabled() failed to initiate Bluetooth enablement");
+ ex.printStackTrace();
+ return false;
+ }
+ return true;
+ }
+
+ static boolean setPairingMode(String address, boolean isPairing)
+ {
+ BluetoothManager manager =
+ (BluetoothManager)qtContext.getSystemService(Context.BLUETOOTH_SERVICE);
+ if (manager == null)
+ return false;
+
+ BluetoothAdapter adapter = manager.getAdapter();
+ if (adapter == null)
+ return false;
+
+ // Uses reflection as the removeBond() is not part of public API
+ try {
+ BluetoothDevice device = adapter.getRemoteDevice(address);
+ String methodName = "createBond";
+ if (!isPairing)
+ methodName = "removeBond";
+
+ Method m = device.getClass()
+ .getMethod(methodName, (Class[]) null);
+ m.invoke(device, (Object[]) null);
+ } catch (Exception ex) {
+ ex.printStackTrace();
+ return false;
+ }
+
+ return true;
+ }
+
+ /*
+ * Returns a list of remote devices confirmed to be connected.
+ *
+ * This list is not complete as it only detects GATT/BtLE related connections.
+ * Unfortunately there is no API that provides the complete list.
+ *
+ */
+ static String[] getConnectedDevices()
+ {
+ BluetoothManager bluetoothManager =
+ (BluetoothManager) qtContext.getSystemService(Context.BLUETOOTH_SERVICE);
+
+ if (bluetoothManager == null) {
+ Log.w(TAG, "Failed to retrieve connected devices");
+ return new String[0];
+ }
+
+ List<BluetoothDevice> gattConnections =
+ bluetoothManager.getConnectedDevices(BluetoothProfile.GATT);
+ List<BluetoothDevice> gattServerConnections =
+ bluetoothManager.getConnectedDevices(BluetoothProfile.GATT_SERVER);
+
+ // Process found remote connections but avoid duplications
+ HashSet<String> set = new HashSet<String>();
+ for (Object gattConnection : gattConnections)
+ set.add(gattConnection.toString());
+
+ for (Object gattServerConnection : gattServerConnections)
+ set.add(gattServerConnection.toString());
+
+ return set.toArray(new String[set.size()]);
+ }
+}
diff --git a/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattCharacteristic.java b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattCharacteristic.java
new file mode 100644
index 00000000..6473541a
--- /dev/null
+++ b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattCharacteristic.java
@@ -0,0 +1,44 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+package org.qtproject.qt.android.bluetooth;
+
+import android.bluetooth.BluetoothGattCharacteristic;
+import android.os.Build;
+
+import java.util.UUID;
+
+class QtBluetoothGattCharacteristic extends BluetoothGattCharacteristic {
+ QtBluetoothGattCharacteristic(UUID uuid, int properties, int permissions,
+ int minimumValueLength, int maximumValueLength) {
+ super(uuid, properties, permissions);
+ minValueLength = minimumValueLength;
+ maxValueLength = maximumValueLength;
+ }
+ int minValueLength;
+ int maxValueLength;
+ // Starting from API 33 Android Bluetooth deprecates characteristic local value caching by
+ // deprecating the getValue() and setValue() accessors. For peripheral role we store the value
+ // locally in the characteristic as a convenience - looking up the value on the C++ side would
+ // be somewhat complicated. This should be safe as all accesses to this class are synchronized.
+ // For clarity: For API levels below 33 we still need to use the setValue() of the base class
+ // because Android internally uses getValue() with APIs below 33.
+ boolean setLocalValue(byte[] value) {
+ if (Build.VERSION.SDK_INT >= 33) {
+ m_localValue = value;
+ return true;
+ } else {
+ return setValue(value);
+ }
+ }
+
+ byte[] getLocalValue()
+ {
+ if (Build.VERSION.SDK_INT >= 33)
+ return m_localValue;
+ else
+ return getValue();
+ }
+
+ private byte[] m_localValue = null;
+}
diff --git a/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattDescriptor.java b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattDescriptor.java
new file mode 100644
index 00000000..b6c195d3
--- /dev/null
+++ b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothGattDescriptor.java
@@ -0,0 +1,39 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+package org.qtproject.qt.android.bluetooth;
+
+import android.bluetooth.BluetoothGattDescriptor;
+import android.os.Build;
+
+import java.util.UUID;
+
+class QtBluetoothGattDescriptor extends BluetoothGattDescriptor {
+ QtBluetoothGattDescriptor(UUID uuid, int permissions) {
+ super(uuid, permissions);
+ }
+ // Starting from API 33 Android Bluetooth deprecates descriptor local value caching by
+ // deprecating the getValue() and setValue() accessors. For peripheral role we store the value
+ // locally in the descriptor as a convenience - looking up the value on the C++ side would
+ // be somewhat complicated. This should be safe as all accesses to this class are synchronized.
+ // For clarity: For API levels below 33 we still need to use the setValue() of the base class
+ // because Android internally uses getValue() with APIs below 33.
+ boolean setLocalValue(byte[] value) {
+ if (Build.VERSION.SDK_INT >= 33) {
+ m_localValue = value;
+ return true;
+ } else {
+ return setValue(value);
+ }
+ }
+
+ byte[] getLocalValue()
+ {
+ if (Build.VERSION.SDK_INT >= 33)
+ return m_localValue;
+ else
+ return getValue();
+ }
+
+ private byte[] m_localValue = null;
+}
diff --git a/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothInputStreamThread.java b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothInputStreamThread.java
new file mode 100644
index 00000000..3c12cb34
--- /dev/null
+++ b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothInputStreamThread.java
@@ -0,0 +1,69 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+package org.qtproject.qt.android.bluetooth;
+
+import java.io.InputStream;
+import java.io.IOException;
+import android.util.Log;
+
+@SuppressWarnings("WeakerAccess")
+class QtBluetoothInputStreamThread extends Thread
+{
+ /* Pointer to the Qt object that "owns" the Java object */
+ @SuppressWarnings("CanBeFinal")
+ long qtObject = 0;
+ @SuppressWarnings("CanBeFinal")
+ boolean logEnabled = false;
+ private static final String TAG = "QtBluetooth";
+ private InputStream m_inputStream = null;
+
+ //error codes
+ static final int QT_MISSING_INPUT_STREAM = 0;
+ static final int QT_READ_FAILED = 1;
+ static final int QT_THREAD_INTERRUPTED = 2;
+
+ QtBluetoothInputStreamThread()
+ {
+ setName("QtBtInputStreamThread");
+ }
+
+ void setInputStream(InputStream stream)
+ {
+ m_inputStream = stream;
+ }
+
+ @Override
+ public void run()
+ {
+ if (m_inputStream == null) {
+ errorOccurred(qtObject, QT_MISSING_INPUT_STREAM);
+ return;
+ }
+
+ byte[] buffer = new byte[1000];
+ int bytesRead;
+
+ try {
+ while (!isInterrupted()) {
+ //this blocks until we see incoming data
+ //or close() on related BluetoothSocket is called
+ bytesRead = m_inputStream.read(buffer);
+ readyData(qtObject, buffer, bytesRead);
+ }
+
+ errorOccurred(qtObject, QT_THREAD_INTERRUPTED);
+ } catch (IOException ex) {
+ if (logEnabled)
+ Log.d(TAG, "InputStream.read() failed:" + ex.toString());
+ ex.printStackTrace();
+ errorOccurred(qtObject, QT_READ_FAILED);
+ }
+
+ if (logEnabled)
+ Log.d(TAG, "Leaving input stream thread");
+ }
+
+ static native void errorOccurred(long qtObject, int errorCode);
+ static native void readyData(long qtObject, byte[] buffer, int bufferLength);
+}
diff --git a/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLE.java b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLE.java
new file mode 100644
index 00000000..d133d8dc
--- /dev/null
+++ b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLE.java
@@ -0,0 +1,1849 @@
+// Copyright (C) 2019 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+package org.qtproject.qt.android.bluetooth;
+
+import android.bluetooth.BluetoothAdapter;
+import android.bluetooth.BluetoothDevice;
+import android.bluetooth.BluetoothGatt;
+import android.bluetooth.BluetoothGattCallback;
+import android.bluetooth.BluetoothGattCharacteristic;
+import android.bluetooth.BluetoothGattDescriptor;
+import android.bluetooth.BluetoothGattService;
+import android.bluetooth.BluetoothProfile;
+import android.bluetooth.BluetoothManager;
+import android.bluetooth.le.BluetoothLeScanner;
+import android.bluetooth.le.ScanCallback;
+import android.bluetooth.le.ScanFilter;
+import android.bluetooth.le.ScanResult;
+import android.bluetooth.le.ScanSettings;
+import android.bluetooth.BluetoothStatusCodes;
+import android.content.BroadcastReceiver;
+import android.content.Context;
+import android.content.Intent;
+import android.content.IntentFilter;
+import android.os.Build;
+import android.os.Handler;
+import android.os.HandlerThread;
+import android.os.Looper;
+import android.util.Log;
+import java.lang.reflect.Constructor;
+import java.lang.reflect.Method;
+import java.util.concurrent.atomic.AtomicInteger;
+
+import java.util.ArrayList;
+import java.util.Hashtable;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.NoSuchElementException;
+import java.util.UUID;
+
+
+class QtBluetoothLE {
+ private static final String TAG = "QtBluetoothGatt";
+ private BluetoothAdapter mBluetoothAdapter = null;
+ private boolean mLeScanRunning = false;
+
+ private BluetoothGatt mBluetoothGatt = null;
+ private HandlerThread mHandlerThread = null;
+ private Handler mHandler = null;
+ private Constructor mCharacteristicConstructor = null;
+ private String mRemoteGattAddress;
+ private final UUID clientCharacteristicUuid = UUID.fromString("00002902-0000-1000-8000-00805f9b34fb");
+ private final int MAX_MTU = 512;
+ private final int DEFAULT_MTU = 23;
+ private int mSupportedMtu = -1;
+
+ /*
+ * The atomic synchronizes the timeoutRunnable thread and the response thread for the pending
+ * I/O job. Whichever thread comes first will pass the atomic gate. The other thread is
+ * cut short.
+ */
+ // handle values above zero are for regular handle specific read/write requests
+ // handle values below zero are reserved for handle-independent requests
+ private int HANDLE_FOR_RESET = -1;
+ private int HANDLE_FOR_MTU_EXCHANGE = -2;
+ private int HANDLE_FOR_RSSI_READ = -3;
+ private AtomicInteger handleForTimeout = new AtomicInteger(HANDLE_FOR_RESET); // implies not running by default
+
+ private final int RUNNABLE_TIMEOUT = 3000; // 3 seconds
+ private final Handler timeoutHandler = new Handler(Looper.getMainLooper());
+
+ private BluetoothLeScanner mBluetoothLeScanner = null;
+
+ private class TimeoutRunnable implements Runnable {
+ TimeoutRunnable(int handle) { pendingJobHandle = handle; }
+ @Override
+ public void run() {
+ boolean timeoutStillValid = handleForTimeout.compareAndSet(pendingJobHandle, HANDLE_FOR_RESET);
+ if (timeoutStillValid) {
+ Log.w(TAG, "****** Timeout for request on handle " + (pendingJobHandle & 0xffff));
+ Log.w(TAG, "****** Looks like the peripheral does NOT act in " +
+ "accordance to Bluetooth 4.x spec.");
+ Log.w(TAG, "****** Please check server implementation. Continuing under " +
+ "reservation.");
+
+ if (pendingJobHandle > HANDLE_FOR_RESET)
+ interruptCurrentIO(pendingJobHandle & 0xffff);
+ else if (pendingJobHandle < HANDLE_FOR_RESET)
+ interruptCurrentIO(pendingJobHandle);
+ }
+ }
+
+ // contains handle (0xffff) and top 2 byte contain the job type (0xffff0000)
+ private int pendingJobHandle = -1;
+ };
+
+ // The handleOn* functions in this class are callback handlers which are synchronized
+ // to "this" client object. This protects the member variables which could be
+ // concurrently accessed from Qt (JNI) thread and different Java threads *)
+ // *) The newer Android API (starting Android 8.1) synchronizes callbacks to one
+ // Java thread, but this is not true for the earlier API which we still support.
+ //
+ // In case bond state has been changed due to access to a restricted handle,
+ // Android never completes the operation which triggered the devices to bind
+ // and thus never fires on(Characteristic|Descriptor)(Read|Write) callback,
+ // causing TimeoutRunnable to interrupt pending job,
+ // albeit the read/write job hasn't been actually executed by the peripheral;
+ // re-add the currently pending job to the queue's head and re-run it.
+ // If, by some reason, bonding process has been interrupted, either
+ // re-add the currently pending job to the queue's head and re-run it.
+ private synchronized void handleOnReceive(Context context, Intent intent)
+ {
+ if (mBluetoothGatt == null)
+ return;
+
+ final BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
+ if (device == null || !device.getAddress().equals(mBluetoothGatt.getDevice().getAddress()))
+ return;
+
+ final int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE, -1);
+ final int previousBondState =
+ intent.getIntExtra(BluetoothDevice.EXTRA_PREVIOUS_BOND_STATE, -1);
+
+ if (bondState == BluetoothDevice.BOND_BONDING) {
+ if (pendingJob == null
+ || pendingJob.jobType == IoJobType.Mtu || pendingJob.jobType == IoJobType.Rssi) {
+ return;
+ }
+
+ timeoutHandler.removeCallbacksAndMessages(null);
+ handleForTimeout.set(HANDLE_FOR_RESET);
+ } else if (previousBondState == BluetoothDevice.BOND_BONDING &&
+ (bondState == BluetoothDevice.BOND_BONDED || bondState == BluetoothDevice.BOND_NONE)) {
+ if (pendingJob == null
+ || pendingJob.jobType == IoJobType.Mtu || pendingJob.jobType == IoJobType.Rssi) {
+ return;
+ }
+
+ readWriteQueue.addFirst(pendingJob);
+ pendingJob = null;
+
+ performNextIO();
+ } else if (previousBondState == BluetoothDevice.BOND_BONDED
+ && bondState == BluetoothDevice.BOND_NONE) {
+ // peripheral or central removed the bond information;
+ // if it was peripheral, the connection attempt would fail with PIN_OR_KEY_MISSING,
+ // which is handled by Android by broadcasting ACTION_BOND_STATE_CHANGED
+ // with new state BOND_NONE, without actually deleting the bond information :facepalm:
+ // if we get there, it is safer to delete it now, by invoking the undocumented API call
+ try {
+ device.getClass().getMethod("removeBond").invoke(device);
+ } catch (Exception ex) {
+ ex.printStackTrace();
+ }
+ }
+ }
+
+ private class BondStateBroadcastReceiver extends BroadcastReceiver {
+ @Override
+ public void onReceive(Context context, Intent intent) {
+ handleOnReceive(context, intent);
+ }
+ };
+ private BroadcastReceiver bondStateBroadcastReceiver = null;
+
+ /* Pointer to the Qt object that "owns" the Java object */
+ @SuppressWarnings({"CanBeFinal", "WeakerAccess"})
+ long qtObject = 0;
+ @SuppressWarnings("WeakerAccess")
+ Context qtContext = null;
+
+ @SuppressWarnings("WeakerAccess")
+ QtBluetoothLE(Context context) {
+ qtContext = context;
+
+ BluetoothManager manager =
+ (BluetoothManager)qtContext.getSystemService(Context.BLUETOOTH_SERVICE);
+ if (manager == null)
+ return;
+
+ mBluetoothAdapter = manager.getAdapter();
+ if (mBluetoothAdapter == null)
+ return;
+
+ mBluetoothLeScanner = mBluetoothAdapter.getBluetoothLeScanner();
+ }
+
+ QtBluetoothLE(final String remoteAddress, Context context) {
+ this(context);
+ mRemoteGattAddress = remoteAddress;
+ }
+
+ /*************************************************************/
+ /* Device scan */
+ /* Returns true, if request was successfully completed */
+ /* This function is called from Qt thread, but only accesses */
+ /* variables that are not accessed from Java threads */
+ /*************************************************************/
+
+ boolean scanForLeDevice(final boolean isEnabled) {
+ if (isEnabled == mLeScanRunning)
+ return true;
+
+ if (mBluetoothLeScanner == null) {
+ Log.w(TAG, "Cannot start LE scan, no bluetooth scanner");
+ return false;
+ }
+
+ if (isEnabled) {
+ Log.d(TAG, "Attempting to start BTLE scan");
+ ScanSettings.Builder settingsBuilder = new ScanSettings.Builder();
+ settingsBuilder = settingsBuilder.setScanMode(ScanSettings.SCAN_MODE_BALANCED);
+ ScanSettings settings = settingsBuilder.build();
+
+ List<ScanFilter> filterList = new ArrayList<ScanFilter>();
+
+ mBluetoothLeScanner.startScan(filterList, settings, leScanCallback);
+ mLeScanRunning = true;
+ } else {
+ Log.d(TAG, "Attempting to stop BTLE scan");
+ try {
+ mBluetoothLeScanner.stopScan(leScanCallback);
+ } catch (IllegalStateException isex) {
+ // when trying to stop a scan while bluetooth is offline
+ // java.lang.IllegalStateException: BT Adapter is not turned ON
+ Log.d(TAG, "Stopping LE scan not possible: " + isex.getMessage());
+ }
+ mLeScanRunning = false;
+ }
+
+ return (mLeScanRunning == isEnabled);
+ }
+
+ private final ScanCallback leScanCallback = new ScanCallback() {
+ @Override
+ public void onScanResult(int callbackType, ScanResult result) {
+ super.onScanResult(callbackType, result);
+ leScanResult(qtObject, result.getDevice(), result.getRssi(), result.getScanRecord().getBytes());
+ }
+
+ @Override
+ public void onBatchScanResults(List<ScanResult> results) {
+ super.onBatchScanResults(results);
+ for (ScanResult result : results)
+ leScanResult(qtObject, result.getDevice(), result.getRssi(), result.getScanRecord().getBytes());
+
+ }
+
+ @Override
+ public void onScanFailed(int errorCode) {
+ super.onScanFailed(errorCode);
+ Log.d(TAG, "BTLE device scan failed with " + errorCode);
+ }
+ };
+
+ native void leScanResult(long qtObject, BluetoothDevice device, int rssi, byte[] scanRecord);
+
+ private synchronized void handleOnConnectionStateChange(BluetoothGatt gatt,
+ int status, int newState) {
+
+ Log.d(TAG, "Connection state changes to: " + newState + ", status: " + status
+ + ", qtObject: " + (qtObject != 0));
+ if (qtObject == 0)
+ return;
+
+ int qLowEnergyController_State = 0;
+ //This must be in sync with QLowEnergyController::ControllerState
+ switch (newState) {
+ case BluetoothProfile.STATE_DISCONNECTED:
+ if (bondStateBroadcastReceiver != null) {
+ qtContext.unregisterReceiver(bondStateBroadcastReceiver);
+ bondStateBroadcastReceiver = null;
+ }
+
+ qLowEnergyController_State = 0;
+ // we disconnected -> get rid of data from previous run
+ resetData();
+ // reset mBluetoothGatt, reusing same object is not very reliable
+ // sometimes it reconnects and sometimes it does not.
+ if (mBluetoothGatt != null) {
+ mBluetoothGatt.close();
+ if (mHandler != null) {
+ mHandler.getLooper().quitSafely();
+ mHandler = null;
+ }
+ }
+ mBluetoothGatt = null;
+ break;
+ case BluetoothProfile.STATE_CONNECTED:
+ if (bondStateBroadcastReceiver == null) {
+ bondStateBroadcastReceiver = new BondStateBroadcastReceiver();
+ qtContext.registerReceiver(bondStateBroadcastReceiver,
+ new IntentFilter(BluetoothDevice.ACTION_BOND_STATE_CHANGED));
+ }
+ qLowEnergyController_State = 2;
+ }
+
+ //This must be in sync with QLowEnergyController::Error
+ int errorCode;
+ switch (status) {
+ case BluetoothGatt.GATT_SUCCESS:
+ errorCode = 0; //QLowEnergyController::NoError
+ break;
+ case BluetoothGatt.GATT_FAILURE: // Android's equivalent of "do not know what error"
+ errorCode = 1; //QLowEnergyController::UnknownError
+ break;
+ case 8: // BLE_HCI_CONNECTION_TIMEOUT
+ Log.w(TAG, "Connection Error: Try to delay connect() call after previous activity");
+ errorCode = 5; //QLowEnergyController::ConnectionError
+ break;
+ case 19: // BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION
+ case 20: // BLE_HCI_REMOTE_DEV_TERMINATION_DUE_TO_LOW_RESOURCES
+ case 21: // BLE_HCI_REMOTE_DEV_TERMINATION_DUE_TO_POWER_OFF
+ Log.w(TAG, "The remote host closed the connection");
+ errorCode = 7; //QLowEnergyController::RemoteHostClosedError
+ break;
+ case 22: // BLE_HCI_LOCAL_HOST_TERMINATED_CONNECTION
+ // Internally, Android maps PIN_OR_KEY_MISSING to GATT_CONN_TERMINATE_LOCAL_HOST
+ errorCode = 8; //QLowEnergyController::AuthorizationError
+ break;
+ default:
+ Log.w(TAG, "Unhandled error code on connectionStateChanged: "
+ + status + " " + newState);
+ errorCode = status;
+ break; //TODO deal with all errors
+ }
+ leConnectionStateChange(qtObject, errorCode, qLowEnergyController_State);
+ }
+
+ private synchronized void handleOnServicesDiscovered(BluetoothGatt gatt, int status) {
+ //This must be in sync with QLowEnergyController::Error
+ int errorCode;
+ StringBuilder builder = new StringBuilder();
+ switch (status) {
+ case BluetoothGatt.GATT_SUCCESS:
+ errorCode = 0; //QLowEnergyController::NoError
+ final List<BluetoothGattService> services = mBluetoothGatt.getServices();
+ for (BluetoothGattService service: services) {
+ builder.append(service.getUuid().toString()).append(" "); //space is separator
+ }
+ break;
+ default:
+ Log.w(TAG, "Unhandled error code on onServicesDiscovered: " + status);
+ errorCode = status; break; //TODO deal with all errors
+ }
+ leServicesDiscovered(qtObject, errorCode, builder.toString());
+ if (status == BluetoothGatt.GATT_SUCCESS)
+ scheduleMtuExchange();
+ }
+
+ private synchronized void handleOnCharacteristicRead(BluetoothGatt gatt,
+ BluetoothGattCharacteristic characteristic,
+ byte[] value,
+ int status)
+ {
+ int foundHandle = handleForCharacteristic(characteristic);
+ if (foundHandle == -1 || foundHandle >= entries.size() ) {
+ Log.w(TAG, "Cannot find characteristic read request for read notification - handle: " +
+ foundHandle + " size: " + entries.size());
+
+ //unlock the queue for next item
+ pendingJob = null;
+
+ performNextIO();
+ return;
+ }
+
+ boolean requestTimedOut = !handleForTimeout.compareAndSet(
+ modifiedReadWriteHandle(foundHandle, IoJobType.Read),
+ HANDLE_FOR_RESET);
+ if (requestTimedOut) {
+ Log.w(TAG, "Late char read reply after timeout was hit for handle " + foundHandle);
+ // Timeout has hit before this response -> ignore the response
+ // no need to unlock pendingJob -> the timeout has done that already
+ return;
+ }
+
+ GattEntry entry = entries.get(foundHandle);
+ final boolean isServiceDiscoveryRun = !entry.valueKnown;
+ entry.valueKnown = true;
+
+ if (status == BluetoothGatt.GATT_SUCCESS) {
+ // Qt manages handles starting at 1, in Java we use a system starting with 0
+ //TODO avoid sending service uuid -> service handle should be sufficient
+ leCharacteristicRead(qtObject,
+ characteristic.getService().getUuid().toString(),
+ foundHandle + 1, characteristic.getUuid().toString(),
+ characteristic.getProperties(), value);
+ } else {
+ if (isServiceDiscoveryRun) {
+ Log.w(TAG, "onCharacteristicRead during discovery error: " + status);
+
+ Log.d(TAG, "Non-readable characteristic " + characteristic.getUuid() +
+ " for service " + characteristic.getService().getUuid());
+ leCharacteristicRead(qtObject, characteristic.getService().getUuid().toString(),
+ foundHandle + 1, characteristic.getUuid().toString(),
+ characteristic.getProperties(), value);
+ } else {
+ // This must be in sync with QLowEnergyService::CharacteristicReadError
+ final int characteristicReadError = 5;
+ leServiceError(qtObject, foundHandle + 1, characteristicReadError);
+ }
+ }
+
+ if (isServiceDiscoveryRun) {
+
+ // last entry of pending service discovery run -> send discovery finished state update
+ GattEntry serviceEntry = entries.get(entry.associatedServiceHandle);
+ if (serviceEntry.endHandle == foundHandle)
+ finishCurrentServiceDiscovery(entry.associatedServiceHandle);
+ }
+
+ //unlock the queue for next item
+ pendingJob = null;
+
+ performNextIO();
+ }
+
+ private synchronized void handleOnCharacteristicChanged(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattCharacteristic characteristic,
+ byte[] value)
+ {
+ int handle = handleForCharacteristic(characteristic);
+ if (handle == -1) {
+ Log.w(TAG,"onCharacteristicChanged: cannot find handle");
+ return;
+ }
+
+ leCharacteristicChanged(qtObject, handle+1, value);
+ }
+
+ private synchronized void handleOnCharacteristicWrite(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattCharacteristic characteristic,
+ int status)
+ {
+ if (status != BluetoothGatt.GATT_SUCCESS)
+ Log.w(TAG, "onCharacteristicWrite: error " + status);
+
+ int handle = handleForCharacteristic(characteristic);
+ if (handle == -1) {
+ Log.w(TAG,"onCharacteristicWrite: cannot find handle");
+ return;
+ }
+
+ boolean requestTimedOut = !handleForTimeout.compareAndSet(
+ modifiedReadWriteHandle(handle, IoJobType.Write),
+ HANDLE_FOR_RESET);
+ if (requestTimedOut) {
+ Log.w(TAG, "Late char write reply after timeout was hit for handle " + handle);
+ // Timeout has hit before this response -> ignore the response
+ // no need to unlock pendingJob -> the timeout has done that already
+ return;
+ }
+
+ int errorCode;
+ //This must be in sync with QLowEnergyService::ServiceError
+ switch (status) {
+ case BluetoothGatt.GATT_SUCCESS:
+ errorCode = 0;
+ break; // NoError
+ default:
+ errorCode = 2;
+ break; // CharacteristicWriteError
+ }
+
+ byte[] value;
+ value = pendingJob.newValue;
+ pendingJob = null;
+
+ leCharacteristicWritten(qtObject, handle+1, value, errorCode);
+ performNextIO();
+ }
+
+ private synchronized void handleOnDescriptorRead(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattDescriptor descriptor,
+ int status, byte[] newValue)
+ {
+ int foundHandle = handleForDescriptor(descriptor);
+ if (foundHandle == -1 || foundHandle >= entries.size() ) {
+ Log.w(TAG, "Cannot find descriptor read request for read notification - handle: " +
+ foundHandle + " size: " + entries.size());
+
+ //unlock the queue for next item
+ pendingJob = null;
+
+ performNextIO();
+ return;
+ }
+
+ boolean requestTimedOut = !handleForTimeout.compareAndSet(
+ modifiedReadWriteHandle(foundHandle, IoJobType.Read),
+ HANDLE_FOR_RESET);
+ if (requestTimedOut) {
+ Log.w(TAG, "Late descriptor read reply after timeout was hit for handle " +
+ foundHandle);
+ // Timeout has hit before this response -> ignore the response
+ // no need to unlock pendingJob -> the timeout has done that already
+ return;
+ }
+
+ GattEntry entry = entries.get(foundHandle);
+ final boolean isServiceDiscoveryRun = !entry.valueKnown;
+ entry.valueKnown = true;
+
+ if (status == BluetoothGatt.GATT_SUCCESS) {
+ //TODO avoid sending service and characteristic uuid -> handles should be sufficient
+ leDescriptorRead(qtObject,
+ descriptor.getCharacteristic().getService().getUuid().toString(),
+ descriptor.getCharacteristic().getUuid().toString(), foundHandle + 1,
+ descriptor.getUuid().toString(), newValue);
+ } else {
+ if (isServiceDiscoveryRun) {
+ // Cannot read but still advertise the fact that we found a descriptor
+ // The value will be empty.
+ Log.w(TAG, "onDescriptorRead during discovery error: " + status);
+ Log.d(TAG, "Non-readable descriptor " + descriptor.getUuid() +
+ " for characteristic " + descriptor.getCharacteristic().getUuid() +
+ " for service " + descriptor.getCharacteristic().getService().getUuid());
+ leDescriptorRead(qtObject,
+ descriptor.getCharacteristic().getService().getUuid().toString(),
+ descriptor.getCharacteristic().getUuid().toString(), foundHandle + 1,
+ descriptor.getUuid().toString(), newValue);
+ } else {
+ // This must be in sync with QLowEnergyService::DescriptorReadError
+ final int descriptorReadError = 6;
+ leServiceError(qtObject, foundHandle + 1, descriptorReadError);
+ }
+
+ }
+
+ if (isServiceDiscoveryRun) {
+ // last entry of pending service discovery run? ->send discovery finished state update
+ GattEntry serviceEntry = entries.get(entry.associatedServiceHandle);
+ if (serviceEntry.endHandle == foundHandle) {
+ finishCurrentServiceDiscovery(entry.associatedServiceHandle);
+ }
+
+ /* Some devices preset ClientCharacteristicConfiguration descriptors
+ * to enable notifications out of the box. However the additional
+ * BluetoothGatt.setCharacteristicNotification call prevents
+ * automatic notifications from coming through. Hence we manually set them
+ * up here.
+ */
+ if (descriptor.getUuid().compareTo(clientCharacteristicUuid) == 0) {
+ byte[] bytearray = newValue;
+ final int value = (bytearray != null && bytearray.length > 0) ? bytearray[0] : 0;
+ // notification or indication bit set?
+ if ((value & 0x03) > 0) {
+ Log.d(TAG, "Found descriptor with automatic notifications.");
+ mBluetoothGatt.setCharacteristicNotification(
+ descriptor.getCharacteristic(), true);
+ }
+ }
+ }
+
+ //unlock the queue for next item
+ pendingJob = null;
+
+ performNextIO();
+ }
+
+ private synchronized void handleOnDescriptorWrite(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattDescriptor descriptor,
+ int status)
+ {
+ if (status != BluetoothGatt.GATT_SUCCESS)
+ Log.w(TAG, "onDescriptorWrite: error " + status);
+
+ int handle = handleForDescriptor(descriptor);
+
+ boolean requestTimedOut = !handleForTimeout.compareAndSet(
+ modifiedReadWriteHandle(handle, IoJobType.Write),
+ HANDLE_FOR_RESET);
+ if (requestTimedOut) {
+ Log.w(TAG, "Late descriptor write reply after timeout was hit for handle " +
+ handle);
+ // Timeout has hit before this response -> ignore the response
+ // no need to unlock pendingJob -> the timeout has done that already
+ return;
+ }
+
+ int errorCode;
+ //This must be in sync with QLowEnergyService::ServiceError
+ switch (status) {
+ case BluetoothGatt.GATT_SUCCESS:
+ errorCode = 0; break; // NoError
+ default:
+ errorCode = 3; break; // DescriptorWriteError
+ }
+
+ byte[] value = pendingJob.newValue;
+ pendingJob = null;
+
+ leDescriptorWritten(qtObject, handle+1, value, errorCode);
+ performNextIO();
+ }
+
+ private synchronized void handleOnMtuChanged(android.bluetooth.BluetoothGatt gatt,
+ int mtu, int status)
+ {
+ int previousMtu = mSupportedMtu;
+ if (status == BluetoothGatt.GATT_SUCCESS) {
+ Log.w(TAG, "MTU changed to " + mtu);
+ mSupportedMtu = mtu;
+ } else {
+ Log.w(TAG, "MTU change error " + status + ". New MTU " + mtu);
+ mSupportedMtu = DEFAULT_MTU;
+ }
+ if (previousMtu != mSupportedMtu)
+ leMtuChanged(qtObject, mSupportedMtu);
+
+ boolean requestTimedOut = !handleForTimeout.compareAndSet(
+ modifiedReadWriteHandle(HANDLE_FOR_MTU_EXCHANGE, IoJobType.Mtu), HANDLE_FOR_RESET);
+ if (requestTimedOut) {
+ Log.w(TAG, "Late mtu reply after timeout was hit");
+ // Timeout has hit before this response -> ignore the response
+ // no need to unlock pendingJob -> the timeout has done that already
+ return;
+ }
+
+ pendingJob = null;
+
+ performNextIO();
+ }
+
+ private synchronized void handleOnReadRemoteRssi(android.bluetooth.BluetoothGatt gatt,
+ int rssi, int status)
+ {
+ Log.d(TAG, "RSSI read callback, rssi: " + rssi + ", status: " + status);
+ leRemoteRssiRead(qtObject, rssi, status == BluetoothGatt.GATT_SUCCESS);
+
+ boolean requestTimedOut = !handleForTimeout.compareAndSet(
+ modifiedReadWriteHandle(HANDLE_FOR_RSSI_READ, IoJobType.Rssi), HANDLE_FOR_RESET);
+ if (requestTimedOut) {
+ Log.w(TAG, "Late RSSI read reply after timeout was hit");
+ // Timeout has hit before this response -> ignore the response
+ // no need to unlock pendingJob -> the timeout has done that already
+ return;
+ }
+ pendingJob = null;
+ performNextIO();
+ }
+
+ /*************************************************************/
+ /* Service Discovery */
+ /*************************************************************/
+
+ private final BluetoothGattCallback gattCallback = new BluetoothGattCallback() {
+ @Override
+ public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
+ super.onConnectionStateChange(gatt, status, newState);
+ handleOnConnectionStateChange(gatt, status, newState);
+ }
+
+ @Override
+ public void onServicesDiscovered(BluetoothGatt gatt, int status) {
+ super.onServicesDiscovered(gatt, status);
+ handleOnServicesDiscovered(gatt, status);
+
+ }
+
+ @Override
+ // API < 33
+ public void onCharacteristicRead(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattCharacteristic characteristic,
+ int status)
+ {
+ super.onCharacteristicRead(gatt, characteristic, status);
+ handleOnCharacteristicRead(gatt, characteristic, characteristic.getValue(), status);
+ }
+
+ @Override
+ // API >= 33
+ public void onCharacteristicRead(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattCharacteristic characteristic,
+ byte[] value,
+ int status)
+ {
+ // Note: here we don't call the super implementation as it calls the old "< API 33"
+ // callback, and the callback would be handled twice
+ handleOnCharacteristicRead(gatt, characteristic, value, status);
+ }
+
+ @Override
+ public void onCharacteristicWrite(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattCharacteristic characteristic,
+ int status)
+ {
+ super.onCharacteristicWrite(gatt, characteristic, status);
+ handleOnCharacteristicWrite(gatt, characteristic, status);
+ }
+
+ // API < 33
+ @Override
+ public void onCharacteristicChanged(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattCharacteristic characteristic)
+ {
+ super.onCharacteristicChanged(gatt, characteristic);
+ handleOnCharacteristicChanged(gatt, characteristic, characteristic.getValue());
+ }
+
+ // API >= 33
+ @Override
+ public void onCharacteristicChanged(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattCharacteristic characteristic,
+ byte[] value)
+ {
+ // Note: here we don't call the super implementation as it calls the old "< API 33"
+ // callback, and the callback would be handled twice
+ handleOnCharacteristicChanged(gatt, characteristic, value);
+ }
+
+ // API < 33
+ @Override
+ public void onDescriptorRead(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattDescriptor descriptor,
+ int status)
+ {
+ super.onDescriptorRead(gatt, descriptor, status);
+ handleOnDescriptorRead(gatt, descriptor, status, descriptor.getValue());
+ }
+
+ // API >= 33
+ @Override
+ public void onDescriptorRead(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattDescriptor descriptor,
+ int status,
+ byte[] value)
+ {
+ // Note: here we don't call the super implementation as it calls the old "< API 33"
+ // callback, and the callback would be handled twice
+ handleOnDescriptorRead(gatt, descriptor, status, value);
+ }
+
+ @Override
+ public void onDescriptorWrite(android.bluetooth.BluetoothGatt gatt,
+ android.bluetooth.BluetoothGattDescriptor descriptor,
+ int status)
+ {
+ super.onDescriptorWrite(gatt, descriptor, status);
+ handleOnDescriptorWrite(gatt, descriptor, status);
+ }
+ //TODO currently not supported
+// @Override
+// void onReliableWriteCompleted(android.bluetooth.BluetoothGatt gatt,
+// int status) {
+// System.out.println("onReliableWriteCompleted");
+// }
+//
+ @Override
+ public void onReadRemoteRssi(android.bluetooth.BluetoothGatt gatt, int rssi, int status)
+ {
+ super.onReadRemoteRssi(gatt, rssi, status);
+ handleOnReadRemoteRssi(gatt, rssi, status);
+ }
+
+ @Override
+ public void onMtuChanged(android.bluetooth.BluetoothGatt gatt, int mtu, int status)
+ {
+ super.onMtuChanged(gatt, mtu, status);
+ handleOnMtuChanged(gatt, mtu, status);
+ }
+ };
+
+ // This function is called from Qt thread
+ synchronized int mtu() {
+ if (mSupportedMtu == -1) {
+ return DEFAULT_MTU;
+ } else {
+ return mSupportedMtu;
+ }
+ }
+
+ // This function is called from Qt thread
+ synchronized boolean readRemoteRssi() {
+ if (mBluetoothGatt == null)
+ return false;
+
+ // Reading of RSSI can sometimes be 'lost' especially if amidst
+ // characteristic reads/writes ('lost' here meaning that there is no callback).
+ // To avoid this schedule the RSSI read in the job queue.
+ ReadWriteJob newJob = new ReadWriteJob();
+ newJob.jobType = IoJobType.Rssi;
+ newJob.entry = null;
+
+ if (!readWriteQueue.add(newJob)) {
+ Log.w(TAG, "Cannot add remote RSSI read to queue" );
+ return false;
+ }
+
+ performNextIOThreaded();
+ return true;
+ }
+
+ // This function is called from Qt thread
+ synchronized boolean connect() {
+ BluetoothDevice mRemoteGattDevice;
+
+ if (mBluetoothAdapter == null) {
+ Log.w(TAG, "Cannot connect, no bluetooth adapter");
+ return false;
+ }
+
+ try {
+ mRemoteGattDevice = mBluetoothAdapter.getRemoteDevice(mRemoteGattAddress);
+ } catch (IllegalArgumentException ex) {
+ Log.w(TAG, "Remote address is not valid: " + mRemoteGattAddress);
+ return false;
+ }
+
+ /* The required connectGatt function is already available in SDK v26, but Android 8.0
+ * contains a race condition in the Changed callback such that it can return the value that
+ * was written. This is fixed in Android 8.1, which matches SDK v27. */
+ if (Build.VERSION.SDK_INT >= 27) {
+ HandlerThread handlerThread = new HandlerThread("QtBluetoothLEHandlerThread");
+ handlerThread.start();
+ mHandler = new Handler(handlerThread.getLooper());
+
+ Class[] args = new Class[6];
+ args[0] = android.content.Context.class;
+ args[1] = boolean.class;
+ args[2] = android.bluetooth.BluetoothGattCallback.class;
+ args[3] = int.class;
+ args[4] = int.class;
+ args[5] = android.os.Handler.class;
+
+ try {
+ Method connectMethod = mRemoteGattDevice.getClass().getDeclaredMethod("connectGatt", args);
+ if (connectMethod != null) {
+ mBluetoothGatt = (BluetoothGatt) connectMethod.invoke(mRemoteGattDevice, qtContext, false,
+ gattCallback, 2 /* TRANSPORT_LE */, 1 /*BluetoothDevice.PHY_LE_1M*/, mHandler);
+ Log.w(TAG, "Using Android v26 BluetoothDevice.connectGatt()");
+ }
+ } catch (Exception ex) {
+ Log.w(TAG, "connectGatt() v26 not available");
+ ex.printStackTrace();
+ }
+
+ if (mBluetoothGatt == null) {
+ mHandler.getLooper().quitSafely();
+ mHandler = null;
+ }
+ }
+
+ if (mBluetoothGatt == null) {
+ try {
+ //This API element is currently: greylist-max-o (API level 27), reflection, allowed
+ //It may change in the future
+ Class[] constr_args = new Class[5];
+ constr_args[0] = android.bluetooth.BluetoothGattService.class;
+ constr_args[1] = java.util.UUID.class;
+ constr_args[2] = int.class;
+ constr_args[3] = int.class;
+ constr_args[4] = int.class;
+ mCharacteristicConstructor = BluetoothGattCharacteristic.class.getDeclaredConstructor(constr_args);
+ mCharacteristicConstructor.setAccessible(true);
+ } catch (NoSuchMethodException ex) {
+ Log.w(TAG, "Unable get characteristic constructor. Buffer race condition are possible");
+ /* For some reason we don't get the private BluetoothGattCharacteristic ctor.
+ This means that we cannot protect ourselves from issues where concurrent
+ read and write operations on the same char can overwrite each others buffer.
+ Nevertheless we continue with best effort.
+ */
+ }
+ try {
+ mBluetoothGatt =
+ mRemoteGattDevice.connectGatt(qtContext, false,
+ gattCallback, 2 /* TRANSPORT_LE */);
+ } catch (IllegalArgumentException ex) {
+ Log.w(TAG, "Gatt connection failed");
+ ex.printStackTrace();
+ }
+ }
+ return mBluetoothGatt != null;
+ }
+
+ // This function is called from Qt thread
+ synchronized void disconnect() {
+ if (mBluetoothGatt == null)
+ return;
+
+ mBluetoothGatt.disconnect();
+ }
+
+ // This function is called from Qt thread
+ synchronized boolean discoverServices()
+ {
+ return mBluetoothGatt != null && mBluetoothGatt.discoverServices();
+ }
+
+ private enum GattEntryType
+ {
+ Service, Characteristic, CharacteristicValue, Descriptor
+ }
+ private class GattEntry
+ {
+ GattEntryType type;
+ boolean valueKnown = false;
+ BluetoothGattService service = null;
+ BluetoothGattCharacteristic characteristic = null;
+ BluetoothGattDescriptor descriptor = null;
+ /*
+ * endHandle defined for GattEntryType.Service and GattEntryType.CharacteristicValue
+ * If the type is service this is the value of the last Gatt entry belonging to the very
+ * same service. If the type is a char value it is the entries index inside
+ * the "entries" list.
+ */
+ int endHandle = -1;
+ // pointer back to the handle that describes the service that this GATT entry belongs to
+ int associatedServiceHandle;
+ }
+
+ private enum IoJobType
+ {
+ Read, Write, Mtu,
+ SkippedRead, Rssi
+ // a skipped read is a read which is not executed
+ // introduced in Qt 6.2 to skip reads without changing service discovery logic
+ }
+
+ private class ReadWriteJob
+ {
+ GattEntry entry;
+ byte[] newValue;
+ int requestedWriteType;
+ IoJobType jobType;
+ }
+
+ // service uuid -> service handle mapping (there can be more than one service with same uuid)
+ private final Hashtable<UUID, List<Integer>> uuidToEntry = new Hashtable<UUID, List<Integer>>(100);
+ // index into array is equivalent to handle id
+ private final ArrayList<GattEntry> entries = new ArrayList<GattEntry>(100);
+ //backlog of to be discovered services
+ private final LinkedList<Integer> servicesToBeDiscovered = new LinkedList<Integer>();
+
+
+ private final LinkedList<ReadWriteJob> readWriteQueue = new LinkedList<ReadWriteJob>();
+ private ReadWriteJob pendingJob;
+
+ /*
+ Internal helper function
+ Returns the handle id for the given characteristic; otherwise returns -1.
+
+ Note that this is the Java handle. The Qt handle is the Java handle +1.
+ */
+ private int handleForCharacteristic(BluetoothGattCharacteristic characteristic)
+ {
+ if (characteristic == null)
+ return -1;
+
+ List<Integer> handles = uuidToEntry.get(characteristic.getService().getUuid());
+ if (handles == null || handles.isEmpty())
+ return -1;
+
+ //TODO for now we assume we always want the first service in case of uuid collision
+ int serviceHandle = handles.get(0);
+
+ try {
+ GattEntry entry;
+ for (int i = serviceHandle+1; i < entries.size(); i++) {
+ entry = entries.get(i);
+ if (entry == null)
+ continue;
+
+ switch (entry.type) {
+ case Descriptor:
+ case CharacteristicValue:
+ continue;
+ case Service:
+ break;
+ case Characteristic:
+ if (entry.characteristic == characteristic)
+ return i;
+ break;
+ }
+ }
+ } catch (IndexOutOfBoundsException ex) { /*nothing*/ }
+ return -1;
+ }
+
+ /*
+ Internal helper function
+ Returns the handle id for the given descriptor; otherwise returns -1.
+
+ Note that this is the Java handle. The Qt handle is the Java handle +1.
+ */
+ private int handleForDescriptor(BluetoothGattDescriptor descriptor)
+ {
+ if (descriptor == null)
+ return -1;
+
+ List<Integer> handles = uuidToEntry.get(descriptor.getCharacteristic().getService().getUuid());
+ if (handles == null || handles.isEmpty())
+ return -1;
+
+ //TODO for now we assume we always want the first service in case of uuid collision
+ int serviceHandle = handles.get(0);
+
+ try {
+ GattEntry entry;
+ for (int i = serviceHandle+1; i < entries.size(); i++) {
+ entry = entries.get(i);
+ if (entry == null)
+ continue;
+
+ switch (entry.type) {
+ case Characteristic:
+ case CharacteristicValue:
+ continue;
+ case Service:
+ break;
+ case Descriptor:
+ if (entry.descriptor == descriptor)
+ return i;
+ break;
+ }
+ }
+ } catch (IndexOutOfBoundsException ignored) { }
+ return -1;
+ }
+
+ // This function is called from Qt thread (indirectly)
+ private void populateHandles()
+ {
+ // We introduce the notion of artificial handles. While GATT handles
+ // are not exposed on Android they help to quickly identify GATT attributes
+ // on the C++ side. The Qt Api will not expose the handles
+ GattEntry entry = null;
+ List<BluetoothGattService> services = mBluetoothGatt.getServices();
+ for (BluetoothGattService service: services) {
+ GattEntry serviceEntry = new GattEntry();
+ serviceEntry.type = GattEntryType.Service;
+ serviceEntry.service = service;
+ entries.add(serviceEntry);
+
+ // remember handle for the service for later update
+ int serviceHandle = entries.size() - 1;
+ //point to itself -> mostly done for consistence reasons with other entries
+ serviceEntry.associatedServiceHandle = serviceHandle;
+
+ //some devices may have more than one service with the same uuid
+ List<Integer> old = uuidToEntry.get(service.getUuid());
+ if (old == null)
+ old = new ArrayList<Integer>();
+ old.add(entries.size()-1);
+ uuidToEntry.put(service.getUuid(), old);
+
+ // add all characteristics
+ List<BluetoothGattCharacteristic> charList = service.getCharacteristics();
+ for (BluetoothGattCharacteristic characteristic: charList) {
+ entry = new GattEntry();
+ entry.type = GattEntryType.Characteristic;
+ entry.characteristic = characteristic;
+ entry.associatedServiceHandle = serviceHandle;
+ //entry.endHandle = .. undefined
+ entries.add(entry);
+
+ // this emulates GATT value attributes
+ entry = new GattEntry();
+ entry.type = GattEntryType.CharacteristicValue;
+ entry.associatedServiceHandle = serviceHandle;
+ entry.endHandle = entries.size(); // special case -> current index in entries list
+ entries.add(entry);
+
+ // add all descriptors
+ List<BluetoothGattDescriptor> descList = characteristic.getDescriptors();
+ for (BluetoothGattDescriptor desc: descList) {
+ entry = new GattEntry();
+ entry.type = GattEntryType.Descriptor;
+ entry.descriptor = desc;
+ entry.associatedServiceHandle = serviceHandle;
+ //entry.endHandle = .. undefined
+ entries.add(entry);
+ }
+ }
+
+ // update endHandle of current service
+ serviceEntry.endHandle = entries.size() - 1;
+ }
+
+ entries.trimToSize();
+ }
+
+ private void resetData()
+ {
+ uuidToEntry.clear();
+ entries.clear();
+ servicesToBeDiscovered.clear();
+
+ // kill all timeout handlers
+ timeoutHandler.removeCallbacksAndMessages(null);
+ handleForTimeout.set(HANDLE_FOR_RESET);
+
+ readWriteQueue.clear();
+ pendingJob = null;
+ }
+
+ // This function is called from Qt thread
+ synchronized boolean discoverServiceDetails(String serviceUuid, boolean fullDiscovery)
+ {
+ Log.d(TAG, "Discover service details for: " + serviceUuid + ", fullDiscovery: "
+ + fullDiscovery + ", BluetoothGatt: " + (mBluetoothGatt != null));
+ try {
+ if (mBluetoothGatt == null)
+ return false;
+
+ if (entries.isEmpty())
+ populateHandles();
+
+ GattEntry entry;
+ int serviceHandle;
+ try {
+ UUID service = UUID.fromString(serviceUuid);
+ List<Integer> handles = uuidToEntry.get(service);
+ if (handles == null || handles.isEmpty()) {
+ Log.w(TAG, "Unknown service uuid for current device: " + service.toString());
+ return false;
+ }
+
+ //TODO for now we assume we always want the first service in case of uuid collision
+ serviceHandle = handles.get(0);
+ entry = entries.get(serviceHandle);
+ if (entry == null) {
+ Log.w(TAG, "Service with UUID " + service.toString() + " not found");
+ return false;
+ }
+ } catch (IllegalArgumentException ex) {
+ //invalid UUID string passed
+ Log.w(TAG, "Cannot parse given UUID");
+ return false;
+ }
+
+ if (entry.type != GattEntryType.Service) {
+ Log.w(TAG, "Given UUID is not a service UUID: " + serviceUuid);
+ return false;
+ }
+
+ // current service already discovered or under investigation
+ if (entry.valueKnown || servicesToBeDiscovered.contains(serviceHandle)) {
+ Log.w(TAG, "Service already known or to be discovered");
+ return true;
+ }
+
+ servicesToBeDiscovered.add(serviceHandle);
+ scheduleServiceDetailDiscovery(serviceHandle, fullDiscovery);
+ performNextIOThreaded();
+ } catch (Exception ex) {
+ ex.printStackTrace();
+ return false;
+ }
+
+ return true;
+ }
+
+ /*
+ Returns the uuids of the services included by the given service. Otherwise returns null.
+ This function is called from Qt thread
+ */
+ synchronized String includedServices(String serviceUuid)
+ {
+ if (mBluetoothGatt == null)
+ return null;
+
+ UUID uuid;
+ try {
+ uuid = UUID.fromString(serviceUuid);
+ } catch (Exception ex) {
+ ex.printStackTrace();
+ return null;
+ }
+
+ //TODO Breaks in case of two services with same uuid
+ BluetoothGattService service = mBluetoothGatt.getService(uuid);
+ if (service == null)
+ return null;
+
+ final List<BluetoothGattService> includes = service.getIncludedServices();
+ if (includes.isEmpty())
+ return null;
+
+ StringBuilder builder = new StringBuilder();
+ for (BluetoothGattService includedService: includes) {
+ builder.append(includedService.getUuid().toString()).append(" "); //space is separator
+ }
+
+ return builder.toString();
+ }
+
+ private synchronized void finishCurrentServiceDiscovery(int handleDiscoveredService)
+ {
+ Log.w(TAG, "Finished current discovery for service handle " + handleDiscoveredService);
+ GattEntry discoveredService = entries.get(handleDiscoveredService);
+ discoveredService.valueKnown = true;
+ try {
+ servicesToBeDiscovered.removeFirst();
+ } catch (NoSuchElementException ex) {
+ Log.w(TAG, "Expected queued service but didn't find any");
+ }
+
+ leServiceDetailDiscoveryFinished(qtObject, discoveredService.service.getUuid().toString(),
+ handleDiscoveredService + 1, discoveredService.endHandle + 1);
+ }
+
+ // Executes under "this" client mutex. Returns true
+ // if no actual MTU exchange is initiated
+ private boolean executeMtuExchange()
+ {
+ if (mBluetoothGatt.requestMtu(MAX_MTU)) {
+ Log.w(TAG, "MTU change initiated");
+ return false;
+ } else {
+ Log.w(TAG, "MTU change request failed");
+ }
+
+ Log.w(TAG, "Assuming default MTU value of 23 bytes");
+ mSupportedMtu = DEFAULT_MTU;
+ return true;
+ }
+
+ private boolean executeRemoteRssiRead()
+ {
+ if (mBluetoothGatt.readRemoteRssi()) {
+ Log.d(TAG, "RSSI read initiated");
+ return false;
+ }
+ Log.w(TAG, "Initiating remote RSSI read failed");
+ leRemoteRssiRead(qtObject, 0, false);
+ return true;
+ }
+
+ /*
+ * Already executed in GattCallback so executed by the HandlerThread. No need to
+ * post it to the Hander.
+ */
+ private void scheduleMtuExchange() {
+ ReadWriteJob newJob = new ReadWriteJob();
+ newJob.jobType = IoJobType.Mtu;
+ newJob.entry = null;
+
+ readWriteQueue.add(newJob);
+
+ performNextIO();
+ }
+
+ /*
+ Internal Helper function for discoverServiceDetails()
+
+ Adds all Gatt entries for the given service to the readWriteQueue to be discovered.
+ This function only ever adds read requests to the queue.
+
+ */
+ private void scheduleServiceDetailDiscovery(int serviceHandle, boolean fullDiscovery)
+ {
+ GattEntry serviceEntry = entries.get(serviceHandle);
+ final int endHandle = serviceEntry.endHandle;
+
+ if (serviceHandle == endHandle) {
+ Log.w(TAG, "scheduleServiceDetailDiscovery: service is empty; nothing to discover");
+ finishCurrentServiceDiscovery(serviceHandle);
+ return;
+ }
+
+ // serviceHandle + 1 -> ignore service handle itself
+ for (int i = serviceHandle + 1; i <= endHandle; i++) {
+ GattEntry entry = entries.get(i);
+
+ if (entry.type == GattEntryType.Service) {
+ // should not really happen unless endHandle is wrong
+ Log.w(TAG, "scheduleServiceDetailDiscovery: wrong endHandle");
+ return;
+ }
+
+ ReadWriteJob newJob = new ReadWriteJob();
+ newJob.entry = entry;
+ if (fullDiscovery) {
+ newJob.jobType = IoJobType.Read;
+ } else {
+ newJob.jobType = IoJobType.SkippedRead;
+ }
+
+ final boolean result = readWriteQueue.add(newJob);
+ if (!result)
+ Log.w(TAG, "Cannot add service discovery job for " + serviceEntry.service.getUuid()
+ + " on item " + entry.type);
+ }
+ }
+
+ /*************************************************************/
+ /* Write Characteristics */
+ /* This function is called from Qt thread */
+ /*************************************************************/
+
+ synchronized boolean writeCharacteristic(int charHandle, byte[] newValue,
+ int writeMode)
+ {
+ if (mBluetoothGatt == null)
+ return false;
+
+ GattEntry entry;
+ try {
+ entry = entries.get(charHandle-1); //Qt always uses handles+1
+ } catch (IndexOutOfBoundsException ex) {
+ ex.printStackTrace();
+ return false;
+ }
+
+ ReadWriteJob newJob = new ReadWriteJob();
+ newJob.newValue = newValue;
+ newJob.entry = entry;
+ newJob.jobType = IoJobType.Write;
+
+ // writeMode must be in sync with QLowEnergyService::WriteMode
+ switch (writeMode) {
+ case 1: //WriteWithoutResponse
+ newJob.requestedWriteType = BluetoothGattCharacteristic.WRITE_TYPE_NO_RESPONSE;
+ break;
+ case 2: //WriteSigned
+ newJob.requestedWriteType = BluetoothGattCharacteristic.WRITE_TYPE_SIGNED;
+ break;
+ default:
+ newJob.requestedWriteType = BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT;
+ break;
+ }
+
+ boolean result;
+ result = readWriteQueue.add(newJob);
+
+ if (!result) {
+ Log.w(TAG, "Cannot add characteristic write request for " + charHandle + " to queue" );
+ return false;
+ }
+
+ performNextIOThreaded();
+ return true;
+ }
+
+ /*************************************************************/
+ /* Write Descriptors */
+ /* This function is called from Qt thread */
+ /*************************************************************/
+
+ synchronized boolean writeDescriptor(int descHandle, byte[] newValue)
+ {
+ if (mBluetoothGatt == null)
+ return false;
+
+ GattEntry entry;
+ try {
+ entry = entries.get(descHandle-1); //Qt always uses handles+1
+ } catch (IndexOutOfBoundsException ex) {
+ ex.printStackTrace();
+ return false;
+ }
+
+ ReadWriteJob newJob = new ReadWriteJob();
+ newJob.newValue = newValue;
+ newJob.entry = entry;
+ newJob.requestedWriteType = BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT;
+ newJob.jobType = IoJobType.Write;
+
+ boolean result;
+ result = readWriteQueue.add(newJob);
+
+ if (!result) {
+ Log.w(TAG, "Cannot add descriptor write request for " + descHandle + " to queue" );
+ return false;
+ }
+
+ performNextIOThreaded();
+ return true;
+ }
+
+ /*************************************************************/
+ /* Read Characteristics */
+ /* This function is called from Qt thread */
+ /*************************************************************/
+
+ synchronized boolean readCharacteristic(int charHandle)
+ {
+ if (mBluetoothGatt == null)
+ return false;
+
+ GattEntry entry;
+ try {
+ entry = entries.get(charHandle-1); //Qt always uses handles+1
+ } catch (IndexOutOfBoundsException ex) {
+ ex.printStackTrace();
+ return false;
+ }
+
+ ReadWriteJob newJob = new ReadWriteJob();
+ newJob.entry = entry;
+ newJob.jobType = IoJobType.Read;
+
+ boolean result;
+ result = readWriteQueue.add(newJob);
+
+ if (!result) {
+ Log.w(TAG, "Cannot add characteristic read request for " + charHandle + " to queue" );
+ return false;
+ }
+
+ performNextIOThreaded();
+ return true;
+ }
+
+ // This function is called from Qt thread
+ synchronized boolean readDescriptor(int descHandle)
+ {
+ if (mBluetoothGatt == null)
+ return false;
+
+ GattEntry entry;
+ try {
+ entry = entries.get(descHandle-1); //Qt always uses handles+1
+ } catch (IndexOutOfBoundsException ex) {
+ ex.printStackTrace();
+ return false;
+ }
+
+ ReadWriteJob newJob = new ReadWriteJob();
+ newJob.entry = entry;
+ newJob.jobType = IoJobType.Read;
+
+ boolean result;
+ result = readWriteQueue.add(newJob);
+
+ if (!result) {
+ Log.w(TAG, "Cannot add descriptor read request for " + descHandle + " to queue" );
+ return false;
+ }
+
+ performNextIOThreaded();
+ return true;
+ }
+
+ // Called by TimeoutRunnable if the current I/O job timed out.
+ // By the time we reach this point the handleForTimeout counter has already been reset
+ // and the regular responses will be blocked off.
+ private synchronized void interruptCurrentIO(int handle)
+ {
+ //unlock the queue for next item
+ pendingJob = null;
+
+ performNextIOThreaded();
+
+ if (handle == HANDLE_FOR_MTU_EXCHANGE || handle == HANDLE_FOR_RSSI_READ)
+ return;
+
+ try {
+ GattEntry entry = entries.get(handle);
+ if (entry == null)
+ return;
+ if (entry.valueKnown)
+ return;
+ entry.valueKnown = true;
+
+ GattEntry serviceEntry = entries.get(entry.associatedServiceHandle);
+ if (serviceEntry != null && serviceEntry.endHandle == handle)
+ finishCurrentServiceDiscovery(entry.associatedServiceHandle);
+ } catch (IndexOutOfBoundsException outOfBounds) {
+ Log.w(TAG, "interruptCurrentIO(): Unknown gatt entry, index: "
+ + handle + " size: " + entries.size());
+ }
+ }
+
+ /*
+ Wrapper around performNextIO() ensuring that performNextIO() is executed inside
+ the mHandler/mHandlerThread if it exists.
+ */
+ private void performNextIOThreaded()
+ {
+ if (mHandler != null) {
+ mHandler.post(new Runnable() {
+ @Override
+ public void run() {
+ performNextIO();
+ }
+ });
+ } else {
+ performNextIO();
+ }
+ }
+
+ /*
+ The queuing is required because two writeCharacteristic/writeDescriptor calls
+ cannot execute at the same time. The second write must happen after the
+ previous write has finished with on(Characteristic|Descriptor)Write().
+ */
+ private synchronized void performNextIO()
+ {
+ Log.d(TAG, "Perform next BTLE IO, job queue size: " + readWriteQueue.size()
+ + ", a job is pending: " + (pendingJob != null) + ", BluetoothGatt: "
+ + (mBluetoothGatt != null));
+
+ if (mBluetoothGatt == null)
+ return;
+
+ boolean skip = false;
+ final ReadWriteJob nextJob;
+ int handle = HANDLE_FOR_RESET;
+
+ if (readWriteQueue.isEmpty() || pendingJob != null)
+ return;
+
+ nextJob = readWriteQueue.remove();
+ // MTU requests and RSSI reads are special cases
+ if (nextJob.jobType == IoJobType.Mtu) {
+ handle = HANDLE_FOR_MTU_EXCHANGE;
+ } else if (nextJob.jobType == IoJobType.Rssi) {
+ handle = HANDLE_FOR_RSSI_READ;
+ } else {
+ switch (nextJob.entry.type) {
+ case Characteristic:
+ handle = handleForCharacteristic(nextJob.entry.characteristic);
+ break;
+ case Descriptor:
+ handle = handleForDescriptor(nextJob.entry.descriptor);
+ break;
+ case CharacteristicValue:
+ handle = nextJob.entry.endHandle;
+ default:
+ break;
+ }
+ }
+
+ // timeout handler and handleForTimeout atomic must be setup before
+ // executing the request. Sometimes the callback is quicker than executing the
+ // remainder of this function. Therefore enable the atomic early
+ timeoutHandler.removeCallbacksAndMessages(null); // remove any timeout handlers
+ handleForTimeout.set(modifiedReadWriteHandle(handle, nextJob.jobType));
+
+ switch (nextJob.jobType) {
+ case Read:
+ skip = executeReadJob(nextJob);
+ break;
+ case SkippedRead:
+ skip = true;
+ break;
+ case Write:
+ skip = executeWriteJob(nextJob);
+ break;
+ case Mtu:
+ skip = executeMtuExchange();
+ case Rssi:
+ skip = executeRemoteRssiRead();
+ break;
+ }
+
+ if (skip) {
+ handleForTimeout.set(HANDLE_FOR_RESET); // not a pending call -> release atomic
+ } else {
+ pendingJob = nextJob;
+ timeoutHandler.postDelayed(new TimeoutRunnable(
+ modifiedReadWriteHandle(handle, nextJob.jobType)), RUNNABLE_TIMEOUT);
+ }
+
+ if (nextJob.jobType != IoJobType.Mtu && nextJob.jobType != IoJobType.Rssi) {
+ Log.d(TAG, "Performing queued job, handle: " + handle + " " + nextJob.jobType + " (" +
+ (nextJob.requestedWriteType == BluetoothGattCharacteristic.WRITE_TYPE_NO_RESPONSE) +
+ ") ValueKnown: " + nextJob.entry.valueKnown + " Skipping: " + skip +
+ " " + nextJob.entry.type);
+ }
+
+ GattEntry entry = nextJob.entry;
+
+ if (skip) {
+ /*
+ BluetoothGatt.[read|write][Characteristic|Descriptor]() immediately
+ return in cases where meta data doesn't match the intended action
+ (e.g. trying to write to read-only char). When this happens
+ we have to report an error back to Qt. The error report is not required during
+ the initial service discovery though.
+ */
+ if (handle > HANDLE_FOR_RESET) {
+ // during service discovery we do not report error but emit characteristicRead()
+ // any other time a failure emits serviceError() signal
+
+ final boolean isServiceDiscovery = !entry.valueKnown;
+
+ if (isServiceDiscovery) {
+ entry.valueKnown = true;
+ switch (entry.type) {
+ case Characteristic:
+ Log.d(TAG,
+ nextJob.jobType == IoJobType.Read ? "Non-readable" : "Skipped reading of"
+ + " characteristic " + entry.characteristic.getUuid()
+ + " for service " + entry.characteristic.getService().getUuid());
+ leCharacteristicRead(qtObject, entry.characteristic.getService().getUuid().toString(),
+ handle + 1, entry.characteristic.getUuid().toString(),
+ entry.characteristic.getProperties(), null);
+ break;
+ case Descriptor:
+ Log.d(TAG,
+ nextJob.jobType == IoJobType.Read ? "Non-readable" : "Skipped reading of"
+ + " descriptor " + entry.descriptor.getUuid()
+ + " for service/char " + entry.descriptor.getCharacteristic().getService().getUuid()
+ + "/" + entry.descriptor.getCharacteristic().getUuid());
+ leDescriptorRead(qtObject,
+ entry.descriptor.getCharacteristic().getService().getUuid().toString(),
+ entry.descriptor.getCharacteristic().getUuid().toString(),
+ handle + 1, entry.descriptor.getUuid().toString(),
+ null);
+ break;
+ case CharacteristicValue:
+ // for more details see scheduleServiceDetailDiscovery(int, boolean)
+ break;
+ case Service:
+ Log.w(TAG, "Scheduling of Service Gatt entry for service discovery should never happen.");
+ break;
+ }
+
+ // last entry of current discovery run?
+ try {
+ GattEntry serviceEntry = entries.get(entry.associatedServiceHandle);
+ if (serviceEntry.endHandle == handle)
+ finishCurrentServiceDiscovery(entry.associatedServiceHandle);
+ } catch (IndexOutOfBoundsException outOfBounds) {
+ Log.w(TAG, "performNextIO(): Unknown service for entry, index: "
+ + entry.associatedServiceHandle + " size: " + entries.size());
+ }
+ } else {
+ int errorCode = 0;
+
+ // The error codes below must be in sync with QLowEnergyService::ServiceError
+ if (nextJob.jobType == IoJobType.Read) {
+ errorCode = (entry.type == GattEntryType.Characteristic) ?
+ 5 : 6; // CharacteristicReadError : DescriptorReadError
+ } else {
+ errorCode = (entry.type == GattEntryType.Characteristic) ?
+ 2 : 3; // CharacteristicWriteError : DescriptorWriteError
+ }
+
+ leServiceError(qtObject, handle + 1, errorCode);
+ }
+ }
+
+ performNextIO();
+ }
+ }
+
+ private BluetoothGattCharacteristic cloneChararacteristic(BluetoothGattCharacteristic other) {
+ try {
+ return (BluetoothGattCharacteristic) mCharacteristicConstructor.newInstance(other.getService(),
+ other.getUuid(), other.getInstanceId(), other.getProperties(), other.getPermissions());
+ } catch (Exception ex) {
+ Log.w(TAG, "Cloning characteristic failed!" + ex);
+ return null;
+ }
+ }
+
+ // Returns true if nextJob should be skipped.
+ private boolean executeWriteJob(ReadWriteJob nextJob)
+ {
+ boolean result;
+ switch (nextJob.entry.type) {
+ case Characteristic:
+ if (Build.VERSION.SDK_INT >= 33) {
+ int writeResult = mBluetoothGatt.writeCharacteristic(
+ nextJob.entry.characteristic, nextJob.newValue, nextJob.requestedWriteType);
+ return (writeResult != BluetoothStatusCodes.SUCCESS);
+ }
+ if (mHandler != null || mCharacteristicConstructor == null) {
+ if (nextJob.entry.characteristic.getWriteType() != nextJob.requestedWriteType) {
+ nextJob.entry.characteristic.setWriteType(nextJob.requestedWriteType);
+ }
+ result = nextJob.entry.characteristic.setValue(nextJob.newValue);
+ return !result || !mBluetoothGatt.writeCharacteristic(nextJob.entry.characteristic);
+ } else {
+ BluetoothGattCharacteristic orig = nextJob.entry.characteristic;
+ BluetoothGattCharacteristic tmp = cloneChararacteristic(orig);
+ if (tmp == null)
+ return true;
+ tmp.setWriteType(nextJob.requestedWriteType);
+ return !tmp.setValue(nextJob.newValue) || !mBluetoothGatt.writeCharacteristic(tmp);
+ }
+ case Descriptor:
+ if (nextJob.entry.descriptor.getUuid().compareTo(clientCharacteristicUuid) == 0) {
+ /*
+ For some reason, Android splits characteristic notifications
+ into two operations. BluetoothGatt.enableCharacteristicNotification
+ ensures the local Bluetooth stack forwards the notifications. In addition,
+ BluetoothGattDescriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE)
+ must be written to the peripheral.
+ */
+
+
+ /* There is no documentation on indication behavior. The assumption is
+ that when indication or notification are requested we call
+ BluetoothGatt.setCharacteristicNotification. Furthermore it is assumed
+ indications are send via onCharacteristicChanged too and Android itself
+ will do the confirmation required for an indication as per
+ Bluetooth spec Vol 3, Part G, 4.11 . If neither of the two bits are set
+ we disable the signals.
+ */
+ boolean enableNotifications = false;
+ int value = (nextJob.newValue[0] & 0xff);
+ // first or second bit must be set
+ if (((value & 0x1) == 1) || (((value >> 1) & 0x1) == 1)) {
+ enableNotifications = true;
+ }
+
+ result = mBluetoothGatt.setCharacteristicNotification(
+ nextJob.entry.descriptor.getCharacteristic(), enableNotifications);
+ if (!result) {
+ Log.w(TAG, "Cannot set characteristic notification");
+ //we continue anyway to ensure that we write the requested value
+ //to the device
+ }
+
+ Log.d(TAG, "Enable notifications: " + enableNotifications);
+ }
+
+ if (Build.VERSION.SDK_INT >= 33) {
+ int writeResult = mBluetoothGatt.writeDescriptor(
+ nextJob.entry.descriptor, nextJob.newValue);
+ return (writeResult != BluetoothStatusCodes.SUCCESS);
+ }
+ result = nextJob.entry.descriptor.setValue(nextJob.newValue);
+ if (!result || !mBluetoothGatt.writeDescriptor(nextJob.entry.descriptor))
+ return true;
+
+ break;
+ case Service:
+ case CharacteristicValue:
+ return true;
+ }
+ return false;
+ }
+
+ // Returns true if nextJob should be skipped.
+ private boolean executeReadJob(ReadWriteJob nextJob)
+ {
+ boolean result;
+ switch (nextJob.entry.type) {
+ case Characteristic:
+ try {
+ result = mBluetoothGatt.readCharacteristic(nextJob.entry.characteristic);
+ } catch (java.lang.SecurityException se) {
+ // QTBUG-59917 -> HID services cause problems since Android 5.1
+ se.printStackTrace();
+ result = false;
+ }
+ if (!result)
+ return true; // skip
+ break;
+ case Descriptor:
+ try {
+ result = mBluetoothGatt.readDescriptor(nextJob.entry.descriptor);
+ } catch (java.lang.SecurityException se) {
+ // QTBUG-59917 -> HID services cause problems since Android 5.1
+ se.printStackTrace();
+ result = false;
+ }
+ if (!result)
+ return true; // skip
+ break;
+ case Service:
+ return true;
+ case CharacteristicValue:
+ return true; //skip
+ }
+ return false;
+ }
+
+ /*
+ * Modifies and returns the given \a handle such that the job
+ * \a type is encoded into the returned handle. Hereby we take advantage of the fact that
+ * a Bluetooth Low Energy handle is only 16 bit. The handle will be the bottom two bytes
+ * and the job type will be in the top 2 bytes.
+ *
+ * top 2 bytes
+ * - 0x01 -> Read Job
+ * - 0x02 -> Write Job
+ *
+ * This is done in connection with handleForTimeout and assists in the process of
+ * detecting accidental interruption by the timeout handler.
+ * If two requests for the same handle are scheduled behind each other there is the
+ * theoretical chance that the first request comes back normally while the second request
+ * is interrupted by the timeout handler. This risk still exists but this function ensures that
+ * at least back to back requests of differing types cannot affect each other via the timeout
+ * handler.
+ */
+ private int modifiedReadWriteHandle(int handle, IoJobType type)
+ {
+ int modifiedHandle = handle;
+ // ensure we have 16bit handle only
+ if (handle > 0xFFFF)
+ Log.w(TAG, "Invalid handle");
+
+ modifiedHandle = (modifiedHandle & 0xFFFF);
+
+ switch (type) {
+ case Write:
+ modifiedHandle = (modifiedHandle | 0x00010000);
+ break;
+ case Read:
+ modifiedHandle = (modifiedHandle | 0x00020000);
+ break;
+ case Mtu:
+ modifiedHandle = HANDLE_FOR_MTU_EXCHANGE;
+ break;
+ case Rssi:
+ modifiedHandle = HANDLE_FOR_RSSI_READ;
+ break;
+ }
+
+ return modifiedHandle;
+ }
+
+ // This function is called from Qt thread
+ synchronized boolean requestConnectionUpdatePriority(double minimalInterval)
+ {
+ if (mBluetoothGatt == null)
+ return false;
+
+ int requestPriority = 0; // BluetoothGatt.CONNECTION_PRIORITY_BALANCED
+ if (minimalInterval < 30)
+ requestPriority = 1; // BluetoothGatt.CONNECTION_PRIORITY_HIGH
+ else if (minimalInterval > 100)
+ requestPriority = 2; //BluetoothGatt.CONNECTION_PRIORITY_LOW_POWER
+
+ try {
+ return mBluetoothGatt.requestConnectionPriority(requestPriority);
+ } catch (IllegalArgumentException ex) {
+ Log.w(TAG, "Connection update priority out of range: " + requestPriority);
+ return false;
+ }
+ }
+
+ native void leConnectionStateChange(long qtObject, int wasErrorTransition, int newState);
+ native void leMtuChanged(long qtObject, int mtu);
+ native void leRemoteRssiRead(long qtObject, int rssi, boolean success);
+ native void leServicesDiscovered(long qtObject, int errorCode, String uuidList);
+ native void leServiceDetailDiscoveryFinished(long qtObject, final String serviceUuid,
+ int startHandle, int endHandle);
+ native void leCharacteristicRead(long qtObject, String serviceUuid,
+ int charHandle, String charUuid,
+ int properties, byte[] data);
+ native void leDescriptorRead(long qtObject, String serviceUuid, String charUuid,
+ int descHandle, String descUuid, byte[] data);
+ native void leCharacteristicWritten(long qtObject, int charHandle, byte[] newData,
+ int errorCode);
+ native void leDescriptorWritten(long qtObject, int charHandle, byte[] newData,
+ int errorCode);
+ native void leCharacteristicChanged(long qtObject, int charHandle, byte[] newData);
+ native void leServiceError(long qtObject, int attributeHandle, int errorCode);
+}
+
diff --git a/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLEServer.java b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLEServer.java
new file mode 100644
index 00000000..ae557de6
--- /dev/null
+++ b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothLEServer.java
@@ -0,0 +1,989 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+package org.qtproject.qt.android.bluetooth;
+
+import android.bluetooth.BluetoothDevice;
+import android.bluetooth.BluetoothGattCharacteristic;
+import android.bluetooth.BluetoothGattDescriptor;
+import android.bluetooth.BluetoothGattService;
+import android.content.Context;
+import android.bluetooth.BluetoothAdapter;
+import android.bluetooth.BluetoothGatt;
+import android.bluetooth.BluetoothGattServer;
+import android.bluetooth.BluetoothGattServerCallback;
+import android.bluetooth.BluetoothManager;
+import android.bluetooth.BluetoothProfile;
+import android.bluetooth.le.AdvertiseCallback;
+import android.bluetooth.le.AdvertiseData;
+import android.bluetooth.le.AdvertiseData.Builder;
+import android.bluetooth.le.AdvertiseSettings;
+import android.bluetooth.le.BluetoothLeAdvertiser;
+import android.os.ParcelUuid;
+import android.os.Build;
+import android.util.Log;
+import android.util.Pair;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Iterator;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.ListIterator;
+import java.util.HashMap;
+import java.util.UUID;
+
+class QtBluetoothLEServer {
+ private static final String TAG = "QtBluetoothGattServer";
+
+ /* Pointer to the Qt object that "owns" the Java object */
+ @SuppressWarnings({"CanBeFinal", "WeakerAccess"})
+ long qtObject = 0;
+ @SuppressWarnings("WeakerAccess")
+
+ private Context qtContext = null;
+
+ // Bluetooth members
+ private BluetoothAdapter mBluetoothAdapter = null;
+ private BluetoothManager mBluetoothManager = null;
+ private BluetoothGattServer mGattServer = null;
+ private BluetoothLeAdvertiser mLeAdvertiser = null;
+
+ private ArrayList<BluetoothGattService> mPendingServiceAdditions =
+ new ArrayList<BluetoothGattService>();
+
+ private String mRemoteName = "";
+ // This function is called from Qt thread
+ synchronized String remoteName() {
+ return mRemoteName;
+ }
+
+ private String mRemoteAddress = "";
+ // This function is called from Qt thread
+ synchronized String remoteAddress() {
+ return mRemoteAddress;
+ }
+
+ // BT Core v5.3, 5.2.1, Vol 3, Part G
+ private static final int DEFAULT_LE_ATT_MTU = 23;
+ // Holds the currently supported/used MTU
+ private int mSupportedMtu = DEFAULT_LE_ATT_MTU;
+ // Implementation defined limit
+ private static final int MAX_PENDING_WRITE_COUNT = 1024;
+ // BT Core v5.3, 3.4.6.1, Vol 3, Part F
+ private static final int GATT_ERROR_PREPARE_QUEUE_FULL = 0x9;
+ // BT Core v5.3, 3.2.9, Vol 3, Part F
+ private static final int BTLE_MAX_ATTRIBUTE_VALUE_SIZE = 512;
+
+ // The class stores queued writes from the remote device. The writes are
+ // executed later when instructed to do so by onExecuteWrite() callback.
+ private class WriteEntry {
+ WriteEntry(BluetoothDevice remoteDevice, Object target) {
+ this.remoteDevice = remoteDevice;
+ this.target = target;
+ this.writes = new ArrayList<Pair<byte[], Integer>>();
+ }
+ // Returns true if this is a proper entry for given device + target
+ boolean match(BluetoothDevice device, Object target) {
+ return remoteDevice.equals(device) && target.equals(target);
+ }
+ final BluetoothDevice remoteDevice; // Device that issued the writes
+ final Object target; // Characteristic or Descriptor
+ final List<Pair<byte[], Integer>> writes; // Value, offset
+ }
+ private final List<WriteEntry> mPendingPreparedWrites = new ArrayList<>();
+
+ // Helper function to clear the pending writes of a remote device. If the provided device
+ // is null, all writes are cleared
+ private void clearPendingPreparedWrites(Object device) {
+ if (device == null)
+ mPendingPreparedWrites.clear();
+ ListIterator<WriteEntry> iterator = mPendingPreparedWrites.listIterator();
+ while (iterator.hasNext()) {
+ if (iterator.next().remoteDevice.equals(device))
+ iterator.remove();
+ }
+ }
+
+ // The function adds a 'prepared write' entry to target's queue. If the "target + device"
+ // didn't have a queue before (this being the first write), the queue is created.
+ // Targets must be either descriptors or characteristics.
+ private int addPendingPreparedWrite(BluetoothDevice device, Object target,
+ int offset, byte[] value) {
+ WriteEntry entry = null;
+ int currentWriteCount = 0;
+
+ // Try to find an existing matching entry. Also while looping, count
+ // the total number of writes so far in order to know if we exceed the
+ // write queue size we have set for ourselves
+ for (WriteEntry e : mPendingPreparedWrites) {
+ if (e.match(device, target))
+ entry = e;
+ currentWriteCount += e.writes.size();
+ }
+
+ // BT Core v5.3, 3.4.6.1, Vol 3, Part F
+ if (currentWriteCount > MAX_PENDING_WRITE_COUNT) {
+ Log.w(TAG, "Prepared write queue is full, returning an error.");
+ return GATT_ERROR_PREPARE_QUEUE_FULL;
+ }
+
+ // If no matching entry, create a new one. This means this is the first prepared
+ // write request to this "device + target" combination
+ if (entry == null)
+ mPendingPreparedWrites.add(entry = new WriteEntry(device, target));
+
+ // Append the newly received chunk of data along with its offset
+ entry.writes.add(new Pair<byte[], Integer>(value, offset));
+ return BluetoothGatt.GATT_SUCCESS;
+ }
+
+ /*
+ As per Bluetooth specification each connected device can have individual and persistent
+ Client characteristic configurations (see Bluetooth Spec 5.0 Vol 3 Part G 3.3.3.3)
+ This class manages the existing configurrations.
+ */
+ private class ClientCharacteristicManager {
+ private final HashMap<BluetoothGattCharacteristic, List<Entry>> notificationStore = new HashMap<BluetoothGattCharacteristic, List<Entry>>();
+
+ private class Entry {
+ BluetoothDevice device = null;
+ byte[] value = null;
+ boolean isConnected = false;
+ }
+
+ void insertOrUpdate(BluetoothGattCharacteristic characteristic,
+ BluetoothDevice device, byte[] newValue)
+ {
+ if (notificationStore.containsKey(characteristic)) {
+
+ List<Entry> entries = notificationStore.get(characteristic);
+ for (int i = 0; i < entries.size(); i++) {
+ if (entries.get(i).device.equals(device)) {
+ Entry e = entries.get(i);
+ e.value = newValue;
+ entries.set(i, e);
+ return;
+ }
+ }
+
+ // not match so far -> add device to list
+ Entry e = new Entry();
+ e.device = device;
+ e.value = newValue;
+ e.isConnected = true;
+ entries.add(e);
+ return;
+ }
+
+ // new characteristic
+ Entry e = new Entry();
+ e.device = device;
+ e.value = newValue;
+ e.isConnected = true;
+ List<Entry> list = new LinkedList<Entry>();
+ list.add(e);
+ notificationStore.put(characteristic, list);
+ }
+
+ /*
+ Marks client characteristic configuration entries as (in)active based the associated
+ devices general connectivity state.
+ This function avoids that existing configurations are not acted
+ upon when the associated device is not connected.
+ */
+ void markDeviceConnectivity(BluetoothDevice device, boolean isConnected)
+ {
+ final Iterator<BluetoothGattCharacteristic> keys = notificationStore.keySet().iterator();
+ while (keys.hasNext()) {
+ final BluetoothGattCharacteristic characteristic = keys.next();
+ final List<Entry> entries = notificationStore.get(characteristic);
+ if (entries == null)
+ continue;
+
+ ListIterator<Entry> charConfig = entries.listIterator();
+ while (charConfig.hasNext()) {
+ Entry e = charConfig.next();
+ if (e.device.equals(device))
+ e.isConnected = isConnected;
+ }
+ }
+ }
+
+ // Returns list of all BluetoothDevices which require notification or indication.
+ // No match returns an empty list.
+ List<BluetoothDevice> getToBeUpdatedDevices(BluetoothGattCharacteristic characteristic)
+ {
+ ArrayList<BluetoothDevice> result = new ArrayList<BluetoothDevice>();
+ if (!notificationStore.containsKey(characteristic))
+ return result;
+
+ final ListIterator<Entry> iter = notificationStore.get(characteristic).listIterator();
+ while (iter.hasNext())
+ result.add(iter.next().device);
+
+ return result;
+ }
+
+ // Returns null if no match; otherwise the configured actual client characteristic
+ // configuration value
+ byte[] valueFor(BluetoothGattCharacteristic characteristic, BluetoothDevice device)
+ {
+ if (!notificationStore.containsKey(characteristic))
+ return null;
+
+ List<Entry> entries = notificationStore.get(characteristic);
+ for (int i = 0; i < entries.size(); i++) {
+ final Entry entry = entries.get(i);
+ if (entry.device.equals(device) && entry.isConnected == true)
+ return entries.get(i).value;
+ }
+
+ return null;
+ }
+ }
+
+ private static final UUID CLIENT_CHARACTERISTIC_CONFIGURATION_UUID = UUID
+ .fromString("00002902-0000-1000-8000-00805f9b34fb");
+ ClientCharacteristicManager clientCharacteristicManager = new ClientCharacteristicManager();
+
+ QtBluetoothLEServer(Context context)
+ {
+ qtContext = context;
+ if (qtContext == null) {
+ Log.w(TAG, "Missing context object. Peripheral role disabled.");
+ return;
+ }
+
+ mBluetoothManager =
+ (BluetoothManager) qtContext.getSystemService(Context.BLUETOOTH_SERVICE);
+ if (mBluetoothManager == null) {
+ Log.w(TAG, "Bluetooth service not available. Peripheral role disabled.");
+ return;
+ }
+
+ mBluetoothAdapter = mBluetoothManager.getAdapter();
+ if (mBluetoothAdapter == null) {
+ Log.w(TAG, "Missing Bluetooth adapter. Peripheral role disabled.");
+ return;
+ }
+
+ Log.w(TAG, "Let's do BTLE Peripheral.");
+ }
+
+ // The following functions are synchronized callback handlers. The callbacks
+ // from Android are forwarded to these methods to synchronize member variable
+ // access with other threads (the Qt thread's JNI calls in particular).
+ //
+ // We use a single lock object (this server) for simplicity because:
+ // - Some variables may change and would thus not be suitable as locking objects but
+ // would require their own additional objects => overhead
+ // - Many accesses to shared variables are infrequent and the code paths are fast and
+ // deterministic meaning that long "wait times" on a lock should not happen
+ // - Typically several shared variables are accessed in a single code block.
+ // If each variable would be protected individually, the amount of (nested) locking
+ // would become quite unreasonable
+
+ synchronized void handleOnConnectionStateChange(BluetoothDevice device,
+ int status, int newState)
+ {
+ if (mGattServer == null) {
+ Log.w(TAG, "Ignoring connection state event, server is disconnected");
+ return;
+ }
+ // Multiple GATT devices may be connected. Check if we still have connected
+ // devices or not, and set the server state accordingly. Note: it seems we get
+ // notifications from all GATT clients, not just from the ones interested in
+ // the services provided by this BT LE Server. Furthermore the list of
+ // currently connected devices does not appear to be in any particular order.
+ List<BluetoothDevice> connectedDevices =
+ mBluetoothManager.getConnectedDevices(BluetoothProfile.GATT_SERVER);
+ Log.w(TAG, "Device " + device + " connection state: " + newState + ", status: "
+ + status + ", connected devices: " + connectedDevices);
+ // 0 == QLowEnergyController::UnconnectedState
+ // 2 == QLowEnergyController::ConnectedState
+ int qtControllerState = connectedDevices.size() > 0 ? 2 : 0;
+
+ switch (newState) {
+ case BluetoothProfile.STATE_CONNECTED:
+ clientCharacteristicManager.markDeviceConnectivity(device, true);
+ mRemoteName = device.getName();
+ mRemoteAddress = device.getAddress();
+ break;
+ case BluetoothProfile.STATE_DISCONNECTED:
+ clientCharacteristicManager.markDeviceConnectivity(device, false);
+ clearPendingPreparedWrites(device);
+ // Update the remoteAddress and remoteName if needed
+ if (device.getAddress().equals(mRemoteAddress)
+ && !connectedDevices.isEmpty()) {
+ mRemoteName = connectedDevices.get(0).getName();
+ mRemoteAddress = connectedDevices.get(0).getAddress();
+ }
+ break;
+ default:
+ // According to the API doc of this callback this should not happen
+ Log.w(TAG, "Unhandled connection state change: " + newState);
+ return;
+ }
+
+ // If last client disconnected, close down the server
+ if (qtControllerState == 0) { // QLowEnergyController::UnconnectedState
+ mPendingServiceAdditions.clear();
+ mGattServer.close();
+ mGattServer = null;
+ mRemoteName = "";
+ mRemoteAddress = "";
+ mSupportedMtu = DEFAULT_LE_ATT_MTU;
+ }
+
+ int qtErrorCode;
+ switch (status) {
+ case BluetoothGatt.GATT_SUCCESS:
+ qtErrorCode = 0;
+ break;
+ default:
+ Log.w(TAG, "Unhandled error code on peripheral connectionStateChanged: "
+ + status + " " + newState);
+ qtErrorCode = status;
+ break;
+ }
+
+ leConnectionStateChange(qtObject, qtErrorCode, qtControllerState);
+ }
+
+ synchronized void handleOnServiceAdded(int status, BluetoothGattService service)
+ {
+ if (mGattServer == null) {
+ Log.w(TAG, "Ignoring service addition event, server is disconnected");
+ return;
+ }
+
+ Log.d(TAG, "Service " + service.getUuid().toString() + " addition result: " + status);
+
+ // Remove the indicated service from the pending queue
+ ListIterator<BluetoothGattService> iterator = mPendingServiceAdditions.listIterator();
+ while (iterator.hasNext()) {
+ if (iterator.next().getUuid().equals(service.getUuid())) {
+ iterator.remove();
+ break;
+ }
+ }
+
+ // If there are more services in the queue, add the next whose add initiation succeeds
+ iterator = mPendingServiceAdditions.listIterator();
+ while (iterator.hasNext()) {
+ BluetoothGattService nextService = iterator.next();
+ if (mGattServer.addService(nextService)) {
+ break;
+ } else {
+ Log.w(TAG, "Adding service " + nextService.getUuid().toString() + " failed");
+ iterator.remove();
+ }
+ }
+ }
+
+ synchronized void handleOnCharacteristicReadRequest(BluetoothDevice device,
+ int requestId, int offset,
+ BluetoothGattCharacteristic characteristic)
+ {
+ if (mGattServer == null) {
+ Log.w(TAG, "Ignoring characteristic read, server is disconnected");
+ return;
+ }
+
+ byte[] characteristicData =
+ ((QtBluetoothGattCharacteristic)characteristic).getLocalValue();
+
+ try {
+ byte[] dataArray = Arrays.copyOfRange(characteristicData,
+ offset, characteristicData.length);
+ mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS,
+ offset, dataArray);
+ } catch (Exception ex) {
+ Log.w(TAG, "onCharacteristicReadRequest: " + requestId + " "
+ + offset + " " + characteristicData.length);
+ ex.printStackTrace();
+ mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_FAILURE,
+ offset, null);
+ }
+ }
+
+ synchronized void handleOnCharacteristicWriteRequest(BluetoothDevice device,
+ int requestId,
+ BluetoothGattCharacteristic characteristic,
+ boolean preparedWrite, boolean responseNeeded,
+ int offset, byte[] value)
+ {
+ if (mGattServer == null) {
+ Log.w(TAG, "Ignoring characteristic write, server is disconnected");
+ return;
+ }
+ Log.w(TAG, "onCharacteristicWriteRequest " + preparedWrite + " " + offset + " "
+ + value.length);
+ final int minValueLen = ((QtBluetoothGattCharacteristic)characteristic).minValueLength;
+ final int maxValueLen = ((QtBluetoothGattCharacteristic)characteristic).maxValueLength;
+
+ int resultStatus = BluetoothGatt.GATT_SUCCESS;
+ boolean sendNotificationOrIndication = false;
+
+ if (!preparedWrite) { // regular write
+ // User may have defined minimum and maximum size for the value, which
+ // we enforce here. If the user has not defined these limits, the default
+ // values 0..INT_MAX do not limit anything.
+ if (value.length < minValueLen || value.length > maxValueLen) {
+ // BT Core v 5.3, 4.9.3, Vol 3, Part G
+ Log.w(TAG, "onCharacteristicWriteRequest invalid char value length: "
+ + value.length + ", min: " + minValueLen + ", max: " + maxValueLen);
+ resultStatus = BluetoothGatt.GATT_INVALID_ATTRIBUTE_LENGTH;
+ } else if (offset == 0) {
+ ((QtBluetoothGattCharacteristic)characteristic).setLocalValue(value);
+ leServerCharacteristicChanged(qtObject, characteristic, value);
+ sendNotificationOrIndication = true;
+ } else {
+ // This should not really happen as per Bluetooth spec
+ Log.w(TAG, "onCharacteristicWriteRequest: !preparedWrite, offset "
+ + offset + ", Not supported");
+ resultStatus = BluetoothGatt.GATT_INVALID_OFFSET;
+ }
+ } else {
+ // BT Core v5.3, 3.4.6, Vol 3, Part F
+ // This is a prepared write which is used to write characteristics larger than
+ // MTU. We need to record all requests and execute them in one go once
+ // onExecuteWrite() is received. We use a queue to remember the pending
+ // requests.
+ resultStatus = addPendingPreparedWrite(device, characteristic, offset, value);
+ }
+
+ if (responseNeeded)
+ mGattServer.sendResponse(device, requestId, resultStatus, offset, value);
+ if (sendNotificationOrIndication)
+ sendNotificationsOrIndications(characteristic);
+ }
+
+ synchronized void handleOnDescriptorReadRequest(BluetoothDevice device, int requestId,
+ int offset, BluetoothGattDescriptor descriptor)
+ {
+ if (mGattServer == null) {
+ Log.w(TAG, "Ignoring descriptor read, server is disconnected");
+ return;
+ }
+
+ byte[] dataArray = ((QtBluetoothGattDescriptor)descriptor).getLocalValue();
+
+ try {
+ if (descriptor.getUuid().equals(CLIENT_CHARACTERISTIC_CONFIGURATION_UUID)) {
+ dataArray = clientCharacteristicManager.valueFor(
+ descriptor.getCharacteristic(), device);
+ if (dataArray == null)
+ dataArray = ((QtBluetoothGattDescriptor)descriptor).getLocalValue();
+ }
+
+ dataArray = Arrays.copyOfRange(dataArray, offset, dataArray.length);
+ mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS,
+ offset, dataArray);
+ } catch (Exception ex) {
+ Log.w(TAG, "onDescriptorReadRequest: " + requestId + " "
+ + offset + " " + dataArray.length);
+ ex.printStackTrace();
+ mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_FAILURE,
+ offset, null);
+ }
+ }
+
+ synchronized void handleOnDescriptorWriteRequest(BluetoothDevice device, int requestId,
+ BluetoothGattDescriptor descriptor, boolean preparedWrite,
+ boolean responseNeeded, int offset, byte[] value)
+ {
+ if (mGattServer == null) {
+ Log.w(TAG, "Ignoring descriptor write, server is disconnected");
+ return;
+ }
+
+ Log.w(TAG, "onDescriptorWriteRequest " + preparedWrite + " " + offset + " " + value.length);
+ int resultStatus = BluetoothGatt.GATT_SUCCESS;
+
+ if (!preparedWrite) { // regular write
+ if (offset == 0) {
+ if (descriptor.getUuid().equals(CLIENT_CHARACTERISTIC_CONFIGURATION_UUID)) {
+ // If both IND and NTF are requested, resort to NTF only. BT
+ // specification does not prohibit nor mention using both, but it is
+ // unlikely what the client intended. Stack behaviours vary;
+ // Apple client-side stack does not allow this, while Bluez client-side
+ // stack erroneously sends this even if the developer only asked for
+ // the other. The 0x03 value is a bitwise combination of 0x01 and 0x02
+ // as per specification: BT Core v5.3, 3.3.3.3, Vol 3, Part G
+ if (value[0] == 0x03) {
+ Log.w(TAG, "Warning: In CCC of characteristic: "
+ + descriptor.getCharacteristic().getUuid()
+ + " enabling both NTF & IND requested, enabling NTF only.");
+ value = BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE;
+ }
+ clientCharacteristicManager.insertOrUpdate(
+ descriptor.getCharacteristic(),
+ device, value);
+ }
+ ((QtBluetoothGattDescriptor)descriptor).setLocalValue(value);
+ leServerDescriptorWritten(qtObject, descriptor, value);
+ } else {
+ // This should not really happen as per Bluetooth spec
+ Log.w(TAG, "onDescriptorWriteRequest: !preparedWrite, offset "
+ + offset + ", Not supported");
+ resultStatus = BluetoothGatt.GATT_REQUEST_NOT_SUPPORTED;
+ }
+ } else {
+ // BT Core v5.3, 3.4.6, Vol 3, Part F
+ // This is a prepared write which is used to write descriptors larger than MTU.
+ // We need to record all requests and execute them in one go once
+ // onExecuteWrite() is received. We use a queue to remember the pending
+ // requests.
+ resultStatus = addPendingPreparedWrite(device, descriptor, offset, value);
+ }
+
+ if (responseNeeded)
+ mGattServer.sendResponse(device, requestId, resultStatus, offset, value);
+ }
+
+ synchronized void handleOnExecuteWrite(BluetoothDevice device,
+ int requestId, boolean execute)
+ {
+ if (mGattServer == null) {
+ Log.w(TAG, "Ignoring execute write, server is disconnected");
+ return;
+ }
+
+ Log.w(TAG, "onExecuteWrite " + device + " " + requestId + " " + execute);
+
+ if (execute) {
+ // BT Core v5.3, 3.4.6.3, Vol 3, Part F
+ // Execute all pending prepared writes for the provided 'device'
+ for (WriteEntry entry : mPendingPreparedWrites) {
+ if (!entry.remoteDevice.equals(device))
+ continue;
+
+ byte[] newValue = null;
+ // The target can be a descriptor or a characteristic
+ byte[] currentValue = (entry.target instanceof BluetoothGattCharacteristic)
+ ? ((QtBluetoothGattCharacteristic)entry.target).getLocalValue()
+ : ((QtBluetoothGattDescriptor)entry.target).getLocalValue();
+
+ // Iterate writes and apply them to the currentValue in received order
+ for (Pair<byte[], Integer> write : entry.writes) {
+ // write.first is data, write.second.intValue() is offset. Check
+ // that the offset is not beyond the length of the current value
+ if (write.second.intValue() > currentValue.length) {
+ clearPendingPreparedWrites(device);
+ // BT Core v5.3, 3.4.6.3, Vol 3, Part F
+ mGattServer.sendResponse(device, requestId,
+ BluetoothGatt.GATT_INVALID_OFFSET,
+ 0, null);
+ return;
+ }
+
+ // User may have defined value minimum and maximum sizes for
+ // characteristics, which we enforce here. If the user has not defined
+ // these limits, the default values 0..INT_MAX do not limit anything.
+ // The value size cannot decrease in prepared write (small write is a
+ // partial update) => no check for the minimum size limit here.
+ if (entry.target instanceof QtBluetoothGattCharacteristic &&
+ (write.second.intValue() + write.first.length >
+ ((QtBluetoothGattCharacteristic)entry.target).maxValueLength)) {
+ clearPendingPreparedWrites(device);
+ // BT Core v5.3, 3.4.6.3, Vol 3, Part F
+ mGattServer.sendResponse(device, requestId,
+ BluetoothGatt.GATT_INVALID_ATTRIBUTE_LENGTH,
+ 0, null);
+ return;
+ }
+
+ // Determine the size of the new value as we may be extending the
+ // current value size
+ newValue = new byte[Math.max(write.second.intValue() +
+ write.first.length, currentValue.length)];
+ // Copy the current value to the newValue. We can't use the currentValue
+ // directly because the length of value might increase by this write
+ System.arraycopy(currentValue, 0, newValue, 0, currentValue.length);
+ // Apply this iteration's write to the newValue
+ System.arraycopy(write.first, 0, newValue, write.second.intValue(),
+ write.first.length);
+ // Update the currentValue as there may be more writes to apply
+ currentValue = newValue;
+ }
+
+ // Update value and inform the Qt/C++ side on the update
+ if (entry.target instanceof BluetoothGattCharacteristic) {
+ ((QtBluetoothGattCharacteristic)entry.target).setLocalValue(newValue);
+ leServerCharacteristicChanged(
+ qtObject, (BluetoothGattCharacteristic)entry.target, newValue);
+ } else {
+ ((QtBluetoothGattDescriptor)entry.target).setLocalValue(newValue);
+ leServerDescriptorWritten(
+ qtObject, (BluetoothGattDescriptor)entry.target, newValue);
+ }
+ }
+ }
+ // Either we executed all writes or were asked to cancel.
+ // In any case clear writes and respond.
+ clearPendingPreparedWrites(device);
+ mGattServer.sendResponse(device, requestId, BluetoothGatt.GATT_SUCCESS, 0, null);
+ }
+
+ synchronized void handleOnMtuChanged(BluetoothDevice device, int mtu)
+ {
+ if (mSupportedMtu == mtu)
+ return;
+ mSupportedMtu = mtu;
+ leMtuChanged(qtObject, mSupportedMtu);
+ }
+
+ /*
+ * Call back handler for the Gatt Server.
+ */
+ private BluetoothGattServerCallback mGattServerListener = new BluetoothGattServerCallback()
+ {
+ @Override
+ public void onConnectionStateChange(BluetoothDevice device, int status, int newState) {
+ super.onConnectionStateChange(device, status, newState);
+ handleOnConnectionStateChange(device, status, newState);
+ }
+
+ @Override
+ public void onServiceAdded(int status, BluetoothGattService service) {
+ super.onServiceAdded(status, service);
+ handleOnServiceAdded(status, service);
+ }
+
+ @Override
+ public void onCharacteristicReadRequest(BluetoothDevice device, int requestId, int offset, BluetoothGattCharacteristic characteristic)
+ {
+ super.onCharacteristicReadRequest(device, requestId, offset, characteristic);
+ handleOnCharacteristicReadRequest(device, requestId, offset, characteristic);
+ }
+
+ @Override
+ public void onCharacteristicWriteRequest(BluetoothDevice device, int requestId, BluetoothGattCharacteristic characteristic,
+ boolean preparedWrite, boolean responseNeeded, int offset, byte[] value)
+ {
+ super.onCharacteristicWriteRequest(device, requestId, characteristic,
+ preparedWrite, responseNeeded, offset, value);
+ handleOnCharacteristicWriteRequest(device, requestId, characteristic,
+ preparedWrite, responseNeeded, offset, value);
+ }
+
+ @Override
+ public void onDescriptorReadRequest(BluetoothDevice device, int requestId, int offset, BluetoothGattDescriptor descriptor)
+ {
+ super.onDescriptorReadRequest(device, requestId, offset, descriptor);
+ handleOnDescriptorReadRequest(device, requestId, offset, descriptor);
+ }
+
+ @Override
+ public void onDescriptorWriteRequest(BluetoothDevice device, int requestId, BluetoothGattDescriptor descriptor,
+ boolean preparedWrite, boolean responseNeeded, int offset, byte[] value)
+ {
+ super.onDescriptorWriteRequest(device, requestId, descriptor, preparedWrite,
+ responseNeeded, offset, value);
+ handleOnDescriptorWriteRequest(device, requestId, descriptor, preparedWrite,
+ responseNeeded, offset, value);
+ }
+
+ @Override
+ public void onExecuteWrite(BluetoothDevice device, int requestId, boolean execute)
+ {
+ super.onExecuteWrite(device, requestId, execute);
+ handleOnExecuteWrite(device, requestId, execute);
+ }
+
+ @Override
+ public void onNotificationSent(BluetoothDevice device, int status) {
+ super.onNotificationSent(device, status);
+ Log.w(TAG, "onNotificationSent" + device + " " + status);
+ }
+
+ @Override
+ public void onMtuChanged(BluetoothDevice device, int mtu) {
+ handleOnMtuChanged(device, mtu);
+ }
+ };
+
+ // This function is called from Qt thread
+ synchronized int mtu() {
+ return mSupportedMtu;
+ }
+
+ // This function is called from Qt thread
+ synchronized boolean connectServer()
+ {
+ if (mGattServer != null)
+ return true;
+
+ BluetoothManager manager = (BluetoothManager) qtContext.getSystemService(Context.BLUETOOTH_SERVICE);
+ if (manager == null) {
+ Log.w(TAG, "Bluetooth service not available.");
+ return false;
+ }
+
+ mGattServer = manager.openGattServer(qtContext, mGattServerListener);
+
+ return (mGattServer != null);
+ }
+
+ // This function is called from Qt thread
+ synchronized void disconnectServer()
+ {
+ if (mGattServer == null)
+ return;
+
+ clearPendingPreparedWrites(null);
+ mPendingServiceAdditions.clear();
+ mGattServer.close();
+ mGattServer = null;
+
+ mRemoteName = mRemoteAddress = "";
+ leConnectionStateChange(qtObject, 0 /*NoError*/,
+ 0 /*QLowEnergyController::UnconnectedState*/);
+ }
+
+ // This function is called from Qt thread
+ boolean startAdvertising(AdvertiseData advertiseData,
+ AdvertiseData scanResponse,
+ AdvertiseSettings settings)
+ {
+ // Check that the bluetooth is on
+ if (mBluetoothAdapter == null || !mBluetoothAdapter.isEnabled()) {
+ Log.w(TAG, "StartAdvertising: Bluetooth not available or offline");
+ return false;
+ }
+
+ // According to Android doc this check should always precede the advertiser creation
+ if (mLeAdvertiser == null && mBluetoothAdapter.isMultipleAdvertisementSupported())
+ mLeAdvertiser = mBluetoothAdapter.getBluetoothLeAdvertiser();
+
+ if (mLeAdvertiser == null) {
+ Log.w(TAG, "StartAdvertising: LE advertisement not supported");
+ return false;
+ }
+
+ if (!connectServer()) {
+ Log.w(TAG, "Server::startAdvertising: Cannot open GATT server");
+ return false;
+ }
+
+ Log.w(TAG, "Starting to advertise.");
+ mLeAdvertiser.startAdvertising(settings, advertiseData, scanResponse, mAdvertiseListener);
+
+ return true;
+ }
+
+ // This function is called from Qt thread
+ void stopAdvertising()
+ {
+ if (mLeAdvertiser == null)
+ return;
+
+ mLeAdvertiser.stopAdvertising(mAdvertiseListener);
+ Log.w(TAG, "Advertisement stopped.");
+ }
+
+ // This function is called from Qt thread
+ synchronized void addService(BluetoothGattService service)
+ {
+ if (!connectServer()) {
+ Log.w(TAG, "Server::addService: Cannot open GATT server");
+ return;
+ }
+
+ // When we add a service, we must wait for onServiceAdded callback before adding the
+ // next one. If the pending service queue is empty it means that there are no ongoing
+ // service additions => add the service to the server. If there are services in the
+ // queue it means there is an initiated addition ongoing, and we only add to the queue.
+ if (mPendingServiceAdditions.isEmpty()) {
+ if (mGattServer.addService(service))
+ mPendingServiceAdditions.add(service);
+ else
+ Log.w(TAG, "Adding service " + service.getUuid().toString() + " failed.");
+ } else {
+ mPendingServiceAdditions.add(service);
+ }
+ }
+
+ /*
+ Check the client characteristics configuration for the given characteristic
+ and sends notifications or indications as per required.
+
+ This function is called from Qt and Java threads and calls must be protected
+ */
+ private void sendNotificationsOrIndications(BluetoothGattCharacteristic characteristic)
+ {
+ final ListIterator<BluetoothDevice> iter =
+ clientCharacteristicManager.getToBeUpdatedDevices(characteristic).listIterator();
+
+ // TODO This quick loop over multiple devices should be synced with onNotificationSent().
+ // The next notifyCharacteristicChanged() call must wait until onNotificationSent()
+ // was received. At this becomes an issue when the server accepts multiple remote
+ // devices at the same time.
+ while (iter.hasNext()) {
+ final BluetoothDevice device = iter.next();
+ final byte[] clientCharacteristicConfig =
+ clientCharacteristicManager.valueFor(characteristic, device);
+ if (clientCharacteristicConfig != null) {
+ if (Arrays.equals(clientCharacteristicConfig,
+ BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE)) {
+ if (Build.VERSION.SDK_INT >= 33) {
+ mGattServer.notifyCharacteristicChanged(device, characteristic, false,
+ ((QtBluetoothGattCharacteristic)characteristic).getLocalValue());
+ } else {
+ mGattServer.notifyCharacteristicChanged(device, characteristic, false);
+ }
+ } else if (Arrays.equals(clientCharacteristicConfig,
+ BluetoothGattDescriptor.ENABLE_INDICATION_VALUE)) {
+ if (Build.VERSION.SDK_INT >= 33) {
+ mGattServer.notifyCharacteristicChanged(device, characteristic, true,
+ ((QtBluetoothGattCharacteristic)characteristic).getLocalValue());
+ } else {
+ mGattServer.notifyCharacteristicChanged(device, characteristic, true);
+ }
+ }
+ }
+ }
+ }
+
+ /*
+ Updates the local database value for the given characteristic with \a charUuid and
+ \a newValue. If notifications for this task are enabled an appropriate notification will
+ be send to the remote client.
+
+ This function is called from the Qt thread.
+ */
+ boolean writeCharacteristic(BluetoothGattService service, UUID charUuid, byte[] newValue)
+ {
+ BluetoothGattCharacteristic foundChar = null;
+ List<BluetoothGattCharacteristic> charList = service.getCharacteristics();
+ for (BluetoothGattCharacteristic iter: charList) {
+ if (iter.getUuid().equals(charUuid) && foundChar == null) {
+ foundChar = iter;
+ // don't break here since we want to check next condition below on next iteration
+ } else if (iter.getUuid().equals(charUuid)) {
+ Log.w(TAG, "Found second char with same UUID. Wrong char may have been selected.");
+ break;
+ }
+ }
+
+ if (foundChar == null) {
+ Log.w(TAG, "writeCharacteristic: update for unknown characteristic failed");
+ return false;
+ }
+
+ // User may have set minimum and/or maximum characteristic value size. Enforce
+ // them here. If the user has not defined these limits, the default values 0..INT_MAX
+ // do not limit anything.
+ final int minValueLength = ((QtBluetoothGattCharacteristic)foundChar).minValueLength;
+ final int maxValueLength = ((QtBluetoothGattCharacteristic)foundChar).maxValueLength;
+ if (newValue.length < minValueLength || newValue.length > maxValueLength) {
+ Log.w(TAG, "writeCharacteristic: invalid value length: "
+ + newValue.length + ", min: " + minValueLength + ", max: " + maxValueLength);
+ return false;
+ }
+
+ synchronized (this) // a value update might be in progress
+ {
+ ((QtBluetoothGattCharacteristic)foundChar).setLocalValue(newValue);
+ // Value is updated even if server is not connected, but notifying is not possible
+ if (mGattServer != null)
+ sendNotificationsOrIndications(foundChar);
+ }
+
+ return true;
+ }
+
+ /*
+ Updates the local database value for the given \a descUuid to \a newValue.
+
+ This function is called from the Qt thread.
+ */
+ boolean writeDescriptor(BluetoothGattService service, UUID charUuid, UUID descUuid,
+ byte[] newValue)
+ {
+ BluetoothGattDescriptor foundDesc = null;
+ BluetoothGattCharacteristic foundChar = null;
+ final List<BluetoothGattCharacteristic> charList = service.getCharacteristics();
+ for (BluetoothGattCharacteristic iter: charList) {
+ if (!iter.getUuid().equals(charUuid))
+ continue;
+
+ if (foundChar == null) {
+ foundChar = iter;
+ } else {
+ Log.w(TAG, "Found second char with same UUID. Wrong char may have been selected.");
+ break;
+ }
+ }
+
+ if (foundChar != null)
+ foundDesc = foundChar.getDescriptor(descUuid);
+
+ if (foundChar == null || foundDesc == null) {
+ Log.w(TAG, "writeDescriptor: update for unknown char or desc failed (" + foundChar + ")");
+ return false;
+ }
+
+ // we even write CLIENT_CHARACTERISTIC_CONFIGURATION_UUID this way as we choose
+ // to interpret the server's call as a change of the default value.
+ synchronized (this) // a value update might be in progress
+ {
+ ((QtBluetoothGattDescriptor)foundDesc).setLocalValue(newValue);
+ }
+
+ return true;
+ }
+
+ /*
+ * Call back handler for Advertisement requests.
+ */
+ private AdvertiseCallback mAdvertiseListener = new AdvertiseCallback()
+ {
+ @Override
+ public void onStartSuccess(AdvertiseSettings settingsInEffect) {
+ super.onStartSuccess(settingsInEffect);
+ }
+
+ @Override
+ public void onStartFailure(int errorCode) {
+ Log.e(TAG, "Advertising failure: " + errorCode);
+ super.onStartFailure(errorCode);
+
+ // changing errorCode here implies changes to errorCode handling on Qt side
+ int qtErrorCode = 0;
+ switch (errorCode) {
+ case AdvertiseCallback.ADVERTISE_FAILED_ALREADY_STARTED:
+ return; // ignore -> noop
+ case AdvertiseCallback.ADVERTISE_FAILED_DATA_TOO_LARGE:
+ Log.e(TAG, "Please reduce size of advertising data.");
+ qtErrorCode = 1;
+ break;
+ case AdvertiseCallback.ADVERTISE_FAILED_FEATURE_UNSUPPORTED:
+ qtErrorCode = 2;
+ break;
+ default: // default maps to internal error
+ case AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR:
+ qtErrorCode = 3;
+ break;
+ case AdvertiseCallback.ADVERTISE_FAILED_TOO_MANY_ADVERTISERS:
+ qtErrorCode = 4;
+ break;
+ }
+
+ if (qtErrorCode > 0)
+ leServerAdvertisementError(qtObject, qtErrorCode);
+ }
+ };
+
+ native void leConnectionStateChange(long qtObject, int errorCode, int newState);
+ native void leMtuChanged(long qtObject, int mtu);
+ native void leServerAdvertisementError(long qtObject, int status);
+ native void leServerCharacteristicChanged(long qtObject,
+ BluetoothGattCharacteristic characteristic,
+ byte[] newValue);
+ native void leServerDescriptorWritten(long qtObject,
+ BluetoothGattDescriptor descriptor,
+ byte[] newValue);
+}
diff --git a/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothSocketServer.java b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothSocketServer.java
new file mode 100644
index 00000000..cc96eb31
--- /dev/null
+++ b/src/android/bluetooth/src/org/qtproject/qt/android/bluetooth/QtBluetoothSocketServer.java
@@ -0,0 +1,155 @@
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+package org.qtproject.qt.android.bluetooth;
+
+import android.bluetooth.BluetoothAdapter;
+import android.bluetooth.BluetoothServerSocket;
+import android.bluetooth.BluetoothManager;
+import android.bluetooth.BluetoothSocket;
+import android.content.Context;
+import android.util.Log;
+import java.io.IOException;
+import java.util.UUID;
+
+@SuppressWarnings("WeakerAccess")
+class QtBluetoothSocketServer extends Thread
+{
+
+ /* Pointer to the Qt object that "owns" the Java object */
+ @SuppressWarnings({"WeakerAccess", "CanBeFinal"})
+ long qtObject = 0;
+ @SuppressWarnings({"WeakerAccess", "CanBeFinal"})
+ boolean logEnabled = false;
+ @SuppressWarnings("WeakerAccess")
+ static Context qtContext = null;
+
+ private static final String TAG = "QtBluetooth";
+ private boolean m_isSecure = false;
+ private UUID m_uuid;
+ private String m_serviceName;
+ private BluetoothServerSocket m_serverSocket = null;
+
+ //error codes
+ private static final int QT_NO_BLUETOOTH_SUPPORTED = 0;
+ private static final int QT_LISTEN_FAILED = 1;
+ private static final int QT_ACCEPT_FAILED = 2;
+
+ QtBluetoothSocketServer(Context context)
+ {
+ qtContext = context;
+ setName("QtSocketServerThread");
+ }
+
+ void setServiceDetails(String uuid, String serviceName, boolean isSecure)
+ {
+ m_uuid = UUID.fromString(uuid);
+ m_serviceName = serviceName;
+ m_isSecure = isSecure;
+
+ }
+
+ @Override
+ public void run()
+ {
+ BluetoothManager manager =
+ (BluetoothManager)qtContext.getSystemService(Context.BLUETOOTH_SERVICE);
+
+ if (manager == null) {
+ errorOccurred(qtObject, QT_NO_BLUETOOTH_SUPPORTED);
+ return;
+ }
+
+ BluetoothAdapter adapter = manager.getAdapter();
+ if (adapter == null) {
+ errorOccurred(qtObject, QT_NO_BLUETOOTH_SUPPORTED);
+ return;
+ }
+
+ try {
+ if (m_isSecure) {
+ m_serverSocket = adapter.listenUsingRfcommWithServiceRecord(m_serviceName, m_uuid);
+ if (logEnabled)
+ Log.d(TAG, "Using secure socket listener");
+ } else {
+ m_serverSocket = adapter.listenUsingInsecureRfcommWithServiceRecord(m_serviceName, m_uuid);
+ if (logEnabled)
+ Log.d(TAG, "Using insecure socket listener");
+ }
+ } catch (IOException ex) {
+ if (logEnabled)
+ Log.d(TAG, "Server socket listen() failed:" + ex.toString());
+ ex.printStackTrace();
+ errorOccurred(qtObject, QT_LISTEN_FAILED);
+ return;
+ }
+
+ if (isInterrupted()) // close() may have been called
+ return;
+
+ BluetoothSocket s;
+ if (m_serverSocket != null) {
+ try {
+ while (!isInterrupted()) {
+ //this blocks until we see incoming connection
+ //or close() is called
+ if (logEnabled)
+ Log.d(TAG, "Waiting for new incoming socket");
+ s = m_serverSocket.accept();
+
+ if (logEnabled)
+ Log.d(TAG, "New socket accepted");
+ newSocket(qtObject, s);
+ }
+ } catch (IOException ex) {
+ if (logEnabled)
+ Log.d(TAG, "Server socket accept() failed:" + ex.toString());
+ ex.printStackTrace();
+ errorOccurred(qtObject, QT_ACCEPT_FAILED);
+ }
+ }
+
+ Log.d(TAG, "Leaving server socket thread.");
+ }
+
+ // This function closes the socket server
+ //
+ // A note on threading behavior
+ // 1. This function is called from Qt thread which is different from the Java thread (run())
+ // 2. The caller of this function expects the Java thread to be finished upon return
+ //
+ // First we mark the Java thread as interrupted, then call close() on the
+ // listening socket if it had been created, and lastly wait for the thread to finish.
+ // The close() method of the socket is intended to be used to abort the accept() from
+ // another thread, as per the accept() documentation.
+ //
+ // If the Java thread was in the middle of creating a socket with the non-blocking
+ // listen* call, the run() will notice after the returning from the listen* that it has
+ // been interrupted and returns early from the run().
+ //
+ // If the Java thread was in the middle of the blocking accept() call, it will get
+ // interrupated by the close() call on the socket. After returning the run() will
+ // notice it has been interrupted and return from the run()
+ void close()
+ {
+ if (!isAlive())
+ return;
+
+ try {
+ //ensure closing of thread if we are not currently blocking on accept()
+ interrupt();
+
+ //interrupts accept() call above
+ if (m_serverSocket != null)
+ m_serverSocket.close();
+ // Wait for the thread to finish
+ join(20); // Maximum wait in ms, typically takes < 1ms
+ } catch (Exception ex) {
+ Log.d(TAG, "Closing server socket close() failed:" + ex.toString());
+ ex.printStackTrace();
+ }
+ }
+
+ static native void errorOccurred(long qtObject, int errorCode);
+ static native void newSocket(long qtObject, BluetoothSocket socket);
+}