2013-09-10 18:01:46 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
2015-05-04 23:41:39 +01:00
|
|
|
* Copyright 2015 Aleix Pol i Gonzalez <aleixpol@kde.org>
|
2013-09-10 18:01:46 +01:00
|
|
|
*
|
|
|
|
* 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 FILETRANSFERJOB_H
|
|
|
|
#define FILETRANSFERJOB_H
|
|
|
|
|
2016-07-05 13:27:53 +01:00
|
|
|
#include <KJob>
|
|
|
|
|
2013-09-10 18:01:46 +01:00
|
|
|
#include <QIODevice>
|
2014-03-03 20:12:06 +00:00
|
|
|
#include <QTime>
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <QSharedPointer>
|
2014-09-21 21:22:06 +01:00
|
|
|
#include <QUrl>
|
2015-05-04 23:41:39 +01:00
|
|
|
#include <QNetworkReply>
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2015-09-07 13:54:33 +01:00
|
|
|
#include "kdeconnectcore_export.h"
|
|
|
|
|
2015-05-04 23:41:39 +01:00
|
|
|
/**
|
|
|
|
* @short It will stream a device into a url destination
|
|
|
|
*
|
|
|
|
* Given a QIODevice, the file transfer job will use the system's QNetworkAccessManager
|
|
|
|
* for putting the stream into the requested location.
|
|
|
|
*/
|
2015-09-07 13:54:33 +01:00
|
|
|
class KDECONNECTCORE_EXPORT FileTransferJob
|
2013-09-26 16:49:40 +01:00
|
|
|
: public KJob
|
2013-09-10 18:01:46 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-05-04 23:41:39 +01:00
|
|
|
/**
|
|
|
|
* @p origin specifies the data to read from.
|
|
|
|
* @p size specifies the expected size of the stream we're reading.
|
|
|
|
* @p destination specifies where these contents should be stored
|
|
|
|
*/
|
2014-11-12 05:40:54 +00:00
|
|
|
FileTransferJob(const QSharedPointer<QIODevice>& origin, qint64 size, const QUrl &destination);
|
2016-06-20 08:05:02 +01:00
|
|
|
void start() override;
|
2014-09-21 21:22:06 +01:00
|
|
|
QUrl destination() const { return mDestination; }
|
2015-10-17 21:32:57 +01:00
|
|
|
void setOriginName(QString from) { mFrom = from; }
|
2014-03-03 21:33:22 +00:00
|
|
|
|
2015-05-04 23:41:39 +01:00
|
|
|
private Q_SLOTS:
|
2014-03-03 21:33:22 +00:00
|
|
|
void doStart();
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2014-03-03 21:34:03 +00:00
|
|
|
protected:
|
2016-06-20 08:05:02 +01:00
|
|
|
bool doKill() override;
|
2014-04-05 19:04:59 +01:00
|
|
|
|
2013-09-10 18:01:46 +01:00
|
|
|
private:
|
2014-03-03 21:33:22 +00:00
|
|
|
void startTransfer();
|
2016-06-22 11:42:51 +01:00
|
|
|
void transferFailed(QNetworkReply::NetworkError error);
|
2015-05-04 23:41:39 +01:00
|
|
|
void transferFinished();
|
|
|
|
|
2013-09-24 13:13:02 +01:00
|
|
|
QSharedPointer<QIODevice> mOrigin;
|
2015-05-04 23:41:39 +01:00
|
|
|
QNetworkReply* mReply;
|
2015-10-17 21:32:57 +01:00
|
|
|
QString mFrom;
|
2014-06-16 19:02:07 +01:00
|
|
|
QUrl mDestination;
|
2015-01-21 06:22:14 +00:00
|
|
|
QTime mTime;
|
|
|
|
qulonglong mSpeedBytes;
|
2014-11-09 20:57:09 +00:00
|
|
|
qint64 mWritten;
|
2013-09-10 18:01:46 +01:00
|
|
|
};
|
|
|
|
|
2013-09-26 16:49:40 +01:00
|
|
|
#endif
|