Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / class / corlib / System.Reflection / MethodBase.cs
index f1ff5a3c28b35577817359cb7c9ccaa7f5eec64d..1f62fe62fde273337a53f83be994e2c3db751001 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.None)]
-       public abstract class MethodBase: MemberInfo {
+       public abstract class MethodBase: MemberInfo, _MethodBase {
 
                [MethodImplAttribute (MethodImplOptions.InternalCall)]
                public extern static MethodBase GetCurrentMethod ();
 
+               internal static MethodBase GetMethodFromHandleNoGenericCheck (RuntimeMethodHandle handle)
+               {
+                       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 GetMethodFromHandleInternal(IntPtr handle);
+               private extern static MethodBase GetMethodFromHandleInternalType (IntPtr method_handle, IntPtr type_handle);
 
-               public static MethodBase GetMethodFromHandle(RuntimeMethodHandle handle) {
-                       return GetMethodFromHandleInternal (handle.Value);
+               [ComVisible (false)]
+               public static MethodBase GetMethodFromHandle (RuntimeMethodHandle handle, RuntimeTypeHandle declaringType)
+               {
+                       return GetMethodFromIntPtr (handle.Value, declaringType.Value);
                }
 
                public abstract MethodImplAttributes GetMethodImplementationFlags();
@@ -63,18 +90,15 @@ namespace System.Reflection {
                //
                internal virtual int GetParameterCount ()
                {
-                       ParameterInfo [] pi = GetParameters ();
-                       if (pi == null)
-                               return 0;
-                       
-                       return pi.Length;
+                       throw new NotImplementedException ("must be implemented");
+               }
+
+               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);
                }
@@ -149,6 +173,7 @@ namespace System.Reflection {
                                return (attr & (int)MethodAttributes.SpecialName) != 0;
                        }
                }
+               [ComVisibleAttribute (true)]
                public Boolean IsConstructor {
                        get {
                                int attr = (int)Attributes;
@@ -158,6 +183,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);
@@ -166,59 +192,111 @@ 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)
-               {
-                       throw new NotSupportedException ();
-               }
-
+               [ComVisible (true)]
                public virtual Type [] GetGenericArguments ()
                {
                        throw new NotSupportedException ();
                }
 
-               public virtual MethodInfo GetGenericMethodDefinition ()
-               {
-                       throw new NotSupportedException ();
-               }
-
-               public virtual bool Mono_IsInflatedMethod {
+               public virtual bool ContainsGenericParameters {
                        get {
-                               throw new NotSupportedException ();
+                               return false;
                        }
                }
 
-               public virtual bool HasGenericParameters {
+               public virtual bool IsGenericMethodDefinition {
                        get {
-                               throw new NotSupportedException ();
+                               return false;
                        }
                }
 
-               public virtual bool IsGenericMethodDefinition {
+               public virtual bool IsGenericMethod {
                        get {
-                               throw new NotSupportedException ();
+                               return false;
                        }
                }
-#endif
 
-#if NET_2_0
                [MethodImplAttribute (MethodImplOptions.InternalCall)]
                internal extern static MethodBody GetMethodBodyInternal (IntPtr handle);
 
                internal static MethodBody GetMethodBody (IntPtr handle) {
-                       MethodBody mb = GetMethodBodyInternal (handle);
-                       if (mb == null)
-                               throw new ArgumentException ("Only methods with IL bodies are supported.");
-                       else
-                               return mb;
-               }                       
+                       return GetMethodBodyInternal (handle);
+               }
 
                public virtual MethodBody GetMethodBody () {
                        throw new NotSupportedException ();
                }
+
+#if NET_4_0
+               public override bool Equals (object obj)
+               {
+                       return obj == (object) this;
+               }
+
+               public override int GetHashCode ()
+               {
+                       return base.GetHashCode ();
+               }
+
+               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 NotImplementedException ();
+                       }
+               }
+               
+               public virtual bool IsSecuritySafeCritical {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public virtual bool IsSecurityTransparent {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
 #endif
+
+               void _MethodBase.GetIDsOfNames ([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               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 ();
+               }
        }
 }