2020-03-12 04:26:58 +00: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.
|
|
|
|
|
2020-06-08 01:03:57 +00:00
|
|
|
using System;
|
|
|
|
using System.Threading;
|
2020-06-07 22:46:40 +00:00
|
|
|
using osu.Framework.Logging;
|
2020-03-12 04:26:58 +00:00
|
|
|
using osu.Framework.Platform;
|
2020-06-07 22:46:40 +00:00
|
|
|
using osu.Game.IO;
|
2020-06-08 01:03:57 +00:00
|
|
|
using System.IO;
|
2020-06-07 22:46:40 +00:00
|
|
|
using osu.Game.Tournament.Configuration;
|
2020-03-12 04:26:58 +00:00
|
|
|
|
2020-06-09 15:28:42 +00:00
|
|
|
namespace osu.Game.Tournament.IO
|
2020-03-12 04:26:58 +00:00
|
|
|
{
|
2020-06-16 15:39:20 +00:00
|
|
|
public class TournamentStorage : MigratableStorage
|
2020-06-07 22:46:40 +00:00
|
|
|
{
|
2020-06-16 15:00:20 +00:00
|
|
|
private readonly Storage storage;
|
2020-06-11 13:05:28 +00:00
|
|
|
internal readonly TournamentVideoResourceStore VideoStore;
|
2020-06-11 16:07:24 +00:00
|
|
|
internal readonly Storage ConfigurationStorage;
|
2020-06-11 11:56:16 +00:00
|
|
|
private const string default_tournament = "default";
|
2020-06-11 16:21:56 +00:00
|
|
|
private const string config_directory = "config";
|
2020-06-07 22:46:40 +00:00
|
|
|
|
2020-06-16 15:00:20 +00:00
|
|
|
public TournamentStorage(Storage storage)
|
|
|
|
: base(storage.GetStorageForDirectory("tournaments"), string.Empty)
|
2020-06-07 22:46:40 +00:00
|
|
|
{
|
2020-06-16 15:00:20 +00:00
|
|
|
this.storage = storage;
|
2020-06-07 22:46:40 +00:00
|
|
|
|
2020-06-16 15:00:20 +00:00
|
|
|
TournamentStorageManager storageConfig = new TournamentStorageManager(storage);
|
2020-06-11 11:56:16 +00:00
|
|
|
|
2020-06-08 01:03:57 +00:00
|
|
|
var currentTournament = storageConfig.Get<string>(StorageConfig.CurrentTournament);
|
2020-06-07 22:46:40 +00:00
|
|
|
|
2020-06-08 01:03:57 +00:00
|
|
|
if (!string.IsNullOrEmpty(currentTournament))
|
2020-06-07 22:46:40 +00:00
|
|
|
{
|
2020-06-08 16:25:20 +00:00
|
|
|
ChangeTargetStorage(UnderlyingStorage.GetStorageForDirectory(currentTournament));
|
2020-06-07 22:46:40 +00:00
|
|
|
}
|
2020-06-08 01:03:57 +00:00
|
|
|
else
|
|
|
|
{
|
2020-06-11 11:56:16 +00:00
|
|
|
Migrate();
|
|
|
|
storageConfig.Set(StorageConfig.CurrentTournament, default_tournament);
|
|
|
|
storageConfig.Save();
|
|
|
|
ChangeTargetStorage(UnderlyingStorage.GetStorageForDirectory(default_tournament));
|
2020-06-08 01:03:57 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 16:21:56 +00:00
|
|
|
ConfigurationStorage = UnderlyingStorage.GetStorageForDirectory(config_directory);
|
2020-06-11 16:07:24 +00:00
|
|
|
|
2020-06-11 13:05:28 +00:00
|
|
|
VideoStore = new TournamentVideoResourceStore(this);
|
2020-06-07 22:46:40 +00:00
|
|
|
Logger.Log("Using tournament storage: " + GetFullPath(string.Empty));
|
|
|
|
}
|
2020-06-08 01:03:57 +00:00
|
|
|
|
2020-06-11 11:56:16 +00:00
|
|
|
internal void Migrate()
|
2020-06-08 01:03:57 +00:00
|
|
|
{
|
2020-06-16 15:00:20 +00:00
|
|
|
var source = new DirectoryInfo(storage.GetFullPath("tournament"));
|
2020-06-11 11:56:16 +00:00
|
|
|
var destination = new DirectoryInfo(GetFullPath(default_tournament));
|
2020-06-11 16:21:56 +00:00
|
|
|
var cfgDestination = new DirectoryInfo(GetFullPath(default_tournament + Path.DirectorySeparatorChar + config_directory));
|
2020-06-08 01:03:57 +00:00
|
|
|
|
2020-06-16 15:39:20 +00:00
|
|
|
if (source.Exists)
|
|
|
|
{
|
|
|
|
Logger.Log("Migrating tournament assets to default tournament storage.");
|
|
|
|
copyRecursive(source, destination);
|
|
|
|
deleteRecursive(source);
|
|
|
|
}
|
2020-06-11 18:11:44 +00:00
|
|
|
|
2020-06-11 16:21:56 +00:00
|
|
|
if (!cfgDestination.Exists)
|
|
|
|
destination.CreateSubdirectory(config_directory);
|
2020-06-16 15:15:43 +00:00
|
|
|
|
2020-06-16 15:14:54 +00:00
|
|
|
moveFileIfExists("bracket.json", destination);
|
|
|
|
moveFileIfExists("drawings.txt", destination);
|
|
|
|
moveFileIfExists("drawings_results.txt", destination);
|
|
|
|
moveFileIfExists("drawings.ini", cfgDestination);
|
2020-06-08 01:03:57 +00:00
|
|
|
}
|
|
|
|
|
2020-06-16 15:14:54 +00:00
|
|
|
private void moveFileIfExists(string file, DirectoryInfo destination)
|
|
|
|
{
|
|
|
|
if (storage.Exists(file))
|
|
|
|
{
|
|
|
|
Logger.Log($"Migrating {file} to default tournament storage.");
|
|
|
|
var fileInfo = new System.IO.FileInfo(storage.GetFullPath(file));
|
2020-06-16 15:15:43 +00:00
|
|
|
attemptOperation(() => fileInfo.CopyTo(Path.Combine(destination.FullName, fileInfo.Name), true));
|
|
|
|
fileInfo.Delete();
|
2020-06-16 15:14:54 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-07 22:46:40 +00:00
|
|
|
}
|
2020-03-12 04:26:58 +00:00
|
|
|
}
|