forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemberMap.cs
More file actions
357 lines (276 loc) · 12.3 KB
/
MemberMap.cs
File metadata and controls
357 lines (276 loc) · 12.3 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Reflection;
namespace Microsoft.ClearScript.Util
{
internal static class MemberMap
{
private static readonly MemberMapImpl<Field> fieldMap = new MemberMapImpl<Field>();
private static readonly MemberMapImpl<Method> methodMap = new MemberMapImpl<Method>();
private static readonly MemberMapImpl<Property> propertyMap = new MemberMapImpl<Property>();
public static FieldInfo GetField(string name)
{
return fieldMap.GetMember(name);
}
public static FieldInfo[] GetFields(string[] names)
{
// ReSharper disable once CoVariantArrayConversion
return fieldMap.GetMembers(names);
}
public static MethodInfo GetMethod(string name)
{
return methodMap.GetMember(name);
}
public static MethodInfo[] GetMethods(string[] names)
{
// ReSharper disable once CoVariantArrayConversion
return methodMap.GetMembers(names);
}
public static PropertyInfo GetProperty(string name)
{
return propertyMap.GetMember(name);
}
public static PropertyInfo[] GetProperties(string[] names)
{
// ReSharper disable once CoVariantArrayConversion
return propertyMap.GetMembers(names);
}
// ReSharper disable ClassNeverInstantiated.Local
#region Nested type: Field
private sealed class Field : FieldInfo
{
public Field(string name)
{
Name = name;
}
#region FieldInfo overrides
public override FieldAttributes Attributes => FieldAttributes.Public;
// This occurs during VB-based dynamic script item invocation. It was not
// observed before script items gained an IReflect/IExpando implementation that
// exposes script item properties as fields. Apparently VB's dynamic invocation
// support not only recognizes IReflect/IExpando but actually favors it over
// DynamicObject.
public override RuntimeFieldHandle FieldHandle => throw new NotImplementedException();
public override Type FieldType => typeof(object);
// This occurs during VB-based dynamic script item invocation. It was not
// observed before script items gained an IReflect/IExpando implementation that
// exposes script item properties as fields. Apparently VB's dynamic invocation
// support not only recognizes IReflect/IExpando but actually favors it over
// DynamicObject.
public override Type DeclaringType => typeof(object);
// This occurs during VB-based dynamic script item invocation. It was not
// observed before script items gained an IReflect/IExpando implementation that
// exposes script item properties as fields. Apparently VB's dynamic invocation
// support not only recognizes IReflect/IExpando but actually favors it over
// DynamicObject.
public override string Name { get; }
public override Type ReflectedType => throw new NotImplementedException();
public override object GetValue(object obj)
{
// This occurs during VB-based dynamic script item invocation. It was not observed
// before script items gained an IReflect/IExpando implementation that exposes
// script item properties as fields. Apparently VB's dynamic invocation support not
// only recognizes IReflect/IExpando but actually favors it over DynamicObject.
if (obj is IReflect reflect)
{
return reflect.InvokeMember(Name, BindingFlags.GetField, null, obj, ArrayHelpers.GetEmptyArray<object>(), null, CultureInfo.InvariantCulture, null);
}
throw new InvalidOperationException("Invalid field retrieval");
}
public override void SetValue(object obj, object value, BindingFlags invokeFlags, Binder binder, CultureInfo culture)
{
// This occurs during VB-based dynamic script item invocation. It was not observed
// before script items gained an IReflect/IExpando implementation that exposes
// script item properties as fields. Apparently VB's dynamic invocation support not
// only recognizes IReflect/IExpando but actually favors it over DynamicObject.
if (obj is IReflect reflect)
{
reflect.InvokeMember(Name, BindingFlags.SetField, null, obj, new[] { value }, null, culture, null);
return;
}
throw new InvalidOperationException("Invalid field assignment");
}
public override object[] GetCustomAttributes(Type attributeType, bool inherit)
{
return ArrayHelpers.GetEmptyArray<object>();
}
public override object[] GetCustomAttributes(bool inherit)
{
throw new NotImplementedException();
}
public override bool IsDefined(Type attributeType, bool inherit)
{
throw new NotImplementedException();
}
#endregion
}
#endregion
#region Nested type: Method
private sealed class Method : MethodInfo
{
public Method(string name)
{
Name = name;
}
#region MethodInfo overrides
public override ICustomAttributeProvider ReturnTypeCustomAttributes => throw new NotImplementedException();
public override MethodAttributes Attributes => throw new NotImplementedException();
public override RuntimeMethodHandle MethodHandle => throw new NotImplementedException();
public override Type DeclaringType => throw new NotImplementedException();
public override string Name { get; }
public override Type ReflectedType => throw new NotImplementedException();
public override MethodInfo GetBaseDefinition()
{
throw new NotImplementedException();
}
public override MethodImplAttributes GetMethodImplementationFlags()
{
throw new NotImplementedException();
}
public override ParameterInfo[] GetParameters()
{
return ArrayHelpers.GetEmptyArray<ParameterInfo>();
}
public override object Invoke(object obj, BindingFlags invokeFlags, Binder binder, object[] args, CultureInfo culture)
{
throw new NotImplementedException();
}
public override object[] GetCustomAttributes(Type attributeType, bool inherit)
{
return ArrayHelpers.GetEmptyArray<object>();
}
public override object[] GetCustomAttributes(bool inherit)
{
throw new NotImplementedException();
}
public override bool IsDefined(Type attributeType, bool inherit)
{
throw new NotImplementedException();
}
#endregion
}
#endregion
#region Nested type: Property
private sealed class Property : PropertyInfo
{
public Property(string name)
{
Name = name;
}
#region PropertyInfo overrides
public override PropertyAttributes Attributes => throw new NotImplementedException();
public override bool CanRead => throw new NotImplementedException();
public override bool CanWrite => throw new NotImplementedException();
public override Type PropertyType => throw new NotImplementedException();
public override Type DeclaringType => throw new NotImplementedException();
public override string Name { get; }
public override Type ReflectedType => throw new NotImplementedException();
public override MethodInfo[] GetAccessors(bool nonPublic)
{
throw new NotImplementedException();
}
public override MethodInfo GetGetMethod(bool nonPublic)
{
throw new NotImplementedException();
}
public override ParameterInfo[] GetIndexParameters()
{
return ArrayHelpers.GetEmptyArray<ParameterInfo>();
}
public override MethodInfo GetSetMethod(bool nonPublic)
{
throw new NotImplementedException();
}
public override object GetValue(object obj, BindingFlags invokeFlags, Binder binder, object[] index, CultureInfo culture)
{
throw new NotImplementedException();
}
public override void SetValue(object obj, object value, BindingFlags invokeFlags, Binder binder, object[] index, CultureInfo culture)
{
throw new NotImplementedException();
}
public override object[] GetCustomAttributes(Type attributeType, bool inherit)
{
return ArrayHelpers.GetEmptyArray<object>();
}
public override object[] GetCustomAttributes(bool inherit)
{
throw new NotImplementedException();
}
public override bool IsDefined(Type attributeType, bool inherit)
{
throw new NotImplementedException();
}
#endregion
}
#endregion
// ReSharper restore ClassNeverInstantiated.Local
#region Nested type: MemberMapBase
private class MemberMapBase
{
protected const int CompactionThreshold = 1024 * 1024;
protected static readonly TimeSpan CompactionInterval = TimeSpan.FromMinutes(5);
}
#endregion
#region Nested type: MemberMapImpl<T>
private sealed class MemberMapImpl<T> : MemberMapBase where T : MemberInfo
{
private readonly Dictionary<string, WeakReference> map = new Dictionary<string, WeakReference>();
private DateTime lastCompactionTime = DateTime.MinValue;
public T GetMember(string name)
{
lock (map)
{
var result = GetMemberInternal(name);
CompactIfNecessary();
return result;
}
}
public T[] GetMembers(string[] names)
{
lock (map)
{
var result = names.Select(GetMemberInternal).ToArray();
CompactIfNecessary();
return result;
}
}
private T GetMemberInternal(string name)
{
T member;
if (map.TryGetValue(name, out var weakRef))
{
member = weakRef.Target as T;
if (member == null)
{
member = (T)typeof(T).CreateInstance(name);
weakRef.Target = member;
}
}
else
{
member = (T)typeof(T).CreateInstance(name);
map.Add(name, new WeakReference(member));
}
return member;
}
private void CompactIfNecessary()
{
if (map.Count >= CompactionThreshold)
{
var now = DateTime.UtcNow;
if ((lastCompactionTime + CompactionInterval) <= now)
{
map.Where(pair => !pair.Value.IsAlive).ToList().ForEach(pair => map.Remove(pair.Key));
lastCompactionTime = now;
}
}
}
}
#endregion
}
}