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
PropertyInfoManager.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="PropertyInfoManager.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Indicates that the specified property belongs</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Linq;
11#if NET5_0_OR_GREATER
12using System.Runtime.Loader;
13
14using Csla.Runtime;
15#endif
16using Csla.Properties;
17
19{
23 internal class PropertyComparer : Comparer<IPropertyInfo>
24 {
25 public override int Compare(IPropertyInfo x, IPropertyInfo y)
26 {
27 return StringComparer.InvariantCulture.Compare(x.Name, y.Name);
28 }
29 }
30
34 public static class PropertyInfoManager
35 {
36 private static object _cacheLock = new object();
37
38#if NET5_0_OR_GREATER
39 private static Dictionary<Type, Tuple<string, PropertyInfoList>> _propertyInfoCache;
40
41 private static Dictionary<Type, Tuple<string, PropertyInfoList>> PropertyInfoCache
42#else
43 private static Dictionary<Type, PropertyInfoList> _propertyInfoCache;
44
45 private static Dictionary<Type, PropertyInfoList> PropertyInfoCache
46#endif
47 {
48 get
49 {
50 if (_propertyInfoCache == null)
51 {
52 lock (_cacheLock)
53 {
54#if NET5_0_OR_GREATER
55 if (_propertyInfoCache == null)
56 _propertyInfoCache = new Dictionary<Type, Tuple<string, PropertyInfoList>>();
57#else
58 if (_propertyInfoCache == null)
59 _propertyInfoCache = new Dictionary<Type, PropertyInfoList>();
60#endif
61 }
62 }
63
64 return _propertyInfoCache;
65 }
66 }
67
68 internal static PropertyInfoList GetPropertyListCache(Type objectType)
69 {
70 var cache = PropertyInfoCache;
71
72#if NET5_0_OR_GREATER
73 var found = cache.TryGetValue(objectType, out var listInfo);
74
75 var list = listInfo?.Item2;
76
77 if (!found)
78 {
79 lock (cache)
80 {
81 found = cache.TryGetValue(objectType, out listInfo);
82
83 if (!found)
84 {
85 list = new PropertyInfoList();
86
87 var cacheInstance = AssemblyLoadContextManager.CreateCacheInstance(objectType, list, OnAssemblyLoadContextUnload);
88
89 cache.Add(objectType, cacheInstance);
90
91 FieldDataManager.ForceStaticFieldInit(objectType);
92 }
93 }
94 }
95#else
96 var found = cache.TryGetValue(objectType, out PropertyInfoList list);
97
98 if (!found)
99 {
100 lock (cache)
101 {
102 found = cache.TryGetValue(objectType, out list);
103
104 if (!found)
105 {
106 list = new PropertyInfoList();
107
108 cache.Add(objectType, list);
109
110 FieldDataManager.ForceStaticFieldInit(objectType);
111 }
112 }
113 }
114#endif
115
116 return list;
117 }
118
135 internal static PropertyInfo<T> RegisterProperty<T>(Type objectType, PropertyInfo<T> info)
136 {
137 var list = GetPropertyListCache(objectType);
138 lock (list)
139 {
140 if (list.IsLocked)
141 throw new InvalidOperationException(string.Format(Resources.PropertyRegisterNotAllowed, info.Name, objectType.Name));
142
143 // This is the semantic code for RegisterProperty
144 //if (list.Any(pi => pi.Name == info.Name))
145 // throw new InvalidOperationException(string.Format(Resources.PropertyRegisterDuplicateNotAllowed, info.Name));
146 //list.Add(info);
147 //list.Sort();
148
149 // Optimized code
150 // BinarySearch uses the same comparer as list.Sort() to find the item in a sorted list.
151 // If not found then returns the negative index for item in sorted list (to insert).
152 // This allows us to insert the item right away with no need for explicit Sort on the list.
153 var index = list.BinarySearch(info, new PropertyComparer());
154 // if found then throw DuplicateNotAllowed
155 if (index >= 0)
156 throw new InvalidOperationException(string.Format(Resources.PropertyRegisterDuplicateNotAllowed, info.Name));
157
158 // insert info at correct sorted index
159 list.Insert(~index, info);
160 }
161 return info;
162 }
163
177 public static PropertyInfoList GetRegisteredProperties(Type objectType)
178 {
179 // return a copy of the list to avoid
180 // possible locking issues
181 var list = GetPropertyListCache(objectType);
182 lock (list)
183 return new PropertyInfoList(list);
184 }
185
192 public static IPropertyInfo GetRegisteredProperty(Type objectType, string propertyName)
193 {
194 return GetRegisteredProperties(objectType).FirstOrDefault(p => p.Name == propertyName);
195 }
196#if NET5_0_OR_GREATER
197
198 private static void OnAssemblyLoadContextUnload(AssemblyLoadContext context)
199 {
200 var cache = PropertyInfoCache;
201
202 lock (cache)
203 AssemblyLoadContextManager.RemoveFromCache(cache, context);
204 }
205#endif
206 }
207}
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...