123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Reflection;
- using System.Globalization;
- using ILRuntime.CLR.Method;
- using ILRuntime.CLR.Utils;
- using ILRuntime.Runtime.Intepreter;
- using ILRuntime.Runtime.Enviorment;
- namespace ILRuntime.Reflection
- {
- public class ILRuntimeMethodInfo : MethodInfo
- {
- ILMethod method;
- ILRuntimeParameterInfo[] parameters;
- Mono.Cecil.MethodDefinition definition;
- ILRuntime.Runtime.Enviorment.AppDomain appdomain;
- Attribute[] customAttributes;
- Type[] attributeTypes;
- public ILRuntimeMethodInfo(ILMethod m)
- {
- method = m;
- definition = m.Definition;
- appdomain = m.DeclearingType.AppDomain;
- parameters = new ILRuntimeParameterInfo[m.ParameterCount];
- for (int i = 0; i < m.ParameterCount; i++)
- {
- var pd = m.Definition.Parameters[i];
- parameters[i] = new ILRuntimeParameterInfo(pd, m.Parameters[i], this);
- }
- }
- void InitializeCustomAttribute()
- {
- customAttributes = new Attribute[definition.CustomAttributes.Count];
- attributeTypes = new Type[customAttributes.Length];
- for (int i = 0; i < definition.CustomAttributes.Count; i++)
- {
- var attribute = definition.CustomAttributes[i];
- var at = appdomain.GetType(attribute.AttributeType, null, null);
- try
- {
- Attribute ins = attribute.CreateInstance(at, appdomain) as Attribute;
- attributeTypes[i] = at.ReflectionType;
- customAttributes[i] = ins;
- }
- catch
- {
- attributeTypes[i] = typeof(Attribute);
- }
- }
- }
- internal ILMethod ILMethod { get { return method; } }
- public override MethodAttributes Attributes
- {
- get
- {
- MethodAttributes ma = MethodAttributes.Public;
- if (definition.IsPrivate)
- ma = MethodAttributes.Private;
- else if (definition.IsFamily)
- ma = MethodAttributes.Family;
- if (method.IsStatic)
- ma |= MethodAttributes.Static;
- if (method.IsVirtual)
- ma |= MethodAttributes.Virtual;
-
- return ma;
- }
- }
- public override Type DeclaringType
- {
- get
- {
- return method.DeclearingType.ReflectionType;
- }
- }
- public override RuntimeMethodHandle MethodHandle
- {
- get
- {
- throw new NotImplementedException();
- }
- }
- public override string Name
- {
- get
- {
- return method.Name;
- }
- }
- public override Type ReflectedType
- {
- get
- {
- return method.DeclearingType.ReflectionType;
- }
- }
- public override ICustomAttributeProvider ReturnTypeCustomAttributes
- {
- get
- {
- throw new NotImplementedException();
- }
- }
- public override MethodInfo GetBaseDefinition()
- {
- return this;
- }
- public override object[] GetCustomAttributes(bool inherit)
- {
- if (customAttributes == null)
- InitializeCustomAttribute();
- return customAttributes;
- }
- public override object[] GetCustomAttributes(Type attributeType, bool inherit)
- {
- if (customAttributes == null)
- InitializeCustomAttribute();
- List<object> res = new List<object>();
- for (int i = 0; i < customAttributes.Length; i++)
- {
- if (attributeTypes[i].Equals(attributeType))
- res.Add(customAttributes[i]);
- }
- return res.ToArray();
- }
- public override MethodImplAttributes GetMethodImplementationFlags()
- {
- throw new NotImplementedException();
- }
- public override ParameterInfo[] GetParameters()
- {
- return parameters;
- }
- public override object Invoke(object obj, BindingFlags invokeAttr, Binder binder, object[] parameters, CultureInfo culture)
- {
- if (method.HasThis)
- {
- var res = appdomain.Invoke(method, obj, parameters);
- return ReturnType.CheckCLRTypes(res);
- }
- else
- return appdomain.Invoke(method, null, parameters);
- }
- public override bool IsDefined(Type attributeType, bool inherit)
- {
- if (customAttributes == null)
- InitializeCustomAttribute();
- for (int i = 0; i < customAttributes.Length; i++)
- {
- if (attributeTypes[i] == attributeType)
- return true;
- }
- return false;
- }
- public override Type ReturnType
- {
- get
- {
- if (method.ReturnType != null)
- return method.ReturnType.ReflectionType;
- else
- return null;
- }
- }
- #if NET_4_6 || NET_STANDARD_2_0
- public override Delegate CreateDelegate(Type delegateType)
- {
- throw new NotSupportedException("please use CreateDelegate(Type delegateType, object target)");
- }
- private IDelegateAdapter iDelegate;
- public override Delegate CreateDelegate(Type delegateType, object target)
- {
- ILTypeInstance ilTypeInstance;
- if (target is ILTypeInstance)
- {
- ilTypeInstance = target as ILTypeInstance;
- }
- else if (target is CrossBindingAdaptorType adaptor)
- {
- ilTypeInstance = adaptor.ILInstance;
- }
- else
- {
- return null;
- }
- IDelegateAdapter del;
- if (iDelegate == null)
- {
- iDelegate = appdomain.DelegateManager.FindDelegateAdapter(ilTypeInstance, method, method);
- del = iDelegate;
- }
- else
- {
- del = iDelegate.Instantiate(appdomain, ilTypeInstance, iDelegate.Method);
- }
- return del.GetConvertor(delegateType);
- }
- #endif
- }
- }
|