This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/libnymea-core/hardware/bluetoothlowenergy/bluetoothlowenergydeviceimplementation.cpp
2025-11-17 16:42:41 +01:00

161 lines
5.3 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 nymea.
*
* nymea 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.
*
* nymea 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 nymea. If not, see <https://www.gnu.org/licenses/>.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "bluetoothlowenergydeviceimplementation.h"
#include "loggingcategories.h"
namespace nymeaserver {
BluetoothLowEnergyDeviceImplementation::BluetoothLowEnergyDeviceImplementation(const QBluetoothDeviceInfo &deviceInfo, const QLowEnergyController::RemoteAddressType &addressType, QObject *parent) :
BluetoothLowEnergyDevice(parent),
m_deviceInfo(deviceInfo)
{
#if QT_VERSION >= QT_VERSION_CHECK(6,0,0)
m_controller = QLowEnergyController::createCentral(deviceInfo, this);
#else
m_controller = new QLowEnergyController(address(), this);
#endif
m_controller->setRemoteAddressType(addressType);
connect(m_controller, &QLowEnergyController::connected, this, &BluetoothLowEnergyDeviceImplementation::onConnected);
connect(m_controller, &QLowEnergyController::disconnected, this, &BluetoothLowEnergyDeviceImplementation::onDisconnected);
connect(m_controller, &QLowEnergyController::discoveryFinished, this, &BluetoothLowEnergyDeviceImplementation::onServiceDiscoveryFinished);
connect(m_controller, &QLowEnergyController::stateChanged, this, &BluetoothLowEnergyDeviceImplementation::onStateChanged);
#if QT_VERSION >= QT_VERSION_CHECK(6,0,0)
connect(m_controller, &QLowEnergyController::errorOccurred, this, &BluetoothLowEnergyDeviceImplementation::onDeviceError);
#else
connect(m_controller, SIGNAL(error(QLowEnergyController::Error)), this, SLOT(onDeviceError(QLowEnergyController::Error)));
#endif
}
QString BluetoothLowEnergyDeviceImplementation::name() const
{
return m_deviceInfo.name();
}
QBluetoothAddress BluetoothLowEnergyDeviceImplementation::address() const
{
return m_deviceInfo.address();
}
QLowEnergyController *BluetoothLowEnergyDeviceImplementation::controller() const
{
return m_controller;
}
void BluetoothLowEnergyDeviceImplementation::setConnected(bool connected)
{
if (m_connected != connected) {
m_connected = connected;
qCDebug(dcBluetooth()) << "Device" << name() << address().toString() << (connected ? "connected" : "disconnected");
emit connectedChanged(m_connected);
}
}
void BluetoothLowEnergyDeviceImplementation::onConnected()
{
setConnected(true);
if (m_controller->state() != QLowEnergyController::DiscoveredState) {
qCDebug(dcBluetooth()) << "Discover services on" << name() << address().toString();
m_controller->discoverServices();
}
}
void BluetoothLowEnergyDeviceImplementation::onDisconnected()
{
qCWarning(dcBluetooth()) << "Device disconnected" << name() << address().toString();
setConnected(false);
}
void BluetoothLowEnergyDeviceImplementation::onServiceDiscoveryFinished()
{
qCDebug(dcBluetooth()) << "Service discovery finished for" << name() << address().toString();
foreach (const QBluetoothUuid &serviceUuid, m_controller->services()) {
qCDebug(dcBluetooth()) << "--> Service" << serviceUuid.toString();
}
emit servicesDiscoveryFinished();
}
void BluetoothLowEnergyDeviceImplementation::onStateChanged(const QLowEnergyController::ControllerState &state)
{
qCDebug(dcBluetooth()) << "State changed for" << name() << address().toString() << state;
emit stateChanged(state);
}
void BluetoothLowEnergyDeviceImplementation::connectDevice()
{
if (!m_enabled)
return;
// Only connect if not connected
if (m_controller->state() != QLowEnergyController::UnconnectedState)
return;
m_controller->connectToDevice();
}
void BluetoothLowEnergyDeviceImplementation::disconnectDevice()
{
m_controller->disconnectFromDevice();
}
bool BluetoothLowEnergyDeviceImplementation::autoConnecting() const
{
return m_autoConnecting;
}
void BluetoothLowEnergyDeviceImplementation::setAutoConnecting(const bool &autoConnecting)
{
if (m_autoConnecting != autoConnecting) {
m_autoConnecting = autoConnecting;
emit autoConnectingChanged(m_autoConnecting);
}
}
bool BluetoothLowEnergyDeviceImplementation::connected() const
{
return m_connected;
}
bool BluetoothLowEnergyDeviceImplementation::discovered() const
{
return m_discovered;
}
QList<QBluetoothUuid> BluetoothLowEnergyDeviceImplementation::serviceUuids() const
{
return m_controller->services();
}
void BluetoothLowEnergyDeviceImplementation::onDeviceError(const QLowEnergyController::Error &error)
{
qCWarning(dcBluetooth()) << "Device error:" << name() << address().toString() << ": " << error << m_controller->errorString();
emit errorOccurred(error);
}
}