2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2022-01-24 17:24:25 +08:00
|
|
|
|
using System;
|
2022-01-24 13:36:48 +08:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2017-02-26 17:28:01 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2022-01-24 17:24:25 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2019-07-30 22:31:21 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2022-01-12 14:20:48 +08:00
|
|
|
|
using osu.Game.Database;
|
2021-08-12 12:26:42 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-11-23 12:09:41 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.DebugSettings
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
2019-07-30 22:31:21 +08:00
|
|
|
|
public partial class MemorySettings : SettingsSubsection
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
2021-08-12 12:26:42 +08:00
|
|
|
|
protected override LocalisableString Header => DebugSettingsStrings.MemoryHeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-02-26 17:28:01 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-24 18:59:58 +08:00
|
|
|
|
private void load(GameHost host, RealmAccess realm)
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
2022-01-24 13:36:48 +08:00
|
|
|
|
SettingsButton blockAction;
|
|
|
|
|
SettingsButton unblockAction;
|
|
|
|
|
|
2017-02-26 17:28:01 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-10-21 10:46:06 +08:00
|
|
|
|
new SettingsButton
|
2017-02-26 17:28:01 +08:00
|
|
|
|
{
|
2021-08-12 12:26:42 +08:00
|
|
|
|
Text = DebugSettingsStrings.ClearAllCaches,
|
2019-07-30 22:31:21 +08:00
|
|
|
|
Action = host.Collect
|
2017-02-26 17:28:01 +08:00
|
|
|
|
},
|
2022-01-12 14:20:48 +08:00
|
|
|
|
new SettingsButton
|
|
|
|
|
{
|
2022-09-16 20:08:25 +08:00
|
|
|
|
Text = "Compact realm",
|
2022-01-12 14:20:48 +08:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
// Blocking operations implicitly causes a Compact().
|
2022-07-02 11:35:29 +08:00
|
|
|
|
using (realm.BlockAllOperations("compact"))
|
2022-01-12 14:20:48 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2022-01-24 13:36:48 +08:00
|
|
|
|
blockAction = new SettingsButton
|
|
|
|
|
{
|
2022-09-16 20:08:25 +08:00
|
|
|
|
Text = "Block realm",
|
2022-01-24 13:36:48 +08:00
|
|
|
|
},
|
|
|
|
|
unblockAction = new SettingsButton
|
|
|
|
|
{
|
2022-09-16 20:08:25 +08:00
|
|
|
|
Text = "Unblock realm",
|
2022-01-24 13:36:48 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
blockAction.Action = () =>
|
|
|
|
|
{
|
2022-01-24 17:24:25 +08:00
|
|
|
|
try
|
2022-01-24 13:36:48 +08:00
|
|
|
|
{
|
2022-07-02 11:35:29 +08:00
|
|
|
|
var token = realm.BlockAllOperations("maintenance");
|
2022-01-24 13:36:48 +08:00
|
|
|
|
|
2022-01-24 17:24:25 +08:00
|
|
|
|
blockAction.Enabled.Value = false;
|
2022-01-24 13:36:48 +08:00
|
|
|
|
|
2022-01-24 17:24:25 +08: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 13:36:48 +08:00
|
|
|
|
{
|
2022-01-24 17:24:25 +08:00
|
|
|
|
Thread.Sleep(10000);
|
|
|
|
|
unblock();
|
2022-01-24 13:36:48 +08:00
|
|
|
|
});
|
2022-01-24 17:24:25 +08:00
|
|
|
|
|
|
|
|
|
unblockAction.Action = unblock;
|
|
|
|
|
|
|
|
|
|
void unblock()
|
|
|
|
|
{
|
2022-01-26 11:51:09 +08:00
|
|
|
|
if (token == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2022-01-24 17:24:25 +08: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 13:36:48 +08:00
|
|
|
|
}
|
2017-02-26 17:28:01 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|