disable the building of mjs while I solve the problem with the unexposed ctr of Context
[mono.git] / mcs / mcs / pending.cs
old mode 100755 (executable)
new mode 100644 (file)
index 9e10ab3..6dac412
@@ -23,7 +23,7 @@ namespace Mono.CSharp {
 
                // 
                // Whether it is optional, this is used to allow the explicit/implicit
-               // implementation when a parent class already implements an interface. 
+               // implementation when a base class already implements an interface. 
                //
                // For example:
                //
@@ -34,7 +34,7 @@ namespace Mono.CSharp {
                // Far from ideal, but we want to avoid creating a copy
                // of methods above.
                public Type [][]     args;
-               
+
                //
                // This flag on the method says `We found a match, but
                // because it was private, we could not use the match
@@ -45,6 +45,13 @@ namespace Mono.CSharp {
                // create a proxy for it.  This is used when implementing
                // an interface's indexer with a different IndexerName.
                public MethodInfo [] need_proxy;
+
+               //
+               // The name of the indexer (if it exists), precompute set/get, because
+               // they would be recomputed many times inside a loop later on.
+               //
+               public string set_indexer_name;
+               public string get_indexer_name;
        }
 
        public class PendingImplementation {
@@ -61,16 +68,14 @@ namespace Mono.CSharp {
 
                /// <summary>
                ///   This is the array of TypeAndMethods that describes the pending implementations
-               ///   (both interfaces and abstract methods in parent class)
+               ///   (both interfaces and abstract methods in base class)
                /// </summary>
                TypeAndMethods [] pending_implementations;
 
                static bool IsVirtualFilter (MemberInfo m, object filterCriteria)
                {
-                       if (!(m is MethodInfo))
-                               return false;
-
-                       return ((MethodInfo) m).IsVirtual;
+                       MethodInfo mi = m as MethodInfo;
+                       return (mi == null) ? false : mi.IsVirtual;
                }
 
                /// <summary>
@@ -83,7 +88,7 @@ namespace Mono.CSharp {
 
                // <remarks>
                //   Returns a list of the abstract methods that are exposed by all of our
-               //   parents that we must implement.  Notice that this `flattens' the
+               //   bases that we must implement.  Notice that this `flattens' the
                //   method search space, and takes into account overrides.  
                // </remarks>
                static ArrayList GetAbstractMethods (Type t)
@@ -143,23 +148,30 @@ namespace Mono.CSharp {
                        foreach (MissingInterfacesInfo missing in missing_ifaces){
                                MethodInfo [] mi;
                                Type t = missing.Type;
-                               
+
+                               if (!t.IsInterface)
+                                       continue;
+
                                if (t is TypeBuilder){
-                                       Interface iface;
+                                       TypeContainer iface;
 
                                        iface = TypeManager.LookupInterface (t);
-                                       
-                                       mi = iface.GetMethods (container);
+
+                                       mi = iface.GetMethods ();
                                } else 
                                        mi = t.GetMethods ();
-                               
+
                                int count = mi.Length;
-                               pending_implementations [i].type = missing.Type;
+                               pending_implementations [i].type = t;
                                pending_implementations [i].optional = missing.Optional;
                                pending_implementations [i].methods = mi;
                                pending_implementations [i].args = new Type [count][];
                                pending_implementations [i].found = new bool [count];
                                pending_implementations [i].need_proxy = new MethodInfo [count];
+                               string indexer_name = TypeManager.IndexerPropertyName (t);
+
+                               pending_implementations [i].set_indexer_name = "set_" + indexer_name;
+                               pending_implementations [i].get_indexer_name = "get_" + indexer_name;
                                
                                int j = 0;
                                foreach (MethodInfo m in mi){
@@ -180,6 +192,10 @@ namespace Mono.CSharp {
                                pending_implementations [i].found = new bool [count];
                                pending_implementations [i].args = new Type [count][];
                                pending_implementations [i].type = type_builder;
+
+                               string indexer_name = TypeManager.IndexerPropertyName (type_builder);
+                               pending_implementations [i].set_indexer_name = "set_" + indexer_name;
+                               pending_implementations [i].get_indexer_name = "get_" + indexer_name;
                                
                                int j = 0;
                                foreach (MemberInfo m in abstract_methods){
@@ -212,45 +228,37 @@ namespace Mono.CSharp {
                        // Notice that TypeBuilders will only return the interfaces that the Type
                        // is supposed to implement, not all the interfaces that the type implements.
                        //
-                       // Completely broken.  Anyways, we take advantage of this, so we only register
-                       // the implementations that we need, as they are those that are listed by the
-                       // TypeBuilder.
+                       // Even better -- on MS it returns an empty array, no matter what.
                        //
-                       Type [] implementing_ifaces = type_builder.GetInterfaces ();
-                       int count = implementing_ifaces.Length;
+                       // Completely broken.  So we do it ourselves!
+                       //
+                       Type [] impl = TypeManager.GetExplicitInterfaces (type_builder);
 
-                       if (implementing_ifaces.Length == 0)
+                       if (impl == null || impl.Length == 0)
                                return EmptyMissingInterfacesInfo;
 
-                       MissingInterfacesInfo [] missing_info = new MissingInterfacesInfo [count];
+                       MissingInterfacesInfo [] ret = new MissingInterfacesInfo [impl.Length];
 
-                       for (int i = 0; i < count; i++)
-                               missing_info [i] = new MissingInterfacesInfo (implementing_ifaces [i]);
+                       for (int i = 0; i < impl.Length; i++)
+                               ret [i] = new MissingInterfacesInfo (impl [i]);
                        
+                       // we really should not get here because Object doesnt implement any
+                       // interfaces. But it could implement something internal, so we have
+                       // to handle that case.
+                       if (type_builder.BaseType == null)
+                               return ret;
                        
-                       //
-                       // Now, we have to extract the interfaces implements by our parents, and
-                       // remove them from the implementing_ifaces array.
-                       //
-                       for (Type t = type_builder.BaseType; t != null; t = t.BaseType){
-                               Type [] base_ifaces = t.GetInterfaces ();
-                                       
-                               foreach (Type base_iface in base_ifaces){
-                                       for (int i = 0; i < count; i++){
-                                               if (implementing_ifaces [i] == base_iface)
-                                                       missing_info [i].Optional = true;
+                       Type [] base_impls = TypeManager.GetInterfaces (type_builder.BaseType);
+                       
+                       foreach (Type t in base_impls) {
+                               for (int i = 0; i < ret.Length; i ++) {
+                                       if (t == ret [i].Type) {
+                                               ret [i].Optional = true;
+                                               break;
                                        }
                                }
-
-                               //
-                               // When we reach a `Type' instead of `TypeBuilder', the GetInterfaces
-                               // call would have returned all of the parent implementations, so we can end.
-                               //
-                               if (!(t is TypeBuilder))
-                                       break;
                        }
-
-                       return missing_info;
+                       return ret;
                }
                
                //
@@ -322,7 +330,7 @@ namespace Mono.CSharp {
 
                public void ImplementIndexer (Type t, MethodInfo mi, Type ret_type, Type [] args, bool clear_one) 
                {
-                       InterfaceMethod (t, mi.Name, ret_type, args,
+                       InterfaceMethod (t, null, ret_type, args,
                                         clear_one ? Operation.ClearOne : Operation.ClearAll, mi);
                }
                
@@ -363,12 +371,18 @@ namespace Mono.CSharp {
                                        if (m == null)
                                                continue;
 
+                                       //
                                        // `need_proxy' is not null when we're implementing an
                                        // interface indexer and this is Clear(One/All) operation.
+                                       //
                                        // If `name' is null, then we do a match solely based on the
                                        // signature and not on the name (this is done in the Lookup
                                        // for an interface indexer).
-                                       if ((name != null) && (need_proxy == null) && (name != m.Name))
+                                       //
+                                       if (name == null){
+                                               if (m.Name != tm.get_indexer_name && m.Name != tm.set_indexer_name)
+                                                       continue;
+                                       } else if ((need_proxy == null) && (name != m.Name))
                                                continue;
 
                                        if (ret_type != m.ReturnType){
@@ -402,7 +416,11 @@ namespace Mono.CSharp {
                                                // interface indexer.  In this case, we need to create
                                                // a proxy if the implementation's IndexerName doesn't
                                                // match the IndexerName in the interface.
-                                               if ((t == null) && (need_proxy != null) && (name != m.Name))
+                                               bool name_matches = false;
+                                               if (name == m.Name || m.Name == tm.get_indexer_name || m.Name == tm.set_indexer_name)
+                                                       name_matches = true;
+                                               
+                                               if ((t == null) && (need_proxy != null) && !name_matches)
                                                        tm.need_proxy [i] = need_proxy;
                                                else 
                                                        tm.methods [i] = null;
@@ -432,7 +450,7 @@ namespace Mono.CSharp {
                ///   For that case, we create an explicit implementation function
                ///   I.M in Y.
                /// </summary>
-               void DefineProxy (Type iface, MethodInfo parent_method, MethodInfo iface_method,
+               void DefineProxy (Type iface, MethodInfo base_method, MethodInfo iface_method,
                                  Type [] args)
                {
                        MethodBuilder proxy;
@@ -445,36 +463,26 @@ namespace Mono.CSharp {
                                MethodAttributes.NewSlot |
                                MethodAttributes.Virtual,
                                CallingConventions.Standard | CallingConventions.HasThis,
-                               parent_method.ReturnType, args);
+                               base_method.ReturnType, args);
 
                        int top = args.Length;
                        ILGenerator ig = proxy.GetILGenerator ();
 
-                       ig.Emit (OpCodes.Ldarg_0);
-                       for (int i = 0; i < top; i++){
-                               switch (i){
-                               case 0:
-                                       ig.Emit (OpCodes.Ldarg_1); break;
-                               case 1:
-                                       ig.Emit (OpCodes.Ldarg_2); break;
-                               case 2:
-                                       ig.Emit (OpCodes.Ldarg_3); break;
-                               default:
-                                       ig.Emit (OpCodes.Ldarg, i - 1); break;
-                               }
-                       }
-                       ig.Emit (OpCodes.Call, parent_method);
+                       for (int i = 0; i <= top; i++)
+                               ParameterReference.EmitLdArg (ig, i);
+
+                       ig.Emit (OpCodes.Call, base_method);
                        ig.Emit (OpCodes.Ret);
 
                        container.TypeBuilder.DefineMethodOverride (proxy, iface_method);
                }
                
                /// <summary>
-               ///   This function tells whether one of our parent classes implements
+               ///   This function tells whether one of our base classes implements
                ///   the given method (which turns out, it is valid to have an interface
-               ///   implementation in a parent
+               ///   implementation in a base
                /// </summary>
-               bool ParentImplements (Type iface_type, MethodInfo mi)
+               bool BaseImplements (Type iface_type, MethodInfo mi)
                {
                        MethodSignature ms;
                        
@@ -488,9 +496,9 @@ namespace Mono.CSharp {
                        if (list.Count == 0)
                                return false;
 
-                       MethodInfo parent = (MethodInfo) list [0];
-                       if (!parent.IsAbstract)
-                               DefineProxy (iface_type, parent, mi, args);
+                       MethodInfo base_method = (MethodInfo) list [0];
+                       if (!base_method.IsAbstract)
+                               DefineProxy (iface_type, base_method, mi, args);
                        return true;
                }
 
@@ -507,7 +515,7 @@ namespace Mono.CSharp {
                        for (i = 0; i < top; i++){
                                Type type = pending_implementations [i].type;
                                int j = 0;
-                               
+
                                foreach (MethodInfo mi in pending_implementations [i].methods){
                                        if (mi == null)
                                                continue;
@@ -522,27 +530,27 @@ namespace Mono.CSharp {
                                                        continue;
                                                }
 
-                                               if (ParentImplements (type, mi))
+                                               if (BaseImplements (type, mi))
                                                        continue;
 
                                                if (pending_implementations [i].optional)
                                                        continue;
                                                
-                                               string extra = "";
-                                               
-                                               if (pending_implementations [i].found [j])
-                                                       extra = ".  (method might be non-public or static)";
-                                               Report.Error (
-                                                       536, container.Location,
-                                                       "`" + container.Name + "' does not implement " +
-                                                       "interface member `" +
-                                                       type.FullName + "." + mi.Name + "'" + extra);
+                                               if (pending_implementations [i].found [j]) {
+                                                       string[] methodLabel = TypeManager.CSharpSignature (mi).Split ('.');
+                                                       Report.Error (536, container.Location,
+                                                                     "'{0}' does not implement interface member '{1}'. '{2}.{3}' " +
+                                                                     "is either static, not public, or has the wrong return type",
+                                                                     container.Name, TypeManager.CSharpSignature (mi),
+                                                                     container.Name, methodLabel[methodLabel.Length - 1]);
+                                               }
+                                               else { 
+                                                       Report.Error (535, container.Location, "'{0}' does not implement interface member '{1}'",
+                                                               container.Name, TypeManager.CSharpSignature (mi));
+                                               }
                                        } else {
-                                               Report.Error (
-                                                       534, container.Location,
-                                                       "`" + container.Name + "' does not implement " +
-                                                       "inherited abstract member `" +
-                                                       type.FullName + "." + mi.Name + "'");
+                                               Report.Error (534, container.Location, "'{0}' does not implement inherited abstract member '{1}'",
+                                                       container.Name, TypeManager.CSharpSignature (mi));
                                        }
                                        errors = true;
                                        j++;