2020-05-06 17:27:10 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-07-06 21:03:09 +08:00
|
|
|
using System.Diagnostics;
|
2020-05-07 18:00:59 +08:00
|
|
|
using System.Linq;
|
2020-07-06 21:03:09 +08:00
|
|
|
using JetBrains.Annotations;
|
2020-05-06 17:27:10 +08:00
|
|
|
using osu.Framework.Logging;
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
|
|
|
namespace osu.Game.IO
|
|
|
|
{
|
2020-06-22 17:38:50 +08:00
|
|
|
public class OsuStorage : MigratableStorage
|
2020-05-06 17:27:10 +08:00
|
|
|
{
|
2020-07-06 21:03:09 +08:00
|
|
|
/// <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(".");
|
|
|
|
|
2020-05-06 17:31:36 +08:00
|
|
|
private readonly GameHost host;
|
|
|
|
private readonly StorageConfigManager storageConfig;
|
2020-07-06 21:03:09 +08:00
|
|
|
private readonly Storage defaultStorage;
|
2020-05-06 17:31:36 +08:00
|
|
|
|
2021-01-21 18:01:58 +08:00
|
|
|
public override string[] IgnoreDirectories => new[]
|
|
|
|
{
|
|
|
|
"cache",
|
2022-03-30 12:34:48 +08:00
|
|
|
$"{OsuGameBase.CLIENT_DATABASE_FILENAME}.management",
|
2021-01-21 18:01:58 +08:00
|
|
|
};
|
2020-06-24 05:34:26 +08:00
|
|
|
|
2020-06-25 05:01:56 +08:00
|
|
|
public override string[] IgnoreFiles => new[]
|
2020-06-24 05:34:26 +08:00
|
|
|
{
|
2020-06-24 06:37:29 +08:00
|
|
|
"framework.ini",
|
2021-01-21 18:01:58 +08:00
|
|
|
"storage.ini",
|
2022-03-30 12:34:48 +08:00
|
|
|
$"{OsuGameBase.CLIENT_DATABASE_FILENAME}.note",
|
|
|
|
$"{OsuGameBase.CLIENT_DATABASE_FILENAME}.lock",
|
2020-06-24 06:37:29 +08:00
|
|
|
};
|
2020-06-24 05:34:26 +08:00
|
|
|
|
2020-07-01 16:12:07 +08:00
|
|
|
public OsuStorage(GameHost host, Storage defaultStorage)
|
|
|
|
: base(defaultStorage, string.Empty)
|
2020-05-06 17:27:10 +08:00
|
|
|
{
|
2020-05-06 17:31:36 +08:00
|
|
|
this.host = host;
|
2020-07-06 21:03:09 +08:00
|
|
|
this.defaultStorage = defaultStorage;
|
2020-05-06 17:27:10 +08:00
|
|
|
|
2020-07-01 16:12:07 +08:00
|
|
|
storageConfig = new StorageConfigManager(defaultStorage);
|
2020-05-06 17:27:10 +08:00
|
|
|
|
2020-07-06 21:03:09 +08:00
|
|
|
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()
|
|
|
|
{
|
2022-03-29 17:00:56 +08:00
|
|
|
ChangeDataPath(string.Empty);
|
2020-07-06 21:03:09 +08:00
|
|
|
|
|
|
|
ChangeTargetStorage(defaultStorage);
|
|
|
|
}
|
|
|
|
|
2022-03-29 17:00:56 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Updates the target data path without immediately switching.
|
|
|
|
/// This does NOT migrate any data.
|
|
|
|
/// The game should immediately be restarted after calling this.
|
|
|
|
/// </summary>
|
|
|
|
public void ChangeDataPath(string newPath)
|
|
|
|
{
|
|
|
|
storageConfig.SetValue(StorageConfig.FullPath, newPath);
|
|
|
|
storageConfig.Save();
|
|
|
|
}
|
|
|
|
|
2020-07-06 21:03:09 +08:00
|
|
|
/// <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;
|
2020-05-06 17:27:10 +08:00
|
|
|
|
2022-07-13 15:22:50 +08:00
|
|
|
Logger.Log($"Attempting to use custom storage location {CustomStoragePath}");
|
|
|
|
|
2020-07-06 21:03:09 +08:00
|
|
|
try
|
2020-07-01 16:47:29 +08:00
|
|
|
{
|
2020-07-06 21:03:09 +08:00
|
|
|
Storage userStorage = host.GetStorage(CustomStoragePath);
|
|
|
|
|
2020-07-06 21:41:58 +08:00
|
|
|
if (!userStorage.ExistsDirectory(".") || !userStorage.GetFiles(".").Any())
|
2020-07-06 21:03:09 +08:00
|
|
|
error = OsuStorageError.AccessibleButEmpty;
|
|
|
|
|
|
|
|
ChangeTargetStorage(userStorage);
|
2022-07-13 15:22:50 +08:00
|
|
|
Logger.Log($"Storage successfully changed to {CustomStoragePath}.");
|
2020-07-06 21:03:09 +08:00
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
error = OsuStorageError.NotAccessible;
|
|
|
|
ChangeTargetStorage(lastStorage);
|
2020-07-01 16:47:29 +08:00
|
|
|
}
|
2020-07-06 21:03:09 +08:00
|
|
|
|
2022-07-13 15:22:50 +08:00
|
|
|
if (error != OsuStorageError.None)
|
|
|
|
Logger.Log($"Custom storage location could not be used ({error}).");
|
|
|
|
|
2020-07-06 21:03:09 +08:00
|
|
|
return error == OsuStorageError.None;
|
2020-05-11 20:38:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void ChangeTargetStorage(Storage newStorage)
|
|
|
|
{
|
2021-07-09 12:17:25 +08:00
|
|
|
var lastStorage = UnderlyingStorage;
|
2020-05-11 20:38:27 +08:00
|
|
|
base.ChangeTargetStorage(newStorage);
|
2021-07-09 12:17:25 +08:00
|
|
|
|
|
|
|
if (lastStorage != null)
|
|
|
|
{
|
|
|
|
// for now we assume that if there was a previous storage, this is a migration operation.
|
|
|
|
// the logger shouldn't be set during initialisation as it can cause cross-talk in tests (due to being static).
|
|
|
|
Logger.Storage = UnderlyingStorage.GetStorageForDirectory("logs");
|
|
|
|
}
|
2020-05-06 17:27:10 +08:00
|
|
|
}
|
2020-05-06 17:31:36 +08:00
|
|
|
|
2022-02-10 17:48:37 +08:00
|
|
|
public override bool Migrate(Storage newStorage)
|
2020-05-06 17:31:36 +08:00
|
|
|
{
|
2022-02-10 17:48:37 +08:00
|
|
|
bool cleanupSucceeded = base.Migrate(newStorage);
|
|
|
|
|
2022-03-29 17:00:56 +08:00
|
|
|
ChangeDataPath(newStorage.GetFullPath("."));
|
2022-02-10 17:48:37 +08:00
|
|
|
|
|
|
|
return cleanupSucceeded;
|
2020-05-07 18:00:59 +08:00
|
|
|
}
|
2020-05-06 17:27:10 +08:00
|
|
|
}
|
2020-07-06 21:03:09 +08:00
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
2020-05-06 17:27:10 +08:00
|
|
|
}
|