mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:37:25 +08:00
130 lines
4.3 KiB
C#
130 lines
4.3 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.Diagnostics;
|
|
using System.Linq;
|
|
using JetBrains.Annotations;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Platform;
|
|
using osu.Game.Configuration;
|
|
|
|
namespace osu.Game.IO
|
|
{
|
|
public class OsuStorage : MigratableStorage
|
|
{
|
|
/// <summary>
|
|
/// Indicates the error (if any) that occurred when initialising the custom storage during initial startup.
|
|
/// </summary>
|
|
public readonly OsuStorageError Error;
|
|
|
|
/// <summary>
|
|
/// The custom storage path as selected by the user.
|
|
/// </summary>
|
|
[CanBeNull]
|
|
public string CustomStoragePath => storageConfig.Get<string>(StorageConfig.FullPath);
|
|
|
|
/// <summary>
|
|
/// The default storage path to be used if a custom storage path hasn't been selected or is not accessible.
|
|
/// </summary>
|
|
[NotNull]
|
|
public string DefaultStoragePath => defaultStorage.GetFullPath(".");
|
|
|
|
private readonly GameHost host;
|
|
private readonly StorageConfigManager storageConfig;
|
|
private readonly Storage defaultStorage;
|
|
|
|
public override string[] IgnoreDirectories => new[] { "cache" };
|
|
|
|
public override string[] IgnoreFiles => new[]
|
|
{
|
|
"framework.ini",
|
|
"storage.ini"
|
|
};
|
|
|
|
public OsuStorage(GameHost host, Storage defaultStorage)
|
|
: base(defaultStorage, string.Empty)
|
|
{
|
|
this.host = host;
|
|
this.defaultStorage = defaultStorage;
|
|
|
|
storageConfig = new StorageConfigManager(defaultStorage);
|
|
|
|
if (!string.IsNullOrEmpty(CustomStoragePath))
|
|
TryChangeToCustomStorage(out Error);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resets the custom storage path, changing the target storage to the default location.
|
|
/// </summary>
|
|
public void ResetCustomStoragePath()
|
|
{
|
|
storageConfig.SetValue(StorageConfig.FullPath, string.Empty);
|
|
storageConfig.Save();
|
|
|
|
ChangeTargetStorage(defaultStorage);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Attempts to change to the user's custom storage path.
|
|
/// </summary>
|
|
/// <param name="error">The error that occurred.</param>
|
|
/// <returns>Whether the custom storage path was used successfully. If not, <paramref name="error"/> will be populated with the reason.</returns>
|
|
public bool TryChangeToCustomStorage(out OsuStorageError error)
|
|
{
|
|
Debug.Assert(!string.IsNullOrEmpty(CustomStoragePath));
|
|
|
|
error = OsuStorageError.None;
|
|
Storage lastStorage = UnderlyingStorage;
|
|
|
|
try
|
|
{
|
|
Storage userStorage = host.GetStorage(CustomStoragePath);
|
|
|
|
if (!userStorage.ExistsDirectory(".") || !userStorage.GetFiles(".").Any())
|
|
error = OsuStorageError.AccessibleButEmpty;
|
|
|
|
ChangeTargetStorage(userStorage);
|
|
}
|
|
catch
|
|
{
|
|
error = OsuStorageError.NotAccessible;
|
|
ChangeTargetStorage(lastStorage);
|
|
}
|
|
|
|
return error == OsuStorageError.None;
|
|
}
|
|
|
|
protected override void ChangeTargetStorage(Storage newStorage)
|
|
{
|
|
base.ChangeTargetStorage(newStorage);
|
|
Logger.Storage = UnderlyingStorage.GetStorageForDirectory("logs");
|
|
}
|
|
|
|
public override void Migrate(Storage newStorage)
|
|
{
|
|
base.Migrate(newStorage);
|
|
storageConfig.SetValue(StorageConfig.FullPath, newStorage.GetFullPath("."));
|
|
storageConfig.Save();
|
|
}
|
|
}
|
|
|
|
public enum OsuStorageError
|
|
{
|
|
/// <summary>
|
|
/// No error.
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Occurs when the target storage directory is accessible but does not already contain game files.
|
|
/// Only happens when the user changes the storage directory and then moves the files manually or mounts a different device to the same path.
|
|
/// </summary>
|
|
AccessibleButEmpty,
|
|
|
|
/// <summary>
|
|
/// Occurs when the target storage directory cannot be accessed at all.
|
|
/// </summary>
|
|
NotAccessible,
|
|
}
|
|
}
|