simplify modrinth export
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
parent
455c495338
commit
78ee63af38
@ -55,20 +55,11 @@ void ModrinthPackExportTask::executeTask()
|
|||||||
|
|
||||||
bool ModrinthPackExportTask::abort()
|
bool ModrinthPackExportTask::abort()
|
||||||
{
|
{
|
||||||
if (task != nullptr) {
|
if (task) {
|
||||||
task->abort();
|
task->abort();
|
||||||
task = nullptr;
|
|
||||||
emitAborted();
|
emitAborted();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (buildZipFuture.isRunning()) {
|
|
||||||
buildZipFuture.cancel();
|
|
||||||
// NOTE: Here we don't do `emitAborted()` because it will be done when `buildZipFuture` actually cancels, which may not occur
|
|
||||||
// immediately.
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -205,63 +196,40 @@ void ModrinthPackExportTask::buildZip()
|
|||||||
{
|
{
|
||||||
setStatus(tr("Adding files..."));
|
setStatus(tr("Adding files..."));
|
||||||
|
|
||||||
buildZipFuture = QtConcurrent::run(QThreadPool::globalInstance(), [this]() {
|
auto zipTask = makeShared<MMCZip::ExportToZipTask>(output, gameRoot, files, "overrides/", true);
|
||||||
QuaZip zip(output);
|
zipTask->addExtraFile("modrinth.index.json", generateIndex());
|
||||||
if (!zip.open(QuaZip::mdCreate)) {
|
|
||||||
QFile::remove(output);
|
|
||||||
return BuildZipResult(tr("Could not create file"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (buildZipFuture.isCanceled())
|
zipTask->setExcludeFiles(resolvedFiles.keys());
|
||||||
return BuildZipResult();
|
|
||||||
|
|
||||||
QuaZipFile indexFile(&zip);
|
auto progressStep = std::make_shared<TaskStepProgress>();
|
||||||
if (!indexFile.open(QIODevice::WriteOnly, QuaZipNewInfo("modrinth.index.json"))) {
|
connect(zipTask.get(), &Task::finished, this, [this, progressStep] {
|
||||||
QFile::remove(output);
|
progressStep->state = TaskStepState::Succeeded;
|
||||||
return BuildZipResult(tr("Could not create index"));
|
stepProgress(*progressStep);
|
||||||
}
|
|
||||||
indexFile.write(generateIndex());
|
|
||||||
|
|
||||||
size_t progress = 0;
|
|
||||||
for (const QFileInfo& file : files) {
|
|
||||||
if (buildZipFuture.isCanceled()) {
|
|
||||||
QFile::remove(output);
|
|
||||||
return BuildZipResult();
|
|
||||||
}
|
|
||||||
|
|
||||||
setProgress(progress, files.length());
|
|
||||||
const QString relative = gameRoot.relativeFilePath(file.absoluteFilePath());
|
|
||||||
if (!resolvedFiles.contains(relative) && !JlCompress::compressFile(&zip, file.absoluteFilePath(), "overrides/" + relative)) {
|
|
||||||
QFile::remove(output);
|
|
||||||
return BuildZipResult(tr("Could not read and compress %1").arg(relative));
|
|
||||||
}
|
|
||||||
progress++;
|
|
||||||
}
|
|
||||||
|
|
||||||
zip.close();
|
|
||||||
|
|
||||||
if (zip.getZipError() != 0) {
|
|
||||||
QFile::remove(output);
|
|
||||||
return BuildZipResult(tr("A zip error occurred"));
|
|
||||||
}
|
|
||||||
|
|
||||||
return BuildZipResult();
|
|
||||||
});
|
});
|
||||||
connect(&buildZipWatcher, &QFutureWatcher<BuildZipResult>::finished, this, &ModrinthPackExportTask::finish);
|
|
||||||
buildZipWatcher.setFuture(buildZipFuture);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ModrinthPackExportTask::finish()
|
connect(zipTask.get(), &Task::succeeded, this, &ModrinthPackExportTask::emitSucceeded);
|
||||||
{
|
connect(zipTask.get(), &Task::aborted, this, [this]() {
|
||||||
if (buildZipFuture.isCanceled())
|
QFile::remove(output);
|
||||||
emitAborted();
|
emitAborted();
|
||||||
else {
|
});
|
||||||
const BuildZipResult result = buildZipFuture.result();
|
connect(zipTask.get(), &Task::failed, this, [this, progressStep](QString reason) {
|
||||||
if (result.has_value())
|
progressStep->state = TaskStepState::Failed;
|
||||||
emitFailed(result.value());
|
stepProgress(*progressStep);
|
||||||
else
|
QFile::remove(output);
|
||||||
emitSucceeded();
|
emitFailed(reason);
|
||||||
}
|
});
|
||||||
|
connect(zipTask.get(), &Task::stepProgress, this, &ModrinthPackExportTask::propogateStepProgress);
|
||||||
|
|
||||||
|
connect(zipTask.get(), &Task::progress, this, [this, progressStep](qint64 current, qint64 total) {
|
||||||
|
progressStep->update(current, total);
|
||||||
|
stepProgress(*progressStep);
|
||||||
|
});
|
||||||
|
connect(zipTask.get(), &Task::status, this, [this, progressStep](QString status) {
|
||||||
|
progressStep->status = status;
|
||||||
|
stepProgress(*progressStep);
|
||||||
|
});
|
||||||
|
task.reset(zipTask);
|
||||||
|
zipTask->start();
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray ModrinthPackExportTask::generateIndex()
|
QByteArray ModrinthPackExportTask::generateIndex()
|
||||||
|
@ -56,22 +56,17 @@ class ModrinthPackExportTask : public Task {
|
|||||||
const QString output;
|
const QString output;
|
||||||
const MMCZip::FilterFunction filter;
|
const MMCZip::FilterFunction filter;
|
||||||
|
|
||||||
typedef std::optional<QString> BuildZipResult;
|
|
||||||
|
|
||||||
ModrinthAPI api;
|
ModrinthAPI api;
|
||||||
QFileInfoList files;
|
QFileInfoList files;
|
||||||
QMap<QString, QString> pendingHashes;
|
QMap<QString, QString> pendingHashes;
|
||||||
QMap<QString, ResolvedFile> resolvedFiles;
|
QMap<QString, ResolvedFile> resolvedFiles;
|
||||||
Task::Ptr task;
|
Task::Ptr task;
|
||||||
QFuture<BuildZipResult> buildZipFuture;
|
|
||||||
QFutureWatcher<BuildZipResult> buildZipWatcher;
|
|
||||||
|
|
||||||
void collectFiles();
|
void collectFiles();
|
||||||
void collectHashes();
|
void collectHashes();
|
||||||
void makeApiRequest();
|
void makeApiRequest();
|
||||||
void parseApiResponse(const std::shared_ptr<QByteArray> response);
|
void parseApiResponse(const std::shared_ptr<QByteArray> response);
|
||||||
void buildZip();
|
void buildZip();
|
||||||
void finish();
|
|
||||||
|
|
||||||
QByteArray generateIndex();
|
QByteArray generateIndex();
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user