1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:20:04 +08:00
osu-lazer/osu.Desktop/Performance/HighPerformanceSessionManager.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.9 KiB
C#
Raw Normal View History

// 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;
using System.Runtime;
2024-04-16 09:51:43 +08:00
using System.Threading;
using osu.Framework.Allocation;
2024-02-27 18:17:34 +08:00
using osu.Framework.Logging;
2024-02-27 18:36:03 +08:00
using osu.Game.Performance;
2024-02-27 18:36:03 +08:00
namespace osu.Desktop.Performance
{
2024-02-27 18:36:03 +08:00
public class HighPerformanceSessionManager : IHighPerformanceSessionManager
{
2024-04-16 09:51:43 +08:00
public bool IsSessionActive => activeSessions > 0;
private int activeSessions;
private GCLatencyMode originalGCMode;
public IDisposable BeginSession()
{
enterSession();
return new InvokeOnDisposal<HighPerformanceSessionManager>(this, static m => m.exitSession());
}
private void enterSession()
{
if (Interlocked.Increment(ref activeSessions) > 1)
{
Logger.Log($"High performance session requested ({activeSessions} running in total)");
return;
}
2024-02-27 18:17:34 +08:00
Logger.Log("Starting high performance session");
originalGCMode = GCSettings.LatencyMode;
GCSettings.LatencyMode = GCLatencyMode.LowLatency;
// Without doing this, the new GC mode won't kick in until the next GC, which could be at a more noticeable point in time.
GC.Collect(0);
}
private void exitSession()
{
if (Interlocked.Decrement(ref activeSessions) > 0)
{
Logger.Log($"High performance session finished ({activeSessions} others remain)");
return;
}
2024-02-27 18:17:34 +08:00
Logger.Log("Ending high performance session");
if (GCSettings.LatencyMode == GCLatencyMode.LowLatency)
GCSettings.LatencyMode = originalGCMode;
// No GC.Collect() as we were already collecting at a higher frequency in the old mode.
}
}
}