-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathReflectionExtendHelper.cs
More file actions
346 lines (329 loc) · 14.9 KB
/
ReflectionExtendHelper.cs
File metadata and controls
346 lines (329 loc) · 14.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
/*
* 作用:通过缓存优化反射获取类/属性值特性数据。
* */
using System;
using System.Collections.Generic;
using System.Reflection;
namespace Helper.Core.Library
{
public class ReflectionExtendHelper
{
#region 私有属性常量
private const string TYPE_ATTRIBUTE_FORMAT = "{0}_{1}";
private const string PROPERTY_ATTRIBUTE_FORMAT = "{0}_{1}_{2}";
private const string GET_TYPE_CALL_FORMAT = "Get_{0}_{1}";
private const string SET_TYPE_CALL_FORMAT = "Set_{0}_{1}";
private const string GET_NAME_CALL_FORMAT = "Get_{0}_{1}_{2}";
private const string SET_NAME_CALL_FORMAT = "Set_{0}_{1}_{2}";
/// <summary>
/// Lock 对象
/// </summary>
private static readonly object lockItem = new object();
/// <summary>
/// Type 特性集合
/// </summary>
private static readonly Dictionary<string, dynamic> TypeAttributeDict = new Dictionary<string, dynamic>();
/// <summary>
/// 属性特性集合
/// </summary>
private static readonly Dictionary<string, dynamic> PropertyAttributeDict = new Dictionary<string, dynamic>();
/// <summary>
/// Type 属性委托集合
/// </summary>
private static readonly Dictionary<string, dynamic> PropertyTypeCallDict = new Dictionary<string, dynamic>();
/// <summary>
/// 属性委托集合
/// </summary>
private static readonly Dictionary<string, dynamic> PropertyCallDict = new Dictionary<string, dynamic>();
#endregion
#region 对外公开方法
#region 获取特性
/// <summary>
/// 获取类的特性数据
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="type">Type</param>
/// <param name="lambda">特性属性值,例:p=>p.Name</param>
/// <returns></returns>
public static dynamic GetAttributeValue<T>(Type type, Func<T, object> lambda) where T : Attribute
{
string key = string.Format(TYPE_ATTRIBUTE_FORMAT, type.FullName, typeof(T).Name);
if (TypeAttributeDict.ContainsKey(key))
{
T attribute = TypeAttributeDict[key];
if(attribute != null) return lambda(attribute);
return null;
}
lock (lockItem)
{
T attribute = type.GetCustomAttribute<T>();
if (!TypeAttributeDict.ContainsKey(key))
{
TypeAttributeDict.Add(key, attribute);
if(attribute != null) return lambda(attribute);
}
return null;
}
}
/// <summary>
/// 获取类属性的特性数据
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="type">Type</param>
/// <param name="propertyName">属性名称</param>
/// <param name="lambda">特性属性值,例:p=>p.Name</param>
/// <returns></returns>
public static dynamic GetAttributeValue<T>(Type type, string propertyName, Func<T, object> lambda) where T : Attribute
{
return GetAttributeValue<T>(type, type.GetProperty(propertyName), lambda);
}
/// <summary>
/// 获取类属性的特性数据
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="type">Type</param>
/// <param name="propertyInfo">PropertyInfo</param>
/// <param name="lambda">特性属性值,例:p=>p.Name</param>
/// <returns></returns>
public static dynamic GetAttributeValue<T>(Type type, PropertyInfo propertyInfo, Func<T, object> lambda) where T : Attribute
{
string key = string.Format(PROPERTY_ATTRIBUTE_FORMAT, type.FullName, propertyInfo.Name, typeof(T).Name);
if (PropertyAttributeDict.ContainsKey(key))
{
T attribute = PropertyAttributeDict[key];
if (attribute != null) return lambda(attribute);
return null;
}
lock (lockItem)
{
T attribute = propertyInfo.GetCustomAttribute<T>();
if (!PropertyAttributeDict.ContainsKey(key))
{
PropertyAttributeDict.Add(key, attribute);
if(attribute != null) return lambda(attribute);
}
return null;
}
}
#endregion
#region 获取委托
/// <summary>
/// 获取类属性的获取值委托
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="propertyName">属性名称</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertyGetCall<T>(string propertyName, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression) where T : class
{
Type type = typeof(T);
return ExecutePropertyGetCall(type, propertyName, () =>
{
return ReflectionGenericHelper.PropertyGetCall<T>(type.GetProperty(propertyName), reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的获取值委托
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="propertyInfo">PropertyInfo</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertyGetCall<T>(PropertyInfo propertyInfo, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression) where T : class
{
Type type = typeof(T);
return ExecutePropertyGetCall(type, propertyInfo.Name, () =>
{
return ReflectionGenericHelper.PropertyGetCall<T>(propertyInfo, reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的获取值委托
/// </summary>
/// <param name="type">Type</param>
/// <param name="propertyName">属性名称</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertyGetCall(Type type, string propertyName, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
return ExecutePropertyGetCall(type, propertyName, () =>
{
return ReflectionGenericHelper.PropertyGetCall(type, type.GetProperty(propertyName), reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的获取值委托
/// </summary>
/// <param name="type">Type</param>
/// <param name="propertyInfo">PropertyInfo</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertyGetCall(Type type, PropertyInfo propertyInfo, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
return ExecutePropertyGetCall(type, propertyInfo.Name, () =>
{
return ReflectionGenericHelper.PropertyGetCall(type, propertyInfo, reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的设置值委托
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="propertyName">属性名称</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertySetCall<T>(string propertyName, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression) where T : class
{
Type type = typeof(T);
return ExecutePropertySetCall(type, propertyName, () =>
{
return ReflectionGenericHelper.PropertySetCall<T>(type.GetProperty(propertyName), reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的设置值委托
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="propertyInfo">PropertyInfo</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertySetCall<T>(PropertyInfo propertyInfo, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression) where T : class
{
Type type = typeof(T);
return ExecutePropertySetCall(type, propertyInfo.Name, () =>
{
return ReflectionGenericHelper.PropertySetCall<T>(propertyInfo, reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的设置值委托
/// </summary>
/// <param name="type">Type</param>
/// <param name="propertyName">属性名称</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertySetCall(Type type, string propertyName, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
return ExecutePropertySetCall(type, propertyName, () =>
{
return ReflectionGenericHelper.PropertySetCall(type, type.GetProperty(propertyName), reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的设置值委托
/// </summary>
/// <param name="type">Type</param>
/// <param name="propertyInfo">PropertyInfo</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertySetCall(Type type, PropertyInfo propertyInfo, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
return ExecutePropertySetCall(type, propertyInfo.Name, () =>
{
return ReflectionGenericHelper.PropertySetCall(type, propertyInfo, reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的获取值委托列表
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertyGetCallDict<T>(ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression) where T : class
{
Type type = typeof(T);
return ExecutePropertyGetCall(type, () =>
{
return ReflectionGenericHelper.PropertyGetCallDict<T>(reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的获取值委托列表
/// </summary>
/// <param name="type">Type</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertyGetCallDict(Type type, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
return ExecutePropertyGetCall(type, () =>
{
return ReflectionGenericHelper.PropertyGetCallDict(type, reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的设置值委托列表
/// </summary>
/// <typeparam name="T">实体类型</typeparam>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertySetCallDict<T>(ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression) where T : class
{
Type type = typeof(T);
return ExecutePropertySetCall(type, () =>
{
return ReflectionGenericHelper.PropertySetCallDict<T>(reflectionType);
}, reflectionType);
}
/// <summary>
/// 获取类属性的设置值委托列表
/// </summary>
/// <param name="type">Type</param>
/// <param name="reflectionType">反射类型</param>
/// <returns></returns>
public static dynamic PropertySetCallDict(Type type, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
return ExecutePropertySetCall(type, () =>
{
return ReflectionGenericHelper.PropertySetCallDict(type, reflectionType);
}, reflectionType);
}
#endregion
#endregion
#region 逻辑处理私有函数
private static dynamic ExecutePropertyGetCall(Type type, Func<dynamic> callback, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
string key = string.Format(GET_TYPE_CALL_FORMAT, type.FullName, reflectionType.ToString());
if (PropertyTypeCallDict.ContainsKey(key)) return PropertyTypeCallDict[key];
lock (lockItem)
{
dynamic callDict = callback();
if (!PropertyTypeCallDict.ContainsKey(key)) PropertyTypeCallDict.Add(key, callDict);
return callDict;
}
}
private static dynamic ExecutePropertyGetCall(Type type, string propertyName, Func<dynamic> callback, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
string key = string.Format(GET_NAME_CALL_FORMAT, type.FullName, propertyName, reflectionType.ToString());
if (PropertyCallDict.ContainsKey(key)) return PropertyCallDict[key];
lock (lockItem)
{
dynamic call = callback();
if (!PropertyCallDict.ContainsKey(key)) PropertyCallDict.Add(key, call);
return call;
}
}
private static dynamic ExecutePropertySetCall(Type type, Func<dynamic> callback, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
string key = string.Format(SET_TYPE_CALL_FORMAT, type.FullName, reflectionType.ToString());
if (PropertyTypeCallDict.ContainsKey(key)) return PropertyTypeCallDict[key];
lock (lockItem)
{
dynamic callDict = callback();
if (!PropertyTypeCallDict.ContainsKey(key)) PropertyTypeCallDict.Add(key, callDict);
return callDict;
}
}
private static dynamic ExecutePropertySetCall(Type type, string propertyName, Func<dynamic> callback, ReflectionTypeEnum reflectionType = ReflectionTypeEnum.Expression)
{
string key = string.Format(SET_NAME_CALL_FORMAT, type.FullName, propertyName, reflectionType.ToString());
if (PropertyCallDict.ContainsKey(key)) return PropertyCallDict[key];
lock (lockItem)
{
dynamic call = callback();
if (!PropertyCallDict.ContainsKey(key)) PropertyCallDict.Add(key, call);
return call;
}
}
#endregion
}
}