feat: make second metadata pass concurrent
Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
parent
58dc3e93d3
commit
47bdcb6050
@ -8,6 +8,8 @@
|
|||||||
#include "FileSystem.h"
|
#include "FileSystem.h"
|
||||||
#include "Json.h"
|
#include "Json.h"
|
||||||
|
|
||||||
|
#include "tasks/ConcurrentTask.h"
|
||||||
|
|
||||||
#include "minecraft/MinecraftInstance.h"
|
#include "minecraft/MinecraftInstance.h"
|
||||||
#include "minecraft/PackProfile.h"
|
#include "minecraft/PackProfile.h"
|
||||||
|
|
||||||
@ -39,7 +41,7 @@ ModUpdateDialog::ModUpdateDialog(QWidget* parent,
|
|||||||
, m_parent(parent)
|
, m_parent(parent)
|
||||||
, m_mod_model(mods)
|
, m_mod_model(mods)
|
||||||
, m_candidates(search_for)
|
, m_candidates(search_for)
|
||||||
, m_second_try_metadata(new SequentialTask())
|
, m_second_try_metadata(new ConcurrentTask())
|
||||||
, m_instance(instance)
|
, m_instance(instance)
|
||||||
{
|
{
|
||||||
ReviewMessageBox::setGeometry(0, 0, 800, 600);
|
ReviewMessageBox::setGeometry(0, 0, 800, 600);
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
class Mod;
|
class Mod;
|
||||||
class ModrinthCheckUpdate;
|
class ModrinthCheckUpdate;
|
||||||
class FlameCheckUpdate;
|
class FlameCheckUpdate;
|
||||||
|
class ConcurrentTask;
|
||||||
|
|
||||||
class ModUpdateDialog final : public ReviewMessageBox {
|
class ModUpdateDialog final : public ReviewMessageBox {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -49,7 +50,7 @@ class ModUpdateDialog final : public ReviewMessageBox {
|
|||||||
std::list<Mod*> m_modrinth_to_update;
|
std::list<Mod*> m_modrinth_to_update;
|
||||||
std::list<Mod*> m_flame_to_update;
|
std::list<Mod*> m_flame_to_update;
|
||||||
|
|
||||||
SequentialTask* m_second_try_metadata;
|
ConcurrentTask* m_second_try_metadata;
|
||||||
std::list<std::tuple<Mod*, QString>> m_failed_metadata;
|
std::list<std::tuple<Mod*, QString>> m_failed_metadata;
|
||||||
std::list<std::tuple<Mod*, QString, QUrl>> m_failed_check_update;
|
std::list<std::tuple<Mod*, QString, QUrl>> m_failed_check_update;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user