1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game/Collections/BeatmapCollectionManager.cs

217 lines
7.1 KiB
C#
Raw Normal View History

2020-09-01 16:28:41 +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.
using System;
using System.Collections.Generic;
using System.IO;
2020-09-02 23:08:33 +08:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2020-09-02 23:08:33 +08:00
using osu.Framework;
2020-09-01 18:33:06 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Containers;
using osu.Framework.Logging;
2020-09-01 16:28:41 +08:00
using osu.Framework.Platform;
using osu.Game.Beatmaps;
using osu.Game.IO.Legacy;
namespace osu.Game.Collections
{
2020-09-05 02:55:43 +08:00
public class BeatmapCollectionManager : CompositeDrawable
2020-09-01 16:28:41 +08:00
{
/// <summary>
2020-09-07 20:08:48 +08:00
/// Database version in stable-compatible YYYYMMDD format.
/// </summary>
private const int database_version = 30000000;
2020-09-01 18:33:06 +08:00
private const string database_name = "collection.db";
2020-09-01 16:28:41 +08:00
2020-09-02 23:08:33 +08:00
public readonly BindableList<BeatmapCollection> Collections = new BindableList<BeatmapCollection>();
public bool SupportsImportFromStable => RuntimeInfo.IsDesktop;
[Resolved]
private GameHost host { get; set; }
2020-09-01 18:33:06 +08:00
[Resolved]
private BeatmapManager beatmaps { get; set; }
[BackgroundDependencyLoader]
private void load()
2020-09-01 16:28:41 +08:00
{
2020-09-01 18:33:06 +08:00
if (host.Storage.Exists(database_name))
{
using (var stream = host.Storage.GetStream(database_name))
2020-09-02 23:08:33 +08:00
importCollections(readCollections(stream));
2020-09-01 18:33:06 +08:00
}
2020-09-02 23:08:33 +08:00
foreach (var c in Collections)
c.Changed += backgroundSave;
2020-09-02 23:08:33 +08:00
Collections.CollectionChanged += (_, __) => backgroundSave();
2020-09-01 16:28:41 +08:00
}
/// <summary>
/// Set a storage with access to an osu-stable install for import purposes.
/// </summary>
public Func<Storage> GetStableStorage { private get; set; }
/// <summary>
/// This is a temporary method and will likely be replaced by a full-fledged (and more correctly placed) migration process in the future.
/// </summary>
2020-09-02 23:08:33 +08:00
public Task ImportFromStableAsync()
{
var stable = GetStableStorage?.Invoke();
if (stable == null)
{
Logger.Log("No osu!stable installation available!", LoggingTarget.Information, LogLevel.Error);
return Task.CompletedTask;
}
if (!stable.Exists(database_name))
{
// This handles situations like when the user does not have a collections.db file
Logger.Log($"No {database_name} available in osu!stable installation", LoggingTarget.Information, LogLevel.Error);
return Task.CompletedTask;
}
return Task.Run(() =>
{
var storage = GetStableStorage();
if (storage.Exists(database_name))
{
using (var stream = storage.GetStream(database_name))
{
var collection = readCollections(stream);
Schedule(() => importCollections(collection));
}
}
});
}
private void importCollections(List<BeatmapCollection> newCollections)
{
foreach (var newCol in newCollections)
{
var existing = Collections.FirstOrDefault(c => c.Name == newCol.Name);
if (existing == null)
2020-09-05 03:43:51 +08:00
Collections.Add(existing = new BeatmapCollection { Name = { Value = newCol.Name.Value } });
2020-09-02 23:08:33 +08:00
foreach (var newBeatmap in newCol.Beatmaps)
{
if (!existing.Beatmaps.Contains(newBeatmap))
existing.Beatmaps.Add(newBeatmap);
}
}
}
private List<BeatmapCollection> readCollections(Stream stream)
2020-09-01 16:28:41 +08:00
{
var result = new List<BeatmapCollection>();
try
{
using (var sr = new SerializationReader(stream))
{
sr.ReadInt32(); // Version
int collectionCount = sr.ReadInt32();
result.Capacity = collectionCount;
for (int i = 0; i < collectionCount; i++)
{
2020-09-05 03:43:51 +08:00
var collection = new BeatmapCollection { Name = { Value = sr.ReadString() } };
int mapCount = sr.ReadInt32();
for (int j = 0; j < mapCount; j++)
{
string checksum = sr.ReadString();
var beatmap = beatmaps.QueryBeatmap(b => b.MD5Hash == checksum);
if (beatmap != null)
collection.Beatmaps.Add(beatmap);
}
result.Add(collection);
}
}
}
catch (Exception e)
2020-09-01 16:28:41 +08:00
{
2020-09-02 22:47:42 +08:00
Logger.Error(e, "Failed to read collection database.");
}
2020-09-01 16:28:41 +08:00
return result;
}
2020-09-01 16:28:41 +08:00
private readonly object saveLock = new object();
private int lastSave;
private int saveFailures;
/// <summary>
/// Perform a save with debounce.
/// </summary>
private void backgroundSave()
{
var current = Interlocked.Increment(ref lastSave);
Task.Delay(100).ContinueWith(task =>
{
if (current != lastSave)
return;
if (!save())
backgroundSave();
});
}
private bool save()
{
lock (saveLock)
{
Interlocked.Increment(ref lastSave);
try
2020-09-01 16:28:41 +08:00
{
// This is NOT thread-safe!!
2020-09-01 16:28:41 +08:00
using (var sw = new SerializationWriter(host.Storage.GetStream(database_name, FileAccess.Write)))
2020-09-01 16:28:41 +08:00
{
sw.Write(database_version);
2020-09-02 23:08:33 +08:00
sw.Write(Collections.Count);
2020-09-01 16:28:41 +08:00
2020-09-02 23:08:33 +08:00
foreach (var c in Collections)
{
2020-09-05 03:43:51 +08:00
sw.Write(c.Name.Value);
sw.Write(c.Beatmaps.Count);
foreach (var b in c.Beatmaps)
sw.Write(b.MD5Hash);
}
2020-09-01 16:28:41 +08:00
}
2020-09-01 18:33:06 +08:00
2020-09-02 22:42:44 +08:00
if (saveFailures < 10)
saveFailures = 0;
return true;
}
catch (Exception e)
{
// Since this code is not thread-safe, we may run into random exceptions (such as collection enumeration or out of range indexing).
2020-09-02 22:42:44 +08:00
// Failures are thus only alerted if they exceed a threshold (once) to indicate "actual" errors having occurred.
if (++saveFailures == 10)
2020-09-02 22:47:42 +08:00
Logger.Error(e, "Failed to save collection database!");
2020-09-01 16:28:41 +08:00
}
return false;
}
2020-09-01 16:28:41 +08:00
}
2020-09-02 22:32:08 +08:00
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
save();
}
2020-09-01 16:28:41 +08:00
}
}