2013-09-30 06:04:46 +05:30
|
|
|
#pragma once
|
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
#include "NetAction.h"
|
2013-09-30 06:04:46 +05:30
|
|
|
#include "HttpMetaCache.h"
|
|
|
|
#include <QFile>
|
|
|
|
#include <QTemporaryFile>
|
2013-10-26 23:25:48 +05:30
|
|
|
typedef std::shared_ptr<class ForgeXzDownload> ForgeXzDownloadPtr;
|
2013-09-30 06:04:46 +05:30
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
class ForgeXzDownload : public NetAction
|
2013-09-30 06:04:46 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
MetaEntryPtr m_entry;
|
|
|
|
/// is the saving file already open?
|
|
|
|
bool m_opened_for_saving;
|
|
|
|
/// if saving to file, use the one specified in this string
|
|
|
|
QString m_target_path;
|
|
|
|
/// this is the output file, if any
|
|
|
|
QTemporaryFile m_pack200_xz_file;
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ForgeXzDownload(QUrl url, MetaEntryPtr entry);
|
2013-10-26 23:25:48 +05:30
|
|
|
static ForgeXzDownloadPtr make(QUrl url, MetaEntryPtr entry)
|
|
|
|
{
|
|
|
|
return ForgeXzDownloadPtr(new ForgeXzDownload(url, entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected
|
|
|
|
slots:
|
2013-09-30 06:04:46 +05:30
|
|
|
virtual void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
|
|
|
|
virtual void downloadError(QNetworkReply::NetworkError error);
|
|
|
|
virtual void downloadFinished();
|
|
|
|
virtual void downloadReadyRead();
|
2013-10-26 23:25:48 +05:30
|
|
|
|
|
|
|
public
|
|
|
|
slots:
|
2013-09-30 06:04:46 +05:30
|
|
|
virtual void start();
|
2013-10-26 23:25:48 +05:30
|
|
|
|
2013-09-30 06:04:46 +05:30
|
|
|
private:
|
|
|
|
void decompressAndInstall();
|
|
|
|
};
|