2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
#pragma once
|
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
#include "NetAction.h"
|
2013-09-08 05:45:20 +05:30
|
|
|
#include "HttpMetaCache.h"
|
2014-01-11 02:38:00 +05:30
|
|
|
#include <QCryptographicHash>
|
|
|
|
#include <QSaveFile>
|
2013-09-08 05:45:20 +05:30
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
typedef std::shared_ptr<class CacheDownload> CacheDownloadPtr;
|
|
|
|
class CacheDownload : public NetAction
|
2013-09-08 05:45:20 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-01-19 02:41:33 +05:30
|
|
|
private:
|
2013-09-08 05:45:20 +05:30
|
|
|
MetaEntryPtr m_entry;
|
|
|
|
/// if saving to file, use the one specified in this string
|
|
|
|
QString m_target_path;
|
|
|
|
/// this is the output file, if any
|
2014-01-19 02:41:33 +05:30
|
|
|
std::shared_ptr<QSaveFile> m_output_file;
|
2013-09-08 05:45:20 +05:30
|
|
|
/// the hash-as-you-download
|
|
|
|
QCryptographicHash md5sum;
|
2013-10-26 23:25:48 +05:30
|
|
|
|
2014-01-11 06:36:22 +05:30
|
|
|
bool wroteAnyData = false;
|
|
|
|
|
2013-09-08 05:45:20 +05:30
|
|
|
public:
|
|
|
|
explicit CacheDownload(QUrl url, MetaEntryPtr entry);
|
2013-10-26 23:25:48 +05:30
|
|
|
static CacheDownloadPtr make(QUrl url, MetaEntryPtr entry)
|
|
|
|
{
|
|
|
|
return CacheDownloadPtr(new CacheDownload(url, entry));
|
|
|
|
}
|
2014-03-30 23:41:05 +05:30
|
|
|
virtual ~CacheDownload(){};
|
2014-01-19 02:41:33 +05:30
|
|
|
QString getTargetFilepath()
|
|
|
|
{
|
|
|
|
return m_target_path;
|
|
|
|
}
|
2013-10-26 23:25:48 +05:30
|
|
|
protected
|
|
|
|
slots:
|
2013-09-08 05:45:20 +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-08 05:45:20 +05:30
|
|
|
virtual void start();
|
|
|
|
};
|