2013-06-06 04:57:06 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "daemon.h"
|
2013-07-24 17:42:33 +01:00
|
|
|
|
2013-06-25 17:08:34 +01:00
|
|
|
#include <QDBusConnection>
|
2014-08-11 17:55:38 +01:00
|
|
|
#include <QNetworkAccessManager>
|
2015-03-02 04:16:07 +00:00
|
|
|
#include <QDebug>
|
2015-05-04 23:41:39 +01:00
|
|
|
#include <QPointer>
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2014-09-21 23:59:34 +01:00
|
|
|
#include "core_debug.h"
|
2015-03-02 04:16:07 +00:00
|
|
|
#include "kdeconnectconfig.h"
|
2013-11-06 21:16:55 +00:00
|
|
|
#include "networkpackage.h"
|
|
|
|
#include "backends/lan/lanlinkprovider.h"
|
|
|
|
#include "backends/loopback/loopbacklinkprovider.h"
|
2014-06-14 14:22:40 +01:00
|
|
|
#include "device.h"
|
|
|
|
#include "backends/devicelink.h"
|
|
|
|
#include "backends/linkprovider.h"
|
|
|
|
|
2015-03-24 11:26:37 +00:00
|
|
|
Q_GLOBAL_STATIC(Daemon*, s_instance)
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
struct DaemonPrivate
|
|
|
|
{
|
|
|
|
//Different ways to find devices and connect to them
|
|
|
|
QSet<LinkProvider*> mLinkProviders;
|
|
|
|
|
|
|
|
//Every known device
|
|
|
|
QMap<QString, Device*> mDevices;
|
2015-04-05 00:32:15 +01:00
|
|
|
|
2015-09-08 08:30:55 +01:00
|
|
|
bool discoveryMode = false;
|
2014-06-14 14:22:40 +01:00
|
|
|
};
|
2013-11-06 21:16:55 +00:00
|
|
|
|
2015-03-24 11:26:37 +00:00
|
|
|
Daemon* Daemon::instance()
|
|
|
|
{
|
|
|
|
Q_ASSERT(s_instance.exists());
|
|
|
|
return *s_instance;
|
|
|
|
}
|
|
|
|
|
2015-09-07 13:54:33 +01:00
|
|
|
Daemon::Daemon(QObject *parent, bool testMode)
|
2014-06-14 14:22:40 +01:00
|
|
|
: QObject(parent)
|
|
|
|
, d(new DaemonPrivate)
|
2013-06-06 04:57:06 +01:00
|
|
|
{
|
2015-03-24 11:26:37 +00:00
|
|
|
Q_ASSERT(!s_instance.exists());
|
|
|
|
*s_instance = this;
|
2014-11-04 18:12:29 +00:00
|
|
|
qCDebug(KDECONNECT_CORE) << "KdeConnect daemon starting";
|
2014-08-11 17:53:08 +01:00
|
|
|
|
2015-03-02 04:16:07 +00:00
|
|
|
//Load backends
|
2015-09-07 13:54:33 +01:00
|
|
|
if (testMode)
|
|
|
|
d->mLinkProviders.insert(new LoopbackLinkProvider());
|
|
|
|
else
|
|
|
|
d->mLinkProviders.insert(new LanLinkProvider());
|
2013-07-02 00:50:32 +01:00
|
|
|
|
2013-07-02 01:46:41 +01:00
|
|
|
//Read remebered paired devices
|
2015-03-02 04:16:07 +00:00
|
|
|
const QStringList& list = KdeConnectConfig::instance()->trustedDevices();
|
2013-07-03 02:52:44 +01:00
|
|
|
Q_FOREACH(const QString& id, list) {
|
2014-01-22 22:31:27 +00:00
|
|
|
Device* device = new Device(this, id);
|
2015-06-22 03:40:05 +01:00
|
|
|
connect(device, SIGNAL(reachableStatusChanged()), this, SLOT(onDeviceStatusChanged()));
|
|
|
|
connect(device, SIGNAL(pairingChanged(bool)), this, SLOT(onDeviceStatusChanged()));
|
2014-06-14 14:22:40 +01:00
|
|
|
d->mDevices[id] = device;
|
2013-08-13 22:23:32 +01:00
|
|
|
Q_EMIT deviceAdded(id);
|
2013-07-02 01:46:41 +01:00
|
|
|
}
|
2014-09-23 18:45:29 +01:00
|
|
|
|
2014-08-11 17:55:38 +01:00
|
|
|
//Listen to new devices
|
2014-06-14 14:22:40 +01:00
|
|
|
Q_FOREACH (LinkProvider* a, d->mLinkProviders) {
|
2015-08-21 17:38:54 +01:00
|
|
|
connect(a, SIGNAL(onConnectionReceived(NetworkPackage,DeviceLink*)),
|
|
|
|
this, SLOT(onNewDeviceLink(NetworkPackage,DeviceLink*)));
|
2015-09-08 08:30:55 +01:00
|
|
|
a->onStart();
|
2013-06-06 04:57:06 +01:00
|
|
|
}
|
2013-06-17 11:23:08 +01:00
|
|
|
|
2015-03-02 04:16:07 +00:00
|
|
|
//Register on DBus
|
|
|
|
QDBusConnection::sessionBus().registerService("org.kde.kdeconnect");
|
|
|
|
QDBusConnection::sessionBus().registerObject("/modules/kdeconnect", this, QDBusConnection::ExportScriptableContents);
|
|
|
|
|
2014-11-04 18:12:29 +00:00
|
|
|
qCDebug(KDECONNECT_CORE) << "KdeConnect daemon started";
|
2013-06-17 11:23:08 +01:00
|
|
|
}
|
2013-09-26 16:49:40 +01:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
void Daemon::setDiscoveryEnabled(bool b)
|
2013-06-27 01:26:06 +01:00
|
|
|
{
|
2015-09-08 08:30:55 +01:00
|
|
|
// qDebug() << "setting discover..." << b;
|
|
|
|
if (b == d->discoveryMode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
d->discoveryMode = b;
|
|
|
|
if (b) {
|
|
|
|
forceOnNetworkChange();
|
|
|
|
} else {
|
|
|
|
cleanDevices();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Daemon::isDiscoveryEnabled() const
|
|
|
|
{
|
|
|
|
return d->discoveryMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Daemon::removeDevice(Device* device)
|
|
|
|
{
|
|
|
|
d->mDevices.remove(device->id());
|
|
|
|
device->deleteLater();
|
|
|
|
Q_EMIT deviceRemoved(device->id());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Daemon::cleanDevices()
|
|
|
|
{
|
|
|
|
Q_FOREACH(Device* device, d->mDevices) {
|
|
|
|
if (!device->isPaired()) {
|
|
|
|
removeDevice(device);
|
|
|
|
}
|
2013-06-27 01:26:06 +01:00
|
|
|
}
|
|
|
|
}
|
2013-09-26 16:49:40 +01:00
|
|
|
|
2013-08-07 10:29:56 +01:00
|
|
|
void Daemon::forceOnNetworkChange()
|
|
|
|
{
|
2015-04-05 00:32:15 +01:00
|
|
|
qCDebug(KDECONNECT_CORE) << "Sending onNetworkChange to " << d->mLinkProviders.size() << " LinkProviders";
|
2014-06-14 14:22:40 +01:00
|
|
|
Q_FOREACH (LinkProvider* a, d->mLinkProviders) {
|
2015-04-05 00:32:15 +01:00
|
|
|
a->onNetworkChange();
|
2013-08-07 10:29:56 +01:00
|
|
|
}
|
|
|
|
}
|
2013-06-27 01:26:06 +01:00
|
|
|
|
2015-09-07 13:54:33 +01:00
|
|
|
QStringList Daemon::devices(bool onlyReachable, bool onlyPaired) const
|
2013-08-13 22:23:32 +01:00
|
|
|
{
|
|
|
|
QStringList ret;
|
2014-06-14 14:22:40 +01:00
|
|
|
Q_FOREACH(Device* device, d->mDevices) {
|
2014-01-16 11:14:05 +00:00
|
|
|
if (onlyReachable && !device->isReachable()) continue;
|
2015-09-07 13:54:33 +01:00
|
|
|
if (onlyPaired && !device->isPaired()) continue;
|
2014-01-16 11:14:05 +00:00
|
|
|
ret.append(device->id());
|
2013-08-13 22:23:32 +01:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-07-23 15:11:54 +01:00
|
|
|
void Daemon::onNewDeviceLink(const NetworkPackage& identityPackage, DeviceLink* dl)
|
2013-06-18 01:14:22 +01:00
|
|
|
{
|
2013-07-23 15:11:54 +01:00
|
|
|
const QString& id = identityPackage.get<QString>("deviceId");
|
2013-07-03 02:52:44 +01:00
|
|
|
|
2014-09-21 22:54:27 +01:00
|
|
|
//qCDebug(KDECONNECT_CORE) << "Device discovered" << id << "via" << dl->provider()->name();
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
if (d->mDevices.contains(id)) {
|
2014-09-21 22:54:27 +01:00
|
|
|
//qCDebug(KDECONNECT_CORE) << "It is a known device";
|
2014-06-14 14:22:40 +01:00
|
|
|
Device* device = d->mDevices[id];
|
2015-06-22 03:39:04 +01:00
|
|
|
bool wasReachable = device->isReachable();
|
2013-10-01 02:11:22 +01:00
|
|
|
device->addLink(identityPackage, dl);
|
2015-06-22 03:39:04 +01:00
|
|
|
if (!wasReachable) {
|
|
|
|
Q_EMIT deviceVisibilityChanged(id, true);
|
|
|
|
}
|
2013-07-03 02:52:44 +01:00
|
|
|
} else {
|
2015-09-08 08:30:55 +01:00
|
|
|
Device* device = new Device(this, identityPackage, dl);
|
2014-09-21 22:54:27 +01:00
|
|
|
//qCDebug(KDECONNECT_CORE) << "It is a new device";
|
2013-07-04 18:17:22 +01:00
|
|
|
|
2015-09-08 08:30:55 +01:00
|
|
|
if (d->discoveryMode && !device->isPaired()) {
|
|
|
|
device->deleteLater();
|
|
|
|
} else {
|
|
|
|
connect(device, SIGNAL(reachableStatusChanged()), this, SLOT(onDeviceStatusChanged()));
|
|
|
|
connect(device, SIGNAL(pairingChanged(bool)), this, SLOT(onDeviceStatusChanged()));
|
|
|
|
d->mDevices[id] = device;
|
2013-08-13 04:07:32 +01:00
|
|
|
|
2015-09-08 08:30:55 +01:00
|
|
|
Q_EMIT deviceAdded(id);
|
|
|
|
}
|
2013-08-13 22:23:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-22 03:40:05 +01:00
|
|
|
void Daemon::onDeviceStatusChanged()
|
2013-08-13 22:23:32 +01:00
|
|
|
{
|
|
|
|
Device* device = (Device*)sender();
|
|
|
|
|
2015-06-22 03:39:04 +01:00
|
|
|
qCDebug(KDECONNECT_CORE) << "Device" << device->name() << "status changed. Reachable:" << device->isReachable() << ". Paired: " << device->isPaired();
|
2013-08-13 22:23:32 +01:00
|
|
|
|
2015-06-22 03:39:04 +01:00
|
|
|
if (!device->isReachable() && !device->isPaired()) {
|
|
|
|
qCDebug(KDECONNECT_CORE) << "Destroying device" << device->name();
|
2015-09-08 08:30:55 +01:00
|
|
|
removeDevice(device);
|
2015-06-22 03:39:04 +01:00
|
|
|
} else {
|
2015-09-08 08:30:55 +01:00
|
|
|
Q_EMIT deviceVisibilityChanged(device->id(), device->isReachable());
|
2013-06-18 01:14:22 +01:00
|
|
|
}
|
2015-06-22 03:39:04 +01:00
|
|
|
|
2013-06-18 01:14:22 +01:00
|
|
|
}
|
|
|
|
|
2015-03-02 05:23:05 +00:00
|
|
|
void Daemon::setAnnouncedName(QString name)
|
|
|
|
{
|
2015-04-05 00:32:15 +01:00
|
|
|
qCDebug(KDECONNECT_CORE()) << "Announcing name";
|
2015-03-02 05:23:05 +00:00
|
|
|
KdeConnectConfig::instance()->setName(name);
|
|
|
|
forceOnNetworkChange();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Daemon::announcedName()
|
|
|
|
{
|
|
|
|
return KdeConnectConfig::instance()->name();
|
|
|
|
}
|
|
|
|
|
2015-05-04 23:41:39 +01:00
|
|
|
QNetworkAccessManager* Daemon::networkAccessManager()
|
|
|
|
{
|
|
|
|
static QPointer<QNetworkAccessManager> manager;
|
|
|
|
if (!manager) {
|
|
|
|
manager = new QNetworkAccessManager(this);
|
|
|
|
}
|
|
|
|
return manager;
|
|
|
|
}
|
|
|
|
|
2015-09-07 13:54:33 +01:00
|
|
|
QList<Device*> Daemon::devicesList() const
|
|
|
|
{
|
|
|
|
return d->mDevices.values();
|
|
|
|
}
|
|
|
|
|
2013-06-06 04:57:06 +01:00
|
|
|
Daemon::~Daemon()
|
|
|
|
{
|
2013-07-24 17:42:33 +01:00
|
|
|
|
2013-06-06 04:57:06 +01:00
|
|
|
}
|
2013-06-17 11:23:08 +01:00
|
|
|
|