Move task to another thread
I don't know whether this is the prefered method. Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
parent
f28a7b9d08
commit
adcdf28d64
@ -17,6 +17,7 @@
|
||||
*/
|
||||
|
||||
#include "ModrinthPackExportTask.h"
|
||||
#include <qtconcurrentrun.h>
|
||||
#include <QFileInfoList>
|
||||
#include <QMessageBox>
|
||||
#include "MMCZip.h"
|
||||
@ -34,6 +35,7 @@ ModrinthPackExportTask::ModrinthPackExportTask(const QString& name,
|
||||
|
||||
void ModrinthPackExportTask::executeTask()
|
||||
{
|
||||
QtConcurrent::run(QThreadPool::globalInstance(), [this] {
|
||||
QFileInfoList files;
|
||||
if (!MMCZip::collectFileListRecursively(instance->gameRoot(), nullptr, &files, filter)) {
|
||||
emitFailed(tr("Could not collect list of files"));
|
||||
@ -85,6 +87,7 @@ void ModrinthPackExportTask::executeTask()
|
||||
}
|
||||
|
||||
emitSucceeded();
|
||||
});
|
||||
}
|
||||
|
||||
QByteArray ModrinthPackExportTask::generateIndex()
|
||||
|
@ -56,14 +56,7 @@ ExportMrPackDialog::~ExportMrPackDialog()
|
||||
|
||||
void ExportMrPackDialog::done(int result)
|
||||
{
|
||||
if (result == Accepted)
|
||||
runExport();
|
||||
|
||||
QDialog::done(result);
|
||||
}
|
||||
|
||||
void ExportMrPackDialog::runExport()
|
||||
{
|
||||
if (result == Accepted) {
|
||||
const QString filename = FS::RemoveInvalidFilenameChars(ui->name->text());
|
||||
const QString output =
|
||||
QFileDialog::getSaveFileName(this, tr("Export %1").arg(ui->name->text()), FS::PathCombine(QDir::homePath(), filename + ".mrpack"),
|
||||
@ -79,3 +72,6 @@ void ExportMrPackDialog::runExport()
|
||||
progress.setSkipButton(true, tr("Abort"));
|
||||
progress.execWithTask(&task);
|
||||
}
|
||||
|
||||
QDialog::done(result);
|
||||
}
|
@ -39,6 +39,4 @@ class ExportMrPackDialog : public QDialog {
|
||||
const InstancePtr instance;
|
||||
Ui::ExportMrPackDialog* ui;
|
||||
PackIgnoreProxy* proxy;
|
||||
|
||||
void runExport();
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user