[原创]aot 中Rd.xml 文件格式语法中文说明以及处理错误的实战案例

Rd.xml 文件格式

CoreRT 提前编译器通过编译应用程序入口点及其传递依赖项来发现要编译的方法和要生成的类型。如果应用程序使用反射,编译器可能会丢失类型。有关该问题的更多信息,请参阅AOT 模式中的反射。可以补充一个 rd.xml 文件来帮助 ILCompiler 找到应该分析的类型。该文件与 .NET Native 使用的 rd.xml 文件类似,但更受限制。

最小的 Rd.xml 配置

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
    <Assembly Name="mscorlib" />
  </Application>
</Directives>

ILCompiler 支持 2 个顶级指令ApplicationLibrary. 现在它们都可以互换使用,只需定义实际装配配置发生的区域。您可以在指令中放置多个<Assembly>标签<Application>以单独配置每个程序集。

装配指令

有 3 种形式可以配置组件

  • 仅模块元数据;
  • 所有类型;
  • 模块元数据和选定类型。

模块元数据只需要<Assembly>带有程序集短名称的简单标记。

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
    <Assembly Name="mscorlib" />
  </Application>
</Directives>

程序集中的所有类型都需要添加Dynamic带有 value 的属性Required All注意:这是此属性的唯一可用值。

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
    <Assembly Name="mscorlib" Dynamic="Required All" />
  </Application>
</Directives>

请注意,如果您在程序集中有泛型类型,则生成的代码中不会出现特定的实例化,如果您需要包含一个,那么您应该使用嵌套<Type>标记包含这些实例化。

模块元数据和选定类型选项基于仅模块元数据模式,其中添加了<Type>标签<Assembly>

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
    <Assembly Name="MonoGame.Framework">
      <Type Name="Microsoft.Xna.Framework.Content.ListReader`1[[System.Char,mscorlib]]" Dynamic="Required All" />
    </Assembly>
  </Application>
</Directives>

类型指令。

类型指令提供了一种指定所需类型的方法。开发人员在这里有两个选择:

  • 采取所有类型方法;
  • 选择应该植根的方法。

采用所有类型方法:

<Type Name="Microsoft.Xna.Framework.Content.ListReader`1[[System.Char,mscorlib]]" Dynamic="Required All" />

示例如何指定类型名

// just int
System.Int32
// string[]
System.String[]
// string[][]
System.String[][]
// string[,]
System.String[,]
// List<int>
System.Collections.Generic.List`1[[System.Int32,System.Private.CoreLib]]
// Dictionary<int, string>.KeyCollection - notice all the generic arguments go to the nested type
System.Collections.Generic.Dictionary`2+KeyCollection[[System.Int32,System.Private.CoreLib],[System.String,System.Private.CoreLib]]

请注意,将泛型类型放在此处可能没有意义,因为代码是通过泛型类型的特定实例化生成的。无效场景示例:

// List<T>
System.Collections.Generic.List`1

要选择应植根的方法,请添加嵌套<Method>标签。

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
    <Assembly Name="System.Private.CoreLib">
      <Type Name="System.Collections.Generic.Dictionary`2[[System.Int32,System.Private.CoreLib],[System.String,System.Private.CoreLib]]">
        <Method Name="EnsureCapacity" />
      </Type>
    </Assembly>
  </Application>
</Directives>

<Parameter>或者,如果您只想要特定的重载,您可以指定可选标签。例如:

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
    <Assembly Name="System.Private.CoreLib">
      <Type Name="System.Collections.Generic.Dictionary`2[[System.Int32,System.Private.CoreLib],[System.String,System.Private.CoreLib]]">
        <Method Name="EnsureCapacity">
          <Parameter Name="System.Int32, System.Private.CoreLib" />
        </Method>
      </Type>
    </Assembly>
  </Application>
</Directives>

或者如果你想实例化泛型方法,你可以通过<GenericArgument>.

<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
  <Application>
    <Assembly Name="System.Private.CoreLib">
      <Type Name="System.Array">
        <Method Name="Empty">
          <GenericArgument Name="System.Int32, System.Private.CoreLib" />
        </Method>
      </Type>
    </Assembly>
  </Application>
</Directives>

请注意,方法通过它们的方法名称和参数来区分。返回值的类型未在方法签名中使用。

生根结构编组数据

Type指令还支持一个MarshalStructure属性。唯一受支持的MarshalStructure值为Required All。指定MarshalStructure="Required All"将确保预先生成结构编组数据结构。

这可以修复如下代码:

using System;
using System.Runtime.InteropServices;

Console.WriteLine(GetTypeSize(typeof(MyClass)));

// This is in a separate method since the compiler would be able to analyze `Marshal.SizeOf(typeof(MyClass))`,
// but since a method call is involved, the compiler will lose track of the specific type.
static int GetTypeSize(Type t) => Marshal.SizeOf(t);

[StructLayout(LayoutKind.Sequential)]
public class MyClass
{
    public string Field;
}

上面的代码会抛出“System.Runtime.InteropServices.MissingInteropDataException:MyClass 缺少结构编组数据。要启用结构编组数据,请将 MarshalStructure 指令添加到应用程序 rd.xml 文件。”。要修复此异常,可以使用以下 RD.XML:

<Directives>
  <Application>
    <Assembly Name="repro">
      <Type Name="MyClass" MarshalStructure="Required All" />
    </Assembly>
  </Application>
</Directives>

生根委托编组数据

与上面的结构编组数据类似,该Type指令也支持MarshalDelegate属性。唯一受支持的MarshalDelegate值为Required All。指定MarshalDelegate="Required All"将确保预生成委托编组数据结构。

