2013-07-23 15:11:54 +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/>.
|
|
|
|
*/
|
|
|
|
|
2013-08-28 22:47:39 +01:00
|
|
|
#ifndef LANDEVICELINK_H
|
|
|
|
#define LANDEVICELINK_H
|
2013-07-23 15:11:54 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2015-07-05 14:23:53 +01:00
|
|
|
#include <QSslSocket>
|
2015-12-17 12:41:10 +00:00
|
|
|
#include <QSslCertificate>
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2016-06-10 14:07:33 +01:00
|
|
|
#include <kdeconnectcore_export.h>
|
2013-09-09 17:35:56 +01:00
|
|
|
#include "../devicelink.h"
|
2015-07-07 19:52:10 +01:00
|
|
|
#include "uploadjob.h"
|
2013-09-09 17:35:56 +01:00
|
|
|
|
2013-10-30 00:18:25 +00:00
|
|
|
class SocketLineReader;
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2016-06-10 14:07:33 +01:00
|
|
|
class KDECONNECTCORE_EXPORT LanDeviceLink
|
2013-07-24 17:42:33 +01:00
|
|
|
: public DeviceLink
|
2013-07-23 15:11:54 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2016-01-10 15:12:13 +00:00
|
|
|
enum ConnectionStarted : bool { Locally, Remotely };
|
|
|
|
|
2015-09-11 16:25:23 +01:00
|
|
|
LanDeviceLink(const QString& deviceId, LinkProvider* parent, QSslSocket* socket, ConnectionStarted connectionSource);
|
2015-12-11 01:11:48 +00:00
|
|
|
void reset(QSslSocket* socket, ConnectionStarted connectionSource);
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
QString name() override;
|
2015-09-08 09:46:59 +01:00
|
|
|
bool sendPackage(NetworkPackage& np) override;
|
2016-06-21 19:07:12 +01:00
|
|
|
UploadJob* sendPayload(const NetworkPackage& np);
|
2013-07-23 15:11:54 +01:00
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
void userRequestsPair() override;
|
|
|
|
void userRequestsUnpair() override;
|
2015-12-01 18:45:14 +00:00
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
void setPairStatus(PairStatus status) override;
|
2015-12-01 18:45:14 +00:00
|
|
|
|
2016-06-20 08:05:02 +01:00
|
|
|
bool linkShouldBeKeptAlive() override;
|
2016-01-10 15:12:13 +00:00
|
|
|
|
2013-07-23 15:11:54 +01:00
|
|
|
private Q_SLOTS:
|
|
|
|
void dataReceived();
|
|
|
|
|
|
|
|
private:
|
2013-10-30 00:18:25 +00:00
|
|
|
SocketLineReader* mSocketLineReader;
|
2016-01-10 15:12:13 +00:00
|
|
|
ConnectionStarted mConnectionSource;
|
2013-07-23 15:11:54 +01:00
|
|
|
};
|
|
|
|
|
2013-10-30 00:18:25 +00:00
|
|
|
#endif
|