-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWinMDTypes.cs
More file actions
427 lines (384 loc) · 14.1 KB
/
WinMDTypes.cs
File metadata and controls
427 lines (384 loc) · 14.1 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices.WindowsRuntime;
namespace WinMDGraph
{
public class WinMDTypes
{
static WinMDTypes()
{
AppDomain.CurrentDomain.ReflectionOnlyAssemblyResolve += CurrentDomain_ReflectionOnlyAssemblyResolve;
WindowsRuntimeMetadata.ReflectionOnlyNamespaceResolve += WindowsRuntimeMetadata_ReflectionOnlyNamespaceResolve;
}
private static void WindowsRuntimeMetadata_ReflectionOnlyNamespaceResolve(object sender, NamespaceResolveEventArgs e)
{
string path =
WindowsRuntimeMetadata.ResolveNamespace(e.NamespaceName, Enumerable.Empty<string>())
.FirstOrDefault();
e.ResolvedAssemblies.Add(Assembly.ReflectionOnlyLoadFrom(path));
}
private static Assembly CurrentDomain_ReflectionOnlyAssemblyResolve(object sender, ResolveEventArgs args)
{
return Assembly.ReflectionOnlyLoad(args.Name);
}
private List<Type> types;
public WinMDTypes(string[] assemblyPaths)
{
this.types = LoadTypesFromAssemblies(assemblyPaths);
}
private Assembly LoadAssembly(string assemblyPath)
{
Assembly assembly = Assembly.ReflectionOnlyLoadFrom(assemblyPath);
foreach (AssemblyName reference in assembly.GetReferencedAssemblies())
{
try
{
Assembly.ReflectionOnlyLoad(reference.FullName);
}
catch (FileNotFoundException)
{
var potentialFileName = String.Format("{0}\\{1}.dll", (new FileInfo(assemblyPath)).DirectoryName, reference.Name);
var potentialFileInfo = new FileInfo(potentialFileName);
if (potentialFileInfo.Exists)
{
Assembly.ReflectionOnlyLoadFrom(potentialFileInfo.FullName);
}
}
catch (FileLoadException)
{
}
}
return assembly;
}
private List<Type> LoadTypesFromAssemblies(string[] assemblyPaths)
{
return assemblyPaths.Select(assemblyPath => LoadAssembly(assemblyPath)).SelectMany(assembly => assembly.GetTypes()).ToList();
}
public List<Type> Types
{
get { return this.types; }
}
public class TypeInfo : IEquatable<TypeInfo>, IComparable<TypeInfo>
{
public TypeInfo(Type interfaceOrClass)
{
if (interfaceOrClass.IsInterface)
{
this.Interface = interfaceOrClass;
}
else
{
this.Class = interfaceOrClass;
}
}
public TypeInfo(MethodInfo methodInfo)
{
this.Method = methodInfo;
}
public TypeInfo(PropertyInfo propertyInfo)
{
this.Property = propertyInfo;
}
public TypeInfo(EventInfo eventInfo)
{
this.Event = eventInfo;
}
public Type Interface;
public Type Class;
public MethodInfo Method;
public PropertyInfo Property;
public EventInfo Event;
private static string TypeToName(Type type)
{
string name = type.Name;
if (type.GenericTypeArguments.Length > 0)
{
name += "<" + type.GenericTypeArguments.Select(genericType => TypeToName(genericType)) + ">";
}
return name;
}
public string Name
{
get
{
string name = null;
if (Interface != null)
{
name = TypeToName(Interface);
}
else if (Class != null)
{
name = TypeToName(Class);
}
else if (Method != null)
{
name = Method.Name;
}
else if (Property != null)
{
name = Property.Name;
}
else if (Event != null)
{
name = Event.Name;
}
else
{
throw new Exception("Unexpected kind.");
}
return name;
}
}
public Type CorrespondingType
{
get
{
Type type = null;
if (Interface != null)
{
type = Interface;
}
else if (Class != null)
{
type = Class;
}
else if (Method != null)
{
type = Method.DeclaringType;
}
else if (Property != null)
{
type = Property.DeclaringType;
}
else if (Event != null)
{
type = Event.DeclaringType;
}
else
{
throw new Exception("Unexpected kind.");
}
return type;
}
}
public string Namespace
{
get
{
return this.CorrespondingType.Namespace;
}
}
public string FullName
{
get
{
string className = "";
if (Method != null)
{
className = TypeToName(Method.DeclaringType) + ".";
}
else if (Property != null)
{
className = TypeToName(Property.DeclaringType) + ".";
}
else if (Event != null)
{
className = TypeToName(Event.DeclaringType) + ".";
}
return Namespace + "." + className + Name;
}
}
public string KindName
{
get
{
if (this.Interface != null)
{
return "Interface";
}
else if (this.Class != null)
{
return "Class";
}
else if (this.Method != null)
{
return "Method";
}
else if (this.Property != null)
{
return "Property";
}
else if (this.Event != null)
{
return "Event";
}
throw new Exception("Error");
}
}
public override string ToString()
{
return KindName + " " + FullName;
}
public bool Equals(TypeInfo other)
{
return this.ToString() == other.ToString();
}
public int CompareTo(TypeInfo other)
{
return this.ToString().CompareTo(other.ToString());
}
public override int GetHashCode()
{
return this.ToString().GetHashCode();
}
public override bool Equals(object obj)
{
return obj is TypeInfo && this.Equals(obj as TypeInfo);
}
public List<TypeInfo> GetOutEdges()
{
List<TypeInfo> outEdges = new List<TypeInfo>();
Type type = this.Class;
if (type == null)
{
type = this.Interface;
}
if (type != null)
{
foreach (Type parentInterface in type.GetInterfaces())
{
outEdges.Add(new TypeInfo(parentInterface));
}
CustomAttributeData exclusiveTo = type.CustomAttributes.FirstOrDefault<CustomAttributeData>(attribute => attribute.AttributeType.FullName == "Windows.Foundation.Metadata.ExclusiveToAttribute");
if (exclusiveTo != null)
{
Type exclusiveToType = (Type)exclusiveTo.ConstructorArguments[0].Value;
outEdges.Add(new TypeInfo(exclusiveToType));
}
foreach (Type genericType in type.GenericTypeArguments)
{
outEdges.Add(new TypeInfo(genericType));
}
foreach (PropertyInfo propertyInfo in type.GetRuntimeProperties())
{
outEdges.Add(new TypeInfo(propertyInfo));
}
foreach (MethodInfo methodInfo in type.GetRuntimeMethods())
{
if (!methodInfo.IsSpecialName)
{
outEdges.Add(new TypeInfo(methodInfo));
}
}
foreach (EventInfo eventInfo in type.GetRuntimeEvents())
{
outEdges.Add(new TypeInfo(eventInfo));
}
}
if (this.Property != null)
{
outEdges.Add(new TypeInfo(this.Property.PropertyType));
}
if (this.Method != null)
{
outEdges.Add(new TypeInfo(this.Method.ReturnType));
foreach (ParameterInfo parameterInfo in this.Method.GetParameters())
{
if (parameterInfo.IsOut)
{
outEdges.Add(new TypeInfo(parameterInfo.GetType()));
}
}
}
if (this.Event != null)
{
foreach (var eventHandlerParamType in this.Event.EventHandlerType.GenericTypeArguments)
{
outEdges.Add(new TypeInfo(eventHandlerParamType));
}
}
return outEdges;
}
public List<TypeInfo> GetInEdges()
{
List<TypeInfo> inEdges = new List<TypeInfo>();
if (this.Method != null)
{
foreach (ParameterInfo parameterInfo in this.Method.GetParameters())
{
if (parameterInfo.IsIn)
{
inEdges.Add(new TypeInfo(parameterInfo.GetType()));
}
}
}
return inEdges;
}
public Type Type
{
get
{
TypeInfo typeInfo = this;
if (typeInfo.Class != null)
{
return typeInfo.Class;
}
else if (typeInfo.Interface != null)
{
return typeInfo.Interface;
}
else if (typeInfo.Event != null)
{
return typeInfo.Event.DeclaringType;
}
else if (typeInfo.Method != null)
{
return typeInfo.Method.DeclaringType;
}
else if (typeInfo.Property != null)
{
return typeInfo.Property.DeclaringType;
}
throw new Exception("What?!");
}
}
}
public delegate bool TypeInfoFilter(TypeInfo typeInfo);
public Graph<TypeInfo> CreateGraph(TypeInfoFilter filter)
{
Graph<TypeInfo> graph = new Graph<TypeInfo>();
HashSet<TypeInfo> nextFrontier = new HashSet<TypeInfo>(Types.Select(type => new TypeInfo(type)));
HashSet<TypeInfo> visited = new HashSet<TypeInfo>();
HashSet<TypeInfo> frontier = new HashSet<TypeInfo>();
while (nextFrontier.Count > 0)
{
frontier = new HashSet<TypeInfo>(nextFrontier.Where(
entry => !visited.Contains(entry)
).Where(
entry => filter(entry)));
nextFrontier = new HashSet<TypeInfo>();
foreach (TypeInfo typeInfo in frontier)
{
visited.Add(typeInfo);
Graph<TypeInfo>.Node nodeForType = graph.GetOrAddNode(typeInfo);
foreach (TypeInfo outNode in typeInfo.GetOutEdges())
{
nextFrontier.Add(outNode);
Graph<TypeInfo>.Node outNodeInfo = graph.GetOrAddNode(outNode);
graph.AddEdge(nodeForType, outNodeInfo);
}
foreach (TypeInfo inNode in typeInfo.GetInEdges())
{
nextFrontier.Add(inNode);
Graph<TypeInfo>.Node inNodeInfo = graph.GetOrAddNode(inNode);
graph.AddEdge(inNodeInfo, nodeForType);
}
}
}
return graph;
}
}
}