2022-04-22 02:12:14 +01:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-04-03 03:40:32 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-05-02 16:56:24 +01:00
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
2023-04-03 03:40:32 +01:00
|
|
|
* Copyright (C) 2023 Rachel Powers <508861+Ryex@users.noreply.github.com>
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-04-22 02:12:14 +01:00
|
|
|
* 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 01:53:05 +00:00
|
|
|
*
|
2022-04-22 02:12:14 +01:00
|
|
|
* 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 01:53:05 +00:00
|
|
|
*
|
2022-04-22 02:12:14 +01:00
|
|
|
* 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 01:53:05 +00:00
|
|
|
*/
|
|
|
|
|
2013-07-06 00:50:07 +01:00
|
|
|
#pragma once
|
2022-04-22 02:12:14 +01:00
|
|
|
|
2013-07-06 00:50:07 +01:00
|
|
|
#include <QtNetwork>
|
2022-04-22 02:12:14 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
2013-10-26 18:55:48 +01:00
|
|
|
#include "NetAction.h"
|
2022-07-22 04:30:27 +01:00
|
|
|
#include "tasks/ConcurrentTask.h"
|
2013-07-06 00:50:07 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
// Those are included so that they are also included by anyone using NetJob
|
|
|
|
#include "net/Download.h"
|
|
|
|
#include "net/HttpMetaCache.h"
|
2013-09-01 23:25:40 +01:00
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
class NetJob : public ConcurrentTask {
|
2013-09-01 23:25:40 +01:00
|
|
|
Q_OBJECT
|
2022-04-22 02:12:14 +01:00
|
|
|
|
|
|
|
public:
|
2021-11-21 22:21:12 +00:00
|
|
|
using Ptr = shared_qobject_ptr<NetJob>;
|
|
|
|
|
2023-07-14 20:26:22 +01:00
|
|
|
explicit NetJob(QString job_name, shared_qobject_ptr<QNetworkAccessManager> network);
|
2022-07-22 04:30:27 +01:00
|
|
|
~NetJob() override = default;
|
2017-06-26 00:14:32 +01:00
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
void startNext() override;
|
2017-04-29 01:24:00 +01:00
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
auto size() const -> int;
|
2015-01-11 21:04:31 +00:00
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
auto canAbort() const -> bool override;
|
2022-04-22 02:12:14 +01:00
|
|
|
auto addNetAction(NetAction::Ptr action) -> bool;
|
2016-08-14 01:33:31 +01:00
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
auto getFailedActions() -> QList<NetAction*>;
|
|
|
|
auto getFailedFiles() -> QList<QString>;
|
2022-04-22 02:12:14 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
// Qt can't handle auto at the start for some reason?
|
|
|
|
bool abort() override;
|
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
protected:
|
|
|
|
void updateState() override;
|
2013-10-26 18:55:48 +01:00
|
|
|
|
2022-04-22 02:12:14 +01:00
|
|
|
private:
|
2021-11-21 22:21:12 +00:00
|
|
|
shared_qobject_ptr<QNetworkAccessManager> m_network;
|
|
|
|
|
2022-07-22 04:30:27 +01:00
|
|
|
int m_try = 1;
|
2013-07-06 00:50:07 +01:00
|
|
|
};
|