2019-01-24 17:43:03 +09: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.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2022-01-24 18:24:25 +09:00
|
|
|
|
using System;
|
2022-01-24 14:36:48 +09:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2017-02-26 18:28:01 +09:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 12:50:34 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
2022-01-24 18:24:25 +09:00
|
|
|
|
using osu.Framework.Logging;
|
2019-07-30 23:31:21 +09:00
|
|
|
|
using osu.Framework.Platform;
|
2022-01-12 15:20:48 +09:00
|
|
|
|
using osu.Game.Database;
|
2021-08-12 12:26:42 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2021-11-23 13:09:41 +09:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.DebugSettings
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
2019-07-30 23:31:21 +09:00
|
|
|
|
public partial class MemorySettings : SettingsSubsection
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
2021-08-12 12:26:42 +08:00
|
|
|
|
protected override LocalisableString Header => DebugSettingsStrings.MemoryHeader;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-02-26 18:28:01 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-24 19:59:58 +09:00
|
|
|
|
private void load(GameHost host, RealmAccess realm)
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
2022-01-24 14:36:48 +09:00
|
|
|
|
SettingsButton blockAction;
|
|
|
|
|
SettingsButton unblockAction;
|
|
|
|
|
|
2017-02-26 18:28:01 +09:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-10-21 13:16:06 +10:30
|
|
|
|
new SettingsButton
|
2017-02-26 18:28:01 +09:00
|
|
|
|
{
|
2021-08-12 12:26:42 +08:00
|
|
|
|
Text = DebugSettingsStrings.ClearAllCaches,
|
2019-07-30 23:31:21 +09:00
|
|
|
|
Action = host.Collect
|
2017-02-26 18:28:01 +09:00
|
|
|
|
},
|
2022-01-12 15:20:48 +09:00
|
|
|
|
new SettingsButton
|
|
|
|
|
{
|
2022-09-16 21:08:25 +09:00
|
|
|
|
Text = "Compact realm",
|
2022-01-12 15:20:48 +09:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
// Blocking operations implicitly causes a Compact().
|
2022-07-02 12:35:29 +09:00
|
|
|
|
using (realm.BlockAllOperations("compact"))
|
2022-01-12 15:20:48 +09:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-01-24 14:36:48 +09:00
|
|
|
|
blockAction = new SettingsButton
|
|
|
|
|
{
|
2022-09-16 21:08:25 +09:00
|
|
|
|
Text = "Block realm",
|
2022-01-24 14:36:48 +09:00
|
|
|
|
},
|
|
|
|
|
unblockAction = new SettingsButton
|
|
|
|
|
{
|
2022-09-16 21:08:25 +09:00
|
|
|
|
Text = "Unblock realm",
|
2022-01-24 14:36:48 +09:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
blockAction.Action = () =>
|
|
|
|
|
{
|
2022-01-24 18:24:25 +09:00
|
|
|
|
try
|
2022-01-24 14:36:48 +09:00
|
|
|
|
{
|
2022-07-02 12:35:29 +09:00
|
|
|
|
var token = realm.BlockAllOperations("maintenance");
|
2022-01-24 14:36:48 +09:00
|
|
|
|
|
2022-01-24 18:24:25 +09:00
|
|
|
|
blockAction.Enabled.Value = false;
|
2022-01-24 14:36:48 +09:00
|
|
|
|
|
2022-01-24 18:24:25 +09:00
|
|
|
|
// As a safety measure, unblock after 10 seconds.
|
|
|
|
|
// This is to handle the case where a dev may block, but then something on the update thread
|
|
|
|
|
// accesses realm and blocks for eternity.
|
|
|
|
|
Task.Factory.StartNew(() =>
|
2022-01-24 14:36:48 +09:00
|
|
|
|
{
|
2022-01-24 18:24:25 +09:00
|
|
|
|
Thread.Sleep(10000);
|
|
|
|
|
unblock();
|
2022-01-24 14:36:48 +09:00
|
|
|
|
});
|
2022-01-24 18:24:25 +09:00
|
|
|
|
|
|
|
|
|
unblockAction.Action = unblock;
|
|
|
|
|
|
|
|
|
|
void unblock()
|
|
|
|
|
{
|
2022-01-26 12:51:09 +09:00
|
|
|
|
if (token == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2022-01-24 18:24:25 +09:00
|
|
|
|
token?.Dispose();
|
|
|
|
|
token = null;
|
|
|
|
|
|
|
|
|
|
Scheduler.Add(() =>
|
|
|
|
|
{
|
|
|
|
|
blockAction.Enabled.Value = true;
|
|
|
|
|
unblockAction.Action = null;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error(e, "Blocking realm failed");
|
2022-01-24 14:36:48 +09:00
|
|
|
|
}
|
2017-02-26 18:28:01 +09:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|