279 lines
9.5 KiB
C++
279 lines
9.5 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of libnymea-app.
|
|
*
|
|
* libnymea-app is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation, either version 3
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* libnymea-app is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with libnymea-app. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#include "bluetoothdiscovery.h"
|
|
|
|
#include <QDebug>
|
|
#include <QTimer>
|
|
#include <QBluetoothLocalDevice>
|
|
#include <QBluetoothUuid>
|
|
#include <QBluetoothPermission>
|
|
#include <QCoreApplication>
|
|
#include <QLoggingCategory>
|
|
|
|
Q_DECLARE_LOGGING_CATEGORY(dcBluetoothDiscovery);
|
|
|
|
BluetoothDiscovery::BluetoothDiscovery(QObject *parent) :
|
|
QObject(parent),
|
|
m_deviceInfos(new BluetoothDeviceInfos(this))
|
|
{
|
|
|
|
#ifndef Q_OS_IOS
|
|
// Check if bluetooth is available
|
|
QBluetoothLocalDevice localDevice;
|
|
if (!localDevice.isValid()) {
|
|
qCWarning(dcBluetoothDiscovery) << "No bluetooth device available.";
|
|
m_bluetoothAvailable = false;
|
|
return;
|
|
}
|
|
|
|
if (localDevice.allDevices().isEmpty()) {
|
|
qCWarning(dcBluetoothDiscovery) << "No bluetooth device available currently.";
|
|
m_bluetoothAvailable = false;
|
|
return;
|
|
}
|
|
|
|
m_bluetoothAvailable = true;
|
|
|
|
// FIXME: check the device with the most capabilities and check if low energy is available
|
|
QBluetoothHostInfo adapterHostInfo = localDevice.allDevices().first();
|
|
|
|
m_localDevice = new QBluetoothLocalDevice(adapterHostInfo.address(), this);
|
|
connect(m_localDevice, &QBluetoothLocalDevice::hostModeStateChanged, this, &BluetoothDiscovery::onBluetoothHostModeChanged);
|
|
onBluetoothHostModeChanged(m_localDevice->hostMode());
|
|
|
|
#else
|
|
// Note: on iOS there is no QBluetoothLocalDevice available, therefore we have to assume there is one and
|
|
// start the discovery agent with the default constructor.
|
|
m_bluetoothAvailable = true;
|
|
|
|
// Always start with assuming BT is enabled
|
|
m_bluetoothEnabled = true;
|
|
|
|
qCDebug(dcBluetoothDiscovery) << "Initializing Bluetooth";
|
|
onBluetoothHostModeChanged(QBluetoothLocalDevice::HostConnectable);
|
|
#endif
|
|
|
|
|
|
}
|
|
|
|
bool BluetoothDiscovery::bluetoothAvailable() const
|
|
{
|
|
return m_bluetoothAvailable;
|
|
}
|
|
|
|
bool BluetoothDiscovery::bluetoothEnabled() const
|
|
{
|
|
#ifdef Q_OS_IOS
|
|
return m_bluetoothAvailable && m_bluetoothEnabled;
|
|
#endif
|
|
|
|
qCDebug(dcBluetoothDiscovery) << "bluetoothEnabled(): m_bluetoothAvailable:" << m_bluetoothAvailable;
|
|
return m_bluetoothAvailable && m_localDevice->hostMode() != QBluetoothLocalDevice::HostPoweredOff;
|
|
}
|
|
|
|
void BluetoothDiscovery::setBluetoothEnabled(bool bluetoothEnabled)
|
|
{
|
|
if (!m_bluetoothAvailable)
|
|
return;
|
|
|
|
if (bluetoothEnabled) {
|
|
if (m_localDevice->hostMode() == QBluetoothLocalDevice::HostPoweredOff) {
|
|
m_localDevice->powerOn();
|
|
}
|
|
} else {
|
|
if (m_localDevice->hostMode() != QBluetoothLocalDevice::HostPoweredOff) {
|
|
m_localDevice->setHostMode(QBluetoothLocalDevice::HostPoweredOff);
|
|
}
|
|
}
|
|
}
|
|
|
|
bool BluetoothDiscovery::discoveryEnabled() const
|
|
{
|
|
return m_discoveryEnabled;
|
|
}
|
|
|
|
bool BluetoothDiscovery::discovering() const
|
|
{
|
|
return m_discoveryAgent && m_discoveryAgent->isActive();
|
|
}
|
|
|
|
void BluetoothDiscovery::setDiscoveryEnabled(bool discoveryEnabled)
|
|
{
|
|
if (m_discoveryEnabled != discoveryEnabled) {
|
|
m_discoveryEnabled = discoveryEnabled;
|
|
emit discoveryEnabledChanged(m_discoveryEnabled);
|
|
}
|
|
|
|
if (m_discoveryEnabled) {
|
|
start();
|
|
} else {
|
|
stop();
|
|
}
|
|
}
|
|
|
|
BluetoothDeviceInfos *BluetoothDiscovery::deviceInfos()
|
|
{
|
|
return m_deviceInfos;
|
|
}
|
|
|
|
void BluetoothDiscovery::onBluetoothHostModeChanged(const QBluetoothLocalDevice::HostMode &hostMode)
|
|
{
|
|
qCDebug(dcBluetoothDiscovery) << "Host mode changed" << hostMode;
|
|
switch (hostMode) {
|
|
case QBluetoothLocalDevice::HostPoweredOff:
|
|
if (m_discoveryAgent) {
|
|
stop();
|
|
m_discoveryAgent->deleteLater();
|
|
m_discoveryAgent = nullptr;
|
|
}
|
|
m_deviceInfos->clearModel();
|
|
#ifdef Q_OS_IOS
|
|
m_bluetoothEnabled = false;
|
|
#endif
|
|
emit bluetoothEnabledChanged(false);
|
|
break;
|
|
|
|
default:
|
|
// Note: discovery works in all other modes
|
|
#ifdef Q_OS_IOS
|
|
m_bluetoothEnabled = true;
|
|
#endif
|
|
emit bluetoothEnabledChanged(hostMode != QBluetoothLocalDevice::HostPoweredOff);
|
|
|
|
if (!m_discoveryAgent) {
|
|
#ifdef Q_OS_ANDROID
|
|
m_discoveryAgent = new QBluetoothDeviceDiscoveryAgent(m_localDevice->address(), this);
|
|
#else
|
|
m_discoveryAgent = new QBluetoothDeviceDiscoveryAgent(this);
|
|
#endif
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
|
|
connect(m_discoveryAgent, &QBluetoothDeviceDiscoveryAgent::deviceUpdated, this, &BluetoothDiscovery::deviceDiscovered);
|
|
#endif
|
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(6, 2, 0))
|
|
connect(m_discoveryAgent, &QBluetoothDeviceDiscoveryAgent::errorOccurred, this, &BluetoothDiscovery::onError);
|
|
#else
|
|
connect(m_discoveryAgent, SIGNAL(error(QBluetoothDeviceDiscoveryAgent::Error)), this, SLOT(onError(QBluetoothDeviceDiscoveryAgent::Error)));
|
|
#endif
|
|
connect(m_discoveryAgent, &QBluetoothDeviceDiscoveryAgent::deviceDiscovered, this, &BluetoothDiscovery::deviceDiscovered);
|
|
connect(m_discoveryAgent, &QBluetoothDeviceDiscoveryAgent::finished, this, &BluetoothDiscovery::discoveryFinished);
|
|
connect(m_discoveryAgent, &QBluetoothDeviceDiscoveryAgent::canceled, this, &BluetoothDiscovery::discoveryCancelled);
|
|
}
|
|
if (m_discoveryEnabled && !m_discoveryAgent->isActive()) {
|
|
start();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
void BluetoothDiscovery::deviceDiscovered(const QBluetoothDeviceInfo &deviceInfo)
|
|
{
|
|
qCDebug(dcBluetoothDiscovery()) << "Device discovered:" << deviceInfo.name() << deviceInfo.address().toString() << deviceInfo.deviceUuid() << deviceInfo.serviceUuids();
|
|
foreach (BluetoothDeviceInfo *di, m_deviceInfos->deviceInfos()) {
|
|
// Some platforms only provide device UUID (e.g. Apple) and MAC address is 00:00:00:00:00
|
|
// Others provide only a MAC address and the UUID is null.
|
|
// If we have a UUID, use that, otherwise use the MAC for comparison
|
|
if (!deviceInfo.deviceUuid().isNull()) {
|
|
if (di->bluetoothDeviceInfo().deviceUuid() == deviceInfo.deviceUuid()) {
|
|
qCDebug(dcBluetoothDiscovery()) << "Updating discovery result (UUID)";
|
|
di->setBluetoothDeviceInfo(deviceInfo);
|
|
return;
|
|
}
|
|
} else {
|
|
if (di->bluetoothDeviceInfo().address() == deviceInfo.address()) {
|
|
qCDebug(dcBluetoothDiscovery()) << "Updating discovery result (MAC)";
|
|
di->setBluetoothDeviceInfo(deviceInfo);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
BluetoothDeviceInfo *deviceInformation = new BluetoothDeviceInfo(deviceInfo);
|
|
qCDebug(dcBluetoothDiscovery) << "[+]" << deviceInformation->name() << "(" << deviceInformation->address() << ")" << (deviceInformation->isLowEnergy() ? "LE" : "") << deviceInfo.serviceUuids();
|
|
m_deviceInfos->addBluetoothDeviceInfo(deviceInformation);
|
|
}
|
|
|
|
void BluetoothDiscovery::discoveryFinished()
|
|
{
|
|
qCDebug(dcBluetoothDiscovery) << "Discovery finished" << m_discoveryEnabled << this;
|
|
if (m_discoveryEnabled) {
|
|
qCDebug(dcBluetoothDiscovery) << "Restarting discovery";
|
|
m_discoveryAgent->start();
|
|
}
|
|
}
|
|
|
|
void BluetoothDiscovery::discoveryCancelled()
|
|
{
|
|
qCDebug(dcBluetoothDiscovery) << "Discovery cancelled";
|
|
}
|
|
|
|
void BluetoothDiscovery::onError(const QBluetoothDeviceDiscoveryAgent::Error &error)
|
|
{
|
|
qCWarning(dcBluetoothDiscovery) << "Discovery error:" << error << m_discoveryAgent->errorString();
|
|
#ifdef Q_OS_IOS
|
|
if (error == QBluetoothDeviceDiscoveryAgent::PoweredOffError) {
|
|
m_bluetoothEnabled = false;
|
|
emit bluetoothEnabledChanged(false);
|
|
onBluetoothHostModeChanged(QBluetoothLocalDevice::HostPoweredOff);
|
|
QTimer::singleShot(5000, this, [this] () {
|
|
m_bluetoothEnabled = true;
|
|
onBluetoothHostModeChanged(QBluetoothLocalDevice::HostConnectable);
|
|
});
|
|
}
|
|
#endif
|
|
emit discoveringChanged();
|
|
}
|
|
|
|
void BluetoothDiscovery::start()
|
|
{
|
|
if (!m_discoveryAgent || !bluetoothEnabled())
|
|
return;
|
|
|
|
if (m_discoveryAgent->isActive())
|
|
m_discoveryAgent->stop();
|
|
|
|
foreach (const QBluetoothDeviceInfo &info, m_discoveryAgent->discoveredDevices()) {
|
|
qCDebug(dcBluetoothDiscovery()) << "Already discovered device:" << info.name();
|
|
deviceDiscovered(info);
|
|
}
|
|
|
|
qCDebug(dcBluetoothDiscovery) << "Starting discovery.";
|
|
|
|
// Since we are only interested in low energy results, this speed up the result significantly
|
|
m_discoveryAgent->start(QBluetoothDeviceDiscoveryAgent::LowEnergyMethod);
|
|
emit discoveringChanged();
|
|
}
|
|
|
|
void BluetoothDiscovery::stop()
|
|
{
|
|
if (!m_discoveryAgent) {
|
|
return;
|
|
}
|
|
|
|
qCDebug(dcBluetoothDiscovery) << "Stopping discovering.";
|
|
m_discoveryAgent->stop();
|
|
emit discoveringChanged();
|
|
}
|