-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
Copy pathRequiredNamespaceCollector.cs
408 lines (381 loc) · 11.5 KB
/
RequiredNamespaceCollector.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
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
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Reflection.Metadata;
using ICSharpCode.Decompiler.Disassembler;
using ICSharpCode.Decompiler.Metadata;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.Decompiler.TypeSystem.Implementation;
using static ICSharpCode.Decompiler.Metadata.ILOpCodeExtensions;
namespace ICSharpCode.Decompiler.CSharp
{
class RequiredNamespaceCollector
{
static readonly Decompiler.TypeSystem.GenericContext genericContext = default;
readonly HashSet<string> namespaces;
readonly HashSet<IType> visitedTypes = new HashSet<IType>();
public RequiredNamespaceCollector(HashSet<string> namespaces)
{
this.namespaces = namespaces;
for (int i = 0; i < KnownTypeReference.KnownTypeCodeCount; i++)
{
var ktr = KnownTypeReference.Get((KnownTypeCode)i);
if (ktr == null)
continue;
namespaces.Add(ktr.Namespace);
}
}
public static void CollectNamespaces(MetadataModule module, HashSet<string> namespaces)
{
var collector = new RequiredNamespaceCollector(namespaces);
foreach (var type in module.TypeDefinitions)
{
collector.CollectNamespaces(type, module, (CodeMappingInfo)null);
}
collector.HandleAttributes(module.GetAssemblyAttributes());
collector.HandleAttributes(module.GetModuleAttributes());
}
public static void CollectAttributeNamespaces(MetadataModule module, HashSet<string> namespaces)
{
var collector = new RequiredNamespaceCollector(namespaces);
collector.HandleAttributes(module.GetAssemblyAttributes());
collector.HandleAttributes(module.GetModuleAttributes());
}
public static void CollectNamespaces(IEntity entity, MetadataModule module, HashSet<string> namespaces)
{
var collector = new RequiredNamespaceCollector(namespaces);
collector.CollectNamespaces(entity, module);
}
void CollectNamespaces(IEntity entity, MetadataModule module, CodeMappingInfo mappingInfo = null)
{
if (entity == null || entity.MetadataToken.IsNil)
return;
if (mappingInfo == null)
mappingInfo = CSharpDecompiler.GetCodeMappingInfo(entity.ParentModule.PEFile, entity.MetadataToken);
switch (entity)
{
case ITypeDefinition td:
namespaces.Add(td.Namespace);
HandleAttributes(td.GetAttributes());
HandleTypeParameters(td.TypeParameters);
foreach (var baseType in td.DirectBaseTypes)
{
CollectNamespacesForTypeReference(baseType);
}
foreach (var nestedType in td.NestedTypes)
{
CollectNamespaces(nestedType, module, mappingInfo);
}
foreach (var field in td.Fields)
{
CollectNamespaces(field, module, mappingInfo);
}
foreach (var property in td.Properties)
{
CollectNamespaces(property, module, mappingInfo);
}
foreach (var @event in td.Events)
{
CollectNamespaces(@event, module, mappingInfo);
}
foreach (var method in td.Methods)
{
CollectNamespaces(method, module, mappingInfo);
}
break;
case IField field:
HandleAttributes(field.GetAttributes());
CollectNamespacesForTypeReference(field.ReturnType);
break;
case IMethod method:
var reader = module.PEFile.Reader;
var parts = mappingInfo.GetMethodParts((MethodDefinitionHandle)method.MetadataToken).ToList();
foreach (var part in parts)
{
var partMethod = module.ResolveMethod(part, genericContext);
HandleAttributes(partMethod.GetAttributes());
HandleAttributes(partMethod.GetReturnTypeAttributes());
CollectNamespacesForTypeReference(partMethod.ReturnType);
foreach (var param in partMethod.Parameters)
{
HandleAttributes(param.GetAttributes());
CollectNamespacesForTypeReference(param.Type);
}
HandleTypeParameters(partMethod.TypeParameters);
HandleOverrides(part.GetMethodImplementations(module.metadata), module);
var methodDef = module.metadata.GetMethodDefinition(part);
if (method.HasBody)
{
MethodBodyBlock body;
try
{
body = reader.GetMethodBody(methodDef.RelativeVirtualAddress);
}
catch (BadImageFormatException)
{
continue;
}
CollectNamespacesFromMethodBody(body, module);
}
}
break;
case IProperty property:
HandleAttributes(property.GetAttributes());
CollectNamespacesForTypeReference(property.ReturnType);
CollectNamespaces(property.Getter, module, mappingInfo);
CollectNamespaces(property.Setter, module, mappingInfo);
break;
case IEvent @event:
HandleAttributes(@event.GetAttributes());
CollectNamespacesForTypeReference(@event.ReturnType);
CollectNamespaces(@event.AddAccessor, module, mappingInfo);
CollectNamespaces(@event.RemoveAccessor, module, mappingInfo);
break;
}
}
void HandleOverrides(ImmutableArray<MethodImplementationHandle> immutableArray, MetadataModule module)
{
foreach (var h in immutableArray)
{
var methodImpl = module.metadata.GetMethodImplementation(h);
CollectNamespacesForTypeReference(module.ResolveType(methodImpl.Type, genericContext));
CollectNamespacesForMemberReference(module.ResolveMethod(methodImpl.MethodBody, genericContext));
CollectNamespacesForMemberReference(module.ResolveMethod(methodImpl.MethodDeclaration, genericContext));
}
}
void CollectNamespacesForTypeReference(IType type)
{
if (!visitedTypes.Add(type))
return;
switch (type)
{
case ParameterizedType parameterizedType:
namespaces.Add(parameterizedType.Namespace);
CollectNamespacesForTypeReference(parameterizedType.GenericType);
foreach (var arg in parameterizedType.TypeArguments)
CollectNamespacesForTypeReference(arg);
return; // no need to collect base types again
case TypeWithElementType typeWithElementType:
CollectNamespacesForTypeReference(typeWithElementType.ElementType);
break;
case TupleType tupleType:
foreach (var elementType in tupleType.ElementTypes)
{
CollectNamespacesForTypeReference(elementType);
}
break;
case FunctionPointerType fnPtrType:
CollectNamespacesForTypeReference(fnPtrType.ReturnType);
foreach (var paramType in fnPtrType.ParameterTypes)
{
CollectNamespacesForTypeReference(paramType);
}
break;
default:
namespaces.Add(type.Namespace);
break;
}
foreach (var baseType in type.GetAllBaseTypes())
{
namespaces.Add(baseType.Namespace);
}
}
public static void CollectNamespaces(EntityHandle entity, MetadataModule module, HashSet<string> namespaces)
{
if (entity.IsNil)
return;
CollectNamespaces(module.ResolveEntity(entity, genericContext), module, namespaces);
}
void HandleAttributes(IEnumerable<IAttribute> attributes)
{
foreach (var attr in attributes)
{
namespaces.Add(attr.AttributeType.Namespace);
foreach (var arg in attr.FixedArguments)
{
HandleAttributeValue(arg.Type, arg.Value);
}
foreach (var arg in attr.NamedArguments)
{
HandleAttributeValue(arg.Type, arg.Value);
}
}
}
void HandleAttributeValue(IType type, object value)
{
CollectNamespacesForTypeReference(type);
if (value is IType typeofType)
CollectNamespacesForTypeReference(typeofType);
if (value is ImmutableArray<CustomAttributeTypedArgument<IType>> arr)
{
foreach (var element in arr)
{
HandleAttributeValue(element.Type, element.Value);
}
}
}
void HandleTypeParameters(IEnumerable<ITypeParameter> typeParameters)
{
foreach (var typeParam in typeParameters)
{
HandleAttributes(typeParam.GetAttributes());
foreach (var constraint in typeParam.DirectBaseTypes)
{
CollectNamespacesForTypeReference(constraint);
}
}
}
void CollectNamespacesFromMethodBody(MethodBodyBlock method, MetadataModule module)
{
var metadata = module.metadata;
var instructions = method.GetILReader();
if (!method.LocalSignature.IsNil)
{
ImmutableArray<IType> localSignature;
try
{
localSignature = module.DecodeLocalSignature(method.LocalSignature, genericContext);
}
catch (BadImageFormatException)
{
// Issue #1211: ignore invalid local signatures
localSignature = ImmutableArray<IType>.Empty;
}
foreach (var type in localSignature)
CollectNamespacesForTypeReference(type);
}
foreach (var region in method.ExceptionRegions)
{
if (region.CatchType.IsNil)
continue;
IType ty;
try
{
ty = module.ResolveType(region.CatchType, genericContext);
}
catch (BadImageFormatException)
{
continue;
}
CollectNamespacesForTypeReference(ty);
}
while (instructions.RemainingBytes > 0)
{
ILOpCode opCode;
try
{
opCode = instructions.DecodeOpCode();
}
catch (BadImageFormatException)
{
return;
}
switch (opCode.GetOperandType())
{
case OperandType.Field:
case OperandType.Method:
case OperandType.Sig:
case OperandType.Tok:
case OperandType.Type:
EntityHandle handle;
try
{
handle = MetadataTokenHelpers.EntityHandleOrNil(instructions.ReadInt32());
}
catch (BadImageFormatException)
{
return;
}
if (handle.IsNil)
break;
switch (handle.Kind)
{
case HandleKind.TypeDefinition:
case HandleKind.TypeReference:
case HandleKind.TypeSpecification:
IType type;
try
{
type = module.ResolveType(handle, genericContext);
}
catch (BadImageFormatException)
{
break;
}
CollectNamespacesForTypeReference(type);
break;
case HandleKind.FieldDefinition:
case HandleKind.MethodDefinition:
case HandleKind.MethodSpecification:
case HandleKind.MemberReference:
IMember member;
try
{
member = module.ResolveEntity(handle, genericContext) as IMember;
}
catch (BadImageFormatException)
{
break;
}
CollectNamespacesForMemberReference(member);
break;
case HandleKind.StandaloneSignature:
StandaloneSignature sig;
try
{
sig = metadata.GetStandaloneSignature((StandaloneSignatureHandle)handle);
}
catch (BadImageFormatException)
{
break;
}
if (sig.GetKind() == StandaloneSignatureKind.Method)
{
FunctionPointerType fpt;
try
{
(_, fpt) = module.DecodeMethodSignature((StandaloneSignatureHandle)handle, genericContext);
}
catch (BadImageFormatException)
{
break;
}
CollectNamespacesForTypeReference(fpt);
}
break;
}
break;
default:
try
{
instructions.SkipOperand(opCode);
}
catch (BadImageFormatException)
{
return;
}
break;
}
}
}
void CollectNamespacesForMemberReference(IMember member)
{
switch (member)
{
case IField field:
CollectNamespacesForTypeReference(field.DeclaringType);
CollectNamespacesForTypeReference(field.ReturnType);
break;
case IMethod method:
CollectNamespacesForTypeReference(method.DeclaringType);
CollectNamespacesForTypeReference(method.ReturnType);
foreach (var param in method.Parameters)
CollectNamespacesForTypeReference(param.Type);
foreach (var arg in method.TypeArguments)
CollectNamespacesForTypeReference(arg);
break;
}
}
}
}