forked from Unity-Technologies/UnityCsReference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssemblyHelper.cs
502 lines (425 loc) · 20 KB
/
AssemblyHelper.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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Collections.Generic;
using Mono.Cecil;
using UnityEditor.Modules;
using UnityEditorInternal;
using UnityEngine;
using System.Runtime.InteropServices;
using UnityEngine.Scripting;
namespace UnityEditor
{
internal partial class AssemblyHelper
{
static Dictionary<string, bool> managedToDllType = new Dictionary<string, bool>();
// Check if assmebly internal name doesn't match file name, and show the warning.
static public void CheckForAssemblyFileNameMismatch(string assemblyPath)
{
string fileName = Path.GetFileNameWithoutExtension(assemblyPath);
string assemblyName = ExtractInternalAssemblyName(assemblyPath);
if (string.IsNullOrEmpty(assemblyName))
return;
if (fileName != assemblyName)
{
Debug.LogWarning("Assembly '" + assemblyName + "' has non matching file name: '" + Path.GetFileName(assemblyPath) + "'. This can cause build issues on some platforms.");
}
}
static public string[] GetNamesOfAssembliesLoadedInCurrentDomain()
{
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
var locations = new List<string>();
foreach (var a in assemblies)
{
try
{
locations.Add(a.Location);
}
catch (NotSupportedException)
{
//we have some "dynamic" assmeblies that do not have a filename
}
}
return locations.ToArray();
}
static public string ExtractInternalAssemblyName(string path)
{
try
{
AssemblyDefinition definition = AssemblyDefinition.ReadAssembly(path);
return definition.Name.Name;
}
catch
{
return "";
}
}
static AssemblyDefinition GetAssemblyDefinitionCached(string path, Dictionary<string, AssemblyDefinition> cache)
{
if (cache.ContainsKey(path))
return cache[path];
AssemblyDefinition definition = AssemblyDefinition.ReadAssembly(path);
cache[path] = definition;
return definition;
}
static private bool CouldBelongToDotNetOrWindowsRuntime(string assemblyPath)
{
return assemblyPath.IndexOf("mscorlib.dll") != -1 ||
assemblyPath.IndexOf("System.") != -1 ||
assemblyPath.IndexOf("Microsoft.") != -1 ||
assemblyPath.IndexOf("Windows.") != -1 ||
assemblyPath.IndexOf("WinRTLegacy.dll") != -1 ||
assemblyPath.IndexOf("platform.dll") != -1;
}
static private bool IgnoreAssembly(string assemblyPath, BuildTarget target)
{
if (target == BuildTarget.WSAPlayer)
{
if (CouldBelongToDotNetOrWindowsRuntime(assemblyPath))
return true;
}
else if (target == BuildTarget.XboxOne)
{
var profile = PlayerSettings.GetApiCompatibilityLevel(BuildTargetGroup.XboxOne);
if (profile == ApiCompatibilityLevel.NET_4_6 || profile == ApiCompatibilityLevel.NET_Standard_2_0)
{
if (CouldBelongToDotNetOrWindowsRuntime(assemblyPath))
return true;
}
}
return IsInternalAssembly(assemblyPath);
}
static private void AddReferencedAssembliesRecurse(string assemblyPath, List<string> alreadyFoundAssemblies, string[] allAssemblyPaths, string[] foldersToSearch, Dictionary<string, AssemblyDefinition> cache, BuildTarget target)
{
if (IgnoreAssembly(assemblyPath, target))
return;
if (!File.Exists(assemblyPath))
return;
AssemblyDefinition assembly = GetAssemblyDefinitionCached(assemblyPath, cache);
if (assembly == null)
throw new System.ArgumentException("Referenced Assembly " + Path.GetFileName(assemblyPath) + " could not be found!");
// Ignore it if we already added the assembly
if (alreadyFoundAssemblies.IndexOf(assemblyPath) != -1)
return;
alreadyFoundAssemblies.Add(assemblyPath);
var architectureSpecificPlugins = PluginImporter.GetImporters(target).Where(i =>
{
var cpu = i.GetPlatformData(target, "CPU");
return !string.IsNullOrEmpty(cpu) && !string.Equals(cpu, "AnyCPU", StringComparison.InvariantCultureIgnoreCase);
}).Select(i => Path.GetFileName(i.assetPath)).Distinct();
// Go through all referenced assemblies
foreach (AssemblyNameReference referencedAssembly in assembly.MainModule.AssemblyReferences)
{
// Special cases for Metro
if (referencedAssembly.Name == "BridgeInterface") continue;
if (referencedAssembly.Name == "WinRTBridge") continue;
if (referencedAssembly.Name == "UnityEngineProxy") continue;
if (IgnoreAssembly(referencedAssembly.Name + ".dll", target)) continue;
string foundPath = FindAssemblyName(referencedAssembly.FullName, referencedAssembly.Name, allAssemblyPaths, foldersToSearch, cache);
if (foundPath == "")
{
// Ignore architecture specific plugin references
var found = false;
foreach (var extension in new[] { ".dll", ".winmd" })
{
if (architectureSpecificPlugins.Any(p => string.Equals(p, referencedAssembly.Name + extension, StringComparison.InvariantCultureIgnoreCase)))
{
found = true;
break;
}
}
if (found)
continue;
throw new System.ArgumentException(string.Format("The Assembly {0} is referenced by {1} ('{2}'). But the dll is not allowed to be included or could not be found.",
referencedAssembly.Name,
assembly.MainModule.Assembly.Name.Name,
assemblyPath));
}
AddReferencedAssembliesRecurse(foundPath, alreadyFoundAssemblies, allAssemblyPaths, foldersToSearch, cache, target);
}
}
static string FindAssemblyName(string fullName, string name, string[] allAssemblyPaths, string[] foldersToSearch, Dictionary<string, AssemblyDefinition> cache)
{
// Search in provided assemblies
for (int i = 0; i < allAssemblyPaths.Length; i++)
{
if (!File.Exists(allAssemblyPaths[i]))
continue;
AssemblyDefinition definition = GetAssemblyDefinitionCached(allAssemblyPaths[i], cache);
if (definition.MainModule.Assembly.Name.Name == name)
return allAssemblyPaths[i];
}
// Search in GAC
foreach (string folder in foldersToSearch)
{
string pathInGacFolder = Path.Combine(folder, name + ".dll");
if (File.Exists(pathInGacFolder))
return pathInGacFolder;
}
return "";
}
static public string[] FindAssembliesReferencedBy(string[] paths, string[] foldersToSearch, BuildTarget target)
{
List<string> unique = new List<string>();
string[] allAssemblyPaths = paths;
var cache = new Dictionary<string, AssemblyDefinition>();
for (int i = 0; i < paths.Length; i++)
AddReferencedAssembliesRecurse(paths[i], unique, allAssemblyPaths, foldersToSearch, cache, target);
for (int i = 0; i < paths.Length; i++)
unique.Remove(paths[i]);
return unique.ToArray();
}
static public string[] FindAssembliesReferencedBy(string path, string[] foldersToSearch, BuildTarget target)
{
string[] tmp = new string[1];
tmp[0] = path;
return FindAssembliesReferencedBy(tmp, foldersToSearch, target);
}
static public bool IsUnityEngineModule(AssemblyDefinition assembly)
{
return assembly.CustomAttributes.Any(a => a.AttributeType.FullName == typeof(UnityEngineModuleAssembly).FullName);
}
static public bool IsUnityEngineModule(Assembly assembly)
{
return assembly.GetCustomAttributes(typeof(UnityEngineModuleAssembly), false).Length > 0;
}
private static bool IsTypeAUserExtendedScript(TypeReference type)
{
if (type == null || type.FullName == "System.Object")
return false;
try
{
var typeDefinition = type.Resolve();
var attributes = typeDefinition.CustomAttributes;
for (var i = 0; i < attributes.Count; i++)
{
if (attributes[i].Constructor.DeclaringType.FullName == "UnityEngine.ExtensionOfNativeClassAttribute")
return true;
}
if (typeDefinition.BaseType != null)
return IsTypeAUserExtendedScript(typeDefinition.BaseType);
}
catch (AssemblyResolutionException)
{
// just eat exception if we fail to load assembly here.
// failure should be handled better in other places.
}
return false;
}
public static string[] GetDefaultAssemblySearchPaths()
{
// Add the path to all available precompiled assemblies
var group = EditorUserBuildSettings.activeBuildTargetGroup;
var target = EditorUserBuildSettings.activeBuildTarget;
var precompiledAssemblies = InternalEditorUtility.GetPrecompiledAssemblies(true, group, target);
HashSet<string> searchPaths = new HashSet<string>();
foreach (var asm in precompiledAssemblies)
searchPaths.Add(Path.GetDirectoryName(asm.Path));
precompiledAssemblies = InternalEditorUtility.GetUnityAssemblies(true, group, target);
foreach (var asm in precompiledAssemblies)
searchPaths.Add(Path.GetDirectoryName(asm.Path));
// Add Unity compiled assembly output directory.
// Required for MonoBehaviour derived types like UIBehaviour that
// were previous in a precompiled UnityEngine.UI.dll, but are now
// compiled in a package.
searchPaths.Add("Library/ScriptAssemblies");
return searchPaths.ToArray();
}
public static void ExtractAllClassesThatAreUserExtendedScripts(string path, out string[] classNamesArray, out string[] classNameSpacesArray, out string[] originalClassNameSpacesArray)
{
List<string> classNames = new List<string>();
List<string> nameSpaces = new List<string>();
List<string> originalNamespaces = new List<string>();
var readerParameters = new ReaderParameters();
// this will resolve any types in assemblies within the same directory as the type's assembly
// or any folder which contains a currently available precompiled dll
var assemblyResolver = new DefaultAssemblyResolver();
var searchPaths = GetDefaultAssemblySearchPaths();
foreach (var asmpath in searchPaths)
assemblyResolver.AddSearchDirectory(asmpath);
assemblyResolver.AddSearchDirectory(Path.GetDirectoryName(path));
readerParameters.AssemblyResolver = assemblyResolver;
AssemblyDefinition assembly = AssemblyDefinition.ReadAssembly(path, readerParameters);
foreach (ModuleDefinition module in assembly.Modules)
{
foreach (TypeDefinition type in module.Types)
{
TypeReference baseType = type.BaseType;
try
{
if (IsTypeAUserExtendedScript(baseType))
{
classNames.Add(type.Name);
nameSpaces.Add(type.Namespace);
var originalNamespace = string.Empty;
var attribute = type.CustomAttributes.SingleOrDefault(a => a.AttributeType.FullName == typeof(UnityEngine.Scripting.APIUpdating.MovedFromAttribute).FullName);
if (attribute != null)
{
originalNamespace = (string)attribute.ConstructorArguments[0].Value;
}
originalNamespaces.Add(originalNamespace);
}
}
catch (Exception)
{
Debug.LogError("Failed to extract " + type.FullName + " class of base type " + baseType.FullName + " when inspecting " + path);
}
}
}
classNamesArray = classNames.ToArray();
classNameSpacesArray = nameSpaces.ToArray();
originalClassNameSpacesArray = originalNamespaces.ToArray();
}
struct GetAssemblyResolverData
{
public IAssemblyResolver Resolver;
public string[] SearchDirs;
}
/// Extract information about all types in the specified assembly, searchDirs might be used to resolve dependencies.
static public AssemblyTypeInfoGenerator.ClassInfo[] ExtractAssemblyTypeInfo(BuildTarget targetPlatform, bool isEditor, string assemblyPathName, string[] searchDirs)
{
try
{
AssemblyTypeInfoGenerator gen = new AssemblyTypeInfoGenerator(assemblyPathName, searchDirs);
return gen.GatherClassInfo();
}
catch (System.Exception ex)
{
throw new Exception("ExtractAssemblyTypeInfo: Failed to process " + assemblyPathName + ", " + ex);
}
}
[StructLayout(LayoutKind.Sequential)]
public struct RuntimeInitializeOnLoadMethodsData
{
public RuntimeInitializeClassInfo[] classInfos;
public int methodsCount;
}
static void FindRuntimeInitializeOnLoadMethodAttributes(TypeDefinition type,
string assemblyName,
ref List<RuntimeInitializeClassInfo> classInfoList,
ref int methodCount)
{
if (!type.HasMethods)
return;
foreach (var method in type.Methods)
{
// RuntimeInitializeOnLoadMethod only works on static methods.
if (!method.IsStatic)
continue;
foreach (var attribute in method.CustomAttributes)
{
if (attribute.AttributeType.FullName == "UnityEngine.RuntimeInitializeOnLoadMethodAttribute")
{
RuntimeInitializeLoadType loadType = RuntimeInitializeLoadType.AfterSceneLoad;
if (attribute.ConstructorArguments != null && attribute.ConstructorArguments.Count > 0)
loadType = (RuntimeInitializeLoadType)attribute.ConstructorArguments[0].Value;
RuntimeInitializeClassInfo classInfo = new RuntimeInitializeClassInfo();
classInfo.assemblyName = assemblyName;
classInfo.className = type.FullName;
classInfo.methodNames = new[] { method.Name };
classInfo.loadTypes = new[] { loadType };
classInfoList.Add(classInfo);
methodCount++;
}
}
}
}
[RequiredByNativeCode]
public static RuntimeInitializeOnLoadMethodsData ExtractPlayerRuntimeInitializeOnLoadMethods(BuildTarget targetPlatform, string[] assemblyPaths, string[] searchDirs)
{
var classInfoList = new List<RuntimeInitializeClassInfo>();
int methodCount = 0;
foreach (var assemblyPath in assemblyPaths)
{
try
{
var assemblyResolverData = new GetAssemblyResolverData { SearchDirs = searchDirs, };
var resolver = new DefaultAssemblyResolver();
foreach (var searchDir in searchDirs)
resolver.AddSearchDirectory(searchDir);
assemblyResolverData.Resolver = resolver;
var assembly = AssemblyDefinition.ReadAssembly(assemblyPath, new ReaderParameters
{
AssemblyResolver = assemblyResolverData.Resolver
});
var assemblyName = assembly.Name.Name;
foreach (var module in assembly.Modules)
{
foreach (var type in module.Types)
{
FindRuntimeInitializeOnLoadMethodAttributes(type,
assemblyName,
ref classInfoList,
ref methodCount);
}
}
}
catch (Exception ex)
{
throw new Exception("ExtractPlayerRuntimeInitializeOnLoadMethods: Failed to process " + assemblyPath + ", " + ex);
}
}
var data = new RuntimeInitializeOnLoadMethodsData();
data.classInfos = classInfoList.ToArray();
data.methodsCount = methodCount;
return data;
}
internal static Type[] GetTypesFromAssembly(Assembly assembly)
{
if (assembly == null)
return new Type[] {};
try
{
return assembly.GetTypes();
}
catch (ReflectionTypeLoadException)
{
return new Type[] {};
}
}
public static bool IsManagedAssembly(string file)
{
bool isManagedDll;
if (managedToDllType.TryGetValue(file, out isManagedDll))
{
return isManagedDll;
}
var res = InternalEditorUtility.IsDotNetDll(file);
managedToDllType[file] = res;
return res;
}
public static bool IsInternalAssembly(string file)
{
return ModuleUtils.GetAdditionalReferencesForUserScripts().Any(p => p.Equals(file));
}
const int kDefaultDepth = 10;
internal static ICollection<string> FindAssemblies(string basePath)
{
return FindAssemblies(basePath, kDefaultDepth);
}
internal static ICollection<string> FindAssemblies(string basePath, int maxDepth)
{
var assemblies = new List<string>();
if (0 == maxDepth)
return assemblies;
try
{
DirectoryInfo directory = new DirectoryInfo(basePath);
assemblies.AddRange(directory.GetFiles()
.Where(file => IsManagedAssembly(file.FullName))
.Select(file => file.FullName));
foreach (DirectoryInfo subdirectory in directory.GetDirectories())
assemblies.AddRange(FindAssemblies(subdirectory.FullName, maxDepth - 1));
}
catch (Exception)
{
// Return what we have now
}
return assemblies;
}
}
}