mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
572 lines
21 KiB
C#
572 lines
21 KiB
C#
// 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 System.Threading.Tasks;
|
|
using JetBrains.Annotations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using osu.Framework;
|
|
using osu.Framework.Extensions;
|
|
using osu.Framework.IO.File;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.IO;
|
|
using osu.Game.IO.Archives;
|
|
using osu.Game.IPC;
|
|
using osu.Game.Overlays.Notifications;
|
|
using osu.Game.Utils;
|
|
using SharpCompress.Common;
|
|
using FileInfo = osu.Game.IO.FileInfo;
|
|
|
|
namespace osu.Game.Database
|
|
{
|
|
/// <summary>
|
|
/// Encapsulates a model store class to give it import functionality.
|
|
/// Adds cross-functionality with <see cref="FileStore"/> to give access to the central file store for the provided model.
|
|
/// </summary>
|
|
/// <typeparam name="TModel">The model type.</typeparam>
|
|
/// <typeparam name="TFileModel">The associated file join type.</typeparam>
|
|
public abstract class ArchiveModelManager<TModel, TFileModel> : ICanAcceptFiles
|
|
where TModel : class, IHasFiles<TFileModel>, IHasPrimaryKey, ISoftDelete
|
|
where TFileModel : INamedFileInfo, new()
|
|
{
|
|
public delegate void ItemAddedDelegate(TModel model, bool existing);
|
|
|
|
/// <summary>
|
|
/// Set an endpoint for notifications to be posted to.
|
|
/// </summary>
|
|
public Action<Notification> PostNotification { protected get; set; }
|
|
|
|
/// <summary>
|
|
/// Fired when a new <see cref="TModel"/> becomes available in the database.
|
|
/// This is not guaranteed to run on the update thread.
|
|
/// </summary>
|
|
public event ItemAddedDelegate ItemAdded;
|
|
|
|
/// <summary>
|
|
/// Fired when a <see cref="TModel"/> is removed from the database.
|
|
/// This is not guaranteed to run on the update thread.
|
|
/// </summary>
|
|
public event Action<TModel> ItemRemoved;
|
|
|
|
public virtual string[] HandledExtensions => new[] { ".zip" };
|
|
|
|
public virtual bool SupportsImportFromStable => RuntimeInfo.IsDesktop;
|
|
|
|
protected readonly FileStore Files;
|
|
|
|
protected readonly IDatabaseContextFactory ContextFactory;
|
|
|
|
protected readonly MutableDatabaseBackedStore<TModel> ModelStore;
|
|
|
|
// ReSharper disable once NotAccessedField.Local (we should keep a reference to this so it is not finalised)
|
|
private ArchiveImportIPCChannel ipc;
|
|
|
|
private readonly List<Action> queuedEvents = new List<Action>();
|
|
|
|
/// <summary>
|
|
/// Allows delaying of outwards events until an operation is confirmed (at a database level).
|
|
/// </summary>
|
|
private bool delayingEvents;
|
|
|
|
/// <summary>
|
|
/// Begin delaying outwards events.
|
|
/// </summary>
|
|
private void delayEvents() => delayingEvents = true;
|
|
|
|
/// <summary>
|
|
/// Flush delayed events and disable delaying.
|
|
/// </summary>
|
|
/// <param name="perform">Whether the flushed events should be performed.</param>
|
|
private void flushEvents(bool perform)
|
|
{
|
|
Action[] events;
|
|
lock (queuedEvents)
|
|
{
|
|
events = queuedEvents.ToArray();
|
|
queuedEvents.Clear();
|
|
}
|
|
|
|
if (perform)
|
|
{
|
|
foreach (var a in events)
|
|
a.Invoke();
|
|
}
|
|
|
|
delayingEvents = false;
|
|
}
|
|
|
|
private void handleEvent(Action a)
|
|
{
|
|
if (delayingEvents)
|
|
lock (queuedEvents)
|
|
queuedEvents.Add(a);
|
|
else
|
|
a.Invoke();
|
|
}
|
|
|
|
protected ArchiveModelManager(Storage storage, IDatabaseContextFactory contextFactory, MutableDatabaseBackedStoreWithFileIncludes<TModel, TFileModel> modelStore, IIpcHost importHost = null)
|
|
{
|
|
ContextFactory = contextFactory;
|
|
|
|
ModelStore = modelStore;
|
|
ModelStore.ItemAdded += item => handleEvent(() => ItemAdded?.Invoke(item, false));
|
|
ModelStore.ItemRemoved += s => handleEvent(() => ItemRemoved?.Invoke(s));
|
|
|
|
Files = new FileStore(contextFactory, storage);
|
|
|
|
if (importHost != null)
|
|
ipc = new ArchiveImportIPCChannel(importHost, this);
|
|
|
|
ModelStore.Cleanup();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Import one or more <see cref="TModel"/> items from filesystem <paramref name="paths"/>.
|
|
/// This will post notifications tracking progress.
|
|
/// </summary>
|
|
/// <param name="paths">One or more archive locations on disk.</param>
|
|
public void Import(params string[] paths)
|
|
{
|
|
var notification = new ProgressNotification { State = ProgressNotificationState.Active };
|
|
|
|
PostNotification?.Invoke(notification);
|
|
Import(notification, paths);
|
|
}
|
|
|
|
protected void Import(ProgressNotification notification, params string[] paths)
|
|
{
|
|
notification.Progress = 0;
|
|
notification.Text = "Import is initialising...";
|
|
|
|
var term = $"{typeof(TModel).Name.Replace("Info", "").ToLower()}";
|
|
|
|
List<TModel> imported = new List<TModel>();
|
|
|
|
int current = 0;
|
|
foreach (string path in paths)
|
|
{
|
|
if (notification.State == ProgressNotificationState.Cancelled)
|
|
// user requested abort
|
|
return;
|
|
|
|
try
|
|
{
|
|
var text = "Importing ";
|
|
|
|
if (path.Length > 1)
|
|
text += $"{++current} of {paths.Length} {term}s..";
|
|
else
|
|
text += $"{term}..";
|
|
|
|
// only show the filename if it isn't a temporary one (as those look ugly).
|
|
if (!path.Contains(Path.GetTempPath()))
|
|
text += $"\n{Path.GetFileName(path)}";
|
|
|
|
notification.Text = text;
|
|
|
|
imported.Add(Import(path));
|
|
|
|
notification.Progress = (float)current / paths.Length;
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
e = e.InnerException ?? e;
|
|
Logger.Error(e, $@"Could not import ({Path.GetFileName(path)})");
|
|
}
|
|
}
|
|
|
|
if (imported.Count == 0)
|
|
{
|
|
notification.Text = "Import failed!";
|
|
notification.State = ProgressNotificationState.Cancelled;
|
|
}
|
|
else
|
|
{
|
|
notification.CompletionText = imported.Count == 1
|
|
? $"Imported {imported.First()}!"
|
|
: $"Imported {current} {term}s!";
|
|
|
|
if (imported.Count > 0 && PresentImport != null)
|
|
{
|
|
notification.CompletionText += " Click to view.";
|
|
notification.CompletionClickAction = () =>
|
|
{
|
|
PresentImport?.Invoke(imported);
|
|
return true;
|
|
};
|
|
}
|
|
|
|
notification.State = ProgressNotificationState.Completed;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Import one <see cref="TModel"/> from the filesystem and delete the file on success.
|
|
/// </summary>
|
|
/// <param name="path">The archive location on disk.</param>
|
|
/// <returns>The imported model, if successful.</returns>
|
|
public TModel Import(string path)
|
|
{
|
|
TModel import;
|
|
using (ArchiveReader reader = getReaderFrom(path))
|
|
import = Import(reader);
|
|
|
|
// We may or may not want to delete the file depending on where it is stored.
|
|
// e.g. reconstructing/repairing database with items from default storage.
|
|
// Also, not always a single file, i.e. for LegacyFilesystemReader
|
|
// TODO: Add a check to prevent files from storage to be deleted.
|
|
try
|
|
{
|
|
if (import != null && File.Exists(path))
|
|
File.Delete(path);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Error(e, $@"Could not delete original file after import ({Path.GetFileName(path)})");
|
|
}
|
|
|
|
return import;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Fired when the user requests to view the resulting import.
|
|
/// </summary>
|
|
public Action<IEnumerable<TModel>> PresentImport;
|
|
|
|
/// <summary>
|
|
/// Import an item from an <see cref="ArchiveReader"/>.
|
|
/// </summary>
|
|
/// <param name="archive">The archive to be imported.</param>
|
|
public TModel Import(ArchiveReader archive)
|
|
{
|
|
try
|
|
{
|
|
var model = CreateModel(archive);
|
|
|
|
if (model == null) return null;
|
|
|
|
model.Hash = computeHash(archive);
|
|
|
|
return Import(model, archive);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Error(e, $"Model creation of {archive.Name} failed.", LoggingTarget.Database);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Any file extensions which should be included in hash creation.
|
|
/// Generally should include all file types which determine the file's uniqueness.
|
|
/// Large files should be avoided if possible.
|
|
/// </summary>
|
|
protected abstract string[] HashableFileTypes { get; }
|
|
|
|
/// <summary>
|
|
/// Create a SHA-2 hash from the provided archive based on file content of all files matching <see cref="HashableFileTypes"/>.
|
|
/// </summary>
|
|
private string computeHash(ArchiveReader reader)
|
|
{
|
|
// for now, concatenate all .osu files in the set to create a unique hash.
|
|
MemoryStream hashable = new MemoryStream();
|
|
foreach (string file in reader.Filenames.Where(f => HashableFileTypes.Any(f.EndsWith)))
|
|
using (Stream s = reader.GetStream(file))
|
|
s.CopyTo(hashable);
|
|
|
|
return hashable.ComputeSHA2Hash();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Import an item from a <see cref="TModel"/>.
|
|
/// </summary>
|
|
/// <param name="item">The model to be imported.</param>
|
|
/// <param name="archive">An optional archive to use for model population.</param>
|
|
public TModel Import(TModel item, ArchiveReader archive = null)
|
|
{
|
|
delayEvents();
|
|
|
|
try
|
|
{
|
|
Logger.Log($"Importing {item}...", LoggingTarget.Database);
|
|
|
|
using (var write = ContextFactory.GetForWrite()) // used to share a context for full import. keep in mind this will block all writes.
|
|
{
|
|
try
|
|
{
|
|
if (!write.IsTransactionLeader) throw new InvalidOperationException($"Ensure there is no parent transaction so errors can correctly be handled by {this}");
|
|
|
|
var existing = CheckForExisting(item);
|
|
|
|
if (existing != null)
|
|
{
|
|
Undelete(existing);
|
|
Logger.Log($"Found existing {typeof(TModel)} for {item} (ID {existing.ID}). Skipping import.", LoggingTarget.Database);
|
|
handleEvent(() => ItemAdded?.Invoke(existing, true));
|
|
return existing;
|
|
}
|
|
|
|
if (archive != null)
|
|
item.Files = createFileInfos(archive, Files);
|
|
|
|
Populate(item, archive);
|
|
|
|
// import to store
|
|
ModelStore.Add(item);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
write.Errors.Add(e);
|
|
throw;
|
|
}
|
|
}
|
|
|
|
Logger.Log($"Import of {item} successfully completed!", LoggingTarget.Database);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.Error(e, $"Import of {item} failed and has been rolled back.", LoggingTarget.Database);
|
|
item = null;
|
|
}
|
|
finally
|
|
{
|
|
// we only want to flush events after we've confirmed the write context didn't have any errors.
|
|
flushEvents(item != null);
|
|
}
|
|
|
|
return item;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Perform an update of the specified item.
|
|
/// TODO: Support file changes.
|
|
/// </summary>
|
|
/// <param name="item">The item to update.</param>
|
|
public void Update(TModel item) => ModelStore.Update(item);
|
|
|
|
/// <summary>
|
|
/// Delete an item from the manager.
|
|
/// Is a no-op for already deleted items.
|
|
/// </summary>
|
|
/// <param name="item">The item to delete.</param>
|
|
/// <returns>false if no operation was performed</returns>
|
|
public bool Delete(TModel item)
|
|
{
|
|
using (ContextFactory.GetForWrite())
|
|
{
|
|
// re-fetch the model on the import context.
|
|
var foundModel = queryModel().Include(s => s.Files).ThenInclude(f => f.FileInfo).FirstOrDefault(s => s.ID == item.ID);
|
|
|
|
if (foundModel == null || foundModel.DeletePending) return false;
|
|
|
|
if (ModelStore.Delete(foundModel))
|
|
Files.Dereference(foundModel.Files.Select(f => f.FileInfo).ToArray());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delete multiple items.
|
|
/// This will post notifications tracking progress.
|
|
/// </summary>
|
|
public void Delete(List<TModel> items)
|
|
{
|
|
if (items.Count == 0) return;
|
|
|
|
var notification = new ProgressNotification
|
|
{
|
|
Progress = 0,
|
|
CompletionText = $"Deleted all {typeof(TModel).Name.Replace("Info", "").ToLower()}s!",
|
|
State = ProgressNotificationState.Active,
|
|
};
|
|
|
|
PostNotification?.Invoke(notification);
|
|
|
|
int i = 0;
|
|
|
|
using (ContextFactory.GetForWrite())
|
|
{
|
|
foreach (var b in items)
|
|
{
|
|
if (notification.State == ProgressNotificationState.Cancelled)
|
|
// user requested abort
|
|
return;
|
|
|
|
notification.Text = $"Deleting ({++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)
|
|
{
|
|
if (!items.Any()) return;
|
|
|
|
var notification = new ProgressNotification
|
|
{
|
|
CompletionText = "Restored all deleted items!",
|
|
Progress = 0,
|
|
State = ProgressNotificationState.Active,
|
|
};
|
|
|
|
PostNotification?.Invoke(notification);
|
|
|
|
int i = 0;
|
|
|
|
using (ContextFactory.GetForWrite())
|
|
{
|
|
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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Restore an item that was previously deleted. Is a no-op if the item is not in a deleted state, or has its protected flag set.
|
|
/// </summary>
|
|
/// <param name="item">The item to restore</param>
|
|
public void Undelete(TModel item)
|
|
{
|
|
using (var usage = ContextFactory.GetForWrite())
|
|
{
|
|
usage.Context.ChangeTracker.AutoDetectChangesEnabled = false;
|
|
|
|
if (!ModelStore.Undelete(item)) return;
|
|
|
|
Files.Reference(item.Files.Select(f => f.FileInfo).ToArray());
|
|
|
|
usage.Context.ChangeTracker.AutoDetectChangesEnabled = true;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create all required <see cref="FileInfo"/>s for the provided archive, adding them to the global file store.
|
|
/// </summary>
|
|
private List<TFileModel> createFileInfos(ArchiveReader reader, FileStore files)
|
|
{
|
|
var fileInfos = new List<TFileModel>();
|
|
|
|
// import files to manager
|
|
foreach (string file in reader.Filenames)
|
|
using (Stream s = reader.GetStream(file))
|
|
fileInfos.Add(new TFileModel
|
|
{
|
|
Filename = FileSafety.PathStandardise(file),
|
|
FileInfo = files.Add(s)
|
|
});
|
|
|
|
return fileInfos;
|
|
}
|
|
|
|
#region osu-stable import
|
|
|
|
/// <summary>
|
|
/// Set a storage with access to an osu-stable install for import purposes.
|
|
/// </summary>
|
|
public Func<Storage> GetStableStorage { private get; set; }
|
|
|
|
/// <summary>
|
|
/// Denotes whether an osu-stable installation is present to perform automated imports from.
|
|
/// </summary>
|
|
public bool StableInstallationAvailable => GetStableStorage?.Invoke() != null;
|
|
|
|
/// <summary>
|
|
/// The relative path from osu-stable's data directory to import items from.
|
|
/// </summary>
|
|
protected virtual string ImportFromStablePath => null;
|
|
|
|
/// <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>
|
|
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.ExistsDirectory(ImportFromStablePath))
|
|
{
|
|
// This handles situations like when the user does not have a Skins folder
|
|
Logger.Log($"No {ImportFromStablePath} folder available in osu!stable installation", LoggingTarget.Information, LogLevel.Error);
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
return Task.Factory.StartNew(() => Import(stable.GetDirectories(ImportFromStablePath).Select(f => stable.GetFullPath(f)).ToArray()), TaskCreationOptions.LongRunning);
|
|
}
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Create a barebones model from the provided archive.
|
|
/// Actual expensive population should be done in <see cref="Populate"/>; this should just prepare for duplicate checking.
|
|
/// </summary>
|
|
/// <param name="archive">The archive to create the model for.</param>
|
|
/// <returns>A model populated with minimal information. Returning a null will abort importing silently.</returns>
|
|
protected abstract TModel CreateModel(ArchiveReader archive);
|
|
|
|
/// <summary>
|
|
/// Populate the provided model completely from the given archive.
|
|
/// After this method, the model should be in a state ready to commit to a store.
|
|
/// </summary>
|
|
/// <param name="model">The model to populate.</param>
|
|
/// <param name="archive">The archive to use as a reference for population. May be null.</param>
|
|
protected virtual void Populate(TModel model, [CanBeNull] ArchiveReader archive)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Check whether an existing model already exists for a new import item.
|
|
/// </summary>
|
|
/// <param name="model">The new model proposed for import. Note that <see cref="Populate"/> has not yet been run on this model.</param>
|
|
/// <returns>An existing model which matches the criteria to skip importing, else null.</returns>
|
|
protected virtual TModel CheckForExisting(TModel model) => model.Hash == null ? null : ModelStore.ConsumableItems.FirstOrDefault(b => b.Hash == model.Hash);
|
|
|
|
private DbSet<TModel> queryModel() => ContextFactory.Get().Set<TModel>();
|
|
|
|
/// <summary>
|
|
/// Creates an <see cref="ArchiveReader"/> from a valid storage path.
|
|
/// </summary>
|
|
/// <param name="path">A file or folder path resolving the archive content.</param>
|
|
/// <returns>A reader giving access to the archive's content.</returns>
|
|
private ArchiveReader getReaderFrom(string path)
|
|
{
|
|
if (ZipUtils.IsZipArchive(path))
|
|
return new ZipArchiveReader(File.Open(path, FileMode.Open, FileAccess.Read, FileShare.Read), Path.GetFileName(path));
|
|
if (Directory.Exists(path))
|
|
return new LegacyDirectoryArchiveReader(path);
|
|
if (File.Exists(path))
|
|
return new LegacyFileArchiveReader(path);
|
|
|
|
throw new InvalidFormatException($"{path} is not a valid archive");
|
|
}
|
|
}
|
|
}
|