161 lines
5.0 KiB
C++
161 lines
5.0 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright 2013 - 2020, nymea GmbH
|
|
* Contact: contact@nymea.io
|
|
*
|
|
* This file is part of nymea.
|
|
* This project including source code and documentation is protected by
|
|
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
* reproduction, publication, editing and translation, are reserved. The use of
|
|
* this project is subject to the terms of a license agreement to be concluded
|
|
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
* under https://nymea.io/license
|
|
*
|
|
* GNU Lesser General Public License Usage
|
|
* Alternatively, this project may be redistributed and/or modified under the
|
|
* terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation; version 3. This project 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 this project. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* For any further details and any questions please contact us under
|
|
* contact@nymea.io or see our FAQ/Licensing Information on
|
|
* https://nymea.io/license/faq
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef BLUETOOTHADAPTER_H
|
|
#define BLUETOOTHADAPTER_H
|
|
|
|
#include <QObject>
|
|
#include <QDebug>
|
|
#include <QDBusInterface>
|
|
#include <QDBusConnection>
|
|
#include <QDBusObjectPath>
|
|
|
|
#include "bluetoothdevice.h"
|
|
|
|
// Note: DBus documentation https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/adapter-api.txt
|
|
|
|
class BluetoothManager;
|
|
|
|
class BluetoothAdapter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
friend class BluetoothManager;
|
|
|
|
public:
|
|
// Properties
|
|
QString name() const;
|
|
|
|
QString alias() const;
|
|
bool setAlias(const QString &alias);
|
|
|
|
QString address() const;
|
|
QString modalias() const;
|
|
bool discovering() const;
|
|
|
|
bool discoverable() const;
|
|
bool setDiscoverable(const bool &discoverable);
|
|
|
|
uint discoverableTimeout() const;
|
|
bool setDiscoverableTimeout(const uint &seconds);
|
|
|
|
bool pairable() const;
|
|
bool setPairable(const bool &pairable);
|
|
|
|
uint pairableTimeout() const;
|
|
bool setPairableTimeout(const uint &seconds);
|
|
|
|
uint adapterClass() const;
|
|
QString adapterClassString() const;
|
|
|
|
bool powered() const;
|
|
bool setPower(const bool &power);
|
|
|
|
QStringList uuids() const;
|
|
|
|
QList<BluetoothDevice *> devices() const;
|
|
bool hasDevice(const QBluetoothAddress &address);
|
|
BluetoothDevice *getDevice(const QBluetoothAddress &address);
|
|
bool removeDevice(const QBluetoothAddress &address);
|
|
|
|
bool isValid() const;
|
|
|
|
private:
|
|
// Note: only BluetoothManager can create adapter objects
|
|
explicit BluetoothAdapter(const QDBusObjectPath &path, const QVariantMap &properties, QObject *parent = 0);
|
|
~BluetoothAdapter();
|
|
|
|
QDBusObjectPath m_path;
|
|
QDBusInterface *m_adapterInterface;
|
|
|
|
QString m_name;
|
|
QString m_address;
|
|
|
|
QString m_alias;
|
|
QString m_modalias;
|
|
bool m_discovering;
|
|
bool m_discoverable;
|
|
uint m_discoverableTimeout;
|
|
bool m_pairable;
|
|
uint m_pairableTimeout;
|
|
uint m_adapterClass;
|
|
bool m_powered;
|
|
QStringList m_uuids;
|
|
|
|
QList<BluetoothDevice *> m_devices;
|
|
|
|
void processProperties(const QVariantMap &properties);
|
|
|
|
// Methods called from BluetoothManager
|
|
void addDeviceInternally(const QDBusObjectPath &path, const QVariantMap &properties);
|
|
void removeDeviceInternally(const QDBusObjectPath &path);
|
|
|
|
// Verification methods
|
|
bool hasDevice(const QDBusObjectPath &path);
|
|
|
|
// DBus methods
|
|
bool removeDevice(const QDBusObjectPath &path);
|
|
|
|
|
|
void setAliasInternally(const QString &alias);
|
|
void setDiscoveringInternally(const bool &discovering);
|
|
void setDiscoverableInernally(const bool &discoverable);
|
|
void setDiscoverableTimeoutInternally(const uint &discoverableTimeout);
|
|
void setPairableInternally(const bool &pairable);
|
|
void setPairableTimeoutInternally(const uint &pairableTimeout);
|
|
void setPoweredInternally(const bool &powered);
|
|
|
|
private slots:
|
|
void onPropertiesChanged(const QString &interface, const QVariantMap &changedProperties, const QStringList &invalidatedProperties);
|
|
void onRemoveDeviceFinished(QDBusPendingCallWatcher *call);
|
|
|
|
signals:
|
|
void aliasChanged(const QString &alias);
|
|
void discoveringChanged(const bool &discovering);
|
|
void discoverableChanged(const bool &discoverable);
|
|
void discoverableTimeoutChanged(const uint &discoverableTimeout);
|
|
void pairableChanged(const bool &pairable);
|
|
void pairableTimeoutChanged(const uint &pairableTimeout);
|
|
void poweredChanged(const bool &powered);
|
|
|
|
void deviceAdded(BluetoothDevice *thing);
|
|
void deviceRemoved(BluetoothDevice *thing);
|
|
|
|
public slots:
|
|
void startDiscovering();
|
|
void stopDiscovering();
|
|
|
|
};
|
|
|
|
QDebug operator<<(QDebug debug, BluetoothAdapter *adapter);
|
|
|
|
|
|
#endif // BLUETOOTHADAPTER_H
|