1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game/Database/LegacyModelExporter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

143 lines
6.0 KiB
C#
Raw Normal View History

2022-11-17 22:38:24 +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;
2022-11-19 00:02:35 +08:00
using System.IO;
2022-11-17 22:38:24 +08:00
using System.Linq;
using System.Threading;
2022-11-17 22:38:24 +08:00
using System.Threading.Tasks;
2022-11-21 18:00:10 +08:00
using osu.Framework.Logging;
2022-11-17 22:38:24 +08:00
using osu.Framework.Platform;
using osu.Game.Extensions;
using osu.Game.Overlays.Notifications;
using osu.Game.Utils;
2022-11-17 22:38:24 +08:00
using Realms;
namespace osu.Game.Database
{
/// <summary>
/// A class which handles exporting legacy user data of a single type from osu-stable.
/// </summary>
public abstract class LegacyModelExporter<TModel>
where TModel : RealmObject, IHasNamedFiles, IHasGuidPrimaryKey
2022-11-17 22:38:24 +08:00
{
/// <summary>
/// The file extension for exports (including the leading '.').
/// </summary>
protected abstract string FileExtension { get; }
protected Storage UserFileStorage;
private readonly Storage exportStorage;
protected virtual string GetFilename(TModel item) => item.GetDisplayString();
2022-11-17 22:38:24 +08:00
private readonly RealmAccess realmAccess;
2022-11-17 22:38:24 +08:00
public Action<Notification>? PostNotification { get; set; }
/// <summary>
/// Construct exporter.
/// Create a new exporter for each export, otherwise it will cause confusing notifications.
/// </summary>
/// <param name="storage">Storage for storing exported files. Basically it is used to provide export stream</param>
/// <param name="realm">The RealmAccess used to provide the exported file.</param>
protected LegacyModelExporter(Storage storage, RealmAccess realm)
2022-11-17 22:38:24 +08:00
{
exportStorage = storage.GetStorageForDirectory(@"exports");
2022-11-17 22:38:24 +08:00
UserFileStorage = storage.GetStorageForDirectory(@"files");
realmAccess = realm;
2022-11-17 22:38:24 +08:00
}
2022-11-21 18:04:05 +08:00
/// <summary>
/// Export the model to default folder.
/// </summary>
2022-12-09 23:43:03 +08:00
/// <param name="model">The model should export.</param>
/// <param name="cancellationToken">
/// The Cancellation token that can cancel the exporting.
/// If specified CancellationToken, then use it. Otherwise use PostNotification's CancellationToken.
/// </param>
2022-11-21 18:04:05 +08:00
/// <returns></returns>
public async Task ExportAsync(TModel model, CancellationToken? cancellationToken = null)
2022-11-17 22:38:24 +08:00
{
string itemFilename = GetFilename(model).GetValidFilename();
IEnumerable<string> existingExports =
exportStorage
.GetFiles(string.Empty, $"{itemFilename}*{FileExtension}")
.Concat(exportStorage.GetDirectories(string.Empty));
string filename = NamingUtils.GetNextBestFilename(existingExports, $"{itemFilename}{FileExtension}");
bool success;
ProgressNotification notification = new ProgressNotification
{
State = ProgressNotificationState.Active,
Text = "Exporting...",
CompletionText = "Export completed"
};
notification.CompletionClickAction += () => exportStorage.PresentFileExternally(filename);
PostNotification?.Invoke(notification);
2023-02-19 00:45:09 +08:00
try
2022-12-09 23:43:03 +08:00
{
2023-02-19 00:45:09 +08:00
using (var stream = exportStorage.CreateFileSafely(filename))
{
success = await ExportToStreamAsync(model, stream, notification, cancellationToken ?? notification.CancellationToken).ConfigureAwait(false);
}
}
catch (OperationCanceledException)
{
success = false;
}
if (!success)
{
exportStorage.Delete(filename);
}
}
2022-11-21 18:04:05 +08:00
/// <summary>
/// Export model to stream.
2022-11-21 18:04:05 +08:00
/// </summary>
/// <param name="model">The medel which have <see cref="IHasGuidPrimaryKey"/>.</param>
2022-11-21 18:04:05 +08:00
/// <param name="stream">The stream to export.</param>
/// <param name="notification">The notification will displayed to the user</param>
/// <param name="cancellationToken">The Cancellation token that can cancel the exporting.</param>
/// <returns>Whether the export was successful</returns>
public async Task<bool> ExportToStreamAsync(TModel model, Stream stream, ProgressNotification? notification = null, CancellationToken cancellationToken = default)
{
ProgressNotification notify = notification ?? new ProgressNotification();
Guid id = model.ID;
return await Task.Run(() =>
2022-11-17 22:38:24 +08:00
{
realmAccess.Run(r =>
2022-11-17 22:38:24 +08:00
{
TModel refetchModel = r.Find<TModel>(id);
ExportToStream(refetchModel, stream, notify, cancellationToken);
2022-11-17 22:38:24 +08:00
});
}, cancellationToken).ContinueWith(t =>
{
if (t.IsFaulted)
{
notify.State = ProgressNotificationState.Cancelled;
Logger.Error(t.Exception, "An error occurred while exporting");
return false;
}
notify.CompletionText = "Export Complete, Click to open the folder";
notify.State = ProgressNotificationState.Completed;
return true;
2023-02-17 21:19:24 +08:00
}, cancellationToken).ConfigureAwait(false);
2022-11-19 00:02:35 +08:00
}
2022-12-11 15:55:44 +08:00
/// <summary>
/// Exports an item to Stream.
/// Override if custom export method is required.
/// </summary>
/// <param name="model">The item to export.</param>
/// <param name="outputStream">The output stream to export to.</param>
/// <param name="notification">The notification will displayed to the user</param>
/// <param name="cancellationToken">The Cancellation token that can cancel the exporting.</param>
protected abstract void ExportToStream(TModel model, Stream outputStream, ProgressNotification notification, CancellationToken cancellationToken = default);
2022-12-15 20:39:48 +08:00
}
2022-11-17 22:38:24 +08:00
}