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.

180 lines
6.8 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.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;
using SharpCompress.Common;
using SharpCompress.Writers;
using SharpCompress.Writers.Zip;
2022-11-17 22:38:24 +08:00
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;
2022-11-17 22:38:24 +08:00
protected RealmAccess RealmAccess;
2022-11-17 22:38:24 +08:00
private string filename = string.Empty;
public Action<Notification>? PostNotification { get; set; }
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");
2022-11-19 00:02:35 +08:00
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>
2022-11-21 18:04:05 +08:00
/// <returns></returns>
2022-12-09 23:43:03 +08:00
public async Task ExportAsync(TModel model)
2022-11-17 22:38:24 +08:00
{
2022-12-09 23:43:03 +08:00
string itemFilename = model.GetDisplayString().GetValidFilename();
IEnumerable<string> existingExports = exportStorage.GetFiles("", $"{itemFilename}*{FileExtension}");
filename = NamingUtils.GetNextBestFilename(existingExports, $"{itemFilename}{FileExtension}");
bool success;
2022-12-09 23:43:03 +08:00
using (var stream = exportStorage.CreateFileSafely(filename))
{
success = await ExportToStreamAsync(model, stream);
}
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>
/// <returns>Whether the export was successful</returns>
public async Task<bool> ExportToStreamAsync(TModel model, Stream stream)
{
ProgressNotification notification = new ProgressNotification
{
State = ProgressNotificationState.Active,
Text = "Exporting...",
CompletionText = "Export completed"
};
notification.CompletionClickAction += () => exportStorage.PresentFileExternally(filename);
PostNotification?.Invoke(notification);
Guid id = model.ID;
return await Task.Run(() =>
2022-11-17 22:38:24 +08:00
{
2022-11-19 00:02:35 +08:00
RealmAccess.Run(r =>
2022-11-17 22:38:24 +08:00
{
TModel refetchModel = r.Find<TModel>(id);
ExportToStream(refetchModel, stream, notification);
2022-11-17 22:38:24 +08:00
});
}, notification.CancellationToken).ContinueWith(t =>
{
if (t.IsCanceled)
{
return false;
}
if (t.IsFaulted)
{
notification.State = ProgressNotificationState.Cancelled;
Logger.Error(t.Exception, "An error occurred while exporting");
return false;
}
notification.CompletionText = "Export Complete, Click to open the folder";
notification.State = ProgressNotificationState.Completed;
return true;
});
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>
2022-12-15 20:39:48 +08:00
protected abstract void ExportToStream(TModel model, Stream outputStream, ProgressNotification notification);
}
public abstract class LegacyArchiveExporter<TModel> : LegacyModelExporter<TModel>
where TModel : RealmObject, IHasNamedFiles, IHasGuidPrimaryKey
{
protected LegacyArchiveExporter(Storage storage, RealmAccess realm)
: base(storage, realm)
{
}
protected override void ExportToStream(TModel model, Stream outputStream, ProgressNotification notification) => exportZipArchive(model, outputStream, notification);
2022-12-11 15:54:20 +08:00
/// <summary>
/// Exports an item to Stream as a legacy (.zip based) package.
/// </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>
private void exportZipArchive(TModel model, Stream outputStream, ProgressNotification notification)
2022-11-19 00:02:35 +08:00
{
2022-12-15 22:42:49 +08:00
using var writer = new ZipWriter(outputStream, new ZipWriterOptions(CompressionType.Deflate));
float i = 0;
bool fileMissing = false;
foreach (var file in model.Files)
2022-11-17 22:38:24 +08:00
{
2022-12-15 22:42:49 +08:00
notification.CancellationToken.ThrowIfCancellationRequested();
2022-12-15 22:42:49 +08:00
using (var stream = UserFileStorage.GetStream(file.File.GetStoragePath()))
2022-12-15 22:20:29 +08:00
{
2022-12-15 22:42:49 +08:00
// Sometimes we cannot find the file(probably deleted by the user), so we handle this and post a error.
if (stream == null)
{
2022-12-15 22:42:49 +08:00
// Only pop up once to prevent spam.
if (!fileMissing)
{
2022-12-15 22:42:49 +08:00
PostNotification?.Invoke(new SimpleErrorNotification
{
2022-12-15 22:42:49 +08:00
Text = "Some of your files are missing, they will not be included in the archive"
});
fileMissing = true;
}
}
2022-12-15 22:42:49 +08:00
else
{
writer.Write(file.Filename, stream);
}
}
2022-12-15 22:42:49 +08:00
i++;
notification.Progress = i / model.Files.Count();
notification.Text = $"Exporting... ({i}/{model.Files.Count()})";
}
}
2022-11-17 22:38:24 +08:00
}
}