ikvm-fork/reflect/Reader/Method.cs

445 строки
14 KiB
C#

/*
Copyright (C) 2009 Jeroen Frijters
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Jeroen Frijters
jeroen@frijters.net
*/
using System;
using System.Collections.Generic;
using System.Text;
using IKVM.Reflection.Metadata;
namespace IKVM.Reflection.Reader
{
sealed class MethodDefImpl : MethodInfo
{
private readonly ModuleReader module;
private readonly int index;
private readonly TypeDefImpl declaringType;
private readonly string name;
private readonly MethodSignature methodSignature;
private ParameterInfo returnParameter;
private ParameterInfo[] parameters;
private Type[] typeArgs;
internal MethodDefImpl(ModuleReader module, TypeDefImpl declaringType, int index)
{
this.module = module;
this.index = index;
this.declaringType = declaringType;
this.name = module.GetString(module.MethodDef.records[index].Name);
this.methodSignature = MethodSignature.ReadSig(module, module.GetBlob(module.MethodDef.records[index].Signature), this);
}
public override MethodBody GetMethodBody()
{
return GetMethodBody(this);
}
internal MethodBody GetMethodBody(IGenericContext context)
{
int rva = module.MethodDef.records[index].RVA;
return rva == 0 ? null : new MethodBody(module, rva, context);
}
public override CallingConventions CallingConvention
{
get { return methodSignature.CallingConvention; }
}
public override MethodAttributes Attributes
{
get { return (MethodAttributes)module.MethodDef.records[index].Flags; }
}
public override MethodImplAttributes GetMethodImplementationFlags()
{
return (MethodImplAttributes)module.MethodDef.records[index].ImplFlags;
}
public override ParameterInfo[] GetParameters()
{
PopulateParameters();
return (ParameterInfo[])parameters.Clone();
}
private void PopulateParameters()
{
if (parameters == null)
{
parameters = new ParameterInfo[methodSignature.GetParameterCount()];
int parameter = module.MethodDef.records[index].ParamList - 1;
int end = module.MethodDef.records.Length > index + 1 ? module.MethodDef.records[index + 1].ParamList - 1 : module.Param.records.Length;
for (; parameter < end; parameter++)
{
int seq = module.Param.records[parameter].Sequence - 1;
if (seq == -1)
{
returnParameter = new ParameterInfoImpl(this, seq, parameter, methodSignature.GetReturnType(this), methodSignature.GetReturnTypeRequiredCustomModifiers(this), methodSignature.GetReturnTypeOptionalCustomModifiers(this));
}
else
{
parameters[seq] = new ParameterInfoImpl(this, seq, parameter, methodSignature.GetParameterType(this, seq), methodSignature.GetParameterRequiredCustomModifiers(this, seq), methodSignature.GetParameterOptionalCustomModifiers(this, seq));
}
}
for (int i = 0; i < parameters.Length; i++)
{
if (parameters[i] == null)
{
parameters[i] = new ParameterInfoImpl(this, i, -1, methodSignature.GetParameterType(this, i), methodSignature.GetParameterRequiredCustomModifiers(this, i), methodSignature.GetParameterOptionalCustomModifiers(this, i));
}
}
if (returnParameter == null)
{
returnParameter = new ParameterInfoImpl(this, -1, -1, methodSignature.GetReturnType(this), methodSignature.GetReturnTypeRequiredCustomModifiers(this), methodSignature.GetReturnTypeOptionalCustomModifiers(this));
}
}
}
internal override int ParameterCount
{
get { return methodSignature.GetParameterCount(); }
}
public override ParameterInfo ReturnParameter
{
get
{
PopulateParameters();
return returnParameter;
}
}
public override Type ReturnType
{
get
{
return this.ReturnParameter.ParameterType;
}
}
public override Type DeclaringType
{
get { return declaringType.IsModulePseudoType ? null : declaringType; }
}
public override string Name
{
get { return name; }
}
public override int MetadataToken
{
get { return (MethodDefTable.Index << 24) + index + 1; }
}
public override bool IsGenericMethodDefinition
{
get
{
PopulateGenericArguments();
return typeArgs.Length > 0;
}
}
public override bool IsGenericMethod
{
get { return IsGenericMethodDefinition; }
}
public override Type[] GetGenericArguments()
{
PopulateGenericArguments();
return (Type[])typeArgs.Clone();
}
private void PopulateGenericArguments()
{
if (typeArgs == null)
{
int token = this.MetadataToken;
int first = module.GenericParam.FindFirstByOwner(token);
if (first == -1)
{
typeArgs = Type.EmptyTypes;
}
else
{
List<Type> list = new List<Type>();
int len = module.GenericParam.records.Length;
for (int i = first; i < len && module.GenericParam.records[i].Owner == token; i++)
{
list.Add(new GenericTypeParameter(module, i));
}
typeArgs = list.ToArray();
}
}
}
internal override Type GetGenericMethodArgument(int index)
{
PopulateGenericArguments();
return typeArgs[index];
}
internal override int GetGenericMethodArgumentCount()
{
PopulateGenericArguments();
return typeArgs.Length;
}
public override MethodInfo GetGenericMethodDefinition()
{
if (this.IsGenericMethodDefinition)
{
return this;
}
throw new InvalidOperationException();
}
public override MethodInfo MakeGenericMethod(params Type[] typeArguments)
{
return new GenericMethodInstance(declaringType, this, typeArguments);
}
public override Module Module
{
get { return module; }
}
internal override IList<CustomAttributeData> GetCustomAttributesData()
{
List<CustomAttributeData> list = module.GetCustomAttributes(this.MetadataToken);
if ((this.Attributes & MethodAttributes.PinvokeImpl) != 0)
{
list.Add(CreateDllImportPseudoCustomAttribute());
}
return list;
}
private CustomAttributeData CreateDllImportPseudoCustomAttribute()
{
int token = this.MetadataToken;
// TODO use binary search?
for (int i = 0; i < module.ImplMap.records.Length; i++)
{
if (module.ImplMap.records[i].MemberForwarded == token)
{
const short NoMangle = 0x0001;
const short CharSetMask = 0x0006;
const short CharSetNotSpec = 0x0000;
const short CharSetAnsi = 0x0002;
const short CharSetUnicode = 0x0004;
const short CharSetAuto = 0x0006;
const short SupportsLastError = 0x0040;
const short CallConvMask = 0x0700;
const short CallConvWinapi = 0x0100;
const short CallConvCdecl = 0x0200;
const short CallConvStdcall = 0x0300;
const short CallConvThiscall = 0x0400;
const short CallConvFastcall = 0x0500;
// non-standard flags
const short BestFitOn = 0x0010;
const short BestFitOff = 0x0020;
const short CharMapErrorOn = 0x1000;
const short CharMapErrorOff = 0x2000;
Type type = module.universe.System_Runtime_InteropServices_DllImportAttribute;
ConstructorInfo constructor = type.GetConstructor(new Type[] { module.universe.System_String });
List<CustomAttributeNamedArgument> list = new List<CustomAttributeNamedArgument>();
int flags = module.ImplMap.records[i].MappingFlags;
string entryPoint = module.GetString(module.ImplMap.records[i].ImportName);
string dllName = module.GetString(module.ModuleRef.records[(module.ImplMap.records[i].ImportScope & 0xFFFFFF) - 1]);
System.Runtime.InteropServices.CharSet? charSet;
switch (flags & CharSetMask)
{
case CharSetAnsi:
charSet = System.Runtime.InteropServices.CharSet.Ansi;
break;
case CharSetUnicode:
charSet = System.Runtime.InteropServices.CharSet.Unicode;
break;
case CharSetAuto:
charSet = System.Runtime.InteropServices.CharSet.Auto;
break;
case CharSetNotSpec:
default:
charSet = null;
break;
}
System.Runtime.InteropServices.CallingConvention callingConvention;
switch (flags & CallConvMask)
{
case CallConvCdecl:
callingConvention = System.Runtime.InteropServices.CallingConvention.Cdecl;
break;
case CallConvFastcall:
callingConvention = System.Runtime.InteropServices.CallingConvention.FastCall;
break;
case CallConvStdcall:
callingConvention = System.Runtime.InteropServices.CallingConvention.StdCall;
break;
case CallConvThiscall:
callingConvention = System.Runtime.InteropServices.CallingConvention.ThisCall;
break;
case CallConvWinapi:
default:
callingConvention = System.Runtime.InteropServices.CallingConvention.Winapi;
break;
}
list.Add(MakeNamedArgument(type, "EntryPoint", entryPoint));
list.Add(MakeNamedArgument(type, "ExactSpelling", flags, NoMangle));
list.Add(MakeNamedArgument(type, "SetLastError", flags, SupportsLastError));
list.Add(MakeNamedArgument(type, "PreserveSig", (int)GetMethodImplementationFlags(), (int)MethodImplAttributes.PreserveSig));
list.Add(MakeNamedArgument(type, "CallingConvention", (int)callingConvention));
if (charSet.HasValue)
{
list.Add(MakeNamedArgument(type, "CharSet", (int)charSet.Value));
}
if ((flags & (BestFitOn | BestFitOff)) != 0)
{
list.Add(MakeNamedArgument(type, "BestFitMapping", flags, BestFitOn));
}
if ((flags & (CharMapErrorOn | CharMapErrorOff)) != 0)
{
list.Add(MakeNamedArgument(type, "ThrowOnUnmappableChar", flags, CharMapErrorOn));
}
return new CustomAttributeData(constructor, new object[] { dllName }, list);
}
}
throw new BadImageFormatException();
}
private static CustomAttributeNamedArgument MakeNamedArgument(Type type, string field, string value)
{
return new CustomAttributeNamedArgument(type.GetField(field), new CustomAttributeTypedArgument(type.Module.universe.System_String, value));
}
private static CustomAttributeNamedArgument MakeNamedArgument(Type type, string field, int value)
{
return new CustomAttributeNamedArgument(type.GetField(field), new CustomAttributeTypedArgument(type.Module.universe.System_Int32, value));
}
private static CustomAttributeNamedArgument MakeNamedArgument(Type type, string field, int flags, int flagMask)
{
return new CustomAttributeNamedArgument(type.GetField(field), new CustomAttributeTypedArgument(type.Module.universe.System_Boolean, (flags & flagMask) != 0));
}
internal override MethodSignature MethodSignature
{
get { return methodSignature; }
}
internal override int ImportTo(Emit.ModuleBuilder module)
{
return module.ImportMethodOrField(declaringType, this.Name, methodSignature);
}
}
sealed class ParameterInfoImpl : ParameterInfo
{
private readonly MemberInfo member;
private readonly int position;
private readonly int index;
private readonly Type type;
private readonly Type[] requiredCustomModifiers;
private readonly Type[] optionalCustomModifiers;
internal ParameterInfoImpl(MemberInfo member, int position, int index, Type type, Type[] requiredCustomModifiers, Type[] optionalCustomModifiers)
{
this.member = member;
this.position = position;
this.index = index;
this.type = type;
this.requiredCustomModifiers = requiredCustomModifiers;
this.optionalCustomModifiers = optionalCustomModifiers;
}
public override string Name
{
get { return index == -1 ? null : ((ModuleReader)this.Module).GetString(this.Module.Param.records[index].Name); }
}
public override Type ParameterType
{
get { return type; }
}
public override ParameterAttributes Attributes
{
get { return index == -1 ? ParameterAttributes.None : (ParameterAttributes)this.Module.Param.records[index].Flags; }
}
public override int Position
{
get { return position; }
}
public override object RawDefaultValue
{
get { return this.Module.Constant.GetRawConstantValue(this.Module, this.MetadataToken); }
}
public override Type[] GetRequiredCustomModifiers()
{
return requiredCustomModifiers == null ? Type.EmptyTypes : (Type[])requiredCustomModifiers.Clone();
}
public override Type[] GetOptionalCustomModifiers()
{
return optionalCustomModifiers == null ? Type.EmptyTypes : (Type[])optionalCustomModifiers.Clone();
}
public override MemberInfo Member
{
get
{
// return the right ConstructorInfo wrapper
return member.Module.ResolveMethod(member.MetadataToken);
}
}
public override int MetadataToken
{
get
{
// for parameters that don't have a row in the Param table, we return 0x08000000 (because index is -1 in that case),
// just like .NET
return (ParamTable.Index << 24) + index + 1;
}
}
internal override Module Module
{
get { return member.Module; }
}
internal override IList<CustomAttributeData> GetCustomAttributesData()
{
IList<CustomAttributeData> list = base.GetCustomAttributesData();
if ((this.Attributes & ParameterAttributes.HasFieldMarshal) != 0)
{
list.Add(MarshalSpec.GetMarshalAsAttribute(this.Module, this.MetadataToken));
}
return list;
}
}
}