Add new BMCS: based on Jambu's code but migrated to 'gmcs' so we get generics support
[mono.git] / mcs / bmcs / pending.cs
1 //
2 // pending.cs: Pending method implementation
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@gnu.org)
6 //
7 // Licensed under the terms of the GNU GPL
8 //
9 // (C) 2001, 2002 Ximian, Inc (http://www.ximian.com)
10 //
11 //
12
13 using System;
14 using System.Collections;
15 using System.Reflection;
16 using System.Reflection.Emit;
17
18 namespace Mono.CSharp {
19
20         struct TypeAndMethods {
21                 public Type          type;
22                 public MethodInfo [] methods;
23
24                 // 
25                 // Whether it is optional, this is used to allow the explicit/implicit
26                 // implementation when a parent class already implements an interface. 
27                 //
28                 // For example:
29                 //
30                 // class X : IA { }  class Y : X, IA { IA.Explicit (); }
31                 //
32                 public bool          optional;
33                 
34                 // Far from ideal, but we want to avoid creating a copy
35                 // of methods above.
36                 public Type [][]     args;
37
38                 //
39                 // This flag on the method says `We found a match, but
40                 // because it was private, we could not use the match
41                 //
42                 public bool []       found;
43
44                 // If a method is defined here, then we always need to
45                 // create a proxy for it.  This is used when implementing
46                 // an interface's indexer with a different IndexerName.
47                 public MethodInfo [] need_proxy;
48
49                 //
50                 // The name of the indexer (if it exists), precompute set/get, because
51                 // they would be recomputed many times inside a loop later on.
52                 //
53                 public string set_indexer_name;
54                 public string get_indexer_name;
55         }
56
57         public class PendingImplementation {
58                 /// <summary>
59                 ///   The container for this PendingImplementation
60                 /// </summary>
61                 TypeContainer container;
62                 
63                 /// <summary>
64                 ///   This filter is used by FindMembers, and it is used to
65                 ///   extract only virtual/abstract fields
66                 /// </summary>
67                 static MemberFilter virtual_method_filter;
68
69                 /// <summary>
70                 ///   This is the array of TypeAndMethods that describes the pending implementations
71                 ///   (both interfaces and abstract methods in parent class)
72                 /// </summary>
73                 TypeAndMethods [] pending_implementations;
74
75                 static bool IsVirtualFilter (MemberInfo m, object filterCriteria)
76                 {
77                         MethodInfo mi = m as MethodInfo;
78                         return (mi == null) ? false : mi.IsVirtual;
79                 }
80
81                 /// <summary>
82                 ///   Inits the virtual_method_filter
83                 /// </summary>
84                 static PendingImplementation ()
85                 {
86                         virtual_method_filter = new MemberFilter (IsVirtualFilter);
87                 }
88
89                 // <remarks>
90                 //   Returns a list of the abstract methods that are exposed by all of our
91                 //   parents that we must implement.  Notice that this `flattens' the
92                 //   method search space, and takes into account overrides.  
93                 // </remarks>
94                 static ArrayList GetAbstractMethods (Type t)
95                 {
96                         ArrayList list = null;
97                         bool searching = true;
98                         Type current_type = t;
99                         
100                         do {
101                                 MemberList mi;
102                                 
103                                 mi = TypeContainer.FindMembers (
104                                         current_type, MemberTypes.Method,
105                                         BindingFlags.Public | BindingFlags.Instance |
106                                         BindingFlags.DeclaredOnly,
107                                         virtual_method_filter, null);
108
109                                 if (current_type == TypeManager.object_type)
110                                         searching = false;
111                                 else {
112                                         current_type = current_type.BaseType;
113                                         if (!current_type.IsAbstract)
114                                                 searching = false;
115                                 }
116
117                                 if (mi.Count == 0)
118                                         continue;
119
120                                 if (mi.Count == 1 && !(mi [0] is MethodBase))
121                                         searching = false;
122                                 else 
123                                         list = TypeManager.CopyNewMethods (list, mi);
124                         } while (searching);
125
126                         if (list == null)
127                                 return null;
128                         
129                         for (int i = 0; i < list.Count; i++){
130                                 while (list.Count > i && !((MethodInfo) list [i]).IsAbstract)
131                                         list.RemoveAt (i);
132                         }
133
134                         if (list.Count == 0)
135                                 return null;
136
137                         return list;
138                 }
139
140                 PendingImplementation (TypeContainer container, MissingInterfacesInfo [] missing_ifaces, ArrayList abstract_methods, int total)
141                 {
142                         TypeBuilder type_builder = container.TypeBuilder;
143                         
144                         this.container = container;
145                         pending_implementations = new TypeAndMethods [total];
146
147                         int i = 0;
148                         foreach (MissingInterfacesInfo missing in missing_ifaces){
149                                 MethodInfo [] mi;
150                                 Type t = missing.Type;
151                                 
152                                 if (!t.IsInterface)
153                                         continue;
154
155                                 if (t is TypeBuilder){
156                                         TypeContainer iface;
157
158                                         iface = TypeManager.LookupInterface (t);
159                                         
160                                         mi = iface.GetMethods ();
161                                 } else 
162                                         mi = t.GetMethods ();
163                                 
164                                 int count = mi.Length;
165                                 pending_implementations [i].type = t;
166                                 pending_implementations [i].optional = missing.Optional;
167                                 pending_implementations [i].methods = mi;
168                                 pending_implementations [i].args = new Type [count][];
169                                 pending_implementations [i].found = new bool [count];
170                                 pending_implementations [i].need_proxy = new MethodInfo [count];
171                                 string indexer_name = TypeManager.IndexerPropertyName (t);
172
173                                 pending_implementations [i].set_indexer_name = "set_" + indexer_name;
174                                 pending_implementations [i].get_indexer_name = "get_" + indexer_name;
175                                 
176                                 int j = 0;
177                                 foreach (MethodInfo m in mi){
178                                         Type [] types = TypeManager.GetArgumentTypes (m);
179                                         
180                                         pending_implementations [i].args [j] = types;
181                                         j++;
182                                 }
183                                 i++;
184                         }
185
186                         if (abstract_methods != null){
187                                 int count = abstract_methods.Count;
188                                 pending_implementations [i].methods = new MethodInfo [count];
189                                 pending_implementations [i].need_proxy = new MethodInfo [count];
190                                 
191                                 abstract_methods.CopyTo (pending_implementations [i].methods, 0);
192                                 pending_implementations [i].found = new bool [count];
193                                 pending_implementations [i].args = new Type [count][];
194                                 pending_implementations [i].type = type_builder;
195
196                                 string indexer_name = TypeManager.IndexerPropertyName (type_builder);
197                                 pending_implementations [i].set_indexer_name = "set_" + indexer_name;
198                                 pending_implementations [i].get_indexer_name = "get_" + indexer_name;
199                                 
200                                 int j = 0;
201                                 foreach (MemberInfo m in abstract_methods){
202                                         MethodInfo mi = (MethodInfo) m;
203                                         
204                                         Type [] types = TypeManager.GetArgumentTypes (mi);
205                                         
206                                         pending_implementations [i].args [j] = types;
207                                         j++;
208                                 }
209                         }
210                 }
211
212                 struct MissingInterfacesInfo {
213                         public Type Type;
214                         public bool Optional;
215
216                         public MissingInterfacesInfo (Type t)
217                         {
218                                 Type = t;
219                                 Optional = false;
220                         }
221                 }
222
223                 static MissingInterfacesInfo [] EmptyMissingInterfacesInfo = new MissingInterfacesInfo [0];
224                 
225                 static MissingInterfacesInfo [] GetMissingInterfaces (TypeBuilder type_builder)
226                 {
227                         //
228                         // Notice that TypeBuilders will only return the interfaces that the Type
229                         // is supposed to implement, not all the interfaces that the type implements.
230                         //
231                         // Even better -- on MS it returns an empty array, no matter what.
232                         //
233                         // Completely broken.  So we do it ourselves!
234                         //
235                         Type [] impl = TypeManager.GetExplicitInterfaces (type_builder);
236
237                         if (impl == null || impl.Length == 0)
238                                 return EmptyMissingInterfacesInfo;
239
240                         MissingInterfacesInfo [] ret = new MissingInterfacesInfo [impl.Length];
241
242                         for (int i = 0; i < impl.Length; i++)
243                                 ret [i] = new MissingInterfacesInfo (impl [i]);
244
245                         // we really should not get here because Object doesnt implement any
246                         // interfaces. But it could implement something internal, so we have
247                         // to handle that case.
248                         if (type_builder.BaseType == null)
249                                 return ret;
250                         
251                         Type [] parent_impls = TypeManager.GetInterfaces (type_builder.BaseType);
252                         
253                         foreach (Type t in parent_impls) {
254                                 for (int i = 0; i < ret.Length; i ++) {
255                                         if (t == ret [i].Type) {
256                                                 ret [i].Optional = true;
257                                                 break;
258                                         }
259                                 }
260                         }
261                         return ret;
262                 }
263                 
264                 //
265                 // Factory method: if there are pending implementation methods, we return a PendingImplementation
266                 // object, otherwise we return null.
267                 //
268                 // Register method implementations are either abstract methods
269                 // flagged as such on the base class or interface methods
270                 //
271                 static public PendingImplementation GetPendingImplementations (TypeContainer container)
272                 {
273                         TypeBuilder type_builder = container.TypeBuilder;
274                         MissingInterfacesInfo [] missing_interfaces;
275                         Type b = type_builder.BaseType;
276
277                         missing_interfaces = GetMissingInterfaces (type_builder);
278
279                         //
280                         // If we are implementing an abstract class, and we are not
281                         // ourselves abstract, and there are abstract methods (C# allows
282                         // abstract classes that have no abstract methods), then allocate
283                         // one slot.
284                         //
285                         // We also pre-compute the methods.
286                         //
287                         bool implementing_abstract = ((b != null) && b.IsAbstract && !type_builder.IsAbstract);
288                         ArrayList abstract_methods = null;
289
290                         if (implementing_abstract){
291                                 abstract_methods = GetAbstractMethods (b);
292                                 
293                                 if (abstract_methods == null)
294                                         implementing_abstract = false;
295                         }
296                         
297                         int total = missing_interfaces.Length +  (implementing_abstract ? 1 : 0);
298                         if (total == 0)
299                                 return null;
300
301                         return new PendingImplementation (container, missing_interfaces, abstract_methods, total);
302                 }
303
304                 public enum Operation {
305                         //
306                         // If you change this, review the whole InterfaceMethod routine as there
307                         // are a couple of assumptions on these three states
308                         //
309                         Lookup, ClearOne, ClearAll
310                 }
311
312                 /// <summary>
313                 ///   Whether the specified method is an interface method implementation
314                 /// </summary>
315                 public MethodInfo IsInterfaceMethod (Type t, string name, Type ret_type, Type [] args)
316                 {
317                         return InterfaceMethod (t, name, ret_type, args, Operation.Lookup, null);
318                 }
319
320                 public MethodInfo IsInterfaceIndexer (Type t, Type ret_type, Type [] args)
321                 {
322                         return InterfaceMethod (t, null, ret_type, args, Operation.Lookup, null);
323                 }
324
325                 public void ImplementMethod (Type t, string name, Type ret_type, Type [] args, bool clear_one) 
326                 {
327                         InterfaceMethod (t, name, ret_type, args,
328                                          clear_one ? Operation.ClearOne : Operation.ClearAll, null);
329                 }
330
331                 public void ImplementIndexer (Type t, MethodInfo mi, Type ret_type, Type [] args, bool clear_one) 
332                 {
333                         InterfaceMethod (t, null, ret_type, args,
334                                          clear_one ? Operation.ClearOne : Operation.ClearAll, mi);
335                 }
336                 
337                 /// <remarks>
338                 ///   If a method in Type `t' (or null to look in all interfaces
339                 ///   and the base abstract class) with name `Name', return type `ret_type' and
340                 ///   arguments `args' implements an interface, this method will
341                 ///   return the MethodInfo that this method implements.
342                 ///
343                 ///   If `name' is null, we operate solely on the method's signature.  This is for
344                 ///   instance used when implementing indexers.
345                 ///
346                 ///   The `Operation op' controls whether to lookup, clear the pending bit, or clear
347                 ///   all the methods with the given signature.
348                 ///
349                 ///   The `MethodInfo need_proxy' is used when we're implementing an interface's
350                 ///   indexer in a class.  If the new indexer's IndexerName does not match the one
351                 ///   that was used in the interface, then we always need to create a proxy for it.
352                 ///
353                 /// </remarks>
354                 public MethodInfo InterfaceMethod (Type t, string name, Type ret_type, Type [] args,
355                                                    Operation op, MethodInfo need_proxy)
356                 {
357                         int arg_len = args.Length;
358
359                         if (pending_implementations == null)
360                                 return null;
361
362                         foreach (TypeAndMethods tm in pending_implementations){
363                                 if (!(t == null || tm.type == t))
364                                         continue;
365
366                                 int method_count = tm.methods.Length;
367                                 MethodInfo m;
368                                 for (int i = 0; i < method_count; i++){
369                                         m = tm.methods [i];
370
371                                         if (m == null)
372                                                 continue;
373
374                                         string mname = TypeManager.GetMethodName (m);
375
376                                         //
377                                         // `need_proxy' is not null when we're implementing an
378                                         // interface indexer and this is Clear(One/All) operation.
379                                         //
380                                         // If `name' is null, then we do a match solely based on the
381                                         // signature and not on the name (this is done in the Lookup
382                                         // for an interface indexer).
383                                         //
384                                         if (name == null){
385                                                 if (mname != tm.get_indexer_name && mname != tm.set_indexer_name)
386                                                         continue;
387                                         } else if ((need_proxy == null) && (name != mname))
388                                                 continue;
389
390                                         if (!TypeManager.IsEqual (ret_type, m.ReturnType)){
391                                                 if (!((ret_type == null && m.ReturnType == TypeManager.void_type) ||
392                                                       (m.ReturnType == null && ret_type == TypeManager.void_type)))
393                                                         continue;
394                                         }
395
396                                         //
397                                         // Check if we have the same parameters
398                                         //
399                                         if (tm.args [i].Length != arg_len)
400                                                 continue;
401
402                                         int j, top = args.Length;
403                                         bool fail = false;
404
405                                         for (j = 0; j < top; j++){
406                                                 if (!TypeManager.IsEqual (tm.args [i][j], args[j])){
407                                                         fail = true;
408                                                         break;
409                                                 }
410                                         }
411                                         if (fail)
412                                                 continue;
413
414                                         if (op != Operation.Lookup){
415                                                 // If `t != null', then this is an explicitly interface
416                                                 // implementation and we can always clear the method.
417                                                 // `need_proxy' is not null if we're implementing an
418                                                 // interface indexer.  In this case, we need to create
419                                                 // a proxy if the implementation's IndexerName doesn't
420                                                 // match the IndexerName in the interface.
421                                                 bool name_matches = false;
422                                                 if (name == mname || mname == tm.get_indexer_name || mname == tm.set_indexer_name)
423                                                         name_matches = true;
424                                                 
425                                                 if ((t == null) && (need_proxy != null) && !name_matches)
426                                                         tm.need_proxy [i] = need_proxy;
427                                                 else 
428                                                         tm.methods [i] = null;
429                                         }
430                                         tm.found [i] = true;
431
432                                         //
433                                         // Lookups and ClearOne return
434                                         //
435                                         if (op != Operation.ClearAll)
436                                                 return m;
437                                 }
438
439                                 // If a specific type was requested, we can stop now.
440                                 if (tm.type == t)
441                                         return null;
442                         }
443                         return null;
444                 }
445
446                 /// <summary>
447                 ///   C# allows this kind of scenarios:
448                 ///   interface I { void M (); }
449                 ///   class X { public void M (); }
450                 ///   class Y : X, I { }
451                 ///
452                 ///   For that case, we create an explicit implementation function
453                 ///   I.M in Y.
454                 /// </summary>
455                 void DefineProxy (Type iface, MethodInfo parent_method, MethodInfo iface_method,
456                                   Type [] args)
457                 {
458                         MethodBuilder proxy;
459
460                         string proxy_name = iface.Name + "." + iface_method.Name;
461
462                         proxy = container.TypeBuilder.DefineMethod (
463                                 proxy_name,
464                                 MethodAttributes.HideBySig |
465                                 MethodAttributes.NewSlot |
466                                 MethodAttributes.Virtual,
467                                 CallingConventions.Standard | CallingConventions.HasThis,
468                                 parent_method.ReturnType, args);
469
470                         ParameterData pd = Invocation.GetParameterData (iface_method);
471                         proxy.DefineParameter (0, ParameterAttributes.None, "");
472                         for (int i = 0; i < pd.Count; i++) {
473                                 string name = pd.ParameterName (i);
474                                 ParameterAttributes attr = Parameter.GetParameterAttributes (pd.ParameterModifier (i));
475                                 ParameterBuilder pb = proxy.DefineParameter (i + 1, attr, name);
476                         }
477
478                         int top = args.Length;
479                         ILGenerator ig = proxy.GetILGenerator ();
480
481                         ig.Emit (OpCodes.Ldarg_0);
482                         for (int i = 0; i < top; i++){
483                                 switch (i){
484                                 case 0:
485                                         ig.Emit (OpCodes.Ldarg_1); break;
486                                 case 1:
487                                         ig.Emit (OpCodes.Ldarg_2); break;
488                                 case 2:
489                                         ig.Emit (OpCodes.Ldarg_3); break;
490                                 default:
491                                         ig.Emit (OpCodes.Ldarg, i - 1); break;
492                                 }
493                         }
494                         ig.Emit (OpCodes.Call, parent_method);
495                         ig.Emit (OpCodes.Ret);
496
497                         container.TypeBuilder.DefineMethodOverride (proxy, iface_method);
498                 }
499                 
500                 /// <summary>
501                 ///   This function tells whether one of our parent classes implements
502                 ///   the given method (which turns out, it is valid to have an interface
503                 ///   implementation in a parent
504                 /// </summary>
505                 bool ParentImplements (Type iface_type, MethodInfo mi)
506                 {
507                         MethodSignature ms;
508                         
509                         Type [] args = TypeManager.GetArgumentTypes (mi);
510                         ms = new MethodSignature (mi.Name, mi.ReturnType, args);
511                         MemberList list = TypeContainer.FindMembers (
512                                 container.TypeBuilder.BaseType, MemberTypes.Method | MemberTypes.Property,
513                                 BindingFlags.Public | BindingFlags.Instance,
514                                 MethodSignature.method_signature_filter, ms);
515
516                         if (list.Count == 0)
517                                 return false;
518
519                         MethodInfo parent = (MethodInfo) list [0];
520                         if (!parent.IsAbstract)
521                                 DefineProxy (iface_type, parent, mi, args);
522                         return true;
523                 }
524
525                 /// <summary>
526                 ///   Verifies that any pending abstract methods or interface methods
527                 ///   were implemented.
528                 /// </summary>
529                 public bool VerifyPendingMethods ()
530                 {
531                         int top = pending_implementations.Length;
532                         bool errors = false;
533                         int i;
534                         
535                         for (i = 0; i < top; i++){
536                                 Type type = pending_implementations [i].type;
537                                 int j = 0;
538
539                                 foreach (MethodInfo mi in pending_implementations [i].methods){
540                                         if (mi == null)
541                                                 continue;
542
543                                         if (type.IsInterface){
544                                                 MethodInfo need_proxy =
545                                                         pending_implementations [i].need_proxy [j];
546
547                                                 if (need_proxy != null) {
548                                                         Type [] args = TypeManager.GetArgumentTypes (mi);
549                                                         DefineProxy (type, need_proxy, mi, args);
550                                                         continue;
551                                                 }
552
553                                                 if (ParentImplements (type, mi))
554                                                         continue;
555
556                                                 if (pending_implementations [i].optional)
557                                                         continue;
558                                                 
559                                                 if (pending_implementations [i].found [j]) {
560                                                         string[] methodLabel = TypeManager.CSharpSignature (mi).Split ('.');
561                                                         Report.Error (536, container.Location,
562                                                                       "'{0}' does not implement interface member '{1}'. '{2}.{3}' " +
563                                                                       "is either static, not public, or has the wrong return type",
564                                                                       container.Name, TypeManager.CSharpSignature (mi),
565                                                                       container.Name, methodLabel[methodLabel.Length - 1]);
566                                                 }
567                                                 else { 
568                                                         Report.Error (535, container.Location, "'{0}' does not implement interface member '{1}'",
569                                                                 container.Name, TypeManager.CSharpSignature (mi));
570                                                 }
571                                         } else {
572                                                 Report.Error (534, container.Location, "'{0}' does not implement inherited abstract member '{1}'",
573                                                         container.Name, TypeManager.CSharpSignature (mi));
574                                         }
575                                         errors = true;
576                                         j++;
577                                 }
578                         }
579                         return errors;
580                 }
581         } /* end of class */
582 }