MultiMC5/launcher/InstanceImportTask.h

74 lines
1.9 KiB
C
Raw Normal View History

2021-01-18 07:28:54 +00:00
/* 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.
*/
2016-10-02 22:55:54 +00:00
#pragma once
2018-03-19 01:36:12 +00:00
#include "InstanceTask.h"
2016-10-02 22:55:54 +00:00
#include "net/NetJob.h"
#include <QUrl>
#include <QFuture>
#include <QFutureWatcher>
2016-10-02 22:55:54 +00:00
#include "settings/SettingsObject.h"
#include "QObjectPtr.h"
2016-10-02 22:55:54 +00:00
#include <nonstd/optional>
class QuaZip;
2017-04-22 16:51:04 +00:00
namespace Flame
{
2018-07-15 12:51:05 +00:00
class FileResolvingTask;
}
2016-10-02 22:55:54 +00:00
class InstanceImportTask : public InstanceTask
2016-10-02 22:55:54 +00:00
{
2018-07-15 12:51:05 +00:00
Q_OBJECT
2016-10-02 22:55:54 +00:00
public:
2018-07-15 12:51:05 +00:00
explicit InstanceImportTask(const QUrl sourceUrl);
2016-10-02 22:55:54 +00:00
protected:
2018-07-15 12:51:05 +00:00
//! Entry point for tasks.
virtual void executeTask() override;
2016-10-02 22:55:54 +00:00
private:
2018-07-15 12:51:05 +00:00
void processZipPack();
void processMultiMC();
void processTechnic();
void processFlame();
void processModrinth();
2016-10-02 22:55:54 +00:00
private slots:
2018-07-15 12:51:05 +00:00
void downloadSucceeded();
void downloadFailed(QString reason);
void downloadProgressChanged(qint64 current, qint64 total);
void extractFinished();
void extractAborted();
2016-10-02 22:55:54 +00:00
private: /* data */
NetJob::Ptr m_filesNetJob;
2018-07-15 12:51:05 +00:00
shared_qobject_ptr<Flame::FileResolvingTask> m_modIdResolver;
QUrl m_sourceUrl;
QString m_archivePath;
bool m_downloadRequired = false;
std::unique_ptr<QuaZip> m_packZip;
QFuture<nonstd::optional<QStringList>> m_extractFuture;
QFutureWatcher<nonstd::optional<QStringList>> m_extractFutureWatcher;
2018-07-15 12:51:05 +00:00
enum class ModpackType{
Unknown,
MultiMC,
Technic,
Modrinth,
2018-07-15 12:51:05 +00:00
} m_modpackType = ModpackType::Unknown;
2016-10-02 22:55:54 +00:00
};