Skip to content

Commit

Permalink
GH-1929 do not allow non-current update task to affect the update pro…
Browse files Browse the repository at this point in the history
…cess

Errors are handled by setting a flag and failing on the next call to next()
  • Loading branch information
peterix committed Jul 21, 2017
1 parent c19f6d4 commit bea1b5d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions api/logic/minecraft/onesix/OneSixUpdate.cpp
Expand Up @@ -109,6 +109,11 @@ void OneSixUpdate::next()
emitFailed(tr("Aborted by user."));
return;
}
if(m_failed_out_of_order)
{
emitFailed(m_fail_reason);
return;
}
m_currentTask ++;
if(m_currentTask > 0)
{
Expand All @@ -127,6 +132,7 @@ void OneSixUpdate::next()
// if the task is already finished by the time we look at it, skip it
if(task->isFinished())
{
qCritical() << "OneSixUpdate: Skipping finished subtask" << m_currentTask << ":" << task.get();
next();
}
connect(task.get(), &Task::succeeded, this, &OneSixUpdate::subtaskSucceeded);
Expand All @@ -147,6 +153,13 @@ void OneSixUpdate::subtaskSucceeded()
qCritical() << "OneSixUpdate: Subtask" << sender() << "succeeded, but work was already done!";
return;
}
auto senderTask = QObject::sender();
auto currentTask = m_tasks[m_currentTask].get();
if(senderTask != currentTask)
{
qDebug() << "OneSixUpdate: Subtask" << sender() << "succeeded out of order.";
return;
}
next();
}

Expand All @@ -157,6 +170,15 @@ void OneSixUpdate::subtaskFailed(QString error)
qCritical() << "OneSixUpdate: Subtask" << sender() << "failed, but work was already done!";
return;
}
auto senderTask = QObject::sender();
auto currentTask = m_tasks[m_currentTask].get();
if(senderTask != currentTask)
{
qDebug() << "OneSixUpdate: Subtask" << sender() << "failed out of order.";
m_failed_out_of_order = true;
m_fail_reason = error;
return;
}
emitFailed(error);
}

Expand Down
2 changes: 2 additions & 0 deletions api/logic/minecraft/onesix/OneSixUpdate.h
Expand Up @@ -50,4 +50,6 @@ private
QString m_preFailure;
int m_currentTask = -1;
bool m_abort = false;
bool m_failed_out_of_order = false;
QString m_fail_reason;
};

0 comments on commit bea1b5d

Please sign in to comment.