2019-01-24 16:43:03 +08:00
// 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.
2018-04-13 17:19:50 +08:00
using System ;
using System.Collections.Generic ;
using System.IO ;
using System.Linq ;
using System.Linq.Expressions ;
2019-05-28 17:59:21 +08:00
using System.Threading ;
2018-04-13 17:19:50 +08:00
using System.Threading.Tasks ;
using Microsoft.EntityFrameworkCore ;
using osu.Framework.Audio ;
2018-05-07 11:25:21 +08:00
using osu.Framework.Audio.Track ;
2018-04-13 17:19:50 +08:00
using osu.Framework.Extensions ;
2018-05-07 11:25:21 +08:00
using osu.Framework.Graphics.Textures ;
2018-04-13 17:19:50 +08:00
using osu.Framework.Logging ;
using osu.Framework.Platform ;
2019-05-28 17:59:21 +08:00
using osu.Framework.Threading ;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps.Formats ;
using osu.Game.Database ;
using osu.Game.IO.Archives ;
using osu.Game.Online.API ;
using osu.Game.Online.API.Requests ;
using osu.Game.Overlays.Notifications ;
using osu.Game.Rulesets ;
namespace osu.Game.Beatmaps
{
/// <summary>
/// Handles the storage and retrieval of Beatmaps/WorkingBeatmaps.
/// </summary>
public partial class BeatmapManager : ArchiveModelManager < BeatmapSetInfo , BeatmapSetFileInfo >
{
/// <summary>
/// Fired when a single difficulty has been hidden.
/// </summary>
public event Action < BeatmapInfo > BeatmapHidden ;
/// <summary>
/// Fired when a single difficulty has been restored.
/// </summary>
public event Action < BeatmapInfo > BeatmapRestored ;
/// <summary>
/// Fired when a beatmap download begins.
/// </summary>
public event Action < DownloadBeatmapSetRequest > BeatmapDownloadBegan ;
2018-07-03 21:43:42 +08:00
/// <summary>
/// Fired when a beatmap download is interrupted, due to user cancellation or other failures.
/// </summary>
public event Action < DownloadBeatmapSetRequest > BeatmapDownloadFailed ;
2018-04-13 17:19:50 +08:00
/// <summary>
/// A default representation of a WorkingBeatmap to use when no beatmap is available.
/// </summary>
2018-12-25 17:34:45 +08:00
public readonly WorkingBeatmap DefaultBeatmap ;
2018-04-13 17:19:50 +08:00
public override string [ ] HandledExtensions = > new [ ] { ".osz" } ;
2018-11-28 18:16:05 +08:00
protected override string [ ] HashableFileTypes = > new [ ] { ".osu" } ;
2018-08-31 17:28:53 +08:00
protected override string ImportFromStablePath = > "Songs" ;
2019-06-20 00:33:51 +08:00
protected override bool StableDirectoryBased = > true ;
2018-04-13 17:19:50 +08:00
private readonly RulesetStore rulesets ;
private readonly BeatmapStore beatmaps ;
2019-03-13 11:56:47 +08:00
private readonly IAPIProvider api ;
2018-04-13 17:19:50 +08:00
private readonly AudioManager audioManager ;
2019-01-25 10:50:52 +08:00
private readonly GameHost host ;
2019-01-25 10:41:44 +08:00
2018-04-13 17:19:50 +08:00
private readonly List < DownloadBeatmapSetRequest > currentDownloads = new List < DownloadBeatmapSetRequest > ( ) ;
2019-05-28 17:59:21 +08:00
private readonly BeatmapUpdateQueue updateQueue ;
2019-03-13 11:56:47 +08:00
public BeatmapManager ( Storage storage , IDatabaseContextFactory contextFactory , RulesetStore rulesets , IAPIProvider api , AudioManager audioManager , GameHost host = null ,
2018-12-25 17:34:45 +08:00
WorkingBeatmap defaultBeatmap = null )
2019-01-25 19:24:32 +08:00
: base ( storage , contextFactory , new BeatmapStore ( contextFactory ) , host )
2018-04-13 17:19:50 +08:00
{
this . rulesets = rulesets ;
this . api = api ;
this . audioManager = audioManager ;
2019-01-25 19:24:32 +08:00
this . host = host ;
2018-12-25 17:34:45 +08:00
DefaultBeatmap = defaultBeatmap ;
beatmaps = ( BeatmapStore ) ModelStore ;
beatmaps . BeatmapHidden + = b = > BeatmapHidden ? . Invoke ( b ) ;
beatmaps . BeatmapRestored + = b = > BeatmapRestored ? . Invoke ( b ) ;
2019-05-28 17:59:21 +08:00
updateQueue = new BeatmapUpdateQueue ( api ) ;
2018-04-13 17:19:50 +08:00
}
2019-06-12 16:08:50 +08:00
protected override Task Populate ( BeatmapSetInfo beatmapSet , ArchiveReader archive , CancellationToken cancellationToken = default )
2018-04-13 17:19:50 +08:00
{
2018-07-18 11:58:28 +08:00
if ( archive ! = null )
2018-07-19 12:41:09 +08:00
beatmapSet . Beatmaps = createBeatmapDifficulties ( archive ) ;
2018-04-13 17:19:50 +08:00
2018-07-19 12:41:09 +08:00
foreach ( BeatmapInfo b in beatmapSet . Beatmaps )
2018-06-08 14:59:45 +08:00
{
// remove metadata from difficulties where it matches the set
2018-07-19 12:41:09 +08:00
if ( beatmapSet . Metadata . Equals ( b . Metadata ) )
2018-04-13 17:19:50 +08:00
b . Metadata = null ;
2018-07-19 12:41:09 +08:00
b . BeatmapSet = beatmapSet ;
2018-04-13 17:19:50 +08:00
}
2019-03-11 17:13:33 +08:00
validateOnlineIds ( beatmapSet ) ;
2018-08-27 23:59:30 +08:00
2019-06-12 16:08:50 +08:00
return updateQueue . UpdateAsync ( beatmapSet , cancellationToken ) ;
2019-03-11 16:03:01 +08:00
}
2018-08-27 23:59:30 +08:00
2019-03-11 16:03:01 +08:00
protected override void PreImport ( BeatmapSetInfo beatmapSet )
{
2019-03-12 13:40:13 +08:00
if ( beatmapSet . Beatmaps . Any ( b = > b . BaseDifficulty = = null ) )
throw new InvalidOperationException ( $"Cannot import {nameof(BeatmapInfo)} with null {nameof(BeatmapInfo.BaseDifficulty)}." ) ;
2018-06-08 14:59:45 +08:00
// check if a set already exists with the same online id, delete if it does.
2018-07-19 12:41:09 +08:00
if ( beatmapSet . OnlineBeatmapSetID ! = null )
2018-04-13 17:19:50 +08:00
{
2018-07-19 12:41:09 +08:00
var existingOnlineId = beatmaps . ConsumableItems . FirstOrDefault ( b = > b . OnlineBeatmapSetID = = beatmapSet . OnlineBeatmapSetID ) ;
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
if ( existingOnlineId ! = null )
{
Delete ( existingOnlineId ) ;
beatmaps . PurgeDeletable ( s = > s . ID = = existingOnlineId . ID ) ;
2019-06-10 18:34:32 +08:00
LogForModel ( beatmapSet , $"Found existing beatmap set with same OnlineBeatmapSetID ({beatmapSet.OnlineBeatmapSetID}). It has been purged." ) ;
2018-04-13 17:19:50 +08:00
}
}
2018-07-19 12:41:09 +08:00
}
2019-03-11 17:13:33 +08:00
private void validateOnlineIds ( BeatmapSetInfo beatmapSet )
2018-07-19 12:41:09 +08:00
{
2019-03-11 17:13:33 +08:00
var beatmapIds = beatmapSet . Beatmaps . Where ( b = > b . OnlineBeatmapID . HasValue ) . Select ( b = > b . OnlineBeatmapID ) . ToList ( ) ;
2018-07-19 12:41:09 +08:00
2019-03-11 17:13:33 +08:00
// ensure all IDs are unique
if ( beatmapIds . GroupBy ( b = > b ) . Any ( g = > g . Count ( ) > 1 ) )
{
resetIds ( ) ;
return ;
}
// find any existing beatmaps in the database that have matching online ids
var existingBeatmaps = QueryBeatmaps ( b = > beatmapIds . Contains ( b . OnlineBeatmapID ) ) . ToList ( ) ;
if ( existingBeatmaps . Count > 0 )
{
// reset the import ids (to force a re-fetch) *unless* they match the candidate CheckForExisting set.
// we can ignore the case where the new ids are contained by the CheckForExisting set as it will either be used (import skipped) or deleted.
var existing = CheckForExisting ( beatmapSet ) ;
if ( existing = = null | | existingBeatmaps . Any ( b = > ! existing . Beatmaps . Contains ( b ) ) )
resetIds ( ) ;
}
void resetIds ( ) = > beatmapSet . Beatmaps . ForEach ( b = > b . OnlineBeatmapID = null ) ;
2018-06-08 14:59:45 +08:00
}
2018-04-13 17:19:50 +08:00
/// <summary>
/// Downloads a beatmap.
/// This will post notifications tracking progress.
/// </summary>
/// <param name="beatmapSetInfo">The <see cref="BeatmapSetInfo"/> to be downloaded.</param>
/// <param name="noVideo">Whether the beatmap should be downloaded without video. Defaults to false.</param>
2018-10-18 20:51:05 +08:00
/// <returns>Downloading can happen</returns>
public bool Download ( BeatmapSetInfo beatmapSetInfo , bool noVideo = false )
2018-04-13 17:19:50 +08:00
{
var existing = GetExistingDownload ( beatmapSetInfo ) ;
2018-10-18 20:51:05 +08:00
if ( existing ! = null | | api = = null ) return false ;
2018-04-13 17:19:50 +08:00
2018-07-16 12:00:21 +08:00
var downloadNotification = new DownloadNotification
2018-04-13 17:19:50 +08:00
{
2019-02-25 17:42:08 +08:00
Text = $"Downloading {beatmapSetInfo}" ,
2018-04-13 17:19:50 +08:00
} ;
var request = new DownloadBeatmapSetRequest ( beatmapSetInfo , noVideo ) ;
request . DownloadProgressed + = progress = >
{
downloadNotification . State = ProgressNotificationState . Active ;
downloadNotification . Progress = progress ;
} ;
2019-01-29 17:34:10 +08:00
request . Success + = filename = >
2018-04-13 17:19:50 +08:00
{
2019-05-28 17:59:21 +08:00
Task . Factory . StartNew ( async ( ) = >
2018-04-13 17:19:50 +08:00
{
// This gets scheduled back to the update thread, but we want the import to run in the background.
2019-05-28 17:59:21 +08:00
await Import ( downloadNotification , filename ) ;
2018-04-13 17:19:50 +08:00
currentDownloads . Remove ( request ) ;
} , TaskCreationOptions . LongRunning ) ;
} ;
request . Failure + = error = >
{
2018-07-03 21:43:42 +08:00
BeatmapDownloadFailed ? . Invoke ( request ) ;
2018-04-13 17:19:50 +08:00
if ( error is OperationCanceledException ) return ;
2018-06-03 12:01:52 +08:00
downloadNotification . State = ProgressNotificationState . Cancelled ;
2018-04-13 17:19:50 +08:00
Logger . Error ( error , "Beatmap download failed!" ) ;
currentDownloads . Remove ( request ) ;
} ;
downloadNotification . CancelRequested + = ( ) = >
{
request . Cancel ( ) ;
currentDownloads . Remove ( request ) ;
downloadNotification . State = ProgressNotificationState . Cancelled ;
return true ;
} ;
currentDownloads . Add ( request ) ;
PostNotification ? . Invoke ( downloadNotification ) ;
// don't run in the main api queue as this is a long-running task.
2019-02-23 23:33:11 +08:00
Task . Factory . StartNew ( ( ) = >
{
try
{
request . Perform ( api ) ;
}
2019-04-25 16:36:17 +08:00
catch
2019-02-23 23:33:11 +08:00
{
// no need to handle here as exceptions will filter down to request.Failure above.
}
} , TaskCreationOptions . LongRunning ) ;
2018-04-13 17:19:50 +08:00
BeatmapDownloadBegan ? . Invoke ( request ) ;
2018-10-18 20:51:05 +08:00
return true ;
2018-04-13 17:19:50 +08:00
}
/// <summary>
/// Get an existing download request if it exists.
/// </summary>
/// <param name="beatmap">The <see cref="BeatmapSetInfo"/> whose download request is wanted.</param>
/// <returns>The <see cref="DownloadBeatmapSetRequest"/> object if it exists, or null.</returns>
public DownloadBeatmapSetRequest GetExistingDownload ( BeatmapSetInfo beatmap ) = > currentDownloads . Find ( d = > d . BeatmapSet . OnlineBeatmapSetID = = beatmap . OnlineBeatmapSetID ) ;
/// <summary>
/// Delete a beatmap difficulty.
/// </summary>
/// <param name="beatmap">The beatmap difficulty to hide.</param>
public void Hide ( BeatmapInfo beatmap ) = > beatmaps . Hide ( beatmap ) ;
/// <summary>
/// Restore a beatmap difficulty.
/// </summary>
/// <param name="beatmap">The beatmap difficulty to restore.</param>
public void Restore ( BeatmapInfo beatmap ) = > beatmaps . Restore ( beatmap ) ;
/// <summary>
/// Retrieve a <see cref="WorkingBeatmap"/> instance for the provided <see cref="BeatmapInfo"/>
/// </summary>
/// <param name="beatmapInfo">The beatmap to lookup.</param>
2018-12-05 00:45:32 +08:00
/// <param name="previous">The currently loaded <see cref="WorkingBeatmap"/>. Allows for optimisation where elements are shared with the new beatmap. May be returned if beatmapInfo requested matches</param>
2018-04-13 17:19:50 +08:00
/// <returns>A <see cref="WorkingBeatmap"/> instance correlating to the provided <see cref="BeatmapInfo"/>.</returns>
public WorkingBeatmap GetWorkingBeatmap ( BeatmapInfo beatmapInfo , WorkingBeatmap previous = null )
{
2018-12-05 01:12:15 +08:00
if ( beatmapInfo ? . ID > 0 & & previous ! = null & & previous . BeatmapInfo ? . ID = = beatmapInfo . ID )
2018-12-05 00:45:32 +08:00
return previous ;
2018-04-13 17:19:50 +08:00
if ( beatmapInfo ? . BeatmapSet = = null | | beatmapInfo = = DefaultBeatmap ? . BeatmapInfo )
return DefaultBeatmap ;
if ( beatmapInfo . Metadata = = null )
beatmapInfo . Metadata = beatmapInfo . BeatmapSet . Metadata ;
2019-01-25 11:08:31 +08:00
WorkingBeatmap working = new BeatmapManagerWorkingBeatmap ( Files . Store , new LargeTextureStore ( host ? . CreateTextureLoaderStore ( Files . Store ) ) , beatmapInfo , audioManager ) ;
2018-04-13 17:19:50 +08:00
previous ? . TransferTo ( working ) ;
return working ;
}
/// <summary>
/// Perform a lookup query on available <see cref="BeatmapSetInfo"/>s.
/// </summary>
/// <param name="query">The query.</param>
/// <returns>The first result for the provided query, or null if no results were found.</returns>
public BeatmapSetInfo QueryBeatmapSet ( Expression < Func < BeatmapSetInfo , bool > > query ) = > beatmaps . ConsumableItems . AsNoTracking ( ) . FirstOrDefault ( query ) ;
2019-03-11 16:03:01 +08:00
protected override bool CanUndelete ( BeatmapSetInfo existing , BeatmapSetInfo import )
{
if ( ! base . CanUndelete ( existing , import ) )
return false ;
2019-03-11 17:13:33 +08:00
var existingIds = existing . Beatmaps . Select ( b = > b . OnlineBeatmapID ) . OrderBy ( i = > i ) ;
var importIds = import . Beatmaps . Select ( b = > b . OnlineBeatmapID ) . OrderBy ( i = > i ) ;
2019-03-11 16:03:01 +08:00
// force re-import if we are not in a sane state.
2019-03-11 17:13:33 +08:00
return existing . OnlineBeatmapSetID = = import . OnlineBeatmapSetID & & existingIds . SequenceEqual ( importIds ) ;
2019-03-11 16:03:01 +08:00
}
2018-04-13 17:19:50 +08:00
/// <summary>
/// Returns a list of all usable <see cref="BeatmapSetInfo"/>s.
/// </summary>
/// <returns>A list of available <see cref="BeatmapSetInfo"/>.</returns>
2018-05-30 15:15:00 +08:00
public List < BeatmapSetInfo > GetAllUsableBeatmapSets ( ) = > GetAllUsableBeatmapSetsEnumerable ( ) . ToList ( ) ;
/// <summary>
/// Returns a list of all usable <see cref="BeatmapSetInfo"/>s.
/// </summary>
/// <returns>A list of available <see cref="BeatmapSetInfo"/>.</returns>
public IQueryable < BeatmapSetInfo > GetAllUsableBeatmapSetsEnumerable ( ) = > beatmaps . ConsumableItems . Where ( s = > ! s . DeletePending & & ! s . Protected ) ;
2018-04-13 17:19:50 +08:00
/// <summary>
/// Perform a lookup query on available <see cref="BeatmapSetInfo"/>s.
/// </summary>
/// <param name="query">The query.</param>
/// <returns>Results from the provided query.</returns>
public IEnumerable < BeatmapSetInfo > QueryBeatmapSets ( Expression < Func < BeatmapSetInfo , bool > > query ) = > beatmaps . ConsumableItems . AsNoTracking ( ) . Where ( query ) ;
/// <summary>
/// Perform a lookup query on available <see cref="BeatmapInfo"/>s.
/// </summary>
/// <param name="query">The query.</param>
/// <returns>The first result for the provided query, or null if no results were found.</returns>
public BeatmapInfo QueryBeatmap ( Expression < Func < BeatmapInfo , bool > > query ) = > beatmaps . Beatmaps . AsNoTracking ( ) . FirstOrDefault ( query ) ;
/// <summary>
/// Perform a lookup query on available <see cref="BeatmapInfo"/>s.
/// </summary>
/// <param name="query">The query.</param>
/// <returns>Results from the provided query.</returns>
2018-07-19 12:41:09 +08:00
public IQueryable < BeatmapInfo > QueryBeatmaps ( Expression < Func < BeatmapInfo , bool > > query ) = > beatmaps . Beatmaps . AsNoTracking ( ) . Where ( query ) ;
2018-04-13 17:19:50 +08:00
2019-06-12 19:41:02 +08:00
protected override string HumanisedModelName = > "beatmap" ;
2018-06-08 11:46:34 +08:00
protected override BeatmapSetInfo CreateModel ( ArchiveReader reader )
2018-04-13 17:19:50 +08:00
{
// let's make sure there are actually .osu files to import.
string mapName = reader . Filenames . FirstOrDefault ( f = > f . EndsWith ( ".osu" ) ) ;
2019-04-01 11:16:05 +08:00
2018-08-22 14:42:43 +08:00
if ( string . IsNullOrEmpty ( mapName ) )
2018-08-23 09:56:52 +08:00
{
2018-08-25 13:50:46 +08:00
Logger . Log ( $"No beatmap files found in the beatmap archive ({reader.Name})." , LoggingTarget . Database ) ;
2018-08-24 16:57:39 +08:00
return null ;
2018-08-23 09:56:52 +08:00
}
2018-04-13 17:19:50 +08:00
2018-06-08 11:46:34 +08:00
Beatmap beatmap ;
2018-04-13 17:19:50 +08:00
using ( var stream = new StreamReader ( reader . GetStream ( mapName ) ) )
2018-06-08 11:46:34 +08:00
beatmap = Decoder . GetDecoder < Beatmap > ( stream ) . Decode ( stream ) ;
2018-04-13 17:19:50 +08:00
return new BeatmapSetInfo
{
2018-06-08 14:59:45 +08:00
OnlineBeatmapSetID = beatmap . BeatmapInfo . BeatmapSet ? . OnlineBeatmapSetID ,
2018-04-13 17:19:50 +08:00
Beatmaps = new List < BeatmapInfo > ( ) ,
2018-10-03 12:28:00 +08:00
Metadata = beatmap . Metadata ,
2019-06-05 17:17:43 +08:00
DateAdded = DateTimeOffset . UtcNow
2018-04-13 17:19:50 +08:00
} ;
}
/// <summary>
/// Create all required <see cref="BeatmapInfo"/>s for the provided archive.
/// </summary>
2018-06-08 14:26:27 +08:00
private List < BeatmapInfo > createBeatmapDifficulties ( ArchiveReader reader )
2018-04-13 17:19:50 +08:00
{
var beatmapInfos = new List < BeatmapInfo > ( ) ;
foreach ( var name in reader . Filenames . Where ( f = > f . EndsWith ( ".osu" ) ) )
{
using ( var raw = reader . GetStream ( name ) )
using ( var ms = new MemoryStream ( ) ) //we need a memory stream so we can seek and shit
using ( var sr = new StreamReader ( ms ) )
{
raw . CopyTo ( ms ) ;
ms . Position = 0 ;
var decoder = Decoder . GetDecoder < Beatmap > ( sr ) ;
2018-04-19 19:44:38 +08:00
IBeatmap beatmap = decoder . Decode ( sr ) ;
2018-04-13 17:19:50 +08:00
beatmap . BeatmapInfo . Path = name ;
beatmap . BeatmapInfo . Hash = ms . ComputeSHA2Hash ( ) ;
beatmap . BeatmapInfo . MD5Hash = ms . ComputeMD5Hash ( ) ;
2018-07-19 12:41:09 +08:00
var ruleset = rulesets . GetRuleset ( beatmap . BeatmapInfo . RulesetID ) ;
2018-04-13 17:19:50 +08:00
beatmap . BeatmapInfo . Ruleset = ruleset ;
2018-07-19 12:41:09 +08:00
// TODO: this should be done in a better place once we actually need to dynamically update it.
beatmap . BeatmapInfo . StarDifficulty = ruleset ? . CreateInstance ( ) . CreateDifficultyCalculator ( new DummyConversionBeatmap ( beatmap ) ) . Calculate ( ) . StarRating ? ? 0 ;
2018-04-13 17:19:50 +08:00
beatmapInfos . Add ( beatmap . BeatmapInfo ) ;
}
}
return beatmapInfos ;
}
2018-05-07 11:25:21 +08:00
/// <summary>
/// A dummy WorkingBeatmap for the purpose of retrieving a beatmap for star difficulty calculation.
/// </summary>
private class DummyConversionBeatmap : WorkingBeatmap
{
private readonly IBeatmap beatmap ;
public DummyConversionBeatmap ( IBeatmap beatmap )
2019-05-31 13:40:53 +08:00
: base ( beatmap . BeatmapInfo , null )
2018-05-07 11:25:21 +08:00
{
this . beatmap = beatmap ;
}
protected override IBeatmap GetBeatmap ( ) = > beatmap ;
protected override Texture GetBackground ( ) = > null ;
protected override Track GetTrack ( ) = > null ;
}
2018-07-16 12:00:21 +08:00
private class DownloadNotification : ProgressNotification
{
public override bool IsImportant = > false ;
protected override Notification CreateCompletionNotification ( ) = > new SilencedProgressCompletionNotification
{
Activated = CompletionClickAction ,
Text = CompletionText
} ;
private class SilencedProgressCompletionNotification : ProgressCompletionNotification
{
public override bool IsImportant = > false ;
}
}
2019-05-28 17:59:21 +08:00
private class BeatmapUpdateQueue
{
private readonly IAPIProvider api ;
2019-06-10 12:52:09 +08:00
private const int update_queue_request_concurrency = 4 ;
2019-06-11 23:35:13 +08:00
private readonly ThreadedTaskScheduler updateScheduler = new ThreadedTaskScheduler ( update_queue_request_concurrency , nameof ( BeatmapUpdateQueue ) ) ;
2019-05-28 17:59:21 +08:00
public BeatmapUpdateQueue ( IAPIProvider api )
{
this . api = api ;
}
2019-06-12 16:08:50 +08:00
public Task UpdateAsync ( BeatmapSetInfo beatmapSet , CancellationToken cancellationToken )
2019-05-28 17:59:21 +08:00
{
if ( api ? . State ! = APIState . Online )
2019-06-12 16:08:50 +08:00
return Task . CompletedTask ;
2019-05-28 17:59:21 +08:00
2019-06-10 18:34:32 +08:00
LogForModel ( beatmapSet , "Performing online lookups..." ) ;
2019-06-12 16:08:50 +08:00
return Task . WhenAll ( beatmapSet . Beatmaps . Select ( b = > UpdateAsync ( beatmapSet , b , cancellationToken ) ) . ToArray ( ) ) ;
2019-06-10 18:34:32 +08:00
}
// todo: expose this when we need to do individual difficulty lookups.
2019-06-12 16:00:27 +08:00
protected Task UpdateAsync ( BeatmapSetInfo beatmapSet , BeatmapInfo beatmap , CancellationToken cancellationToken )
= > Task . Factory . StartNew ( ( ) = > update ( beatmapSet , beatmap ) , cancellationToken , TaskCreationOptions . HideScheduler , updateScheduler ) ;
2019-06-10 18:34:32 +08:00
2019-06-12 16:00:27 +08:00
private void update ( BeatmapSetInfo set , BeatmapInfo beatmap )
2019-06-10 18:34:32 +08:00
{
if ( api ? . State ! = APIState . Online )
return ;
2019-05-28 17:59:21 +08:00
var req = new GetBeatmapRequest ( beatmap ) ;
req . Success + = res = >
{
2019-06-10 18:34:32 +08:00
LogForModel ( set , $"Online retrieval mapped {beatmap} to {res.OnlineBeatmapSetID} / {res.OnlineBeatmapID}." ) ;
2019-05-28 17:59:21 +08:00
beatmap . Status = res . Status ;
beatmap . BeatmapSet . Status = res . BeatmapSet . Status ;
beatmap . BeatmapSet . OnlineBeatmapSetID = res . OnlineBeatmapSetID ;
beatmap . OnlineBeatmapID = res . OnlineBeatmapID ;
} ;
2019-06-10 18:34:32 +08:00
req . Failure + = e = > { LogForModel ( set , $"Online retrieval failed for {beatmap}" , e ) ; } ;
2019-05-28 17:59:21 +08:00
2019-06-10 12:19:58 +08:00
// intentionally blocking to limit web request concurrency
2019-05-28 17:59:21 +08:00
req . Perform ( api ) ;
}
}
2018-04-13 17:19:50 +08:00
}
}