10using System.Collections.Concurrent;
11using System.Collections.Generic;
12using System.Runtime.Loader;
19 public static class AssemblyLoadContextManager
37 public static Tuple<string, TValue> CreateCacheInstance<TValue>(
40 Action<AssemblyLoadContext> unloadAction,
41 bool excludeNonCollectible =
false)
43 if (objectType ==
null)
45 throw new ArgumentNullException(nameof(objectType));
48 if (cachingItem ==
null)
50 throw new ArgumentNullException(nameof(cachingItem));
53 if (unloadAction ==
null)
55 throw new ArgumentNullException(nameof(Action<AssemblyLoadContext>));
58 string assemblyLoadContextName =
null;
60 if ((!excludeNonCollectible || objectType.Assembly.IsCollectible)
61 && AssemblyLoadContext.CurrentContextualReflectionContext !=
null
62 && AssemblyLoadContext.CurrentContextualReflectionContext.Name != AssemblyLoadContext.Default.Name)
64 assemblyLoadContextName = AssemblyLoadContext.CurrentContextualReflectionContext.Name;
66 AssemblyLoadContext.CurrentContextualReflectionContext.Unloading += unloadAction;
69 return new Tuple<string, TValue>(assemblyLoadContextName, cachingItem);
84 public static void RemoveFromCache<TKey, TValue>(
85 IDictionary<TKey, Tuple<string, TValue>> dictionary,
86 AssemblyLoadContext context,
87 bool usingConcurrentDictionary =
false)
89 if (dictionary ==
null)
91 throw new ArgumentNullException(
"IDictionary<T, Tuple<string, TC>>");
99 var obsoleteCacheKeys =
new List<TKey>();
101 foreach (var (cacheKey, cacheInstance) in dictionary)
103 if (cacheInstance.Item1 == context.Name)
105 obsoleteCacheKeys.Add(cacheKey);
109 foreach (var cacheKey
in obsoleteCacheKeys)
111 _ = usingConcurrentDictionary
112 ? ((ConcurrentDictionary<TKey, Tuple<string, TValue>>)dictionary).TryRemove(cacheKey, out _)
113 : dictionary.Remove(cacheKey);