8using System.Collections.Generic;
10using System.Runtime.Loader;
18 internal static class DataPortalMethodCache
21 private static Dictionary<MethodCacheKey, Tuple<string, DataPortalMethodInfo>> _cache =
22 new Dictionary<MethodCacheKey, Tuple<string, DataPortalMethodInfo>>();
24 private static Dictionary<MethodCacheKey, DataPortalMethodInfo> _cache =
25 new Dictionary<MethodCacheKey, DataPortalMethodInfo>();
28 public static DataPortalMethodInfo GetMethodInfo(Type objectType,
string methodName, params
object[] parameters)
30 var key =
new MethodCacheKey(objectType.FullName, methodName, MethodCaller.GetParameterTypes(parameters));
32 DataPortalMethodInfo result =
null;
39 found = _cache.TryGetValue(key, out var methodInfo);
41 result = methodInfo?.Item2;
50 found = _cache.TryGetValue(key, out var methodInfo);
52 result = methodInfo?.Item2;
56 result =
new DataPortalMethodInfo(MethodCaller.GetMethod(objectType, methodName, parameters));
58 var cacheInstance = AssemblyLoadContextManager.CreateCacheInstance(objectType, result, OnAssemblyLoadContextUnload);
60 _cache.Add(key, cacheInstance);
67 found = _cache.TryGetValue(key, out result);
76 if (!_cache.TryGetValue(key, out result))
78 result =
new DataPortalMethodInfo(MethodCaller.GetMethod(objectType, methodName, parameters));
80 _cache.Add(key, result);
90 private static void OnAssemblyLoadContextUnload(AssemblyLoadContext context)
93 AssemblyLoadContextManager.RemoveFromCache(_cache, context);