2013-09-10 18:01:46 +01:00
|
|
|
/*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
|
|
|
* SPDX-FileCopyrightText: 2015 Aleix Pol i Gonzalez <aleixpol@kde.org>
|
2013-09-10 18:01:46 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-09-10 18:01:46 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FILETRANSFERJOB_H
|
|
|
|
#define FILETRANSFERJOB_H
|
|
|
|
|
2016-07-05 13:27:53 +01:00
|
|
|
#include <KJob>
|
|
|
|
|
2016-09-10 21:52:03 +01:00
|
|
|
#include <QElapsedTimer>
|
2013-09-10 18:01:46 +01:00
|
|
|
#include <QIODevice>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QNetworkReply>
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <QSharedPointer>
|
2014-09-21 21:22:06 +01:00
|
|
|
#include <QUrl>
|
2013-09-10 18:01:46 +01:00
|
|
|
|
2015-09-07 13:54:33 +01:00
|
|
|
#include "kdeconnectcore_export.h"
|
|
|
|
|
2019-06-02 15:02:21 +01:00
|
|
|
class NetworkPacket;
|
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.
|
|
|
|
*/
|
2022-09-10 22:23:52 +01:00
|
|
|
class KDECONNECTCORE_EXPORT FileTransferJob : 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
|
|
|
|
*/
|
2022-09-10 22:23:52 +01:00
|
|
|
FileTransferJob(const NetworkPacket *np, const QUrl &destination);
|
2016-06-20 08:05:02 +01:00
|
|
|
void start() override;
|
2022-09-10 22:23:52 +01:00
|
|
|
QUrl destination() const
|
|
|
|
{
|
|
|
|
return m_destination;
|
|
|
|
}
|
|
|
|
void setOriginName(const QString &from)
|
|
|
|
{
|
|
|
|
m_from = from;
|
|
|
|
}
|
2023-05-25 01:12:29 +01:00
|
|
|
void setAutoRenameIfDestinatinonExists(bool autoRename)
|
|
|
|
{
|
|
|
|
m_autoRename = autoRename;
|
|
|
|
}
|
2022-09-10 22:23:52 +01:00
|
|
|
const NetworkPacket *networkPacket()
|
|
|
|
{
|
|
|
|
return m_np;
|
|
|
|
}
|
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();
|
2019-05-02 17:49:50 +01:00
|
|
|
void deleteDestinationFile();
|
2015-05-04 23:41:39 +01:00
|
|
|
|
2017-09-03 20:39:44 +01:00
|
|
|
QSharedPointer<QIODevice> m_origin;
|
2022-09-10 22:23:52 +01:00
|
|
|
QNetworkReply *m_reply;
|
2017-09-03 20:39:44 +01:00
|
|
|
QString m_from;
|
|
|
|
QUrl m_destination;
|
|
|
|
QElapsedTimer m_timer;
|
|
|
|
qulonglong m_speedBytes;
|
|
|
|
qint64 m_written;
|
2017-09-03 21:00:06 +01:00
|
|
|
qint64 m_size;
|
2022-09-10 22:23:52 +01:00
|
|
|
const NetworkPacket *m_np;
|
2023-05-25 01:12:29 +01:00
|
|
|
bool m_autoRename;
|
2013-09-10 18:01:46 +01:00
|
|
|
};
|
|
|
|
|
2013-09-26 16:49:40 +01:00
|
|
|
#endif
|