Merge pull request #1323 from StephenMcConnel/bug-23591
[mono.git] / mcs / class / corlib / System.Reflection / MethodBase.cs
index 01f793efb213b5f3aebe75fa05fdde5f57afca80..d0fa181629f502c5856f656002068953fcc066e0 100644 (file)
@@ -5,10 +5,8 @@
 //   Paolo Molaro (lupus@ximian.com)
 //
 // (C) 2001 Ximian, Inc.  http://www.ximian.com
-//
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
+// Copyright 2011 Xamarin Inc (http://www.xamarin.com).
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.Diagnostics;
 using System.Globalization;
+#if !FULL_AOT_RUNTIME
 using System.Reflection.Emit;
+#endif
 using System.Runtime.CompilerServices;
 using System.Runtime.InteropServices;
 
 namespace System.Reflection {
 
+       [ComVisible (true)]
+       [ComDefaultInterfaceAttribute (typeof (_MethodBase))]
        [Serializable]
-       [ClassInterface(ClassInterfaceType.AutoDual)]
+       [ClassInterface(ClassInterfaceType.None)]
+#if MOBILE
        public abstract class MethodBase: MemberInfo {
-
+#else
+       public abstract class MethodBase: MemberInfo, _MethodBase {
+#endif
                [MethodImplAttribute (MethodImplOptions.InternalCall)]
                public extern static MethodBase GetCurrentMethod ();
 
-               public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle)
+               internal static MethodBase GetMethodFromHandleNoGenericCheck (RuntimeMethodHandle handle)
                {
-                       return null;
+                       return GetMethodFromIntPtr (handle.Value, IntPtr.Zero);
+               }
+
+               static MethodBase GetMethodFromIntPtr (IntPtr handle, IntPtr declaringType)
+               {
+                       if (handle == IntPtr.Zero)
+                               throw new ArgumentException ("The handle is invalid.");
+                       MethodBase res = GetMethodFromHandleInternalType (handle, declaringType);
+                       if (res == null)
+                               throw new ArgumentException ("The handle is invalid.");                 
+                       return res;
+               }
+
+               public static MethodBase GetMethodFromHandle (RuntimeMethodHandle handle)
+               {
+                       MethodBase res = GetMethodFromIntPtr (handle.Value, IntPtr.Zero);
+                       Type t = res.DeclaringType;
+                       if (t.IsGenericType || t.IsGenericTypeDefinition)
+                               throw new ArgumentException ("Cannot resolve method because it's declared in a generic class.");
+                       return res;
+               }
+
+               [MethodImplAttribute (MethodImplOptions.InternalCall)]
+               private extern static MethodBase GetMethodFromHandleInternalType (IntPtr method_handle, IntPtr type_handle);
+
+               [ComVisible (false)]
+               public static MethodBase GetMethodFromHandle (RuntimeMethodHandle handle, RuntimeTypeHandle declaringType)
+               {
+                       return GetMethodFromIntPtr (handle.Value, declaringType.Value);
                }
 
                public abstract MethodImplAttributes GetMethodImplementationFlags();
@@ -58,21 +90,26 @@ namespace System.Reflection {
                //
                // This is a quick version for our own use. We should override
                // it where possible so that it does not allocate an array.
+               // They cannot be abstract otherwise we break public contract
                //
-               internal virtual int GetParameterCount ()
+               internal virtual ParameterInfo[] GetParametersInternal ()
+               {
+                       // Override me
+                       return GetParameters ();
+               }
+
+               internal virtual int GetParametersCount ()
                {
-                       ParameterInfo [] pi = GetParameters ();
-                       if (pi == null)
-                               return 0;
-                       
-                       return pi.Length;
+                       // Override me
+                       return GetParametersInternal ().Length;
+               }
+
+               internal virtual Type GetParameterType (int pos) {
+                       throw new NotImplementedException ();
                }
 
                [DebuggerHidden]
                [DebuggerStepThrough]           
-#if NET_2_0 || BOOTSTRAP_NET_2_0
-               virtual
-#endif
                public Object Invoke(Object obj, Object[] parameters) {
                        return Invoke (obj, 0, null, parameters, null);
                }
@@ -147,6 +184,7 @@ namespace System.Reflection {
                                return (attr & (int)MethodAttributes.SpecialName) != 0;
                        }
                }
+               [ComVisibleAttribute (true)]
                public Boolean IsConstructor {
                        get {
                                int attr = (int)Attributes;
@@ -156,6 +194,7 @@ namespace System.Reflection {
                }
 
                internal virtual int get_next_table_index (object obj, int table, bool inc) {
+#if !FULL_AOT_RUNTIME
                        if (this is MethodBuilder) {
                                MethodBuilder mb = (MethodBuilder)this;
                                return mb.get_next_table_index (obj, table, inc);
@@ -164,42 +203,125 @@ namespace System.Reflection {
                                ConstructorBuilder mb = (ConstructorBuilder)this;
                                return mb.get_next_table_index (obj, table, inc);
                        }
+#endif
                        throw new Exception ("Method is not a builder method");
                }
 
-#if NET_2_0 || BOOTSTRAP_NET_2_0
-               public virtual MethodInfo BindGenericParameters (Type [] types)
+               [ComVisible (true)]
+               public virtual Type [] GetGenericArguments ()
                {
                        throw new NotSupportedException ();
                }
 
-               public virtual Type [] GetGenericArguments ()
-               {
+               public virtual bool ContainsGenericParameters {
+                       get {
+                               return false;
+                       }
+               }
+
+               public virtual bool IsGenericMethodDefinition {
+                       get {
+                               return false;
+                       }
+               }
+
+               public virtual bool IsGenericMethod {
+                       get {
+                               return false;
+                       }
+               }
+
+               [MethodImplAttribute (MethodImplOptions.InternalCall)]
+               internal extern static MethodBody GetMethodBodyInternal (IntPtr handle);
+
+               internal static MethodBody GetMethodBody (IntPtr handle) {
+                       return GetMethodBodyInternal (handle);
+               }
+
+               public virtual MethodBody GetMethodBody () {
                        throw new NotSupportedException ();
                }
 
-               public virtual MethodInfo GetGenericMethodDefinition ()
+#if NET_4_0
+               public override bool Equals (object obj)
                {
-                       throw new NotSupportedException ();
+                       return obj == (object) this;
+               }
+
+               public override int GetHashCode ()
+               {
+                       return base.GetHashCode ();
                }
 
-               public virtual bool Mono_IsInflatedMethod {
+               public static bool operator == (MethodBase left, MethodBase right)
+               {
+                       if ((object)left == (object)right)
+                               return true;
+                       if ((object)left == null ^ (object)right == null)
+                               return false;
+                       return left.Equals (right);
+               }
+
+               public static bool operator != (MethodBase left, MethodBase right)
+               {
+                       if ((object)left == (object)right)
+                               return false;
+                       if ((object)left == null ^ (object)right == null)
+                               return true;
+                       return !left.Equals (right);
+               }
+               
+               public virtual bool IsSecurityCritical {
                        get {
-                               throw new NotSupportedException ();
+                               throw new NotImplementedException ();
                        }
                }
-
-               public virtual bool HasGenericParameters {
+               
+               public virtual bool IsSecuritySafeCritical {
                        get {
-                               throw new NotSupportedException ();
+                               throw new NotImplementedException ();
                        }
                }
 
-               public virtual bool IsGenericMethodDefinition {
+               public virtual bool IsSecurityTransparent {
                        get {
-                               throw new NotSupportedException ();
+                               throw new NotImplementedException ();
                        }
                }
 #endif
+
+#if NET_4_5
+               public virtual MethodImplAttributes MethodImplementationFlags {
+                       get { return GetMethodImplementationFlags (); }
+               }
+#endif
+
+#if !MOBILE
+               void _MethodBase.GetIDsOfNames ([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               Type _MethodBase.GetType ()
+               {
+                       // Required or object::GetType becomes virtual final
+                       return base.GetType ();
+               }               
+
+               void _MethodBase.GetTypeInfo (uint iTInfo, uint lcid, IntPtr ppTInfo)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               void _MethodBase.GetTypeInfoCount (out uint pcTInfo)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               void _MethodBase.Invoke (uint dispIdMember, [In] ref Guid riid, uint lcid, short wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr)
+               {
+                       throw new NotImplementedException ();
+               }
+#endif
        }
 }