using HybridCLR.Editor.Meta; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using UnityEngine; namespace HybridCLR.Editor.AOT { public class GenericReferenceWriter { private static readonly Dictionary _typeNameMapping = new Dictionary { {typeof(bool), "bool" }, {typeof(byte), "byte" }, {typeof(sbyte), "sbyte" }, {typeof(short), "short" }, {typeof(ushort), "ushort" }, {typeof(int), "int" }, {typeof(uint), "uint" }, {typeof(long), "long" }, {typeof(ulong), "ulong" }, {typeof(float), "float" }, {typeof(double), "double" }, {typeof(object), "object" }, {typeof(string), "string" }, }; private readonly Dictionary _typeSimpleNameMapping = new Dictionary(); private readonly Regex _systemTypePattern; private readonly Regex _genericPattern = new Regex(@"`\d+"); public GenericReferenceWriter() { foreach (var e in _typeNameMapping) { _typeSimpleNameMapping.Add(e.Key.FullName, e.Value); } _systemTypePattern = new Regex(string.Join("|", _typeSimpleNameMapping.Keys.Select (k => $@"\b{k}\b"))); } public string PrettifyTypeSig(string typeSig) { string s = _genericPattern.Replace(typeSig, "").Replace('/', '.'); return _systemTypePattern.Replace(s, m => _typeSimpleNameMapping[m.Groups[0].Value]); } public string PrettifyMethodSig(string methodSig) { string s = PrettifyTypeSig(methodSig).Replace("::", "."); if (s.Contains(".ctor(")) { s = "new " + s.Replace(".ctor(", "("); } return s; } public void Write(List types, List methods, string outputFile) { string parentDir = Directory.GetParent(outputFile).FullName; Directory.CreateDirectory(parentDir); List codes = new List(); codes.Add("public class AOTGenericReferences : UnityEngine.MonoBehaviour"); codes.Add("{"); codes.Add(""); codes.Add("\t// {{ AOT assemblies"); List modules = new HashSet( types.Select(t => t.Type.Module).Concat(methods.Select(m => m.Method.Module))).ToList(); modules.Sort((a, b) => a.Name.CompareTo(b.Name)); foreach (dnlib.DotNet.ModuleDef module in modules) { codes.Add($"\t// {module.Name}"); } codes.Add("\t// }}"); codes.Add(""); codes.Add("\t// {{ constraint implement type"); codes.Add("\t// }} "); codes.Add(""); codes.Add("\t// {{ AOT generic types"); types.Sort((a, b) => a.Type.FullName.CompareTo(b.Type.FullName)); foreach(var type in types) { codes.Add($"\t// {PrettifyTypeSig(type.ToTypeSig().ToString())}"); } codes.Add("\t// }}"); codes.Add(""); codes.Add("\tpublic void RefMethods()"); codes.Add("\t{"); methods.Sort((a, b) => { int c = a.Method.DeclaringType.FullName.CompareTo(b.Method.DeclaringType.FullName); if (c != 0) { return c; } c = a.Method.Name.CompareTo(b.Method.Name); return c; }); foreach(var method in methods) { codes.Add($"\t\t// {PrettifyMethodSig(method.ToMethodSpec().ToString())}"); } codes.Add("\t}"); codes.Add("}"); var utf8WithoutBOM = new System.Text.UTF8Encoding(false); File.WriteAllText(outputFile, string.Join("\n", codes), utf8WithoutBOM); Debug.Log($"[GenericReferenceWriter] write {outputFile}"); } } }