Move skin requery logic into extension methods

This commit is contained in:
Dean Herbert 2021-03-15 12:47:58 +09:00
parent 900da7b891
commit 2bdffd1004
2 changed files with 18 additions and 3 deletions

View File

@ -1,21 +1,36 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic; using System.Collections.Generic;
using osu.Game.Beatmaps; using osu.Game.Beatmaps;
using osu.Game.Scoring; using osu.Game.Scoring;
using osu.Game.Skinning;
namespace osu.Game.Database namespace osu.Game.Database
{ {
/// <summary>
/// Extension methods which contain workarounds to make EFcore 5.x work with our existing (incorrect) thread safety.
/// The intention is to avoid blocking package updates while we consider the future of the database backend, with a potential backend switch imminent.
/// </summary>
public static class DatabaseWorkaroundExtensions public static class DatabaseWorkaroundExtensions
{ {
/// <summary>
/// Re-query the provided model to ensure it is in a sane state. This method requires explicit implementation per model type.
/// </summary>
/// <param name="model"></param>
/// <param name="contextFactory"></param>
public static void Requery(this IHasPrimaryKey model, IDatabaseContextFactory contextFactory) public static void Requery(this IHasPrimaryKey model, IDatabaseContextFactory contextFactory)
{ {
switch (model) switch (model)
{ {
case SkinInfo skinInfo:
requeryFiles(skinInfo.Files, contextFactory);
break;
case ScoreInfo scoreInfo: case ScoreInfo scoreInfo:
scoreInfo.Beatmap.BeatmapSet.Requery(contextFactory); scoreInfo.Beatmap.BeatmapSet.Requery(contextFactory);
scoreInfo.Files.RequeryFiles(contextFactory); requeryFiles(scoreInfo.Files, contextFactory);
break; break;
case BeatmapSetInfo beatmapSetInfo: case BeatmapSetInfo beatmapSetInfo:
@ -33,7 +48,7 @@ namespace osu.Game.Database
} }
} }
public static void RequeryFiles<T>(this List<T> files, IDatabaseContextFactory databaseContextFactory) where T : class, INamedFileInfo private static void requeryFiles<T>(List<T> files, IDatabaseContextFactory databaseContextFactory) where T : class, INamedFileInfo
{ {
var dbContext = databaseContextFactory.Get(); var dbContext = databaseContextFactory.Get();

View File

@ -144,7 +144,7 @@ namespace osu.Game.Skinning
protected override void PreImport(SkinInfo model) protected override void PreImport(SkinInfo model)
{ {
model.Files.Requery(ContextFactory); model.Requery(ContextFactory);
} }
/// <summary> /// <summary>