2022-06-30 01:46:41 +02:00
|
|
|
|
using System.Collections.Concurrent;
|
2020-09-04 19:56:08 +02:00
|
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
namespace Bit.Sso.Utilities
|
2020-09-04 19:56:08 +02:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
public class ExtendedOptionsMonitorCache<TOptions> : IExtendedOptionsMonitorCache<TOptions> where TOptions : class
|
2022-08-29 20:53:16 +02:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
private readonly ConcurrentDictionary<string, Lazy<TOptions>> _cache =
|
|
|
|
|
new ConcurrentDictionary<string, Lazy<TOptions>>(StringComparer.Ordinal);
|
2020-09-04 19:56:08 +02:00
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
public void AddOrUpdate(string name, TOptions options)
|
|
|
|
|
{
|
|
|
|
|
_cache.AddOrUpdate(name ?? Options.DefaultName, new Lazy<TOptions>(() => options),
|
|
|
|
|
(string s, Lazy<TOptions> lazy) => new Lazy<TOptions>(() => options));
|
|
|
|
|
}
|
2020-09-04 19:56:08 +02:00
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
public void Clear()
|
|
|
|
|
{
|
|
|
|
|
_cache.Clear();
|
|
|
|
|
}
|
2020-09-04 19:56:08 +02:00
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
public TOptions GetOrAdd(string name, Func<TOptions> createOptions)
|
|
|
|
|
{
|
|
|
|
|
return _cache.GetOrAdd(name ?? Options.DefaultName, new Lazy<TOptions>(createOptions)).Value;
|
|
|
|
|
}
|
2020-09-04 19:56:08 +02:00
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
public bool TryAdd(string name, TOptions options)
|
|
|
|
|
{
|
|
|
|
|
return _cache.TryAdd(name ?? Options.DefaultName, new Lazy<TOptions>(() => options));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool TryRemove(string name)
|
|
|
|
|
{
|
|
|
|
|
return _cache.TryRemove(name ?? Options.DefaultName, out _);
|
|
|
|
|
}
|
2020-09-04 19:56:08 +02:00
|
|
|
|
}
|
|
|
|
|
}
|