2013-06-06 04:57:06 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-06-06 04:57:06 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-06-06 04:57:06 +01:00
|
|
|
*/
|
|
|
|
|
2014-01-17 13:55:04 +00:00
|
|
|
#ifndef KDECONNECT_DAEMON_H
|
|
|
|
#define KDECONNECT_DAEMON_H
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QMap>
|
2013-06-06 04:57:06 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QSet>
|
|
|
|
|
2015-07-09 22:51:08 +01:00
|
|
|
#include "device.h"
|
2022-09-10 22:23:52 +01:00
|
|
|
#include "kdeconnectcore_export.h"
|
2013-07-02 01:46:41 +01:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
class NetworkPacket;
|
2014-06-14 14:22:40 +01:00
|
|
|
class DeviceLink;
|
2015-03-24 11:26:37 +00:00
|
|
|
class Device;
|
2015-05-04 23:41:39 +01:00
|
|
|
class QNetworkAccessManager;
|
2019-10-27 19:35:18 +00:00
|
|
|
class KJobTrackerInterface;
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
class KDECONNECTCORE_EXPORT Daemon : public QObject
|
2013-06-06 04:57:06 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-07-26 15:21:19 +01:00
|
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.daemon")
|
2017-01-24 23:22:22 +00:00
|
|
|
Q_PROPERTY(QStringList pairingRequests READ pairingRequests NOTIFY pairingRequestsChanged)
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_PROPERTY(QStringList customDevices READ customDevices WRITE setCustomDevices NOTIFY customDevicesChanged)
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
public:
|
2022-09-10 22:23:52 +01:00
|
|
|
explicit Daemon(QObject *parent, bool testMode = false);
|
2016-06-20 08:05:02 +01:00
|
|
|
~Daemon() override;
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
static Daemon *instance();
|
2013-06-17 11:23:08 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
QList<Device *> devicesList() const;
|
2015-09-08 08:22:31 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
virtual void askPairingConfirmation(Device *device) = 0;
|
|
|
|
virtual void reportError(const QString &title, const QString &description) = 0;
|
2019-03-11 12:37:15 +00:00
|
|
|
virtual void quit() = 0;
|
2021-06-26 13:38:01 +01:00
|
|
|
QNetworkAccessManager *networkAccessManager();
|
2022-09-10 22:23:52 +01:00
|
|
|
virtual KJobTrackerInterface *jobTracker() = 0;
|
2015-09-08 08:22:31 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
Device *getDevice(const QString &deviceId);
|
2016-07-07 00:09:07 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
const QSet<LinkProvider *> &getLinkProviders() const;
|
2019-06-02 22:26:47 +01:00
|
|
|
|
2017-01-24 23:22:22 +00:00
|
|
|
QStringList pairingRequests() const;
|
|
|
|
|
2020-08-18 15:55:48 +01:00
|
|
|
// Custom devices
|
|
|
|
QStringList customDevices() const;
|
2022-09-10 22:23:52 +01:00
|
|
|
void setCustomDevices(const QStringList &addresses);
|
2020-08-18 15:55:48 +01:00
|
|
|
|
2017-02-24 21:37:00 +00:00
|
|
|
Q_SCRIPTABLE QString selfId() const;
|
2015-09-08 08:22:31 +01:00
|
|
|
public Q_SLOTS:
|
2013-08-07 10:29:56 +01:00
|
|
|
Q_SCRIPTABLE void forceOnNetworkChange();
|
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
/// don't try to turn into Q_PROPERTY, it doesn't work
|
2015-03-02 05:23:05 +00:00
|
|
|
Q_SCRIPTABLE QString announcedName();
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE void setAnnouncedName(const QString &name);
|
2015-03-02 05:23:05 +00:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
// Returns a list of ids. The respective devices can be manipulated using the dbus path: "/modules/kdeconnect/Devices/"+id
|
2015-09-07 13:54:33 +01:00
|
|
|
Q_SCRIPTABLE QStringList devices(bool onlyReachable = false, bool onlyPaired = false) const;
|
2013-06-18 01:14:22 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE QMap<QString, QString> deviceNames(bool onlyReachable = false, bool onlyPaired = false) const;
|
2018-03-24 11:52:20 +00:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE QString deviceIdByName(const QString &name) const;
|
2016-06-05 22:31:13 +01:00
|
|
|
|
2018-03-18 11:42:15 +00:00
|
|
|
Q_SCRIPTABLE virtual void sendSimpleNotification(const QString &eventId, const QString &title, const QString &text, const QString &iconName) = 0;
|
|
|
|
|
2013-06-25 17:08:34 +01:00
|
|
|
Q_SIGNALS:
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE void deviceAdded(const QString &id);
|
|
|
|
Q_SCRIPTABLE void deviceRemoved(const QString &id); // Note that paired devices will never be removed
|
|
|
|
Q_SCRIPTABLE void deviceVisibilityChanged(const QString &id, bool isVisible);
|
|
|
|
Q_SCRIPTABLE void deviceListChanged(); // Emitted when any of deviceAdded, deviceRemoved or deviceVisibilityChanged is emitted
|
|
|
|
Q_SCRIPTABLE void announcedNameChanged(const QString &announcedName);
|
2017-01-24 23:22:22 +00:00
|
|
|
Q_SCRIPTABLE void pairingRequestsChanged();
|
2022-09-10 22:23:52 +01:00
|
|
|
Q_SCRIPTABLE void customDevicesChanged(const QStringList &customDevices);
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
private Q_SLOTS:
|
2023-06-27 12:10:59 +01:00
|
|
|
void onNewDeviceLink(DeviceLink *dl);
|
2015-06-22 03:40:05 +01:00
|
|
|
void onDeviceStatusChanged();
|
2013-06-18 19:04:53 +01:00
|
|
|
|
2019-05-13 23:35:25 +01:00
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
|
2019-02-12 23:09:04 +00:00
|
|
|
protected:
|
2022-09-10 22:23:52 +01:00
|
|
|
void addDevice(Device *device);
|
|
|
|
void removeDevice(Device *d);
|
2015-09-08 08:30:55 +01:00
|
|
|
|
2015-04-20 06:50:12 +01:00
|
|
|
QScopedPointer<struct DaemonPrivate> d;
|
2013-06-06 04:57:06 +01:00
|
|
|
};
|
|
|
|
|
2013-09-08 18:05:27 +01:00
|
|
|
#endif
|