1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00

Merge pull request #20136 from smoogipoo/fix-cancellation-perf

Improve performance when cancelling import with debugger attached
This commit is contained in:
Dean Herbert 2022-09-05 22:03:50 +09:00 committed by GitHub
commit 6296c971f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,47 +108,42 @@ namespace osu.Game.Database
bool isBatchImport = tasks.Length >= minimum_items_considered_batch_import; bool isBatchImport = tasks.Length >= minimum_items_considered_batch_import;
try await Task.WhenAll(tasks.Select(async task =>
{ {
await Task.WhenAll(tasks.Select(async task => if (notification.CancellationToken.IsCancellationRequested)
return;
try
{ {
notification.CancellationToken.ThrowIfCancellationRequested(); var model = await Import(task, isBatchImport, notification.CancellationToken).ConfigureAwait(false);
try lock (imported)
{ {
var model = await Import(task, isBatchImport, notification.CancellationToken).ConfigureAwait(false); if (model != null)
imported.Add(model);
current++;
lock (imported) notification.Text = $"Imported {current} of {tasks.Length} {HumanisedModelName}s";
{ notification.Progress = (float)current / tasks.Length;
if (model != null) }
imported.Add(model); }
current++; catch (OperationCanceledException)
{
}
catch (Exception e)
{
Logger.Error(e, $@"Could not import ({task})", LoggingTarget.Database);
}
})).ConfigureAwait(false);
notification.Text = $"Imported {current} of {tasks.Length} {HumanisedModelName}s"; if (imported.Count == 0)
notification.Progress = (float)current / tasks.Length;
}
}
catch (TaskCanceledException)
{
throw;
}
catch (Exception e)
{
Logger.Error(e, $@"Could not import ({task})", LoggingTarget.Database);
}
})).ConfigureAwait(false);
}
catch (OperationCanceledException)
{ {
if (imported.Count == 0) if (notification.CancellationToken.IsCancellationRequested)
{ {
notification.State = ProgressNotificationState.Cancelled; notification.State = ProgressNotificationState.Cancelled;
return imported; return imported;
} }
}
if (imported.Count == 0)
{
notification.Text = $"{HumanisedModelName.Humanize(LetterCasing.Title)} import failed!"; notification.Text = $"{HumanisedModelName.Humanize(LetterCasing.Title)} import failed!";
notification.State = ProgressNotificationState.Cancelled; notification.State = ProgressNotificationState.Cancelled;
} }