Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ShadowContainer): cache cleanup based on shadows stats #853

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 75 additions & 4 deletions src/Uno.Toolkit.Skia.WinUI/Controls/Shadows/ShadowsCache.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
using System;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;

using Microsoft.Extensions.Logging;
using SkiaSharp;
using Uno.Extensions;
using Uno.Logging;

namespace Uno.Toolkit.UI;

public class ShadowsCache
{
private const int CleanupInterval = 30;

private static readonly ILogger _logger = typeof(ShadowsCache).Log();

private readonly ConcurrentDictionary<string, CacheBucket> _shadowsCache = new ConcurrentDictionary<string, CacheBucket>();
private static readonly Func<CacheBucket, DateTime, bool> OneHitSinceAShortTime =
(bucket, time) => bucket.Hit == 1 && (time - bucket.LastHit).TotalMinutes > 1;

private static readonly Func<CacheBucket, DateTime, bool> SeveralHitsSinceALongTime =
(bucket, time) => bucket.Hit > 1 && (time - bucket.LastHit).TotalMinutes > 3;

private readonly ConcurrentDictionary<string, CacheBucket> _shadowsCache = new();

private DateTime _lastCleanupUtcTime = DateTime.UtcNow;

public void AddOrUpdate(string key, SKImage image)
{
Expand All @@ -19,17 +34,17 @@ public void AddOrUpdate(string key, SKImage image)
_logger.Trace($"[ShadowsCache] AddOrUpdate => key: {key}");
}

var bucket = _shadowsCache.AddOrUpdate(
_shadowsCache.AddOrUpdate(
key,
(key) =>
_ =>
{
if (_logger.IsEnabled(LogLevel.Trace))
{
_logger.Trace($"[ShadowsCache] inserting new shadow in cache");
}
return new CacheBucket(image);
},
(key, existing) =>
(_, existing) =>
{
existing.AddHit();
if (_logger.IsEnabled(LogLevel.Trace))
Expand All @@ -38,6 +53,8 @@ public void AddOrUpdate(string key, SKImage image)
}
return existing;
});

CleanupIfNeeded();
}

public bool TryGetValue(string key, out SKImage? image)
Expand All @@ -46,6 +63,7 @@ public bool TryGetValue(string key, out SKImage? image)
{
_logger.Trace($"[ShadowsCache] TryGet => key: {key}");
}

if (_shadowsCache.TryGetValue(key, out var bucket))
{
bucket.AddHit();
Expand Down Expand Up @@ -101,4 +119,57 @@ public void AddHit()
LastHit = DateTime.UtcNow;
}
}

public async void CleanupIfNeeded()
{
if (!_shadowsCache.IsEmpty && (DateTime.UtcNow - _lastCleanupUtcTime).TotalSeconds > CleanupInterval)
{
try
{
await CleanupAsync().ConfigureAwait(false);
}
catch (Exception ex)
{
_logger.Warn($"[ShadowsCache] Cleanup failed: {ex}");
}
}
}

/// <summary>
/// Removing old shadows based on their stats.
/// </summary>
private Task CleanupAsync()
{
_lastCleanupUtcTime = DateTime.UtcNow;

return Task.Run(() =>
{
var stopwatch = new Stopwatch();
if (_logger.IsEnabled(LogLevel.Trace))
{
stopwatch.Start();
_logger.Trace($"[ShadowsCache] Cleanup starting");
}

DateTime utcNow = DateTime.UtcNow;
int removedShadows = 0;
foreach (var expiredBucket in _shadowsCache
.Where(x => OneHitSinceAShortTime(x.Value, utcNow) || SeveralHitsSinceALongTime(x.Value, utcNow)))
{
if (_shadowsCache.TryRemove(expiredBucket.Key, out _))
{
removedShadows++;
}
}

if (_logger.IsEnabled(LogLevel.Trace))
{
stopwatch.Stop();
if (_logger.IsEnabled(LogLevel.Trace))
{
_logger.Trace($"[ShadowsCache] Cleanup done in {stopwatch.ElapsedMilliseconds} ms ({removedShadows} shadows removed)");
}
}
});
}
}
Loading