<Directives>
  <Application>
    <Assembly Name="repro">
      <Type Name="MyDelegate" MarshalDelegate="Required All" />
    </Assembly>
  </Application>
</Directives>

MyDelegate上面的 XML 将强制为assembly中的委托类型生成委托编组数据repro

https://github.com/dotnet/runtimelab/issues/2037

https://github.com/dotnet/runtimelab/issues/702#issuecomment-1279622783

假设错误如下,

System.Reflection.MissingMetadataException: 'System.Text.Json.Serialization.Converters.IEnumerableOfTConverter<System.Collections.Generic.IEnumerable<Swashbuckle.AspNetCore.SwaggerUI.UrlDescriptor>,Swashbuckle.AspNetCore.SwaggerUI.UrlDescriptor>' is missing metadat

拆开理解

image.png

那么语法是:

xxx

实战2 错误

Connection id "0HMLEANFSAK03", Request id"0HMLEANFSAK03:00000004": An unhandled exception was thrownby the application.System.Reflection.MissingMetadataException: 'System.Text.Json.Serialization.Converters.EnumConverter<Swashbuckle.AspNetCore.SwaggerUI.ModelRendering>' is missing metadata. For more information, please visit http://go.microsoft.com/fwlink/?LinkID=392859
提取错误类

System.Text.Json.Serialization.Converters.EnumConverter<Swashbuckle.AspNetCore.SwaggerUI.ModelRendering>

对应的是:
<Type Name="System.Text.Json.Serialization.Converters.EnumConverter`1[[Swashbuckle.AspNetCore.SwaggerUI.UrlDescriptor,Swashbuckle.AspNetCore.SwaggerUI]]" Dynamic="Required All" />

aot文件生效的定义

 <ItemGroup>
  <RdXmlFile Include="Properties\Default.rd.xml" />
 </ItemGroup>

补充

    <Type Name="System.Text.Json.Serialization.Converters.IEnumerableOfTConverter`2[[System.Collections.Generic.IEnumerable`1[[Swashbuckle.AspNetCore.SwaggerUI.UrlDescriptor,Swashbuckle.AspNetCore.SwaggerUI]],mscorlib],[Swashbuckle.AspNetCore.SwaggerUI.UrlDescriptor,Swashbuckle.AspNetCore.SwaggerUI]]"  Dynamic="Required All" />
            <Type Name="System.Text.Json.Serialization.Converters.EnumConverter`1[[Swashbuckle.AspNetCore.SwaggerUI.ModelRendering,Swashbuckle.AspNetCore.SwaggerUI]]" Dynamic="Required All" />
            <Type Name="System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1[[Swashbuckle.AspNetCore.SwaggerUI.DocExpansion,Swashbuckle.AspNetCore.SwaggerUI]]" Dynamic="Required All" />
            <Type Name="System.Text.Json.Serialization.Metadata.JsonPropertyInfo`1[[System.Nullable`1[[System.Int32,mscorlib]],mscorlib]]" Dynamic="Required All" />
            <Type Name="System.Text.Json.Serialization.Converters.NullableConverter`1[[System.Int32,mscorlib]]" Dynamic="Required All" />

2022-10-17

根据运行报错的信息直接复制进来加上[]然后指定 程序集就知道如何编写rd.xml了

辅助编写文档
http://go.microsoft.com/fwlink/?LinkID=392859

.net7.0预览版r2配置aot

7.0 r2 支持如下这样配置 而老版本6.0不支持
builder.Services.AddControllers().AddJsonOptions(options => options.JsonSerializerOptions.AddContext<MyJsonContext>());

7.0需要删除<PackageReference Include="Microsoft.DotNet.ILCompiler;" Version="7.0.0-*" />
改用 属性启动。
加入如下字段:
<PublishAot>true</PublishAot>

<PropertyGroup>
        <PublishAot>true</PublishAot>
        <TargetFramework>net7.0</TargetFramework>
        <Nullable>enable</Nullable>
        <ImplicitUsings>enable</ImplicitUsings>
        <GenerateDocumentationFile>True</GenerateDocumentationFile>
        <Platforms>AnyCPU;x64;ARM64;ARM32</Platforms>
        <PlatformTarget>AnyCPU</PlatformTarget>
        <ErrorReport>send</ErrorReport>
        <IsPackable>false</IsPackable>
        <GeneratePackageOnBuild>False
<PropertyGroup>

7.0的web core api似乎不支持http:*:端口号了,否则提示不支持的url,
7.0目前需要预览版开发工具才能切换,而且切换后 正式版本开发工具将无法打开,因为不兼容修改后的applaunch.json
https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot/
兼容性
https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/incompatibilities

优化体积
https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options?pivots=dotnet-7-0
.net7的重大变化
https://learn.microsoft.com/en-us/dotnet/core/compatibility/7.0?source=recommendations

image.png

| Assembly.CodeBase | 引发PlatformNotSupportedException。 |
| Assembly.EscapedCodeBase | 引发PlatformNotSupportedException。 |
| Assembly.GetFile | 抛出IOException。 |
| Assembly.GetFiles | 抛出IOException。 |
| Assembly.Location | 返回一个空字符串。 |
| AssemblyName.CodeBase | 退货null。 |
| AssemblyName.EscapedCodeBase | 退货null。 |
| Module.FullyQualifiedName | 返回值为 的字符串<Unknown>或引发异常。 |
| Marshal.GetHINSTANCE | 返回 -1。 |
| Module.Name | 返回值为 的字符串<Unknown>。 |

修复常见场景的建议:

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350

推荐阅读更多精彩内容