9using System.Collections.Generic;
12using System.Runtime.Loader;
23 internal class PropertyComparer : Comparer<IPropertyInfo>
25 public override int Compare(IPropertyInfo x, IPropertyInfo y)
27 return StringComparer.InvariantCulture.Compare(x.Name, y.Name);
34 public static class PropertyInfoManager
36 private static object _cacheLock =
new object();
39 private static Dictionary<Type, Tuple<string, PropertyInfoList>> _propertyInfoCache;
41 private static Dictionary<Type, Tuple<string, PropertyInfoList>> PropertyInfoCache
43 private static Dictionary<Type, PropertyInfoList> _propertyInfoCache;
45 private static Dictionary<Type, PropertyInfoList> PropertyInfoCache
50 if (_propertyInfoCache ==
null)
55 if (_propertyInfoCache ==
null)
56 _propertyInfoCache =
new Dictionary<Type, Tuple<string, PropertyInfoList>>();
58 if (_propertyInfoCache ==
null)
59 _propertyInfoCache =
new Dictionary<Type, PropertyInfoList>();
64 return _propertyInfoCache;
68 internal static PropertyInfoList GetPropertyListCache(Type objectType)
70 var cache = PropertyInfoCache;
73 var found = cache.TryGetValue(objectType, out var listInfo);
75 var list = listInfo?.Item2;
81 found = cache.TryGetValue(objectType, out listInfo);
85 list =
new PropertyInfoList();
87 var cacheInstance = AssemblyLoadContextManager.CreateCacheInstance(objectType, list, OnAssemblyLoadContextUnload);
89 cache.Add(objectType, cacheInstance);
91 FieldDataManager.ForceStaticFieldInit(objectType);
96 var found = cache.TryGetValue(objectType, out PropertyInfoList list);
102 found = cache.TryGetValue(objectType, out list);
106 list =
new PropertyInfoList();
108 cache.Add(objectType, list);
110 FieldDataManager.ForceStaticFieldInit(objectType);
135 internal static PropertyInfo<T> RegisterProperty<T>(Type objectType, PropertyInfo<T> info)
137 var list = GetPropertyListCache(objectType);
153 var index = list.BinarySearch(info,
new PropertyComparer());
159 list.Insert(~index, info);
177 public static PropertyInfoList GetRegisteredProperties(Type objectType)
181 var list = GetPropertyListCache(objectType);
183 return new PropertyInfoList(list);
192 public static IPropertyInfo GetRegisteredProperty(Type objectType,
string propertyName)
194 return GetRegisteredProperties(objectType).FirstOrDefault(p => p.Name == propertyName);
198 private static void OnAssemblyLoadContextUnload(AssemblyLoadContext context)
200 var cache = PropertyInfoCache;
203 AssemblyLoadContextManager.RemoveFromCache(cache, context);
A strongly-typed resource class, for looking up localized strings, etc.
static string PropertyRegisterDuplicateNotAllowed
Looks up a localized string similar to Cannot register property {0}, a PropertyInfo with the same nam...
static string PropertyRegisterNotAllowed
Looks up a localized string similar to Cannot register property {0} after containing type ({1}) has b...