2022-04-22 06:42:14 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
2022-05-02 21:26:24 +05:30
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
2022-05-27 02:48:54 +05:30
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
2022-04-22 06:42:14 +05:30
|
|
|
* 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, version 3.
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
2022-04-22 06:42:14 +05:30
|
|
|
* 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.
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
2022-04-22 06:42:14 +05:30
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* 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-11-04 07:23:05 +05:30
|
|
|
*/
|
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
#include "NetJob.h"
|
2013-07-06 05:20:07 +05:30
|
|
|
|
2022-04-22 06:42:14 +05:30
|
|
|
auto NetJob::addNetAction(NetAction::Ptr action) -> bool
|
|
|
|
{
|
2022-07-22 09:00:27 +05:30
|
|
|
action->m_index_within_job = m_queue.size();
|
|
|
|
m_queue.append(action);
|
|
|
|
|
|
|
|
action->setNetwork(m_network);
|
2022-04-22 06:42:14 +05:30
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-07-22 09:00:27 +05:30
|
|
|
void NetJob::startNext()
|
|
|
|
{
|
|
|
|
if (m_queue.isEmpty() && m_doing.isEmpty()) {
|
|
|
|
// We're finished, check for failures and retry if we can (up to 3 times)
|
|
|
|
if (!m_failed.isEmpty() && m_try < 3) {
|
|
|
|
m_try += 1;
|
|
|
|
while (!m_failed.isEmpty())
|
|
|
|
m_queue.enqueue(m_failed.take(*m_failed.keyBegin()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ConcurrentTask::startNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto NetJob::size() const -> int
|
|
|
|
{
|
|
|
|
return m_queue.size() + m_doing.size() + m_done.size();
|
|
|
|
}
|
|
|
|
|
2022-04-22 06:42:14 +05:30
|
|
|
auto NetJob::canAbort() const -> bool
|
|
|
|
{
|
|
|
|
bool canFullyAbort = true;
|
|
|
|
|
|
|
|
// can abort the downloads on the queue?
|
2022-07-22 09:00:27 +05:30
|
|
|
for (auto part : m_queue)
|
2022-04-22 06:42:14 +05:30
|
|
|
canFullyAbort &= part->canAbort();
|
2022-07-22 09:00:27 +05:30
|
|
|
|
2022-04-22 06:42:14 +05:30
|
|
|
// can abort the active downloads?
|
2022-07-22 09:00:27 +05:30
|
|
|
for (auto part : m_doing)
|
2022-04-22 06:42:14 +05:30
|
|
|
canFullyAbort &= part->canAbort();
|
|
|
|
|
|
|
|
return canFullyAbort;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto NetJob::abort() -> bool
|
|
|
|
{
|
|
|
|
bool fullyAborted = true;
|
|
|
|
|
|
|
|
// fail all downloads on the queue
|
2022-07-22 09:00:27 +05:30
|
|
|
for (auto task : m_queue)
|
|
|
|
m_failed.insert(task.get(), task);
|
|
|
|
m_queue.clear();
|
2022-04-22 06:42:14 +05:30
|
|
|
|
|
|
|
// abort active downloads
|
2022-05-03 01:04:55 +05:30
|
|
|
auto toKill = m_doing.values();
|
2022-07-22 09:00:27 +05:30
|
|
|
for (auto part : toKill) {
|
2022-04-22 06:42:14 +05:30
|
|
|
fullyAborted &= part->abort();
|
|
|
|
}
|
|
|
|
|
2022-09-10 17:40:16 +05:30
|
|
|
if (fullyAborted)
|
|
|
|
emitAborted();
|
|
|
|
else
|
|
|
|
emitFailed(tr("Failed to abort all tasks in the NetJob!"));
|
|
|
|
|
2022-04-22 06:42:14 +05:30
|
|
|
return fullyAborted;
|
|
|
|
}
|
2013-09-18 03:30:35 +05:30
|
|
|
|
2022-07-22 09:00:27 +05:30
|
|
|
auto NetJob::getFailedActions() -> QList<NetAction*>
|
2013-09-02 03:55:40 +05:30
|
|
|
{
|
2022-07-22 09:00:27 +05:30
|
|
|
QList<NetAction*> failed;
|
|
|
|
for (auto index : m_failed) {
|
|
|
|
failed.push_back(dynamic_cast<NetAction*>(index.get()));
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2022-07-22 09:00:27 +05:30
|
|
|
return failed;
|
2016-08-14 06:03:31 +05:30
|
|
|
}
|
|
|
|
|
2022-07-22 09:00:27 +05:30
|
|
|
auto NetJob::getFailedFiles() -> QList<QString>
|
2013-09-02 03:55:40 +05:30
|
|
|
{
|
2022-07-22 09:00:27 +05:30
|
|
|
QList<QString> failed;
|
|
|
|
for (auto index : m_failed) {
|
|
|
|
failed.append(static_cast<NetAction*>(index.get())->url().toString());
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2022-07-22 09:00:27 +05:30
|
|
|
return failed;
|
2013-09-02 03:55:40 +05:30
|
|
|
}
|
|
|
|
|
2022-07-22 09:00:27 +05:30
|
|
|
void NetJob::updateState()
|
2015-01-12 02:34:31 +05:30
|
|
|
{
|
2022-07-22 09:00:27 +05:30
|
|
|
emit progress(m_done.count(), m_total_size);
|
|
|
|
setStatus(tr("Executing %1 task(s) (%2 out of %3 are done)")
|
|
|
|
.arg(QString::number(m_doing.count()), QString::number(m_done.count()), QString::number(m_total_size)));
|
2017-06-26 04:44:32 +05:30
|
|
|
}
|