2021-11-29 17:07:32 +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;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Database;
|
2022-01-11 15:30:35 +08:00
|
|
|
using osu.Game.Extensions;
|
2021-11-29 17:07:32 +08:00
|
|
|
using osu.Game.Models;
|
|
|
|
using osu.Game.Overlays.Notifications;
|
|
|
|
using Realms;
|
|
|
|
|
|
|
|
#nullable enable
|
|
|
|
|
|
|
|
namespace osu.Game.Stores
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-12-14 18:46:55 +08:00
|
|
|
/// Class which adds all the missing pieces bridging the gap between <see cref="RealmArchiveModelImporter{TModel}"/> and (legacy) ArchiveModelManager.
|
2021-11-29 17:07:32 +08:00
|
|
|
/// </summary>
|
|
|
|
public abstract class RealmArchiveModelManager<TModel> : RealmArchiveModelImporter<TModel>, IModelManager<TModel>, IModelFileManager<TModel, RealmNamedFileUsage>
|
|
|
|
where TModel : RealmObject, IHasRealmFiles, IHasGuidPrimaryKey, ISoftDelete
|
|
|
|
{
|
|
|
|
private readonly RealmFileStore realmFileStore;
|
|
|
|
|
2022-01-24 18:59:58 +08:00
|
|
|
protected RealmArchiveModelManager(Storage storage, RealmAccess realm)
|
|
|
|
: base(storage, realm)
|
2021-11-29 17:07:32 +08:00
|
|
|
{
|
2022-01-24 18:59:58 +08:00
|
|
|
realmFileStore = new RealmFileStore(realm, storage);
|
2021-11-29 17:07:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void DeleteFile(TModel item, RealmNamedFileUsage file) =>
|
2022-01-11 18:25:50 +08:00
|
|
|
performFileOperation(item, managed => DeleteFile(managed, managed.Files.First(f => f.Filename == file.Filename), managed.Realm));
|
2021-11-29 17:07:32 +08:00
|
|
|
|
2022-01-11 15:30:35 +08:00
|
|
|
public void ReplaceFile(TModel item, RealmNamedFileUsage file, Stream contents) =>
|
|
|
|
performFileOperation(item, managed => ReplaceFile(file, contents, managed.Realm));
|
2021-11-29 17:07:32 +08:00
|
|
|
|
2022-01-11 15:30:35 +08:00
|
|
|
public void AddFile(TModel item, Stream contents, string filename) =>
|
|
|
|
performFileOperation(item, managed => AddFile(managed, contents, filename, managed.Realm));
|
|
|
|
|
|
|
|
private void performFileOperation(TModel item, Action<TModel> operation)
|
|
|
|
{
|
|
|
|
// While we are detaching so often, this seems like the easiest way to keep things in sync.
|
|
|
|
// This method should be removed as soon as all the surrounding pieces support non-detached operations.
|
|
|
|
if (!item.IsManaged)
|
|
|
|
{
|
2022-01-25 11:58:15 +08:00
|
|
|
var managed = Realm.Realm.Find<TModel>(item.ID);
|
2022-01-11 15:30:35 +08:00
|
|
|
managed.Realm.Write(() => operation(managed));
|
|
|
|
|
|
|
|
item.Files.Clear();
|
|
|
|
item.Files.AddRange(managed.Files.Detach());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
operation(item);
|
|
|
|
}
|
2021-11-29 17:07:32 +08:00
|
|
|
|
2021-12-01 11:55:19 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Delete a file from within an ongoing realm transaction.
|
|
|
|
/// </summary>
|
|
|
|
protected void DeleteFile(TModel item, RealmNamedFileUsage file, Realm realm)
|
2021-11-29 17:07:32 +08:00
|
|
|
{
|
|
|
|
item.Files.Remove(file);
|
|
|
|
}
|
|
|
|
|
2021-12-01 11:55:19 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Replace a file from within an ongoing realm transaction.
|
|
|
|
/// </summary>
|
2021-12-02 16:19:53 +08:00
|
|
|
protected void ReplaceFile(RealmNamedFileUsage file, Stream contents, Realm realm)
|
2021-11-29 17:07:32 +08:00
|
|
|
{
|
|
|
|
file.File = realmFileStore.Add(contents, realm);
|
|
|
|
}
|
|
|
|
|
2021-12-01 11:55:19 +08:00
|
|
|
/// <summary>
|
2021-12-02 16:17:12 +08:00
|
|
|
/// Add a file from within an ongoing realm transaction. If the file already exists, it is overwritten.
|
2021-12-01 11:55:19 +08:00
|
|
|
/// </summary>
|
2021-12-02 16:19:53 +08:00
|
|
|
protected void AddFile(TModel item, Stream contents, string filename, Realm realm)
|
2021-11-29 17:07:32 +08:00
|
|
|
{
|
2021-12-02 16:17:12 +08:00
|
|
|
var existing = item.Files.FirstOrDefault(f => string.Equals(f.Filename, filename, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
|
|
|
if (existing != null)
|
|
|
|
{
|
2021-12-02 16:19:53 +08:00
|
|
|
ReplaceFile(existing, contents, realm);
|
2021-12-02 16:17:12 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-02 16:19:53 +08:00
|
|
|
var file = realmFileStore.Add(contents, realm);
|
2021-11-29 17:07:32 +08:00
|
|
|
var namedUsage = new RealmNamedFileUsage(file, filename);
|
|
|
|
|
|
|
|
item.Files.Add(namedUsage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Delete multiple items.
|
|
|
|
/// This will post notifications tracking progress.
|
|
|
|
/// </summary>
|
|
|
|
public void Delete(List<TModel> items, bool silent = false)
|
|
|
|
{
|
|
|
|
if (items.Count == 0) return;
|
|
|
|
|
|
|
|
var notification = new ProgressNotification
|
|
|
|
{
|
|
|
|
Progress = 0,
|
|
|
|
Text = $"Preparing to delete all {HumanisedModelName}s...",
|
|
|
|
CompletionText = $"Deleted all {HumanisedModelName}s!",
|
|
|
|
State = ProgressNotificationState.Active,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!silent)
|
|
|
|
PostNotification?.Invoke(notification);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
foreach (var b in items)
|
|
|
|
{
|
|
|
|
if (notification.State == ProgressNotificationState.Cancelled)
|
|
|
|
// user requested abort
|
|
|
|
return;
|
|
|
|
|
|
|
|
notification.Text = $"Deleting {HumanisedModelName}s ({++i} of {items.Count})";
|
|
|
|
|
|
|
|
Delete(b);
|
|
|
|
|
|
|
|
notification.Progress = (float)i / items.Count;
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.State = ProgressNotificationState.Completed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Restore multiple items that were previously deleted.
|
|
|
|
/// This will post notifications tracking progress.
|
|
|
|
/// </summary>
|
|
|
|
public void Undelete(List<TModel> items, bool silent = false)
|
|
|
|
{
|
|
|
|
if (!items.Any()) return;
|
|
|
|
|
|
|
|
var notification = new ProgressNotification
|
|
|
|
{
|
|
|
|
CompletionText = "Restored all deleted items!",
|
|
|
|
Progress = 0,
|
|
|
|
State = ProgressNotificationState.Active,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!silent)
|
|
|
|
PostNotification?.Invoke(notification);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
foreach (var item in items)
|
|
|
|
{
|
|
|
|
if (notification.State == ProgressNotificationState.Cancelled)
|
|
|
|
// user requested abort
|
|
|
|
return;
|
|
|
|
|
|
|
|
notification.Text = $"Restoring ({++i} of {items.Count})";
|
|
|
|
|
|
|
|
Undelete(item);
|
|
|
|
|
|
|
|
notification.Progress = (float)i / items.Count;
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.State = ProgressNotificationState.Completed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool Delete(TModel item)
|
|
|
|
{
|
2022-01-25 11:58:15 +08:00
|
|
|
return Realm.Run(realm =>
|
2022-01-08 13:03:04 +08:00
|
|
|
{
|
|
|
|
if (!item.IsManaged)
|
|
|
|
item = realm.Find<TModel>(item.ID);
|
|
|
|
|
|
|
|
if (item?.DeletePending != false)
|
|
|
|
return false;
|
2021-11-29 17:07:32 +08:00
|
|
|
|
2022-01-08 13:03:04 +08:00
|
|
|
realm.Write(r => item.DeletePending = true);
|
|
|
|
return true;
|
2022-01-21 00:34:20 +08:00
|
|
|
});
|
2021-11-29 17:07:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Undelete(TModel item)
|
|
|
|
{
|
2022-01-25 11:58:15 +08:00
|
|
|
Realm.Run(realm =>
|
2022-01-08 13:03:04 +08:00
|
|
|
{
|
|
|
|
if (!item.IsManaged)
|
|
|
|
item = realm.Find<TModel>(item.ID);
|
|
|
|
|
|
|
|
if (item?.DeletePending != true)
|
|
|
|
return;
|
2021-11-29 17:07:32 +08:00
|
|
|
|
2022-01-08 13:03:04 +08:00
|
|
|
realm.Write(r => item.DeletePending = false);
|
2022-01-21 00:34:20 +08:00
|
|
|
});
|
2021-11-29 17:07:32 +08:00
|
|
|
}
|
|
|
|
|
2022-01-10 12:59:46 +08:00
|
|
|
public abstract bool IsAvailableLocally(TModel model);
|
2021-11-29 17:07:32 +08:00
|
|
|
}
|
|
|
|
}
|