11996f56ca
Use QNetworkAccessManager for storing the files we receive instead of directly KIO, then provide the KIO-based QNetworkAccessManager from the daemon. This way we'll still get the KIO network-transparency, but the library only depenends on QtNetwork, which will be easier to get in some platforms. After this change, we only depend on KConfig, KI18n and KCoreAddons, which are tier1 and really easy to work with on any platform. REVIEW: 123325
81 lines
2.6 KiB
C++
81 lines
2.6 KiB
C++
/**
|
|
* 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/>.
|
|
*/
|
|
|
|
#ifndef KDECONNECT_DAEMON_H
|
|
#define KDECONNECT_DAEMON_H
|
|
|
|
#include <QObject>
|
|
#include <QSet>
|
|
#include <QMap>
|
|
|
|
#include "kdeconnectcore_export.h"
|
|
|
|
class NetworkPackage;
|
|
class DeviceLink;
|
|
class Device;
|
|
class QNetworkAccessManager;
|
|
|
|
class KDECONNECTCORE_EXPORT Daemon
|
|
: public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_CLASSINFO("D-Bus Interface", "org.kde.kdeconnect.daemon")
|
|
|
|
public:
|
|
Daemon(QObject *parent);
|
|
~Daemon();
|
|
|
|
public Q_SLOTS:
|
|
/**
|
|
* Returns the daemon.
|
|
*
|
|
* Note this can't be called before constructing the Daemon.
|
|
*/
|
|
static Daemon* instance();
|
|
|
|
//After calling this, signal deviceDiscovered will be triggered for each device
|
|
Q_SCRIPTABLE void setDiscoveryEnabled(bool b);
|
|
|
|
Q_SCRIPTABLE void forceOnNetworkChange();
|
|
|
|
Q_SCRIPTABLE QString announcedName();
|
|
Q_SCRIPTABLE void setAnnouncedName(QString name);
|
|
|
|
//Returns a list of ids. The respective devices can be manipulated using the dbus path: "/modules/kdeconnect/Devices/"+id
|
|
Q_SCRIPTABLE QStringList devices(bool onlyReachable = false, bool onlyVisible = false) const;
|
|
|
|
virtual void requestPairing(Device *d) = 0;
|
|
virtual void reportError(const QString &title, const QString &description) = 0;
|
|
virtual QNetworkAccessManager* networkAccessManager();
|
|
|
|
Q_SIGNALS:
|
|
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);
|
|
|
|
private Q_SLOTS:
|
|
void onNewDeviceLink(const NetworkPackage& identityPackage, DeviceLink* dl);
|
|
void onDeviceReachableStatusChanged();
|
|
|
|
private:
|
|
QScopedPointer<struct DaemonPrivate> d;
|
|
};
|
|
|
|
#endif
|