2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2020-06-07 21:16:12 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "InstanceTask.h"
|
|
|
|
#include "net/NetJob.h"
|
|
|
|
|
2022-01-25 03:25:57 +05:30
|
|
|
#include <quazip/quazip.h>
|
2020-06-07 21:16:12 +05:30
|
|
|
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2022-07-20 17:51:44 +05:30
|
|
|
#include <optional>
|
2021-02-09 09:34:23 +05:30
|
|
|
|
2020-06-07 21:16:12 +05:30
|
|
|
namespace Technic {
|
|
|
|
|
2021-07-25 22:41:59 +05:30
|
|
|
class SingleZipPackInstallTask : public InstanceTask
|
2020-06-07 21:16:12 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
SingleZipPackInstallTask(const QUrl &sourceUrl, const QString &minecraftVersion);
|
|
|
|
|
2021-07-06 19:42:39 +05:30
|
|
|
bool canAbort() const override { return true; }
|
|
|
|
bool abort() override;
|
|
|
|
|
2020-06-07 21:16:12 +05:30
|
|
|
protected:
|
|
|
|
void executeTask() override;
|
|
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void downloadSucceeded();
|
|
|
|
void downloadFailed(QString reason);
|
|
|
|
void downloadProgressChanged(qint64 current, qint64 total);
|
|
|
|
void extractFinished();
|
|
|
|
void extractAborted();
|
|
|
|
|
|
|
|
private:
|
2021-07-06 19:42:39 +05:30
|
|
|
bool m_abortable = false;
|
|
|
|
|
2020-06-07 21:16:12 +05:30
|
|
|
QUrl m_sourceUrl;
|
|
|
|
QString m_minecraftVersion;
|
|
|
|
QString m_archivePath;
|
2021-11-22 03:51:12 +05:30
|
|
|
NetJob::Ptr m_filesNetJob;
|
2020-06-07 21:16:12 +05:30
|
|
|
std::unique_ptr<QuaZip> m_packZip;
|
2022-07-20 17:51:44 +05:30
|
|
|
QFuture<std::optional<QStringList>> m_extractFuture;
|
|
|
|
QFutureWatcher<std::optional<QStringList>> m_extractFutureWatcher;
|
2020-06-07 21:16:12 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Technic
|