| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- //
- // System.Reflection/MonoMethod.cs
- // The class used to represent methods from the mono runtime.
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System.Globalization;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- using System.Runtime.Serialization;
- using System.Security;
- namespace System.Reflection {
-
- internal struct MonoMethodInfo
- {
- internal Type parent;
- internal Type ret;
- internal MethodAttributes attrs;
- internal MethodImplAttributes iattrs;
- internal CallingConventions callconv;
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal static extern void get_method_info (IntPtr handle, out MonoMethodInfo info);
-
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal static extern ParameterInfo[] get_parameter_info (IntPtr handle);
- };
-
- /*
- * Note: most of this class needs to be duplicated for the contructor, since
- * the .NET reflection class hierarchy is so broken.
- */
- [Serializable()]
- internal class MonoMethod : MethodInfo, ISerializable
- {
- internal IntPtr mhandle;
- string name;
- Type reftype;
- internal MonoMethod () {
- }
- internal MonoMethod (RuntimeMethodHandle mhandle) {
- this.mhandle = mhandle.Value;
- }
-
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal static extern MonoMethod get_base_definition (MonoMethod method);
- public override MethodInfo GetBaseDefinition ()
- {
- return get_base_definition (this);
- }
- public override Type ReturnType {
- get {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.ret;
- }
- }
- public override ICustomAttributeProvider ReturnTypeCustomAttributes {
- get {
- return new ParameterInfo (ReturnType, this);
- }
- }
-
- public override MethodImplAttributes GetMethodImplementationFlags() {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.iattrs;
- }
- public override ParameterInfo[] GetParameters() {
- return MonoMethodInfo.get_parameter_info (mhandle);
- }
- /*
- * InternalInvoke() receives the parameters correctly converted by the
- * binder to match the types of the method signature.
- */
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal extern Object InternalInvoke (Object obj, Object[] parameters);
-
- public override Object Invoke (Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- {
- if (binder == null)
- binder = Binder.DefaultBinder;
- ParameterInfo[] pinfo = GetParameters ();
- if (!Binder.ConvertArgs (binder, parameters, pinfo, culture))
- throw new ArgumentException ("parameters");
- if (SecurityManager.SecurityEnabled) {
- // sadly Attributes doesn't tell us which kind of security action this is so
- // we must do it the hard way - and it also means that we can skip calling
- // Attribute (which is another an icall)
- SecurityManager.ReflectedLinkDemandInvoke (this);
- }
- try {
- return InternalInvoke (obj, parameters);
- } catch (InvalidOperationException) {
- throw;
- } catch (TargetException) {
- throw;
- } catch (Exception e) {
- throw new TargetInvocationException (e);
- }
- }
- public override RuntimeMethodHandle MethodHandle {
- get {return new RuntimeMethodHandle (mhandle);}
- }
- public override MethodAttributes Attributes {
- get {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.attrs;
- }
- }
- public override CallingConventions CallingConvention {
- get {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.callconv;
- }
- }
-
- public override Type ReflectedType {
- get {
- return reftype;
- }
- }
- public override Type DeclaringType {
- get {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.parent;
- }
- }
- public override string Name {
- get {
- return name;
- }
- }
-
- public override bool IsDefined (Type attributeType, bool inherit) {
- return MonoCustomAttrs.IsDefined (this, attributeType, inherit);
- }
- public override object[] GetCustomAttributes( bool inherit) {
- return MonoCustomAttrs.GetCustomAttributes (this, inherit);
- }
- public override object[] GetCustomAttributes( Type attributeType, bool inherit) {
- return MonoCustomAttrs.GetCustomAttributes (this, attributeType, inherit);
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal static extern DllImportAttribute GetDllImportAttribute (IntPtr mhandle);
- internal object[] GetPseudoCustomAttributes ()
- {
- int count = 0;
- /* MS.NET doesn't report MethodImplAttribute */
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- if ((info.iattrs & MethodImplAttributes.PreserveSig) != 0)
- count ++;
- if ((info.attrs & MethodAttributes.PinvokeImpl) != 0)
- count ++;
-
- if (count == 0)
- return null;
- object[] attrs = new object [count];
- count = 0;
- if ((info.iattrs & MethodImplAttributes.PreserveSig) != 0)
- attrs [count ++] = new PreserveSigAttribute ();
- if ((info.attrs & MethodAttributes.PinvokeImpl) != 0) {
- DllImportAttribute attr = GetDllImportAttribute (mhandle);
- if ((info.iattrs & MethodImplAttributes.PreserveSig) != 0)
- attr.PreserveSig = true;
- attrs [count ++] = attr;
- }
- return attrs;
- }
- public override string ToString () {
- string parms = "";
- ParameterInfo[] p = GetParameters ();
- for (int i = 0; i < p.Length; ++i) {
- if (i > 0)
- parms = parms + ", ";
- Type pt = p[i].ParameterType;
- if (pt.IsClass && pt.Namespace != "")
- parms = parms + pt.Namespace + "." + pt.Name;
- else
- parms = parms + pt.Name;
- }
- if (ReturnType.IsClass && ReturnType.Namespace != "")
- return ReturnType.Namespace + "." + ReturnType.Name + " " + Name + "(" + parms + ")";
- string generic = "";
- #if NET_2_0 || BOOTSTRAP_NET_2_0
- if (HasGenericParameters) {
- Type[] gen_params = GetGenericArguments ();
- generic = "[";
- for (int j = 0; j < gen_params.Length; j++) {
- if (j > 0)
- generic += ",";
- generic += gen_params [j].Name;
- }
- generic += "]";
- }
- #endif
- return ReturnType.Name + " " + Name + generic + "(" + parms + ")";
- }
-
- // ISerializable
- public void GetObjectData(SerializationInfo info, StreamingContext context)
- {
- ReflectionSerializationHolder.Serialize ( info, Name, ReflectedType, ToString(), MemberTypes.Method);
- }
- #if NET_2_0 || BOOTSTRAP_NET_2_0
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public override extern MethodInfo MakeGenericMethod (Type [] types);
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public override extern Type [] GetGenericArguments ();
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- extern MethodInfo GetGenericMethodDefinition_impl ();
- public override MethodInfo GetGenericMethodDefinition ()
- {
- MethodInfo res = GetGenericMethodDefinition_impl ();
- if (res == null)
- throw new InvalidOperationException ();
- return res;
- }
- public override extern bool Mono_IsInflatedMethod {
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- get;
- }
- public override extern bool HasGenericParameters {
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- get;
- }
- public override extern bool IsGenericMethodDefinition {
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- get;
- }
- #endif
- #if NET_2_0
- public override MethodBody GetMethodBody () {
- return GetMethodBody (mhandle);
- }
- #endif
- }
-
- internal class MonoCMethod : ConstructorInfo, ISerializable
- {
- internal IntPtr mhandle;
- string name;
- Type reftype;
-
- public override MethodImplAttributes GetMethodImplementationFlags() {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.iattrs;
- }
- public override ParameterInfo[] GetParameters() {
- return MonoMethodInfo.get_parameter_info (mhandle);
- }
- /*
- * InternalInvoke() receives the parameters corretcly converted by the binder
- * to match the types of the method signature.
- */
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal extern Object InternalInvoke (Object obj, Object[] parameters);
- public override Object Invoke (Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
- {
- if (binder == null)
- binder = Binder.DefaultBinder;
- ParameterInfo[] pinfo = GetParameters ();
- if (!Binder.ConvertArgs (binder, parameters, pinfo, culture))
- throw new ArgumentException ("parameters");
- if (SecurityManager.SecurityEnabled) {
- // sadly Attributes doesn't tell us which kind of security action this is so
- // we must do it the hard way - and it also means that we can skip calling
- // Attribute (which is another an icall)
- SecurityManager.ReflectedLinkDemandInvoke (this);
- }
- try {
- return InternalInvoke (obj, parameters);
- } catch (InvalidOperationException) {
- throw;
- } catch (TargetException) {
- throw;
- } catch (Exception e) {
- throw new TargetInvocationException (e);
- }
- }
- public override Object Invoke (BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) {
- return Invoke (null, invokeAttr, binder, parameters, culture);
- }
- public override RuntimeMethodHandle MethodHandle {
- get {return new RuntimeMethodHandle (mhandle);}
- }
- public override MethodAttributes Attributes {
- get {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.attrs;
- }
- }
- public override CallingConventions CallingConvention {
- get {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.callconv;
- }
- }
-
- public override Type ReflectedType {
- get {
- return reftype;
- }
- }
- public override Type DeclaringType {
- get {
- MonoMethodInfo info;
- MonoMethodInfo.get_method_info (mhandle, out info);
- return info.parent;
- }
- }
- public override string Name {
- get {
- return name;
- }
- }
- public override bool IsDefined (Type attributeType, bool inherit) {
- return MonoCustomAttrs.IsDefined (this, attributeType, inherit);
- }
- public override object[] GetCustomAttributes( bool inherit) {
- return MonoCustomAttrs.GetCustomAttributes (this, inherit);
- }
- public override object[] GetCustomAttributes( Type attributeType, bool inherit) {
- return MonoCustomAttrs.GetCustomAttributes (this, attributeType, inherit);
- }
- #if NET_2_0 || BOOTSTRAP_NET_2_0
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- extern MethodInfo GetGenericMethodDefinition_impl ();
- public override MethodInfo GetGenericMethodDefinition ()
- {
- MethodInfo res = GetGenericMethodDefinition_impl ();
- if (res == null)
- throw new InvalidOperationException ();
- return res;
- }
- public override extern bool Mono_IsInflatedMethod {
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- get;
- }
- public override bool HasGenericParameters {
- get {
- return false;
- }
- }
- public override bool IsGenericMethodDefinition {
- get {
- return false;
- }
- }
- #endif
- #if NET_2_0
- public override MethodBody GetMethodBody () {
- return GetMethodBody (mhandle);
- }
- #endif
- public override string ToString () {
- string parms = "";
- ParameterInfo[] p = GetParameters ();
- for (int i = 0; i < p.Length; ++i) {
- if (i > 0)
- parms = parms + ", ";
- parms = parms + p [i].ParameterType.Name;
- }
- return "Void "+Name+"("+parms+")";
- }
- // ISerializable
- public void GetObjectData(SerializationInfo info, StreamingContext context)
- {
- ReflectionSerializationHolder.Serialize ( info, Name, ReflectedType, ToString(), MemberTypes.Constructor);
- }
- }
- }
|