2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 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-07-06 05:20:07 +05:30
|
|
|
#pragma once
|
|
|
|
#include <QtNetwork>
|
2013-10-26 23:25:48 +05:30
|
|
|
#include "NetAction.h"
|
2016-05-28 23:24:17 +05:30
|
|
|
#include "Download.h"
|
2013-09-08 05:45:20 +05:30
|
|
|
#include "HttpMetaCache.h"
|
2015-04-26 17:17:14 +05:30
|
|
|
#include "tasks/Task.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "QObjectPtr.h"
|
2013-07-06 05:20:07 +05:30
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
class NetJob;
|
2013-09-02 03:55:40 +05:30
|
|
|
|
2021-07-25 22:41:59 +05:30
|
|
|
class NetJob : public Task
|
2013-09-02 03:55:40 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2013-09-02 03:55:40 +05:30
|
|
|
public:
|
2021-11-22 03:51:12 +05:30
|
|
|
using Ptr = shared_qobject_ptr<NetJob>;
|
|
|
|
|
2021-12-31 09:57:59 +05:30
|
|
|
explicit NetJob(QString job_name, shared_qobject_ptr<QNetworkAccessManager> network) : Task(), m_network(network)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
setObjectName(job_name);
|
|
|
|
}
|
2020-06-07 21:16:12 +05:30
|
|
|
virtual ~NetJob();
|
2017-06-26 04:44:32 +05:30
|
|
|
|
2021-11-22 03:51:12 +05:30
|
|
|
bool addNetAction(NetAction::Ptr action);
|
2017-04-29 05:54:00 +05:30
|
|
|
|
2021-11-22 03:51:12 +05:30
|
|
|
NetAction::Ptr operator[](int index)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
return downloads[index];
|
|
|
|
}
|
2021-11-22 03:51:12 +05:30
|
|
|
const NetAction::Ptr at(const int index)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
return downloads.at(index);
|
|
|
|
}
|
2021-11-22 03:51:12 +05:30
|
|
|
NetAction::Ptr first()
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
if (downloads.size())
|
|
|
|
return downloads[0];
|
2021-11-22 03:51:12 +05:30
|
|
|
return NetAction::Ptr();
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
int size() const
|
|
|
|
{
|
|
|
|
return downloads.size();
|
|
|
|
}
|
|
|
|
QStringList getFailedFiles();
|
2015-01-12 02:34:31 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
bool canAbort() const override;
|
2016-08-14 06:03:31 +05:30
|
|
|
|
2015-03-27 06:33:14 +05:30
|
|
|
private slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void startMoreParts();
|
2015-01-12 02:34:31 +05:30
|
|
|
|
|
|
|
public slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual void executeTask() override;
|
|
|
|
virtual bool abort() override;
|
2015-01-12 02:34:31 +05:30
|
|
|
|
|
|
|
private slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void partProgress(int index, qint64 bytesReceived, qint64 bytesTotal);
|
|
|
|
void partSucceeded(int index);
|
|
|
|
void partFailed(int index);
|
|
|
|
void partAborted(int index);
|
2013-10-26 23:25:48 +05:30
|
|
|
|
2013-09-02 03:55:40 +05:30
|
|
|
private:
|
2021-11-22 03:51:12 +05:30
|
|
|
shared_qobject_ptr<QNetworkAccessManager> m_network;
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
struct part_info
|
|
|
|
{
|
|
|
|
qint64 current_progress = 0;
|
|
|
|
qint64 total_progress = 1;
|
|
|
|
int failures = 0;
|
|
|
|
};
|
2021-11-22 03:51:12 +05:30
|
|
|
QList<NetAction::Ptr> downloads;
|
2018-07-15 18:21:05 +05:30
|
|
|
QList<part_info> parts_progress;
|
|
|
|
QQueue<int> m_todo;
|
|
|
|
QSet<int> m_doing;
|
|
|
|
QSet<int> m_done;
|
|
|
|
QSet<int> m_failed;
|
|
|
|
qint64 m_current_progress = 0;
|
|
|
|
bool m_aborted = false;
|
2013-07-06 05:20:07 +05:30
|
|
|
};
|