2004-11-16 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / mcs / 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 is TypeBuilder){
153                                         TypeContainer iface;
154
155                                         iface = TypeManager.LookupInterface (t);
156
157                                         mi = iface.GetMethods ();
158                                 } else 
159                                         mi = t.GetMethods ();
160
161                                 int count = mi.Length;
162                                 pending_implementations [i].type = t;
163                                 pending_implementations [i].optional = missing.Optional;
164                                 pending_implementations [i].methods = mi;
165                                 pending_implementations [i].args = new Type [count][];
166                                 pending_implementations [i].found = new bool [count];
167                                 pending_implementations [i].need_proxy = new MethodInfo [count];
168                                 string indexer_name = TypeManager.IndexerPropertyName (t);
169
170                                 pending_implementations [i].set_indexer_name = "set_" + indexer_name;
171                                 pending_implementations [i].get_indexer_name = "get_" + indexer_name;
172                                 
173                                 int j = 0;
174                                 foreach (MethodInfo m in mi){
175                                         Type [] types = TypeManager.GetArgumentTypes (m);
176                                         
177                                         pending_implementations [i].args [j] = types;
178                                         j++;
179                                 }
180                                 i++;
181                         }
182
183                         if (abstract_methods != null){
184                                 int count = abstract_methods.Count;
185                                 pending_implementations [i].methods = new MethodInfo [count];
186                                 pending_implementations [i].need_proxy = new MethodInfo [count];
187                                 
188                                 abstract_methods.CopyTo (pending_implementations [i].methods, 0);
189                                 pending_implementations [i].found = new bool [count];
190                                 pending_implementations [i].args = new Type [count][];
191                                 pending_implementations [i].type = type_builder;
192
193                                 string indexer_name = TypeManager.IndexerPropertyName (type_builder);
194                                 pending_implementations [i].set_indexer_name = "set_" + indexer_name;
195                                 pending_implementations [i].get_indexer_name = "get_" + indexer_name;
196                                 
197                                 int j = 0;
198                                 foreach (MemberInfo m in abstract_methods){
199                                         MethodInfo mi = (MethodInfo) m;
200                                         
201                                         Type [] types = TypeManager.GetArgumentTypes (mi);
202                                         
203                                         pending_implementations [i].args [j] = types;
204                                         j++;
205                                 }
206                         }
207                 }
208
209                 struct MissingInterfacesInfo {
210                         public Type Type;
211                         public bool Optional;
212
213                         public MissingInterfacesInfo (Type t)
214                         {
215                                 Type = t;
216                                 Optional = false;
217                         }
218                 }
219
220                 static MissingInterfacesInfo [] EmptyMissingInterfacesInfo = new MissingInterfacesInfo [0];
221                 
222                 static MissingInterfacesInfo [] GetMissingInterfaces (TypeBuilder type_builder)
223                 {
224                         //
225                         // Notice that TypeBuilders will only return the interfaces that the Type
226                         // is supposed to implement, not all the interfaces that the type implements.
227                         //
228                         // Even better -- on MS it returns an empty array, no matter what.
229                         //
230                         // Completely broken.  So we do it ourselves!
231                         //
232                         Type [] impl = TypeManager.GetExplicitInterfaces (type_builder);
233
234                         if (impl == null || impl.Length == 0)
235                                 return EmptyMissingInterfacesInfo;
236
237                         MissingInterfacesInfo [] ret = new MissingInterfacesInfo [impl.Length];
238
239                         for (int i = 0; i < impl.Length; i++)
240                                 ret [i] = new MissingInterfacesInfo (impl [i]);
241                         
242                         // we really should not get here because Object doesnt implement any
243                         // interfaces. But it could implement something internal, so we have
244                         // to handle that case.
245                         if (type_builder.BaseType == null)
246                                 return ret;
247                         
248                         Type [] parent_impls = TypeManager.GetInterfaces (type_builder.BaseType);
249                         
250                         foreach (Type t in parent_impls) {
251                                 for (int i = 0; i < ret.Length; i ++) {
252                                         if (t == ret [i].Type) {
253                                                 ret [i].Optional = true;
254                                                 break;
255                                         }
256                                 }
257                         }
258                         return ret;
259                 }
260                 
261                 //
262                 // Factory method: if there are pending implementation methods, we return a PendingImplementation
263                 // object, otherwise we return null.
264                 //
265                 // Register method implementations are either abstract methods
266                 // flagged as such on the base class or interface methods
267                 //
268                 static public PendingImplementation GetPendingImplementations (TypeContainer container)
269                 {
270                         TypeBuilder type_builder = container.TypeBuilder;
271                         MissingInterfacesInfo [] missing_interfaces;
272                         Type b = type_builder.BaseType;
273
274                         missing_interfaces = GetMissingInterfaces (type_builder);
275
276                         //
277                         // If we are implementing an abstract class, and we are not
278                         // ourselves abstract, and there are abstract methods (C# allows
279                         // abstract classes that have no abstract methods), then allocate
280                         // one slot.
281                         //
282                         // We also pre-compute the methods.
283                         //
284                         bool implementing_abstract = ((b != null) && b.IsAbstract && !type_builder.IsAbstract);
285                         ArrayList abstract_methods = null;
286
287                         if (implementing_abstract){
288                                 abstract_methods = GetAbstractMethods (b);
289                                 
290                                 if (abstract_methods == null)
291                                         implementing_abstract = false;
292                         }
293                         
294                         int total = missing_interfaces.Length +  (implementing_abstract ? 1 : 0);
295                         if (total == 0)
296                                 return null;
297
298                         return new PendingImplementation (container, missing_interfaces, abstract_methods, total);
299                 }
300
301                 public enum Operation {
302                         //
303                         // If you change this, review the whole InterfaceMethod routine as there
304                         // are a couple of assumptions on these three states
305                         //
306                         Lookup, ClearOne, ClearAll
307                 }
308
309                 /// <summary>
310                 ///   Whether the specified method is an interface method implementation
311                 /// </summary>
312                 public MethodInfo IsInterfaceMethod (Type t, string name, Type ret_type, Type [] args)
313                 {
314                         return InterfaceMethod (t, name, ret_type, args, Operation.Lookup, null);
315                 }
316
317                 public MethodInfo IsInterfaceIndexer (Type t, Type ret_type, Type [] args)
318                 {
319                         return InterfaceMethod (t, null, ret_type, args, Operation.Lookup, null);
320                 }
321
322                 public void ImplementMethod (Type t, string name, Type ret_type, Type [] args, bool clear_one) 
323                 {
324                         InterfaceMethod (t, name, ret_type, args,
325                                          clear_one ? Operation.ClearOne : Operation.ClearAll, null);
326                 }
327
328                 public void ImplementIndexer (Type t, MethodInfo mi, Type ret_type, Type [] args, bool clear_one) 
329                 {
330                         InterfaceMethod (t, null, ret_type, args,
331                                          clear_one ? Operation.ClearOne : Operation.ClearAll, mi);
332                 }
333                 
334                 /// <remarks>
335                 ///   If a method in Type `t' (or null to look in all interfaces
336                 ///   and the base abstract class) with name `Name', return type `ret_type' and
337                 ///   arguments `args' implements an interface, this method will
338                 ///   return the MethodInfo that this method implements.
339                 ///
340                 ///   If `name' is null, we operate solely on the method's signature.  This is for
341                 ///   instance used when implementing indexers.
342                 ///
343                 ///   The `Operation op' controls whether to lookup, clear the pending bit, or clear
344                 ///   all the methods with the given signature.
345                 ///
346                 ///   The `MethodInfo need_proxy' is used when we're implementing an interface's
347                 ///   indexer in a class.  If the new indexer's IndexerName does not match the one
348                 ///   that was used in the interface, then we always need to create a proxy for it.
349                 ///
350                 /// </remarks>
351                 public MethodInfo InterfaceMethod (Type t, string name, Type ret_type, Type [] args,
352                                                    Operation op, MethodInfo need_proxy)
353                 {
354                         int arg_len = args.Length;
355
356                         if (pending_implementations == null)
357                                 return null;
358
359                         foreach (TypeAndMethods tm in pending_implementations){
360                                 if (!(t == null || tm.type == t))
361                                         continue;
362
363                                 int method_count = tm.methods.Length;
364                                 MethodInfo m;
365                                 for (int i = 0; i < method_count; i++){
366                                         m = tm.methods [i];
367
368                                         if (m == null)
369                                                 continue;
370
371                                         //
372                                         // `need_proxy' is not null when we're implementing an
373                                         // interface indexer and this is Clear(One/All) operation.
374                                         //
375                                         // If `name' is null, then we do a match solely based on the
376                                         // signature and not on the name (this is done in the Lookup
377                                         // for an interface indexer).
378                                         //
379                                         if (name == null){
380                                                 if (m.Name != tm.get_indexer_name && m.Name != tm.set_indexer_name)
381                                                         continue;
382                                         } else if ((need_proxy == null) && (name != m.Name))
383                                                 continue;
384
385                                         if (ret_type != m.ReturnType){
386                                                 if (!((ret_type == null && m.ReturnType == TypeManager.void_type) ||
387                                                       (m.ReturnType == null && ret_type == TypeManager.void_type)))
388                                                         continue;
389                                         }
390
391                                         //
392                                         // Check if we have the same parameters
393                                         //
394                                         if (tm.args [i].Length != arg_len)
395                                                 continue;
396
397                                         int j, top = args.Length;
398                                         bool fail = false;
399                                         
400                                         for (j = 0; j < top; j++){
401                                                 if (tm.args [i][j] != args[j]){
402                                                         fail = true;
403                                                         break;
404                                                 }
405                                         }
406                                         if (fail)
407                                                 continue;
408
409                                         if (op != Operation.Lookup){
410                                                 // If `t != null', then this is an explicitly interface
411                                                 // implementation and we can always clear the method.
412                                                 // `need_proxy' is not null if we're implementing an
413                                                 // interface indexer.  In this case, we need to create
414                                                 // a proxy if the implementation's IndexerName doesn't
415                                                 // match the IndexerName in the interface.
416                                                 bool name_matches = false;
417                                                 if (name == m.Name || m.Name == tm.get_indexer_name || m.Name == tm.set_indexer_name)
418                                                         name_matches = true;
419                                                 
420                                                 if ((t == null) && (need_proxy != null) && !name_matches)
421                                                         tm.need_proxy [i] = need_proxy;
422                                                 else 
423                                                         tm.methods [i] = null;
424                                         }
425                                         tm.found [i] = true;
426
427                                         //
428                                         // Lookups and ClearOne return
429                                         //
430                                         if (op != Operation.ClearAll)
431                                                 return m;
432                                 }
433
434                                 // If a specific type was requested, we can stop now.
435                                 if (tm.type == t)
436                                         return null;
437                         }
438                         return null;
439                 }
440
441                 /// <summary>
442                 ///   C# allows this kind of scenarios:
443                 ///   interface I { void M (); }
444                 ///   class X { public void M (); }
445                 ///   class Y : X, I { }
446                 ///
447                 ///   For that case, we create an explicit implementation function
448                 ///   I.M in Y.
449                 /// </summary>
450                 void DefineProxy (Type iface, MethodInfo parent_method, MethodInfo iface_method,
451                                   Type [] args)
452                 {
453                         MethodBuilder proxy;
454
455                         string proxy_name = iface.Name + "." + iface_method.Name;
456
457                         proxy = container.TypeBuilder.DefineMethod (
458                                 proxy_name,
459                                 MethodAttributes.HideBySig |
460                                 MethodAttributes.NewSlot |
461                                 MethodAttributes.Virtual,
462                                 CallingConventions.Standard | CallingConventions.HasThis,
463                                 parent_method.ReturnType, args);
464
465                         int top = args.Length;
466                         ILGenerator ig = proxy.GetILGenerator ();
467
468                         ig.Emit (OpCodes.Ldarg_0);
469                         for (int i = 0; i < top; i++){
470                                 switch (i){
471                                 case 0:
472                                         ig.Emit (OpCodes.Ldarg_1); break;
473                                 case 1:
474                                         ig.Emit (OpCodes.Ldarg_2); break;
475                                 case 2:
476                                         ig.Emit (OpCodes.Ldarg_3); break;
477                                 default:
478                                         ig.Emit (OpCodes.Ldarg, i - 1); break;
479                                 }
480                         }
481                         ig.Emit (OpCodes.Call, parent_method);
482                         ig.Emit (OpCodes.Ret);
483
484                         container.TypeBuilder.DefineMethodOverride (proxy, iface_method);
485                 }
486                 
487                 /// <summary>
488                 ///   This function tells whether one of our parent classes implements
489                 ///   the given method (which turns out, it is valid to have an interface
490                 ///   implementation in a parent
491                 /// </summary>
492                 bool ParentImplements (Type iface_type, MethodInfo mi)
493                 {
494                         MethodSignature ms;
495                         
496                         Type [] args = TypeManager.GetArgumentTypes (mi);
497                         ms = new MethodSignature (mi.Name, mi.ReturnType, args);
498                         MemberList list = TypeContainer.FindMembers (
499                                 container.TypeBuilder.BaseType, MemberTypes.Method | MemberTypes.Property,
500                                 BindingFlags.Public | BindingFlags.Instance,
501                                 MethodSignature.method_signature_filter, ms);
502
503                         if (list.Count == 0)
504                                 return false;
505
506                         MethodInfo parent = (MethodInfo) list [0];
507                         if (!parent.IsAbstract)
508                                 DefineProxy (iface_type, parent, mi, args);
509                         return true;
510                 }
511
512                 /// <summary>
513                 ///   Verifies that any pending abstract methods or interface methods
514                 ///   were implemented.
515                 /// </summary>
516                 public bool VerifyPendingMethods ()
517                 {
518                         int top = pending_implementations.Length;
519                         bool errors = false;
520                         int i;
521                         
522                         for (i = 0; i < top; i++){
523                                 Type type = pending_implementations [i].type;
524                                 int j = 0;
525                                 
526                                 foreach (MethodInfo mi in pending_implementations [i].methods){
527                                         if (mi == null)
528                                                 continue;
529
530                                         if (type.IsInterface){
531                                                 MethodInfo need_proxy =
532                                                         pending_implementations [i].need_proxy [j];
533
534                                                 if (need_proxy != null) {
535                                                         Type [] args = TypeManager.GetArgumentTypes (mi);
536                                                         DefineProxy (type, need_proxy, mi, args);
537                                                         continue;
538                                                 }
539
540                                                 if (ParentImplements (type, mi))
541                                                         continue;
542
543                                                 if (pending_implementations [i].optional)
544                                                         continue;
545                                                 
546                                                 if (pending_implementations [i].found [j]) {
547                                                         string[] methodLabel = TypeManager.CSharpSignature (mi).Split ('.');
548                                                         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",
549                                                                 container.Name, TypeManager.CSharpSignature (mi), container.Name, methodLabel[methodLabel.Length - 1]);
550                                                 }
551                                                 else { 
552                                                         Report.Error (535, container.Location, "'{0}' does not implement interface member '{1}'",
553                                                                 container.Name, TypeManager.CSharpSignature (mi));
554                                                 }
555                                         } else {
556                                                 Report.Error (534, container.Location, "'{0}' does not implement inherited abstract member '{1}'",
557                                                         container.Name, TypeManager.CSharpSignature (mi));
558                                         }
559                                         errors = true;
560                                         j++;
561                                 }
562                         }
563                         return errors;
564                 }
565         } /* end of class */
566 }