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/>.
|
|
|
|
*/
|
|
|
|
|
2014-01-17 13:55:04 +00:00
|
|
|
#ifndef KDECONNECT_DAEMON_H
|
|
|
|
#define KDECONNECT_DAEMON_H
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSet>
|
2013-08-31 12:04:00 +01:00
|
|
|
#include <QMap>
|
|
|
|
#include <QtCrypto>
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-08-31 12:04:00 +01:00
|
|
|
#include <KDEDModule>
|
|
|
|
#include <KPluginFactory>
|
2013-07-02 01:46:41 +01:00
|
|
|
|
2013-06-06 04:57:06 +01:00
|
|
|
#include "device.h"
|
2013-08-31 12:04:00 +01:00
|
|
|
#include "networkpackage.h"
|
2013-09-09 17:35:56 +01:00
|
|
|
#include "backends/devicelink.h"
|
|
|
|
#include "backends/linkprovider.h"
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
class Daemon
|
2014-01-17 13:55:04 +00:00
|
|
|
: 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")
|
2013-06-06 04:57:06 +01:00
|
|
|
|
|
|
|
public:
|
2014-01-17 13:55:04 +00:00
|
|
|
Daemon(QObject *parent);
|
2013-06-06 04:57:06 +01:00
|
|
|
~Daemon();
|
|
|
|
|
2013-06-17 11:23:08 +01:00
|
|
|
public Q_SLOTS:
|
|
|
|
|
2013-06-27 01:26:06 +01:00
|
|
|
//After calling this, signal deviceDiscovered will be triggered for each device
|
2013-07-03 02:52:44 +01:00
|
|
|
Q_SCRIPTABLE void setDiscoveryEnabled(bool b);
|
2013-06-17 11:23:08 +01:00
|
|
|
|
2013-08-07 10:29:56 +01:00
|
|
|
Q_SCRIPTABLE void forceOnNetworkChange();
|
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
//Returns a list of ids. The respective devices can be manipulated using the dbus path: "/modules/kdeconnect/Devices/"+id
|
2014-01-16 11:14:05 +00:00
|
|
|
Q_SCRIPTABLE QStringList devices(bool onlyReachable = false, bool onlyVisible = false);
|
2013-06-18 01:14:22 +01:00
|
|
|
|
2013-06-25 17:08:34 +01:00
|
|
|
Q_SIGNALS:
|
2013-08-13 22:23:32 +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);
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
private Q_SLOTS:
|
2013-07-23 15:11:54 +01:00
|
|
|
void onNewDeviceLink(const NetworkPackage& identityPackage, DeviceLink* dl);
|
2013-08-13 22:23:32 +01:00
|
|
|
void onDeviceReachableStatusChanged();
|
2013-06-18 19:04:53 +01:00
|
|
|
|
2013-07-03 02:52:44 +01:00
|
|
|
private:
|
2013-06-18 19:04:53 +01:00
|
|
|
|
2013-07-24 17:42:33 +01:00
|
|
|
//Different ways to find devices and connect to them
|
|
|
|
QSet<LinkProvider*> mLinkProviders;
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-08-13 04:07:32 +01:00
|
|
|
//Every known device
|
|
|
|
QMap<QString, Device*> mDevices;
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-08-31 12:04:00 +01:00
|
|
|
// The Initializer object sets things up, and also does cleanup when it goes out of scope
|
2013-11-18 02:31:59 +00:00
|
|
|
QCA::Initializer mQcaInitializer;
|
2013-06-06 04:57:06 +01:00
|
|
|
};
|
|
|
|
|
2013-09-08 18:05:27 +01:00
|
|
|
#endif
|