CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
AssemblyLoadContextManager.cs
Go to the documentation of this file.
1#if NET5_0_OR_GREATER
2//-----------------------------------------------------------------------
3// <copyright file="AssemblyLoadContextManager.cs" company="Marimer LLC">
4// Copyright (c) Marimer LLC. All rights reserved.
5// Website: https://cslanet.com
6// </copyright>
7// <summary>Provides common access to "AssemblyLoadContext" logic</summary>
8//-----------------------------------------------------------------------
9using System;
10using System.Collections.Concurrent;
11using System.Collections.Generic;
12using System.Runtime.Loader;
13
14namespace Csla.Runtime
15{
19 public static class AssemblyLoadContextManager
20 {
37 public static Tuple<string, TValue> CreateCacheInstance<TValue>(
38 Type objectType,
39 TValue cachingItem,
40 Action<AssemblyLoadContext> unloadAction,
41 bool excludeNonCollectible = false)
42 {
43 if (objectType == null)
44 {
45 throw new ArgumentNullException(nameof(objectType));
46 }
47
48 if (cachingItem == null)
49 {
50 throw new ArgumentNullException(nameof(cachingItem));
51 }
52
53 if (unloadAction == null)
54 {
55 throw new ArgumentNullException(nameof(Action<AssemblyLoadContext>));
56 }
57
58 string assemblyLoadContextName = null;
59
60 if ((!excludeNonCollectible || objectType.Assembly.IsCollectible)
61 && AssemblyLoadContext.CurrentContextualReflectionContext != null
62 && AssemblyLoadContext.CurrentContextualReflectionContext.Name != AssemblyLoadContext.Default.Name)
63 {
64 assemblyLoadContextName = AssemblyLoadContext.CurrentContextualReflectionContext.Name;
65
66 AssemblyLoadContext.CurrentContextualReflectionContext.Unloading += unloadAction;
67 }
68
69 return new Tuple<string, TValue>(assemblyLoadContextName, cachingItem);
70 }
71
84 public static void RemoveFromCache<TKey, TValue>(
85 IDictionary<TKey, Tuple<string, TValue>> dictionary,
86 AssemblyLoadContext context,
87 bool usingConcurrentDictionary = false)
88 {
89 if (dictionary == null)
90 {
91 throw new ArgumentNullException("IDictionary<T, Tuple<string, TC>>");
92 }
93
94 if (context == null)
95 {
96 return;
97 }
98
99 var obsoleteCacheKeys = new List<TKey>();
100
101 foreach (var (cacheKey, cacheInstance) in dictionary)
102 {
103 if (cacheInstance.Item1 == context.Name)
104 {
105 obsoleteCacheKeys.Add(cacheKey);
106 }
107 }
108
109 foreach (var cacheKey in obsoleteCacheKeys)
110 {
111 _ = usingConcurrentDictionary
112 ? ((ConcurrentDictionary<TKey, Tuple<string, TValue>>)dictionary).TryRemove(cacheKey, out _)
113 : dictionary.Remove(cacheKey);
114 }
115 }
116 }
117}
118#endif