-
Notifications
You must be signed in to change notification settings - Fork 15.6k
/
Copy pathReflectionUtil.cs
375 lines (335 loc) · 17.2 KB
/
ReflectionUtil.cs
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
#region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#endregion
using System;
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Runtime.CompilerServices;
using Google.Protobuf.Compatibility;
namespace Google.Protobuf.Reflection {
/// <summary>
/// The methods in this class are somewhat evil, and should not be tampered with lightly.
/// Basically they allow the creation of relatively weakly typed delegates from MethodInfos
/// which are more strongly typed. They do this by creating an appropriate strongly typed
/// delegate from the MethodInfo, and then calling that within an anonymous method.
/// Mind-bending stuff (at least to your humble narrator) but the resulting delegates are
/// very fast compared with calling Invoke later on.
/// </summary>
internal static class ReflectionUtil {
static ReflectionUtil() {
ForceInitialize<string>(); // Handles all reference types
ForceInitialize<int>();
ForceInitialize<long>();
ForceInitialize<uint>();
ForceInitialize<ulong>();
ForceInitialize<float>();
ForceInitialize<double>();
ForceInitialize<bool>();
ForceInitialize < int ? > ();
ForceInitialize < long ? > ();
ForceInitialize < uint ? > ();
ForceInitialize < ulong ? > ();
ForceInitialize < float ? > ();
ForceInitialize < double ? > ();
ForceInitialize < bool ? > ();
ForceInitialize<SampleEnum>();
SampleEnumMethod();
}
internal static void ForceInitialize<T>() => new ReflectionHelper<IMessage, T>();
/// <summary>
/// Empty Type[] used when calling GetProperty to force property instead of indexer fetching.
/// </summary>
internal static readonly Type[] EmptyTypes = new Type[0];
/// <summary>
/// Creates a delegate which will cast the argument to the type that declares the method,
/// call the method on it, then convert the result to object.
/// </summary>
/// <param name="method">The method to create a delegate for, which must be declared in an
/// IMessage implementation.</param>
internal static Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) =>
GetReflectionHelper(method.DeclaringType, method.ReturnType)
.CreateFuncIMessageObject(method);
/// <summary>
/// Creates a delegate which will cast the argument to the type that declares the method,
/// call the method on it, then convert the result to the specified type. The method is expected
/// to actually return an enum (because of where we're calling it - for oneof cases). Sometimes
/// that means we need some extra work to perform conversions.
/// </summary>
/// <param name="method">The method to create a delegate for, which must be declared in an
/// IMessage implementation.</param>
internal static Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method) =>
GetReflectionHelper(method.DeclaringType, method.ReturnType)
.CreateFuncIMessageInt32(method);
/// <summary>
/// Creates a delegate which will execute the given method after casting the first argument to
/// the type that declares the method, and the second argument to the first parameter type of
/// the method.
/// </summary>
/// <param name="method">The method to create a delegate for, which must be declared in an
/// IMessage implementation.</param>
internal static Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) =>
GetReflectionHelper(method.DeclaringType, method.GetParameters()[0].ParameterType)
.CreateActionIMessageObject(method);
/// <summary>
/// Creates a delegate which will execute the given method after casting the first argument to
/// type that declares the method.
/// </summary>
/// <param name="method">The method to create a delegate for, which must be declared in an
/// IMessage implementation.</param>
internal static Action<IMessage> CreateActionIMessage(MethodInfo method) =>
GetReflectionHelper(method.DeclaringType, typeof(object)).CreateActionIMessage(method);
internal static Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method) =>
GetReflectionHelper(method.DeclaringType, method.ReturnType).CreateFuncIMessageBool(method);
[UnconditionalSuppressMessage(
"Trimming", "IL2026",
Justification =
"Type parameter members are preserved with DynamicallyAccessedMembers on GeneratedClrTypeInfo.ctor clrType parameter.")]
[UnconditionalSuppressMessage(
"AotAnalysis", "IL3050:RequiresDynamicCode",
Justification =
"Type definition is explicitly specified and type argument is always a message type.")]
internal static Func<IMessage, bool> CreateIsInitializedCaller([
DynamicallyAccessedMembers(GeneratedClrTypeInfo.MessageAccessibility)
] Type msg) => ((IExtensionSetReflector)Activator
.CreateInstance(typeof(ExtensionSetReflector<>).MakeGenericType(msg)))
.CreateIsInitializedCaller();
/// <summary>
/// Creates a delegate which will execute the given method after casting the first argument to
/// the type that declares the method, and the second argument to the first parameter type of
/// the method.
/// </summary>
[UnconditionalSuppressMessage(
"Trimming", "IL2026",
Justification =
"Type parameter members are preserved with DynamicallyAccessedMembers on GeneratedClrTypeInfo.ctor clrType parameter.")]
[UnconditionalSuppressMessage("AOT", "IL3050",
Justification = "Dynamic code won't call Type.MakeGenericType.")]
internal static IExtensionReflectionHelper CreateExtensionHelper(Extension extension) {
#if NET5_0_OR_GREATER
if (!RuntimeFeature.IsDynamicCodeSupported) {
// Using extensions with reflection is not supported with AOT.
// This helper is created when descriptors are populated. Delay throwing error until an app
// uses IFieldAccessor with an extension field.
return new AotExtensionReflectionHelper();
}
#endif
var t1 = extension.TargetType;
var t3 = extension.GetType().GenericTypeArguments[1];
return (IExtensionReflectionHelper)Activator.CreateInstance(
typeof(ExtensionReflectionHelper<, >).MakeGenericType(t1, t3), extension);
}
/// <summary>
/// Creates a reflection helper for the given type arguments. Currently these are created on
/// demand rather than cached; this will be "busy" when initially loading a message's
/// descriptor, but after that they can be garbage collected. We could cache them by type if
/// that proves to be important, but creating an object is pretty cheap.
/// </summary>
[UnconditionalSuppressMessage(
"Trimming", "IL2026",
Justification =
"Type parameter members are preserved with DynamicallyAccessedMembers on GeneratedClrTypeInfo.ctor clrType parameter.")]
[UnconditionalSuppressMessage("AOT", "IL3050",
Justification = "Dynamic code won't call Type.MakeGenericType.")]
private static IReflectionHelper GetReflectionHelper(Type t1, Type t2) {
#if NET5_0_OR_GREATER
if (!RuntimeFeature.IsDynamicCodeSupported) {
return new AotReflectionHelper();
}
#endif
return (IReflectionHelper)Activator.CreateInstance(
typeof(ReflectionHelper<, >).MakeGenericType(t1, t2));
}
// Non-generic interface allowing us to use an instance of ReflectionHelper<T1, T2> without
// statically knowing the types involved.
private interface IReflectionHelper {
Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method);
Action<IMessage> CreateActionIMessage(MethodInfo method);
Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method);
Action<IMessage, object> CreateActionIMessageObject(MethodInfo method);
Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method);
}
internal interface IExtensionReflectionHelper {
object GetExtension(IMessage message);
void SetExtension(IMessage message, object value);
bool HasExtension(IMessage message);
void ClearExtension(IMessage message);
}
private interface IExtensionSetReflector {
Func<IMessage, bool> CreateIsInitializedCaller();
}
private sealed class ReflectionHelper<T1, T2> : IReflectionHelper {
public Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method) {
// On pleasant runtimes, we can create a Func<int> from a method returning
// an enum based on an int. That's the fast path.
if (CanConvertEnumFuncToInt32Func) {
var del = (Func<T1, int>)method.CreateDelegate(typeof(Func<T1, int>));
return message => del((T1)message);
} else {
// On some runtimes (e.g. old Mono) the return type has to be exactly correct,
// so we go via boxing. Reflection is already fairly inefficient, and this is
// only used for one-of case checking, fortunately.
var del = (Func<T1, T2>)method.CreateDelegate(typeof(Func<T1, T2>));
return message => (int)(object)del((T1)message);
}
}
public Action<IMessage> CreateActionIMessage(MethodInfo method) {
var del = (Action<T1>)method.CreateDelegate(typeof(Action<T1>));
return message => del((T1)message);
}
public Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) {
var del = (Func<T1, T2>)method.CreateDelegate(typeof(Func<T1, T2>));
return message => del((T1)message);
}
public Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) {
var del = (Action<T1, T2>)method.CreateDelegate(typeof(Action<T1, T2>));
return (message, arg) => del((T1)message, (T2)arg);
}
public Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method) {
var del = (Func<T1, bool>)method.CreateDelegate(typeof(Func<T1, bool>));
return message => del((T1)message);
}
}
private sealed class ExtensionReflectionHelper<T1, T3> : IExtensionReflectionHelper
where T1 : IExtendableMessage<T1> {
private readonly Extension extension;
public ExtensionReflectionHelper(Extension extension) {
this.extension = extension;
}
public object GetExtension(IMessage message) {
if (message is not T1 extensionMessage) {
throw new InvalidCastException(
"Cannot access extension on message that isn't IExtensionMessage");
}
if (extension is Extension<T1, T3> ext13) {
return extensionMessage.GetExtension(ext13);
} else if (extension is RepeatedExtension<T1, T3> repeatedExt13) {
return extensionMessage.GetOrInitializeExtension(repeatedExt13);
} else {
throw new InvalidCastException(
"The provided extension is not a valid extension identifier type");
}
}
public bool HasExtension(IMessage message) {
if (message is not T1 extensionMessage) {
throw new InvalidCastException(
"Cannot access extension on message that isn't IExtensionMessage");
}
if (extension is Extension<T1, T3> ext13) {
return extensionMessage.HasExtension(ext13);
} else if (extension is RepeatedExtension<T1, T3>) {
throw new InvalidOperationException(
"HasValue is not implemented for repeated extensions");
} else {
throw new InvalidCastException(
"The provided extension is not a valid extension identifier type");
}
}
public void SetExtension(IMessage message, object value) {
if (message is not T1 extensionMessage) {
throw new InvalidCastException(
"Cannot access extension on message that isn't IExtensionMessage");
}
if (extension is Extension<T1, T3> ext13) {
extensionMessage.SetExtension(ext13, (T3)value);
} else if (extension is RepeatedExtension<T1, T3>) {
throw new InvalidOperationException(
"SetValue is not implemented for repeated extensions");
} else {
throw new InvalidCastException(
"The provided extension is not a valid extension identifier type");
}
}
public void ClearExtension(IMessage message) {
if (message is not T1 extensionMessage) {
throw new InvalidCastException(
"Cannot access extension on message that isn't IExtensionMessage");
}
if (extension is Extension<T1, T3> ext13) {
extensionMessage.ClearExtension(ext13);
} else if (extension is RepeatedExtension<T1, T3> repeatedExt13) {
extensionMessage.GetExtension(repeatedExt13).Clear();
} else {
throw new InvalidCastException(
"The provided extension is not a valid extension identifier type");
}
}
}
#if NET5_0_OR_GREATER
/// <summary>
/// This helper is compatible with .NET Native AOT.
/// MakeGenericType doesn't work when a type argument is a value type in AOT.
/// MethodInfo.Invoke is used instead of compiled expressions because it's faster in AOT.
/// </summary>
private sealed class AotReflectionHelper : IReflectionHelper {
private static readonly object[] EmptyObjectArray = new object[0];
public Action<IMessage> CreateActionIMessage(MethodInfo method) => message =>
method.Invoke(message, EmptyObjectArray);
public Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) =>
(message, arg) => method.Invoke(message, new object[] { arg });
public Func<IMessage, bool> CreateFuncIMessageBool(MethodInfo method) => message =>
(bool)method.Invoke(message, EmptyObjectArray);
public Func<IMessage, int> CreateFuncIMessageInt32(MethodInfo method) => message =>
(int)method.Invoke(message, EmptyObjectArray);
public Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) => message =>
method.Invoke(message, EmptyObjectArray);
}
/// <summary>
/// Reflection with extensions isn't supported because IExtendableMessage members are used to
/// get values. Can't use reflection to invoke those methods because they have a generic
/// argument. MakeGenericMethod can't be used because it will break whenever the extension type
/// is a value type. This could be made to work if there were non-generic methods available for
/// getting and setting extension values.
/// </summary>
private sealed class AotExtensionReflectionHelper : IExtensionReflectionHelper {
private const string Message = "Extensions reflection is not supported with AOT.";
public object GetExtension(IMessage message) => throw new NotSupportedException(Message);
public bool HasExtension(IMessage message) => throw new NotSupportedException(Message);
public void SetExtension(IMessage message,
object value) => throw new NotSupportedException(Message);
public void ClearExtension(IMessage message) => throw new NotSupportedException(Message);
}
#endif
private sealed class ExtensionSetReflector<[DynamicallyAccessedMembers(
DynamicallyAccessedMemberTypes.PublicProperties |
DynamicallyAccessedMemberTypes.NonPublicProperties)] T1> : IExtensionSetReflector
where T1 : IExtendableMessage<T1> {
public Func<IMessage, bool> CreateIsInitializedCaller() {
var prop = typeof(T1).GetTypeInfo().GetDeclaredProperty("_Extensions");
var getFunc = (Func<T1, ExtensionSet<T1>>)prop.GetMethod.CreateDelegate(
typeof(Func<T1, ExtensionSet<T1>>));
var initializedFunc = (Func<ExtensionSet<T1>, bool>)typeof(ExtensionSet<T1>)
.GetTypeInfo()
.GetDeclaredMethod("IsInitialized")
.CreateDelegate(typeof(Func<ExtensionSet<T1>, bool>));
return (m) => {
var set = getFunc((T1)m);
return set == null || initializedFunc(set);
};
}
}
// Runtime compatibility checking code - see ReflectionHelper<T1, T2>.CreateFuncIMessageInt32
// for details about why we're doing this.
// Deliberately not inside the generic type. We only want to check this once.
private static bool CanConvertEnumFuncToInt32Func { get; } =
CheckCanConvertEnumFuncToInt32Func();
private static bool CheckCanConvertEnumFuncToInt32Func() {
try {
// Try to do the conversion using reflection, so we can see whether it's supported.
MethodInfo method = typeof(ReflectionUtil).GetMethod(nameof(SampleEnumMethod));
// If this passes, we're in a reasonable runtime.
method.CreateDelegate(typeof(Func<int>));
return true;
} catch (ArgumentException) {
return false;
}
}
public enum SampleEnum { X }
// Public to make the reflection simpler.
public static SampleEnum SampleEnumMethod() => SampleEnum.X;
}
}