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
DataPortalMethodCache.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="DataPortalMethodCache.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6//-----------------------------------------------------------------------
7using System;
8using System.Collections.Generic;
9#if NET5_0_OR_GREATER
10using System.Runtime.Loader;
11
12using Csla.Runtime;
13#endif
14using Csla.Reflection;
15
16namespace Csla.Server
17{
18 internal static class DataPortalMethodCache
19 {
20#if NET5_0_OR_GREATER
21 private static Dictionary<MethodCacheKey, Tuple<string, DataPortalMethodInfo>> _cache =
22 new Dictionary<MethodCacheKey, Tuple<string, DataPortalMethodInfo>>();
23#else
24 private static Dictionary<MethodCacheKey, DataPortalMethodInfo> _cache =
25 new Dictionary<MethodCacheKey, DataPortalMethodInfo>();
26#endif
27
28 public static DataPortalMethodInfo GetMethodInfo(Type objectType, string methodName, params object[] parameters)
29 {
30 var key = new MethodCacheKey(objectType.FullName, methodName, MethodCaller.GetParameterTypes(parameters));
31
32 DataPortalMethodInfo result = null;
33
34 var found = false;
35
36#if NET5_0_OR_GREATER
37 try
38 {
39 found = _cache.TryGetValue(key, out var methodInfo);
40
41 result = methodInfo?.Item2;
42 }
43 catch
44 { /* failure will drop into !found block */ }
45
46 if (!found)
47 {
48 lock (_cache)
49 {
50 found = _cache.TryGetValue(key, out var methodInfo);
51
52 result = methodInfo?.Item2;
53
54 if (!found)
55 {
56 result = new DataPortalMethodInfo(MethodCaller.GetMethod(objectType, methodName, parameters));
57
58 var cacheInstance = AssemblyLoadContextManager.CreateCacheInstance(objectType, result, OnAssemblyLoadContextUnload);
59
60 _cache.Add(key, cacheInstance);
61 }
62 }
63 }
64#else
65 try
66 {
67 found = _cache.TryGetValue(key, out result);
68 }
69 catch
70 { /* failure will drop into !found block */ }
71
72 if (!found)
73 {
74 lock (_cache)
75 {
76 if (!_cache.TryGetValue(key, out result))
77 {
78 result = new DataPortalMethodInfo(MethodCaller.GetMethod(objectType, methodName, parameters));
79
80 _cache.Add(key, result);
81 }
82 }
83 }
84#endif
85
86 return result;
87 }
88
89#if NET5_0_OR_GREATER
90 private static void OnAssemblyLoadContextUnload(AssemblyLoadContext context)
91 {
92 lock (_cache)
93 AssemblyLoadContextManager.RemoveFromCache(_cache, context);
94 }
95#endif
96 }
97}