pollymc/api/logic/InstanceImportTask.h

74 lines
1.9 KiB
C
Raw Normal View History

2021-01-18 12:58:54 +05:30
/* 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-03 04:25:54 +05:30
#pragma once
2018-03-19 07:06:12 +05:30
#include "InstanceTask.h"
2016-10-03 04:25:54 +05:30
#include "multimc_logic_export.h"
#include "net/NetJob.h"
#include <QUrl>
#include <QFuture>
#include <QFutureWatcher>
2016-10-03 04:25:54 +05:30
#include "settings/SettingsObject.h"
#include "QObjectPtr.h"
2016-10-03 04:25:54 +05:30
#include <nonstd/optional>
class QuaZip;
2017-04-22 22:21:04 +05:30
namespace Flame
{
2018-07-15 18:21:05 +05:30
class FileResolvingTask;
}
2016-10-03 04:25:54 +05:30
2018-03-19 07:06:12 +05:30
class MULTIMC_LOGIC_EXPORT InstanceImportTask : public InstanceTask
2016-10-03 04:25:54 +05:30
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
2016-10-03 04:25:54 +05:30
public:
2018-07-15 18:21:05 +05:30
explicit InstanceImportTask(const QUrl sourceUrl);
2016-10-03 04:25:54 +05:30
protected:
2018-07-15 18:21:05 +05:30
//! Entry point for tasks.
virtual void executeTask() override;
2016-10-03 04:25:54 +05:30
private:
2018-07-15 18:21:05 +05:30
void processZipPack();
void processMultiMC();
void processFlame();
void processTechnic();
2016-10-03 04:25:54 +05:30
private slots:
2018-07-15 18:21:05 +05:30
void downloadSucceeded();
void downloadFailed(QString reason);
void downloadProgressChanged(qint64 current, qint64 total);
void extractFinished();
void extractAborted();
2016-10-03 04:25:54 +05:30
private: /* data */
2018-07-15 18:21:05 +05:30
NetJobPtr m_filesNetJob;
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 18:21:05 +05:30
enum class ModpackType{
Unknown,
MultiMC,
Flame,
Technic
2018-07-15 18:21:05 +05:30
} m_modpackType = ModpackType::Unknown;
2016-10-03 04:25:54 +05:30
};