-
Notifications
You must be signed in to change notification settings - Fork 0
/
Util.cs
287 lines (241 loc) · 10.4 KB
/
Util.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
using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text.RegularExpressions;
using Verse;
namespace LordFanger
{
public static class Util
{
public class FieldInfoWithAttributes
{
public FieldInfoWithAttributes(FieldInfo fieldInfo)
{
FieldInfo = fieldInfo;
Attributes = fieldInfo.GetCustomAttributes().ToArray();
}
public FieldInfo FieldInfo { get; }
public Attribute[] Attributes { get; }
}
private class CacheFields
{
private readonly struct CacheEntry
{
public CacheEntry(FieldInfo[] fields, FieldInfoWithAttributes[] fieldsWithAttributes, IDictionary<string, FieldInfo> fieldsByName, IDictionary<string, FieldInfoWithAttributes> fieldsWithAttributesByName)
{
Fields = fields;
FieldsWithAttributes = fieldsWithAttributes;
FieldsByName = fieldsByName;
FieldsWithAttributesByName = fieldsWithAttributesByName;
}
public FieldInfo[] Fields { get; }
public FieldInfoWithAttributes[] FieldsWithAttributes { get; }
public IDictionary<string, FieldInfo> FieldsByName { get; }
public IDictionary<string, FieldInfoWithAttributes> FieldsWithAttributesByName { get; }
}
private readonly ConcurrentDictionary<Type, CacheEntry> _fields = new ConcurrentDictionary<Type, CacheEntry>();
private readonly Func<FieldInfo, bool> _predicate;
public CacheFields(Func<FieldInfo, bool> predicate)
{
_predicate = predicate;
}
public IDictionary<string, FieldInfo> GetFieldsByName(Type type)
{
var entry = GetEntry(type);
return entry.FieldsByName;
}
public IDictionary<string, FieldInfoWithAttributes> GetFieldsWithAttributesByName(Type type)
{
var entry = GetEntry(type);
return entry.FieldsWithAttributesByName;
}
public FieldInfo[] GetFields(Type type)
{
var entry = GetEntry(type);
return entry.Fields;
}
public FieldInfoWithAttributes[] GetFieldsWithAttributes(Type type)
{
var entry = GetEntry(type);
return entry.FieldsWithAttributes;
}
private CacheEntry GetEntry(Type type)
{
if (_fields.TryGetValue(type, out var entry))
{
return entry;
}
var rawFields = new List<FieldInfo>();
var fieldNames = new HashSet<string>(); // TODO solve new overiden fields
var type2 = type;
var ignoreStatic = false;
while (type2 != null && type2 != typeof(object))
{
foreach (var field in type2.GetRuntimeFields())
{
if (ignoreStatic && field.IsStatic) continue;
if (!_predicate(field)) continue;
if (fieldNames.Contains(field.Name)) continue;
rawFields.Add(field);
fieldNames.Add(field.Name);
}
ignoreStatic = true;
type2 = type2.BaseType;
}
var fieldsWithAttributes = rawFields.Select(WithAttributes).OrderBy(f => f.FieldInfo.Name).ToArray();
var fieldsWithAttributesByName = fieldsWithAttributes.ToDictionary(f => f.FieldInfo.Name);
var fields = fieldsWithAttributes.Select(f => f.FieldInfo).OrderBy(f => f.Name).ToArray();
var fieldsByName = fields.ToDictionary(f => f.Name);
entry = new CacheEntry(fields, fieldsWithAttributes, fieldsByName, fieldsWithAttributesByName);
_fields[type] = entry;
return entry;
}
private static FieldInfoWithAttributes WithAttributes(FieldInfo fieldInfo) => new FieldInfoWithAttributes(fieldInfo);
}
private static readonly CacheFields _instances = new CacheFields(f => !f.IsStatic);
private static readonly CacheFields _statics = new CacheFields(f => f.IsStatic);
private static readonly CacheFields _untranslanted = new CacheFields(f => f.GetCustomAttributes().Any(a => a is TranslationHandleAttribute));
private static readonly ConcurrentDictionary<Type, MethodInfo[]> _cachedInstanceMethods = new ConcurrentDictionary<Type, MethodInfo[]>();
public static IDictionary<string, FieldInfo> GetTypeInstanceFieldsByName(Type type)
{
var fieldsByName = _instances.GetFieldsByName(type);
return fieldsByName;
}
public static IDictionary<string, FieldInfoWithAttributes> GetTypeInstanceFieldsWithAtrtibutesByName(Type type)
{
var fieldsByName = _instances.GetFieldsWithAttributesByName(type);
return fieldsByName;
}
public static FieldInfo[] GetInstanceFields(Type type)
{
var fields = _instances.GetFields(type);
return fields;
}
public static FieldInfo GetInstanceField(Type type, string fieldName)
{
var fields = _instances.GetFieldsByName(type);
var field = fields[fieldName];
return field;
}
public static TValue GetInstanceFieldValue<TValue>(this object instance, string fieldName)
{
var field = GetInstanceField(instance.GetType(), fieldName);
var value = (TValue)field.GetValue(instance);
return value;
}
public static void ClearInstanceField(this object instance, string fieldName)
{
var field = GetInstanceField(instance.GetType(), fieldName);
field.SetValue(instance, null);
}
public static TValue GetStaticFieldValue<TType, TValue>(string fieldName)
{
var field = GetStaticField(typeof(TType), fieldName);
var value = (TValue)field.GetValue(null);
return value;
}
public static FieldInfoWithAttributes[] GetInstanceFieldsWithAttributes(Type type)
{
var fields = _instances.GetFieldsWithAttributes(type);
return fields;
}
public static FieldInfo[] GetStaticFields(Type type)
{
var fields = _statics.GetFields(type);
return fields;
}
public static FieldInfo GetStaticField(Type type, string fieldName)
{
var fields = _statics.GetFieldsByName(type);
var field = fields[fieldName];
return field;
}
public static TValue GetStaticFieldValue<TValue>(Type type, string fieldName)
{
var fields = _statics.GetFieldsByName(type);
var field = fields[fieldName];
var value = (TValue)field.GetValue(null);
return value;
}
public static void ClearStaticField(Type type, string fieldName)
{
var fieldInfo = GetStaticField(type, fieldName);
fieldInfo.SetValue(null, null);
}
public static FieldInfo[] GetTypeUntranslantedFields(Type type)
{
var fields = _untranslanted.GetFields(type);
return fields;
}
public static FieldInfoWithAttributes[] GetTypeUntranslantedFieldsWithAttributes(Type type)
{
var fields = _untranslanted.GetFieldsWithAttributes(type);
return fields;
}
private static IDictionary<string, FieldInfo> GetTypeFieldsByName(Type type, ConcurrentDictionary<Type, IDictionary<string, FieldInfo>> cachedFieldsByName)
{
if (cachedFieldsByName.TryGetValue(type, out var fieldsByName)) return fieldsByName;
fieldsByName = GetInstanceFields(type)
.ToDictionary(f => f.Name);
cachedFieldsByName[type] = fieldsByName;
return fieldsByName;
}
public static MethodInfo GetInstanceMethod(Type type, string methodName)
{
if (!_cachedInstanceMethods.TryGetValue(type, out var methods))
{
methods = type.GetRuntimeMethods().ToArray();
_cachedInstanceMethods[type] = methods;
}
var method = methods.FirstOrDefault(m => m.Name == methodName);
return method;
}
public static object InvokeInstanceMethod(this object instance, string method, params object[] arguments)
{
var type = instance.GetType();
var result = GetInstanceMethod(type, method)?.Invoke(instance, arguments ?? Array.Empty<object>());
return result;
}
public static object ElementAt(this ICollection collection, int index)
{
var i = 0;
return collection.Cast<object>().FirstOrDefault(item => i++ == index);
}
public static bool Any<TAttribute>(this IEnumerable<Attribute> attributes)
where TAttribute : Attribute
=> attributes?.Any(a => a is TAttribute) ?? false;
public static void SafeExecute(this Action action)
{
try
{
action();
}
catch
{
// ignore any exception
}
}
public static string ToNormalizedHandle(this string handle)
{
if (handle == null) return null;
handle = handle.Replace(' ', '_');
handle = handle.Replace('\n', '_');
handle = handle.Replace("\r", "");
handle = handle.Replace('\t', '_');
handle = handle.Replace(".", "");
handle = Regex.Replace(handle, @"\{[^\}]*\}", "");
handle = Regex.Replace(handle, @"[^a-zA-Z0-9_]+", "");
handle = Regex.Replace(handle, @"_+", "_");
handle = handle.Trim('_');
return handle;
}
public static string ToCachedName(this string fieldName)
{
var cachedFieldname = $"cached{fieldName.CapitalizeFirst()}";
return cachedFieldname;
}
}
}