-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypeCaster.cs
More file actions
431 lines (338 loc) · 15.9 KB
/
Copy pathTypeCaster.cs
File metadata and controls
431 lines (338 loc) · 15.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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
using System;
using System.Collections.Generic;
using System.Reflection;
/// <summary>
/// Type caster that allows fast runtime casting any type to another type including casting enums to enums, to/from interfaces and generic types
/// </summary>
public static class TypeCaster<T, TResult> {
#region Fields
private static Func<T, TResult> CastFunc;
#endregion
static TypeCaster() {
//If target type is object we simply return value as System.Object
if (TrySetObjectCast()) {
return;
}
//Then we try to return T as TResult (if T inherits from TResult)
if (TrySetInheritCast()) {
return;
}
//Then we try to use one of the custom casters
if (TrySetCustomCaster()) {
return;
}
//Then we try to find a casting operator on T and TResult
if (TrySetOperatorMethod()) {
return;
}
//Then we try to use one of the static custom casters
if (TrySetStaticCaster()) {
return;
}
//Then we try to simply return casted type as desired type. This will work with exact matches, derived types and if we cast enum to/from it's underlying type (int, long, etc)
//This method won't work if desired type is System.Object and casted type is a ValueType because this method will fail to box casted data
if (TrySetDefaultConverter()) {
return;
}
//If we want to cast enum to another enum then we must first cast to it's underlying type (integer in most cases) and only then we can cast it to desired enum type
if (TrySetEnumConversionMethod()) {
return;
}
//If this type has a default caster we try to see if it's viable as intermediate cast
if (TryDefaultTypeCast()) {
return;
}
//Finally if we failed to find acceptible cast method then type "T" is not castable to type "TResult" so we do safe cast (returns default value if cast fails)
CastFunc = SafeCast;
}
public static MethodInfo CasterMethod => CastFunc?.Method;
public static bool IsValid => CastFunc.Method != ((Func<T, TResult>)SafeCast).Method;
public static TResult Cast(T value) => CastFunc(value);
private static IEnumerable<MethodInfo> GetOperatorCasters() {
foreach (Type type in GetTypes(false)) {
foreach (MethodInfo m in type.GetMethods(BindingFlags.Static | BindingFlags.Public)) {
if (!m.IsSpecialName) continue;
if (m.Name != "op_Implicit" && m.Name != "op_Explicit") continue;
yield return m;
}
}
}
private static TResult CastEnumToEnumByte(byte value) => TypeCaster<byte, TResult>.CastFunc(value);
private static TResult CastEnumToEnumInt(int value) => TypeCaster<int, TResult>.CastFunc(value);
private static TResult CastEnumToEnumLong(long value) => TypeCaster<long, TResult>.CastFunc(value);
private static TResult CastEnumToEnumSByte(sbyte value) => TypeCaster<sbyte, TResult>.CastFunc(value);
private static TResult CastEnumToEnumShort(short value) => TypeCaster<short, TResult>.CastFunc(value);
private static TResult CastEnumToEnumUInt(uint value) => TypeCaster<uint, TResult>.CastFunc(value);
private static TResult CastEnumToEnumULong(ulong value) => TypeCaster<ulong, TResult>.CastFunc(value);
private static TResult CastEnumToEnumUShort(ushort value) => TypeCaster<ushort, TResult>.CastFunc(value);
private static object CastToSystemObject(T value) => value;
private static Func<T, TResult> CreateDelegate(MethodInfo method) => (Func<T, TResult>)Delegate.CreateDelegate(typeof(Func<T, TResult>), method);
private static TResult DefaultCast(TResult value) => value;
private static TResult DefaultTypeCast<TDefault>(T value) {
TDefault temp = TypeCaster<T, TDefault>.Cast(value);
return TypeCaster<TDefault, TResult>.Cast(temp);
}
private static IEnumerable<DefaultTypeCasterAttribute> GetDefaultCasterAttributes() {
foreach (Type type in GetTypes(typeof(T), true)) {
IEnumerable<DefaultTypeCasterAttribute> attributes = type.GetCustomAttributes<DefaultTypeCasterAttribute>();
foreach (DefaultTypeCasterAttribute attribute in attributes) yield return attribute;
}
}
private static MethodInfo GetTestedMethod(MethodInfo method) {
if (!method.IsGenericMethod) {
if (InstanceMethodIsCompatible(method)) {
return method;
}
}
else {
bool returnTypeContainsGenericParameters = method.ReturnType.ContainsGenericParameters;
foreach (var t in GetTypes(typeof(TResult), true)) {
MethodInfo specific = null;
Type[] typeArguments;
if (returnTypeContainsGenericParameters) {
typeArguments = t.GetGenericArguments();
}
else {
typeArguments = new Type[] { t };
}
try {
specific = method.MakeGenericMethod(typeArguments);
}
catch {
continue;
}
if (InstanceMethodIsCompatible(specific)) return specific;
}
}
return null;
}
private static bool InstanceMethodIsCompatible(MethodInfo method) {
if (!typeof(TResult).IsAssignableFrom(method.ReturnType)) return false;
return true;
}
private static IEnumerable<Type> GetTypes(bool getInterfaces) {
HashSet<Type> types = new HashSet<Type>();
foreach (Type t in GetTypes(typeof(T), getInterfaces)) {
if (types.Contains(t)) continue;
types.Add(t);
yield return t;
}
foreach (Type t in GetTypes(typeof(TResult), getInterfaces)) {
if (types.Contains(t)) continue;
types.Add(t);
yield return t;
}
}
private static IEnumerable<Type> GetTypes(Type type, bool getInterfaces) {
Type current = type;
do {
yield return current;
current = current.BaseType;
}
while (current != null);
if (getInterfaces) {
foreach (var t in type.GetInterfaces()) yield return t;
}
}
private static TResult SafeCast(T value) {
if (value is TResult cast) return cast;
return default;
}
private static MethodInfo SelectMethod(MethodInfo current, MethodInfo other) {
if (other == null) return current;
if (current == null) return other;
if (current.ReflectedType.IsAssignableFrom(other.ReflectedType)) return other;
//not sure if needed
if (other.ReturnType.IsAssignableFrom(current.ReturnType)) return other;
return current;
}
private static bool TryDefaultTypeCast() {
foreach (DefaultTypeCasterAttribute attribute in GetDefaultCasterAttributes()) {
if (typeof(T) == attribute.CastType) continue;
if (typeof(TResult) == attribute.CastType) continue;
if (attribute.DesiredType != null && attribute.DesiredType != typeof(TResult)) continue;
MethodInfo method = typeof(TypeCaster<T, TResult>).GetMethod(nameof(TryGetDefaultCastTypeCaster), BindingFlags.Static | BindingFlags.NonPublic);
MethodInfo specific = method.MakeGenericMethod(attribute.CastType);
object func = specific.Invoke(null, null);
if (func == null) continue;
CastFunc = (Func<T, TResult>)func;
return true;
}
return false;
}
private static Func<T, TResult> TryGetDefaultCastTypeCaster<TDefault>() {
//if both "T >> TDefault" and "TDefaul >> TResult" casts are invalid then this cast is invalid as well
if (!TypeCaster<T, TDefault>.IsValid && !TypeCaster<TDefault, TResult>.IsValid) return null;
return DefaultTypeCast<TDefault>;
}
private static bool TrySetCustomCaster() {
MethodInfo selected = null;
foreach (var m in GetCasterMethods()) {
selected = SelectMethod(selected, GetTestedMethod(m));
}
if (selected != null) {
CastFunc = CreateDelegate(selected);
return true;
}
return false;
}
private static IEnumerable<MethodInfo> GetCasterMethods() {
foreach (Type type in GetTypes(typeof(T), true)) {
MethodInfo[] methods = type.GetMethods(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
foreach (MethodInfo method in methods) {
TypeCasterAttribute attribute = method.GetCustomAttribute<TypeCasterAttribute>();
if (attribute == null) continue;
if (method.ReturnType == typeof(void)) {
continue;
}
if (method.GetParameters().Length > 0) {
continue;
}
yield return method;
}
}
}
private static bool TrySetDefaultConverter() {
MethodInfo method = typeof(TypeCaster<T, TResult>).GetMethod(nameof(DefaultCast), BindingFlags.Static | BindingFlags.NonPublic);
Func<T, TResult> func;
try {
func = CreateDelegate(method);
}
catch (ArgumentException) {
return false;
}
CastFunc = func;
return true;
}
private static bool TrySetEnumConversionMethod() {
//T must be an enum
if (!typeof(T).IsEnum) return false;
//TResult must also be an enum
if (!typeof(TResult).IsEnum) return false;
//underlying type of both T and TResult must be the same
if (typeof(T).GetEnumUnderlyingType() != typeof(TResult).GetEnumUnderlyingType()) return false;
string methodName = null;
Type underlyingType = typeof(T).GetEnumUnderlyingType();
if (underlyingType == typeof(int)) methodName = nameof(CastEnumToEnumInt);
else if (underlyingType == typeof(sbyte)) methodName = nameof(CastEnumToEnumSByte);
else if (underlyingType == typeof(byte)) methodName = nameof(CastEnumToEnumByte);
else if (underlyingType == typeof(short)) methodName = nameof(CastEnumToEnumShort);
else if (underlyingType == typeof(ushort)) methodName = nameof(CastEnumToEnumUShort);
else if (underlyingType == typeof(uint)) methodName = nameof(CastEnumToEnumUInt);
else if (underlyingType == typeof(long)) methodName = nameof(CastEnumToEnumLong);
else if (underlyingType == typeof(ulong)) methodName = nameof(CastEnumToEnumULong);
MethodInfo method = typeof(TypeCaster<T, TResult>).GetMethod(methodName, BindingFlags.Static | BindingFlags.NonPublic);
CastFunc = CreateDelegate(method);
return true;
}
private static bool TrySetInheritCast() {
if (!typeof(TResult).IsAssignableFrom(typeof(T))) return false;
return TrySetDefaultConverter();
}
private static bool TrySetObjectCast() {
if (typeof(TResult) != typeof(object)) return false;
CastFunc = (Func<T, TResult>)(Delegate)(Func<T, object>)CastToSystemObject;
return true;
}
private static bool TrySetOperatorMethod() {
foreach (MethodInfo method in GetOperatorCasters()) {
if (!StaticMethodIsCompatible(method)) continue;
CastFunc = CreateDelegate(method);
return true;
}
return false;
}
private static bool TrySetStaticCaster() {
foreach (var m in GetStaticCasterMethods()) {
if (!StaticMethodIsCompatible(m)) continue;
CastFunc = CreateDelegate(m);
return true;
}
return false;
}
private static IEnumerable<MethodInfo> GetStaticCasterMethods() {
MethodInfo[] methods = typeof(GlobalTypeCasters).GetMethods(BindingFlags.Static | BindingFlags.Public);
foreach (MethodInfo method in methods) {
if (method.ReturnType == typeof(void)) {
continue;
}
if (method.GetParameters().Length != 1) {
continue;
}
if (method.IsGenericMethod) {
Type tTGeneric = method.ReturnType;
Type tResultGeneric = method.GetParameters()[0].ParameterType;
char tTChar = GetGenericParameterType(tTGeneric);
char tResultChar = GetGenericParameterType(tResultGeneric);
foreach (var t in GetTypes(true)) {
MethodInfo specific = null;
if (tTChar == 'T' || tResultChar == 'T') {
try {
specific = method.MakeGenericMethod(t);
}
catch {
}
if (specific != null) yield return specific;
}
if (tTChar == 't' || tResultChar == 't') {
try {
specific = method.MakeGenericMethod(t.GetGenericArguments());
}
catch {
}
if (specific != null) yield return specific;
}
}
if (tTGeneric != tResultGeneric && tTChar != 's' && tResultChar != 's') {
foreach (var tT in GetTypes(typeof(T), true)) {
foreach (var tResult in GetTypes(typeof(TResult), true)) {
List<Type> typeArgumentList = new List<Type>();
if (tTChar == 'T') {
typeArgumentList.Add(tT);
}
else if (tTChar == 't') {
typeArgumentList.AddRange(tT.GetGenericArguments());
}
if (tResultChar == 'T') {
typeArgumentList.Add(tResult);
}
else if (tResultChar == 't') {
typeArgumentList.AddRange(tResult.GetGenericArguments());
}
MethodInfo specific = null;
Type[] typeArguments = new Type[typeArgumentList.Count];
for (int i = 0; i < typeArguments.Length; i++) {
typeArguments[i] = typeArgumentList[i];
}
try {
specific = method.MakeGenericMethod(typeArguments);
}
catch {
}
if (specific != null) yield return specific;
}
}
}
}
else {
yield return method;
}
}
}
private static char GetGenericParameterType(Type type) {
if (type.IsGenericParameter) {
return 'T';
}
else if (type.ContainsGenericParameters) {
return 't';
}
else {
return 's';
}
}
private static bool StaticMethodIsCompatible(MethodInfo method) {
if (!typeof(TResult).IsAssignableFrom(method.ReturnType)) return false;
if (!method.GetParameters()[0].ParameterType.IsAssignableFrom(typeof(T))) return false;
return true;
}
}