2022-09-22 08:56:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using dnlib.DotNet;
|
|
|
|
|
using HybridCLR.Editor.Meta;
|
2022-10-14 18:51:19 +08:00
|
|
|
|
using UnityEditor;
|
2024-05-17 21:42:30 +08:00
|
|
|
|
using UnityEngine;
|
2022-09-22 08:56:07 +08:00
|
|
|
|
using IAssemblyResolver = HybridCLR.Editor.Meta.IAssemblyResolver;
|
|
|
|
|
|
2022-09-23 09:40:06 +08:00
|
|
|
|
namespace HybridCLR.Editor.Link
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
2022-09-23 09:40:06 +08:00
|
|
|
|
public class Analyzer
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly IAssemblyResolver _resolver;
|
|
|
|
|
|
2023-02-07 12:42:16 +08:00
|
|
|
|
public Analyzer(IAssemblyResolver resolver)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
_resolver = resolver;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-13 11:40:18 +08:00
|
|
|
|
public HashSet<TypeRef> CollectRefs(List<string> rootAssemblies)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
2022-09-26 12:12:57 +08:00
|
|
|
|
using (var assCollector = new AssemblyCache(_resolver))
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
2022-12-14 14:11:32 +08:00
|
|
|
|
var rootAssemblyNames = new HashSet<string>(rootAssemblies);
|
2022-09-22 08:56:07 +08:00
|
|
|
|
|
2022-09-26 12:12:57 +08:00
|
|
|
|
var typeRefs = new HashSet<TypeRef>(TypeEqualityComparer.Instance);
|
|
|
|
|
foreach (var rootAss in rootAssemblies)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
2023-02-07 12:42:16 +08:00
|
|
|
|
var dnAss = assCollector.LoadModule(rootAss, false);
|
2022-09-26 12:12:57 +08:00
|
|
|
|
foreach (var type in dnAss.GetTypeRefs())
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
2024-05-17 21:42:30 +08:00
|
|
|
|
if (type.DefinitionAssembly == null)
|
|
|
|
|
{
|
|
|
|
|
Debug.LogWarning($"assembly:{dnAss.Name} TypeRef {type.FullName} has no DefinitionAssembly");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2022-12-14 14:11:32 +08:00
|
|
|
|
if (!rootAssemblyNames.Contains(type.DefinitionAssembly.Name.ToString()))
|
2022-09-26 12:12:57 +08:00
|
|
|
|
{
|
|
|
|
|
typeRefs.Add(type);
|
|
|
|
|
}
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-14 18:51:19 +08:00
|
|
|
|
|
2022-09-26 12:12:57 +08:00
|
|
|
|
assCollector.Dispose();
|
|
|
|
|
return typeRefs;
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|