使用 IMetaDataImport EnumMethods 获取基础 class 层次结构方法
Get base class hierarchy methods with IMetaDataImport EnumMethods
我正在尝试实现查看 MDBG 示例的托管调试器。
MDBG 能够解析给定范围内的函数名称,但它没有考虑基础 classes。
MDBG 正在这样做:
/// <summary>
/// Resolves a Function from a Module, Class Name, and Function Name.
/// </summary>
/// <param name="mdbgModule">The Module that has the Function.</param>
/// <param name="className">The name of the Class that has the Function.</param>
/// <param name="functionName">The name of the Function.</param>
/// <returns>The MDbgFunction that matches the given parameters.</returns>
public MDbgFunction ResolveFunctionName(MDbgModule mdbgModule, string className, string functionName) {
...
foreach (MethodInfo mi in t.GetMethods()) {
if (mi.Name.Equals(functionName)) {
func = mdbgModule.GetFunction((mi as MetadataMethodInfo).MetadataToken);
break;
}
}
return func;
}
虽然 Type.GetMethods() 被覆盖并具有此实现,但使用 IMetaDataImport.EnumMethods:
public override MethodInfo[] GetMethods(BindingFlags bindingAttr) {
ArrayList al = new ArrayList();
IntPtr hEnum = new IntPtr();
int methodToken;
try {
while (true) {
int size;
m_importer.EnumMethods(ref hEnum, (int) m_typeToken, out methodToken, 1, out size);
if (size == 0) {
break;
}
al.Add(new MetadataMethodInfo(m_importer, methodToken));
}
}
finally {
m_importer.CloseEnum(hEnum);
}
return (MethodInfo[]) al.ToArray(typeof (MethodInfo));
}
问题是 m_importer.EnumMethods() 枚举表示指定类型方法的 MethodDef 标记,但我对 class 层次结构中的所有方法都感兴趣。
如何获取 class 层次结构中定义的所有方法? (显然不能使用反射等常用方法,因为我正在分析其他过程中定义的类型)
我对互操作和深层 CLR/CIL 结构的了解有限,这对找到正确的方法造成了障碍。
欢迎任何advice/suggestion!
此致,
GetTypeProps 将 return ptkExtends 中基本类型的元数据标记,您可以使用它来遍历继承树并收集每个方法。
但是请注意,元数据标记可能不是 TypeDef。它可以是 TypeRef(要求您解析类型)或 TypeSpec(要求您解析类型签名并提取适当的 TypeDef/TypeRef)。
我正在尝试实现查看 MDBG 示例的托管调试器。
MDBG 能够解析给定范围内的函数名称,但它没有考虑基础 classes。
MDBG 正在这样做:
/// <summary>
/// Resolves a Function from a Module, Class Name, and Function Name.
/// </summary>
/// <param name="mdbgModule">The Module that has the Function.</param>
/// <param name="className">The name of the Class that has the Function.</param>
/// <param name="functionName">The name of the Function.</param>
/// <returns>The MDbgFunction that matches the given parameters.</returns>
public MDbgFunction ResolveFunctionName(MDbgModule mdbgModule, string className, string functionName) {
...
foreach (MethodInfo mi in t.GetMethods()) {
if (mi.Name.Equals(functionName)) {
func = mdbgModule.GetFunction((mi as MetadataMethodInfo).MetadataToken);
break;
}
}
return func;
}
虽然 Type.GetMethods() 被覆盖并具有此实现,但使用 IMetaDataImport.EnumMethods:
public override MethodInfo[] GetMethods(BindingFlags bindingAttr) {
ArrayList al = new ArrayList();
IntPtr hEnum = new IntPtr();
int methodToken;
try {
while (true) {
int size;
m_importer.EnumMethods(ref hEnum, (int) m_typeToken, out methodToken, 1, out size);
if (size == 0) {
break;
}
al.Add(new MetadataMethodInfo(m_importer, methodToken));
}
}
finally {
m_importer.CloseEnum(hEnum);
}
return (MethodInfo[]) al.ToArray(typeof (MethodInfo));
}
问题是 m_importer.EnumMethods() 枚举表示指定类型方法的 MethodDef 标记,但我对 class 层次结构中的所有方法都感兴趣。
如何获取 class 层次结构中定义的所有方法? (显然不能使用反射等常用方法,因为我正在分析其他过程中定义的类型)
我对互操作和深层 CLR/CIL 结构的了解有限,这对找到正确的方法造成了障碍。
欢迎任何advice/suggestion!
此致,
GetTypeProps 将 return ptkExtends 中基本类型的元数据标记,您可以使用它来遍历继承树并收集每个方法。
但是请注意,元数据标记可能不是 TypeDef。它可以是 TypeRef(要求您解析类型)或 TypeSpec(要求您解析类型签名并提取适当的 TypeDef/TypeRef)。