// SPDX-License-Identifier: GPL-3.0-only /* * Prism Launcher - Minecraft Launcher * Copyright (c) 2025 Trial97 * * 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. * * 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #pragma once #include #include #include #include #include "archive/ArchiveWriter.h" #include "tasks/Task.h" namespace MMCZip { class ExportToZipTask : public Task { Q_OBJECT public: ExportToZipTask(QString outputPath, QDir dir, QFileInfoList files, QString destinationPrefix = "", bool followSymlinks = false) : m_outputPath(outputPath) , m_output(outputPath) , m_dir(dir) , m_files(files) , m_destinationPrefix(destinationPrefix) , m_followSymlinks(followSymlinks) { setAbortable(true); }; ExportToZipTask(QString outputPath, QString dir, QFileInfoList files, QString destinationPrefix = "", bool followSymlinks = false) : ExportToZipTask(outputPath, QDir(dir), files, destinationPrefix, followSymlinks) {}; virtual ~ExportToZipTask() = default; void setExcludeFiles(QStringList excludeFiles) { m_excludeFiles = excludeFiles; } void addExtraFile(QString fileName, QByteArray data) { m_extraFiles.insert(fileName, data); } using ZipResult = std::optional; protected: virtual void executeTask() override; bool abort() override; ZipResult exportZip(); void finish(); private: QString m_outputPath; ArchiveWriter m_output; QDir m_dir; QFileInfoList m_files; QString m_destinationPrefix; bool m_followSymlinks; QStringList m_excludeFiles; QHash m_extraFiles; QFuture m_buildZipFuture; QFutureWatcher m_buildZipWatcher; }; } // namespace MMCZip