* HtmlControl.cs: Make disabled an attribute of the control so it
[mono.git] / mcs / mcs / interface.cs
1 //
2 // interface.cs: Interface handler
3 //
4 // Author: Miguel de Icaza (miguel@gnu.org)
5 //
6 // Licensed under the terms of the GNU GPL
7 //
8 // (C) 2001 Ximian, Inc (http://www.ximian.com)
9 //
10 #define CACHE
11 using System.Collections;
12 using System;
13 using System.IO;
14 using System.Reflection;
15 using System.Reflection.Emit;
16
17 namespace Mono.CSharp {
18
19         /// <summary>
20         ///   Interfaces
21         /// </summary>
22         public class Interface : DeclSpace, IMemberContainer {
23                 const MethodAttributes interface_method_attributes =
24                         MethodAttributes.Public |
25                         MethodAttributes.Abstract |
26                         MethodAttributes.HideBySig |
27                         MethodAttributes.NewSlot |
28                         MethodAttributes.Virtual;
29
30                 const MethodAttributes property_attributes =
31                         MethodAttributes.Public |
32                         MethodAttributes.Abstract |
33                         MethodAttributes.HideBySig |
34                         MethodAttributes.NewSlot |
35                         MethodAttributes.SpecialName |
36                         MethodAttributes.Virtual;
37                 
38                 ArrayList bases;
39                 
40                 ArrayList defined_method;
41                 ArrayList defined_indexer;
42                 ArrayList defined_events;
43                 ArrayList defined_properties;
44
45                 ArrayList method_builders;
46                 ArrayList property_builders;
47                 ArrayList event_builders;
48                 
49                 Attributes OptAttributes;
50
51                 public string IndexerName;
52
53                 IMemberContainer parent_container;
54                 MemberCache member_cache;
55
56                 bool members_defined;
57
58                 // These will happen after the semantic analysis
59                 
60                 // Hashtable defined_indexers;
61                 // Hashtable defined_methods;
62                 
63                 /// <summary>
64                 ///   Modifiers allowed in a class declaration
65                 /// </summary>
66                 public const int AllowedModifiers =
67                         Modifiers.NEW       |
68                         Modifiers.PUBLIC    |
69                         Modifiers.PROTECTED |
70                         Modifiers.INTERNAL  |
71                         Modifiers.UNSAFE    |
72                         Modifiers.PRIVATE;
73
74                 public Interface (NamespaceEntry ns, TypeContainer parent, string name, int mod,
75                                   Attributes attrs, Location l)
76                         : base (ns, parent, name, l)
77                 {
78                         ModFlags = Modifiers.Check (AllowedModifiers, mod, Modifiers.PRIVATE, l);
79                         OptAttributes = attrs;
80                         
81                         method_builders = new ArrayList ();
82                         property_builders = new ArrayList ();
83                         event_builders = new ArrayList ();
84                 }
85
86                 public AdditionResult AddMethod (InterfaceMethod imethod)
87                 {
88                         string name = imethod.Name;
89                         Object value = defined_names [name];
90
91                         if (value != null){
92                                 if (!(value is InterfaceMethod))
93                                         return AdditionResult.NameExists;
94                         } 
95
96                         if (defined_method == null)
97                                 defined_method = new ArrayList ();
98
99                         defined_method.Add (imethod);
100                         if (value == null)
101                                 DefineName (name, imethod);
102                         
103                         return AdditionResult.Success;
104                 }
105
106                 public AdditionResult AddProperty (InterfaceProperty iprop)
107                 {
108                         AdditionResult res;
109                         string name = iprop.Name;
110
111                         if ((res = IsValid (name, name)) != AdditionResult.Success)
112                                 return res;
113
114                         DefineName (name, iprop);
115
116                         if (defined_properties == null)
117                                 defined_properties = new ArrayList ();
118
119                         defined_properties.Add (iprop);
120                         return AdditionResult.Success;
121                 }
122
123                 public AdditionResult AddEvent (InterfaceEvent ievent)
124                 {
125                         string name = ievent.Name;
126                         AdditionResult res;
127                         
128                         if ((res = IsValid (name, name)) != AdditionResult.Success)
129                                 return res;
130
131                         DefineName (name, ievent);
132
133                         if (defined_events == null)
134                                 defined_events = new ArrayList ();
135
136                         defined_events.Add (ievent);
137                         return AdditionResult.Success;
138                 }
139
140                 public bool AddIndexer (InterfaceIndexer iindexer)
141                 {
142                         if (defined_indexer == null)
143                                 defined_indexer = new ArrayList ();
144                         
145                         defined_indexer.Add (iindexer);
146                         return true;
147                 }
148                 
149                 public ArrayList InterfaceMethods {
150                         get {
151                                 return defined_method;
152                         }
153                 }
154
155                 public ArrayList InterfaceProperties {
156                         get {
157                                 return defined_properties;
158                         }
159                 }
160
161                 public ArrayList InterfaceEvents {
162                         get {
163                                 return defined_events;
164                         }
165                 }
166
167                 public ArrayList InterfaceIndexers {
168                         get {
169                                 return defined_indexer;
170                         }
171                 }
172
173                 public ArrayList Bases {
174                         get {
175                                 return bases;
176                         }
177
178                         set {
179                                 bases = value;
180                         }
181                 }
182
183                 public virtual TypeAttributes InterfaceAttr {
184                         get {
185                                 TypeAttributes x = TypeAttributes.Interface | TypeAttributes.Abstract;
186
187                                 if (IsTopLevel == false) {
188                                         
189                                         if ((ModFlags & Modifiers.PROTECTED) != 0
190                                             && (ModFlags & Modifiers.INTERNAL) != 0)
191                                                 x |= TypeAttributes.NestedFamORAssem;
192                                         else if ((ModFlags & Modifiers.PROTECTED) != 0)
193                                                 x |= TypeAttributes.NestedFamily;
194                                         else if ((ModFlags & Modifiers.INTERNAL) != 0)
195                                                 x |= TypeAttributes.NestedAssembly;
196                                         else if ((ModFlags & Modifiers.PUBLIC) != 0)
197                                                 x |= TypeAttributes.NestedPublic;
198                                         else
199                                                 x |= TypeAttributes.NestedPrivate;
200                                 } else {
201                                         if ((ModFlags & Modifiers.PUBLIC) != 0)
202                                                 x |= TypeAttributes.Public;
203                                         else if ((ModFlags & Modifiers.PRIVATE) != 0)
204                                                 x |= TypeAttributes.NotPublic;
205                                 }
206                                 
207                                 if ((ModFlags & Modifiers.ABSTRACT) != 0)
208                                         x |= TypeAttributes.Abstract;
209                                 
210                                 if ((ModFlags & Modifiers.SEALED) != 0)
211                                         x |= TypeAttributes.Sealed;
212
213                                 return x;
214                         }
215                 }
216                 
217                 void Error111 (InterfaceMemberBase ib)
218                 {
219                         Report.Error (
220                                 111,
221                                 "Interface `" + Name + "' already contains a definition with the " +
222                                 "same return value and parameter types for member `" + ib.Name + "'");
223                 }
224
225                 bool RegisterMethod (MethodBase mb, InternalParameters ip, Type [] types)
226                 {
227                         if (!TypeManager.RegisterMethod (mb, ip, types))
228                                 return false;
229
230                         method_builders.Add (mb);
231                         return true;
232                 }
233
234                 //
235                 // This might trigger a definition of the methods.  This happens only
236                 // with Attributes, as Attribute classes are processed before interfaces.
237                 // Ideally, we should make everything just define recursively in terms
238                 // of its dependencies.
239                 //
240                 public MethodInfo [] GetMethods (TypeContainer container)
241                 {
242                         int n = 0;
243                         
244                         if (!members_defined){
245                                 if (DefineMembers (container))
246                                         n = method_builders.Count;
247                         } else
248                                 n = method_builders.Count;
249                         
250                         MethodInfo [] mi = new MethodInfo [n];
251                         
252                         method_builders.CopyTo (mi, 0);
253
254                         return mi;
255                 }
256
257                 // Hack around System.Reflection as found everywhere else
258                 public override MemberList FindMembers (MemberTypes mt, BindingFlags bf,
259                                                         MemberFilter filter, object criteria)
260                 {
261                         ArrayList members = new ArrayList ();
262
263                         if ((mt & MemberTypes.Method) != 0) {
264                                 foreach (MethodBuilder mb in method_builders)
265                                         if (filter (mb, criteria))
266                                                 members.Add (mb);
267                         }
268
269                         if ((mt & MemberTypes.Property) != 0) {
270                                 foreach (PropertyBuilder pb in property_builders)
271                                         if (filter (pb, criteria))
272                                                 members.Add (pb);
273                         }
274
275                         if ((mt & MemberTypes.Event) != 0) {
276                                 foreach (MyEventBuilder eb in event_builders)
277                                         if (filter (eb, criteria))
278                                                 members.Add (eb);
279                         }
280
281                         if (((bf & BindingFlags.DeclaredOnly) == 0) && (TypeBuilder.BaseType != null)) {
282                                 MemberList parent_mi;
283                                 
284                                 parent_mi = TypeContainer.FindMembers (
285                                         TypeBuilder.BaseType, mt, bf, filter, criteria);
286
287                                 members.AddRange (parent_mi);
288                         }
289
290                         return new MemberList (members);
291                 }
292
293                 public override MemberCache MemberCache {
294                         get {
295                                 return member_cache;
296                         }
297                 }
298
299                 //
300                 // Populates the methods in the interface
301                 //
302                 void PopulateMethod (TypeContainer parent, DeclSpace decl_space, InterfaceMethod im)
303                 {
304                         Type return_type = im.ReturnType.Type;
305                         if (return_type == null)
306                                 return_type = this.ResolveType (im.ReturnType, false, im.Location);
307                         
308                         Type [] arg_types = im.ParameterTypes (this);
309                         MethodBuilder mb;
310                         Parameter [] p;
311                         int i;
312
313                         if (return_type == null)
314                                 return;
315
316                         if (return_type.IsPointer && !UnsafeOK (this))
317                                 return;
318
319                         if (arg_types == null)
320                                 return;
321
322                         foreach (Type t in arg_types){
323
324                                 if (t == null)
325                                         return;
326                                 
327                                 if (t.IsPointer && !UnsafeOK (this))
328                                         return;
329                         }
330                         
331                         //
332                         // Create the method
333                         //
334                         mb = TypeBuilder.DefineMethod (
335                                 im.Name, interface_method_attributes,
336                                 return_type, arg_types);
337
338                         InternalParameters ip = new InternalParameters (arg_types, im.Parameters);
339
340                         if (!RegisterMethod (mb, ip, arg_types)) {
341                                 Error111 (im);
342                                 return;
343                         }
344
345                         //
346                         // Labelling of parameters is taken care of
347                         // during the Emit phase via
348                         // MethodCore.LabelParameters method so I am
349                         // removing the old code here.
350                         //
351                         
352                         im.Builder = mb;
353                         
354                 }
355
356                 //
357                 // Populates the properties in the interface
358                 //
359                 void PopulateProperty (TypeContainer parent, DeclSpace decl_space, InterfaceProperty ip)
360                 {
361                         PropertyBuilder pb;
362                         MethodBuilder get = null, set = null;
363                         ip.Type = this.ResolveTypeExpr (ip.Type, false, ip.Location);
364                         if (ip.Type == null)
365                                 return;
366                         
367                         Type prop_type = ip.Type.Type;
368                         Type [] setter_args = new Type [1];
369
370                         if (prop_type == null)
371                                 return;
372
373                         if (prop_type.IsPointer && !UnsafeOK (this))
374                                 return;
375                         
376                         setter_args [0] = prop_type;
377
378                         //
379                         // FIXME: properties are missing the following
380                         // flags: hidebysig newslot specialname
381                         //
382                         pb = TypeBuilder.DefineProperty (
383                                 ip.Name, PropertyAttributes.None,
384                                 prop_type, null);
385
386                         if (ip.HasGet){
387                                 get = TypeBuilder.DefineMethod (
388                                         "get_" + ip.Name, property_attributes ,
389                                         prop_type, null);
390
391                                 //
392                                 // HACK because System.Reflection.Emit is lame
393                                 //
394                                 Type [] null_types = null;
395                                 InternalParameters inp = new InternalParameters
396                                         (null_types, Parameters.EmptyReadOnlyParameters);
397                                 
398                                 if (!RegisterMethod (get, inp, null)) {
399                                         Error111 (ip);
400                                         return;
401                                 }
402                                 
403                                 pb.SetGetMethod (get);
404                         }
405
406                         if (ip.HasSet){
407                                 setter_args [0] = prop_type;
408
409                                 set = TypeBuilder.DefineMethod (
410                                         "set_" + ip.Name, property_attributes,
411                                         TypeManager.void_type, setter_args);
412
413                                 set.DefineParameter (1, ParameterAttributes.None, "value");
414                                 pb.SetSetMethod (set);
415
416                                 //
417                                 // HACK because System.Reflection.Emit is lame
418                                 //
419                                 Parameter [] parms = new Parameter [1];
420                                 parms [0] = new Parameter (ip.Type, "value", Parameter.Modifier.NONE, null);
421                                 InternalParameters ipp = new InternalParameters (
422                                         this, new Parameters (parms, null, Location.Null));
423                                         
424                                 if (!RegisterMethod (set, ipp, setter_args)) {
425                                         Error111 (ip);
426                                         return;
427                                 }
428                         }
429
430                         TypeManager.RegisterProperty (pb, get, set);
431                         property_builders.Add (pb);
432                         ip.Builder = pb;
433                 }
434
435                 //
436                 // Populates the events in the interface
437                 //
438                 void PopulateEvent (TypeContainer parent, DeclSpace decl_space, InterfaceEvent ie)
439                 {
440                         //
441                         // FIXME: We need to do this after delegates have been
442                         // declared or we declare them recursively.
443                         //
444                         MyEventBuilder eb;
445                         MethodBuilder add = null, remove = null;
446                         ie.Type = this.ResolveTypeExpr (ie.Type, false, ie.Location);
447                         if (ie.Type == null)
448                                 return;
449                         
450                         Type event_type = ie.Type.Type;
451
452                         if (event_type == null)
453                                 return;
454
455                         if (event_type.IsPointer && !UnsafeOK (this))
456                                 return;
457
458                         Type [] parameters = new Type [1];
459                         parameters [0] = event_type;
460
461                         eb = new MyEventBuilder (null, TypeBuilder, ie.Name,
462                                                  EventAttributes.None, event_type);
463
464                         //
465                         // Now define the accessors
466                         //
467                         string add_name = "add_" + ie.Name;
468                         
469                         add = TypeBuilder.DefineMethod (
470                                 add_name, property_attributes, null, parameters);
471                         add.DefineParameter (1, ParameterAttributes.None, "value");
472                         eb.SetAddOnMethod (add);
473
474                         string remove_name = "remove_" + ie.Name;
475                         remove = TypeBuilder.DefineMethod (
476                                 remove_name, property_attributes, null, parameters);
477                         remove.DefineParameter (1, ParameterAttributes.None, "value");
478                         eb.SetRemoveOnMethod (remove);
479
480                         Parameter [] parms = new Parameter [1];
481                         parms [0] = new Parameter (ie.Type, "value", Parameter.Modifier.NONE, null);
482                         InternalParameters ip = new InternalParameters (
483                                 this, new Parameters (parms, null, Location.Null));
484
485                         if (!RegisterMethod (add, ip, parameters)) {
486                                 Error111 (ie);
487                                 return;
488                         }
489                         
490                         if (!RegisterMethod (remove, ip, parameters)) {
491                                 Error111 (ie);
492                                 return;
493                         }
494
495                         TypeManager.RegisterEvent (eb, add, remove);
496                         event_builders.Add (eb);
497
498                         ie.Builder = eb;
499                 }
500
501                 //
502                 // Populates the indexers in the interface
503                 //
504                 void PopulateIndexer (TypeContainer parent, DeclSpace decl_space, InterfaceIndexer ii)
505                 {
506                         PropertyBuilder pb;
507                         ii.Type = this.ResolveTypeExpr (ii.Type, false, ii.Location);
508                         if (ii.Type == null)
509                                 return;
510                         
511                         Type prop_type = ii.Type.Type;
512                         Type [] arg_types = ii.ParameterTypes (this);
513                         Type [] value_arg_types;
514
515                         if (prop_type == null)
516                                 return;
517
518                         if (prop_type.IsPointer && !UnsafeOK (this))
519                                 return;
520                         
521                         //
522                         // Sets up the extra invisible `value' argument for setters.
523                         // 
524                         if (arg_types != null){
525                                 int count = arg_types.Length;
526                                 value_arg_types = new Type [count + 1];
527
528                                 arg_types.CopyTo (value_arg_types, 0);
529                                 value_arg_types [count] = prop_type;
530
531                                 foreach (Type t in arg_types){
532                                         if (t.IsPointer && !UnsafeOK (this))
533                                                 return;
534                                 }
535                         } else {
536                                 value_arg_types = new Type [1];
537
538                                 value_arg_types [1] = prop_type;
539                         }
540
541                         EmitContext ec = new EmitContext (parent, decl_space, Location, null,
542                                                           null, ModFlags, false);
543
544                         IndexerName = Attribute.ScanForIndexerName (ec, ii.OptAttributes);
545                         if (IndexerName == null)
546                                 IndexerName = "Item";
547                         
548                         pb = TypeBuilder.DefineProperty (
549                                 IndexerName, PropertyAttributes.None,
550                                 prop_type, arg_types);
551                         
552                         MethodBuilder set_item = null, get_item = null;
553                         if (ii.HasGet){
554                                 Parameter [] p = ii.Parameters.FixedParameters;
555                                 
556                                 get_item = TypeBuilder.DefineMethod (
557                                         "get_" + IndexerName, property_attributes,
558                                         prop_type, arg_types);
559                                 pb.SetGetMethod (get_item);
560                                 //
561                                 // HACK because System.Reflection.Emit is lame
562                                 //
563                                 InternalParameters ip = new InternalParameters (
564                                         arg_types, ii.Parameters);
565                                 
566                                 if (!RegisterMethod (get_item, ip, arg_types)) {
567                                         Error111 (ii);
568                                         return;
569                                 }
570
571                                 if (p != null){
572                                         for (int i = 0; i < p.Length; i++)
573                                                 get_item.DefineParameter (
574                                                         i + 1,
575                                                         p [i].Attributes, p [i].Name);
576                                 }
577                         }
578
579                         if (ii.HasSet){
580                                 Parameter [] p = ii.Parameters.FixedParameters;
581                                 Parameter [] pv;
582                                 int i = 0;
583                                 
584                                 pv = new Parameter [p.Length + 1];
585                                 p.CopyTo (pv, 0);
586                                 pv [p.Length] = new Parameter (ii.Type, "value", Parameter.Modifier.NONE, null);
587                                 Parameters value_params = new Parameters (pv, null, Location.Null);
588                                 value_params.GetParameterInfo (decl_space);
589                                 
590                                 set_item = TypeBuilder.DefineMethod (
591                                         "set_" + IndexerName, property_attributes,
592                                         TypeManager.void_type, value_arg_types);
593                                 pb.SetSetMethod (set_item);
594                                 //
595                                 // HACK because System.Reflection.Emit is lame
596                                 //
597                                 InternalParameters ip = new InternalParameters (
598                                         value_arg_types, value_params);
599                                 if (!RegisterMethod (set_item, ip, value_arg_types)) {
600                                         Error111 (ii);
601                                         return;
602                                 }
603
604                                 if (p != null){
605                                         for (; i < p.Length; i++)
606                                                 set_item.DefineParameter (
607                                                         i + 1,
608                                                         p [i].Attributes, p [i].Name);
609                                 }
610                                 
611                                 set_item.DefineParameter (i + 1, ParameterAttributes.None, "value");
612                         }
613
614                         property_builders.Add (pb);
615
616                         ii.Builder = pb;
617                 }
618
619                 /// <summary>
620                 ///   Performs the semantic analysis for all the interface members
621                 ///   that were declared
622                 /// </summary>
623                 bool SemanticAnalysis ()
624                 {
625                         Hashtable methods = new Hashtable ();
626
627                         
628                         if (defined_method != null){
629                                 foreach (InterfaceMethod im in defined_method){
630                                         string sig = im.GetSignature (this);
631                                         
632                                         //
633                                         // If there was an undefined Type on the signatures
634                                         // 
635                                         if (sig == null)
636                                                 continue;
637                                         
638                                         if (methods [sig] != null){
639                                                 Error111 (im);
640                                                 return false;
641                                         }
642                                 }
643                         }
644
645                         //
646                         // FIXME: Here I should check i
647                         // 
648                         return true;
649                 }
650
651                 Type GetInterfaceTypeByName (string name)
652                 {
653                         Type t = FindType (Location, name);
654
655                         if (t == null) {
656                                 Report.Error (246, Location, "The type or namespace `" + name +
657                                               "' could not be found");
658                                 return null;
659                         }
660                         
661                         if (t.IsInterface)
662                                 return t;
663                                 
664                         string cause;
665                         
666                         if (t.IsValueType)
667                                 cause = "is a struct";
668                         else if (t.IsClass) 
669                                 cause = "is a class";
670                         else
671                                 cause = "Should not happen.";
672                         
673                         Report.Error (527, Location, "`"+name+"' " + cause +
674                                       ", need an interface instead");
675                         
676                         return null;
677                 }
678                 
679                 //
680                 // Returns the list of interfaces that this interface implements
681                 // Or null if it does not implement any interface.
682                 //
683                 // Sets the error boolean accoringly.
684                 //
685                 Type [] GetInterfaceBases (out bool error)
686                 {
687                         Type [] tbases;
688                         int i;
689
690                         error = false;
691                         if (Bases == null)
692                                 return null;
693                         
694                         tbases = new Type [Bases.Count];
695                         i = 0;
696
697                         foreach (string name in Bases){
698                                 Type t;
699
700                                 t = GetInterfaceTypeByName (name);
701                                 if (t == null){
702                                         error = true;
703                                         return null;
704                                 }
705
706                                 if (!Parent.AsAccessible (t, ModFlags))
707                                         Report.Error (61, Location,
708                                                       "Inconsistent accessibility: base interface `" +
709                                                       TypeManager.CSharpName (t) + "' is less " +
710                                                       "accessible than interface `" +
711                                                       Name + "'");
712
713                                 tbases [i++] = t;
714                         }
715                         
716                         return TypeManager.ExpandInterfaces (tbases);
717                 }
718                 
719                 //
720                 // <summary>
721                 //  Defines the Interface in the appropriate ModuleBuilder or TypeBuilder
722                 // </summary>
723                 //
724                 // TODO:
725                 //   Rework the way we recurse, because for recursive
726                 //   definitions of interfaces (A:B and B:A) we report the
727                 //   error twice, rather than once.  
728                 
729                 public override TypeBuilder DefineType ()
730                 {
731                         Type [] ifaces;
732                         bool error;
733
734                         if (TypeBuilder != null)
735                                 return TypeBuilder;
736                         
737                         if (InTransit)
738                                 return null;
739                         
740                         InTransit = true;
741                         
742                         ifaces = GetInterfaceBases (out error);
743
744                         if (error)
745                                 return null;
746
747                         if (IsTopLevel) {
748                                 if (TypeManager.NamespaceClash (Name, Location))
749                                         return null;
750                                 
751                                 ModuleBuilder builder = CodeGen.ModuleBuilder;
752
753                                 TypeBuilder = builder.DefineType (
754                                         Name,
755                                         InterfaceAttr,
756                                         (Type)null,   // Parent Type
757                                         ifaces);
758                                 RootContext.RegisterOrder (this);
759                         } else {
760                                 TypeBuilder builder = Parent.TypeBuilder;
761
762                                 TypeBuilder = builder.DefineNestedType (
763                                         Basename,
764                                         InterfaceAttr,
765                                         (Type) null, //parent type
766                                         ifaces);
767
768                                 TypeContainer tc = TypeManager.LookupTypeContainer (builder);
769                                 tc.RegisterOrder (this);
770                         }
771
772                         TypeManager.AddUserInterface (Name, TypeBuilder, this, ifaces);
773                         InTransit = false;
774
775                         return TypeBuilder;
776                 }
777
778                 //
779                 // Defines the indexers, and also verifies that the IndexerNameAttribute in the
780                 // interface is consistent.  Either it is `Item' or it is the name defined by all the
781                 // indexers with the `IndexerName' attribute.
782                 //
783                 // Turns out that the IndexerNameAttribute is applied to each indexer,
784                 // but it is never emitted, instead a DefaultName attribute is attached
785                 // to the interface
786                 //
787                 void DefineIndexers (TypeContainer parent)
788                 {
789                         string interface_indexer_name = null;
790
791                         foreach (InterfaceIndexer ii in defined_indexer){
792
793                                 PopulateIndexer (parent, this, ii);
794
795                                 if (interface_indexer_name == null){
796                                         interface_indexer_name = IndexerName;
797                                         continue;
798                                 }
799                                 
800                                 if (IndexerName == interface_indexer_name)
801                                         continue;
802                                 
803                                 Report.Error (
804                                         668, "Two indexers have different names, " +
805                                         " you should use the same name for all your indexers");
806                         }
807                         if (interface_indexer_name == null)
808                                 interface_indexer_name = "Item";
809                         IndexerName = interface_indexer_name;
810                 }
811                 
812                 /// <summary>
813                 ///   Performs semantic analysis, and then generates the IL interfaces
814                 /// </summary>
815                 public override bool DefineMembers (TypeContainer parent)
816                 {
817                         if (members_defined)
818                                 return true;
819                         
820                         if (!SemanticAnalysis ())
821                                 return false;
822
823                         
824                         if (defined_method != null){
825                                 foreach (InterfaceMethod im in defined_method)
826                                         PopulateMethod (parent, this, im);
827                         }
828
829                         if (defined_properties != null){
830                                 foreach (InterfaceProperty ip in defined_properties)
831                                         PopulateProperty (parent, this, ip);
832                         }
833
834                         if (defined_events != null)
835                                 foreach (InterfaceEvent ie in defined_events)
836                                         PopulateEvent (parent, this, ie);
837
838                         if (defined_indexer != null) {
839                                 DefineIndexers (parent);
840
841                                 CustomAttributeBuilder cb = EmitDefaultMemberAttr (
842                                         parent, IndexerName, ModFlags, Location);
843                                 if (cb != null)
844                                         TypeBuilder.SetCustomAttribute (cb);
845                         }
846
847 #if CACHE
848                         if (TypeBuilder.BaseType != null)
849                                 parent_container = TypeManager.LookupMemberContainer (TypeBuilder.BaseType);
850
851                         member_cache = new MemberCache (this);
852 #endif
853                         members_defined = true;
854                         return true;
855                 }
856
857
858                 //
859                 // In the case of Interfaces, there is nothing to do here
860                 //
861                 public override bool Define (TypeContainer parent)
862                 {
863                         return true;
864                 }
865
866                 /// <summary>
867                 ///   Applies all the attributes.
868                 /// </summary>
869                 public void Emit (TypeContainer tc)
870                 {
871                         if (OptAttributes != null) {
872                                 EmitContext ec = new EmitContext (tc, this, Location, null, null,
873                                                                   ModFlags, false);
874                                 Attribute.ApplyAttributes (ec, TypeBuilder, this, OptAttributes);
875                         }
876
877                         // Now emit attributes for each interface member
878                         if (defined_method != null) {
879                                 foreach (InterfaceMethod im in defined_method) {
880                                         EmitContext ec = new EmitContext (tc, this, Location, null,
881                                                                           im.ReturnType.Type, ModFlags, false);
882   
883                                         MethodCore.LabelParameters (ec, im.Builder,
884                                                                     im.Parameters,
885                                                                     im.OptAttributes,
886                                                                     Location);
887                                         
888                                         if (im.OptAttributes != null)
889                                                 Attribute.ApplyAttributes (ec, im.Builder,
890                                                                            im, im.OptAttributes);
891                                         
892                                 }
893                         }
894
895                         if (defined_properties != null) {
896                                 foreach (InterfaceProperty ip in defined_properties) {
897                                         EmitContext ec = new EmitContext (tc, this, Location, null,
898                                                                           null, ModFlags, false);
899                                         
900                                         if (ip.OptAttributes != null)
901                                                 Attribute.ApplyAttributes (ec, ip.Builder, ip, ip.OptAttributes);
902                                 }
903                         }
904
905                         if (defined_events != null) {
906                                 foreach (InterfaceEvent ie in defined_events) {
907                                         EmitContext ec = new EmitContext (tc, this, Location, null,
908                                                                           null, ModFlags, false);
909                                         
910                                         if (ie.OptAttributes != null)
911                                                 Attribute.ApplyAttributes (ec, ie.Builder, ie, ie.OptAttributes);
912                                 }
913                         }
914                 }
915
916                 public static CustomAttributeBuilder EmitDefaultMemberAttr (TypeContainer parent,
917                                                                             string name,
918                                                                             int flags,
919                                                                             Location loc)
920                 {
921                         EmitContext ec = new EmitContext (parent, loc, null, null, flags);
922
923                         Expression ml = Expression.MemberLookup (ec, TypeManager.default_member_type,
924                                                                  ".ctor", MemberTypes.Constructor,
925                                                                  BindingFlags.Public | BindingFlags.Instance,
926                                                                  Location.Null);
927                         
928                         if (!(ml is MethodGroupExpr)) {
929                                 Console.WriteLine ("Internal error !!!!");
930                                 return null;
931                         }
932                         
933                         MethodGroupExpr mg = (MethodGroupExpr) ml;
934
935                         MethodBase constructor = mg.Methods [0];
936
937                         string [] vals = { name };
938
939                         CustomAttributeBuilder cb = null;
940                         try {
941                                 cb = new CustomAttributeBuilder ((ConstructorInfo) constructor, vals);
942                         } catch {
943                                 Report.Warning (-100, "Can not set the indexer default member attribute");
944                         }
945
946                         return cb;
947                 }
948
949                 //
950                 // IMemberContainer
951                 //
952
953                 string IMemberContainer.Name {
954                         get {
955                                 return Name;
956                         }
957                 }
958
959                 Type IMemberContainer.Type {
960                         get {
961                                 return TypeBuilder;
962                         }
963                 }
964
965                 IMemberContainer IMemberContainer.Parent {
966                         get {
967                                 return parent_container;
968                         }
969                 }
970
971                 MemberCache IMemberContainer.MemberCache {
972                         get {
973                                 return member_cache;
974                         }
975                 }
976
977                 bool IMemberContainer.IsInterface {
978                         get {
979                                 return true;
980                         }
981                 }
982
983                 MemberList IMemberContainer.GetMembers (MemberTypes mt, BindingFlags bf)
984                 {
985                         // Interfaces only contain instance members.
986                         if ((bf & BindingFlags.Instance) == 0)
987                                 return MemberList.Empty;
988                         if ((bf & BindingFlags.Public) == 0)
989                                 return MemberList.Empty;
990
991                         ArrayList members = new ArrayList ();
992
993                         if ((mt & MemberTypes.Method) != 0)
994                                 members.AddRange (method_builders);
995
996                         if ((mt & MemberTypes.Property) != 0)
997                                 members.AddRange (property_builders);
998
999                         if ((mt & MemberTypes.Event) != 0)
1000                                 members.AddRange (event_builders);
1001
1002                         return new MemberList (members);
1003                 }
1004         }
1005
1006         public class InterfaceMemberBase {
1007                 public readonly string Name;
1008                 public readonly bool IsNew;
1009                 public Attributes OptAttributes;
1010                 
1011                 public InterfaceMemberBase (string name, bool is_new, Attributes attrs)
1012                 {
1013                         Name = name;
1014                         IsNew = is_new;
1015                         OptAttributes = attrs;
1016                 }
1017         }
1018         
1019         public class InterfaceProperty : InterfaceMemberBase {
1020                 public readonly bool HasSet;
1021                 public readonly bool HasGet;
1022                 public readonly Location Location;
1023                 public Expression Type;
1024                 public PropertyBuilder Builder;
1025                 
1026                 public InterfaceProperty (Expression type, string name,
1027                                           bool is_new, bool has_get, bool has_set,
1028                                           Attributes attrs, Location loc)
1029                         : base (name, is_new, attrs)
1030                 {
1031                         Type = type;
1032                         HasGet = has_get;
1033                         HasSet = has_set;
1034                         Location = loc;
1035                 }
1036         }
1037
1038         public class InterfaceEvent : InterfaceMemberBase {
1039                 public readonly Location Location;
1040                 public Expression Type;
1041                 public MyEventBuilder Builder;
1042                 
1043                 public InterfaceEvent (Expression type, string name, bool is_new, Attributes attrs,
1044                                        Location loc)
1045                         : base (name, is_new, attrs)
1046                 {
1047                         Type = type;
1048                         Location = loc;
1049                 }
1050         }
1051         
1052         public class InterfaceMethod : InterfaceMemberBase {
1053                 public Expression ReturnType;
1054                 public readonly Parameters Parameters;
1055                 public readonly Location Location;
1056                 public MethodBuilder Builder;
1057                 
1058                 public InterfaceMethod (Expression return_type, string name, bool is_new, Parameters args,
1059                                         Attributes attrs, Location l)
1060                         : base (name, is_new, attrs)
1061                 {
1062                         this.ReturnType = return_type;
1063                         this.Parameters = args;
1064                         Location = l;
1065                 }
1066
1067                 /// <summary>
1068                 ///   Returns the signature for this interface method
1069                 /// </summary>
1070                 public string GetSignature (DeclSpace ds)
1071                 {
1072                         ReturnType = ds.ResolveTypeExpr (ReturnType, false, Location);
1073                         if (ReturnType == null)
1074                                 return null;
1075                         
1076                         Type ret = ReturnType.Type;
1077                         string args = Parameters.GetSignature (ds);
1078
1079                         if ((ret == null) || (args == null))
1080                                 return null;
1081                         
1082                         return (IsNew ? "new-" : "") + ret.FullName + "(" + args + ")";
1083                 }
1084
1085                 public Type [] ParameterTypes (DeclSpace ds)
1086                 {
1087                         return Parameters.GetParameterInfo (ds);
1088                 }
1089         }
1090
1091         public class InterfaceIndexer : InterfaceMemberBase {
1092                 public readonly bool HasGet, HasSet;
1093                 public readonly Parameters Parameters;
1094                 public readonly Location Location;
1095                 public Expression Type;
1096                 public PropertyBuilder Builder;
1097                 
1098                 public InterfaceIndexer (Expression type, Parameters args, bool do_get, bool do_set,
1099                                          bool is_new, Attributes attrs, Location loc)
1100                         : base ("", is_new, attrs)
1101                 {
1102                         Type = type;
1103                         Parameters = args;
1104                         HasGet = do_get;
1105                         HasSet = do_set;
1106                         Location = loc;
1107                 }
1108
1109                 public Type [] ParameterTypes (DeclSpace ds)
1110                 {
1111                         return Parameters.GetParameterInfo (ds);
1112                 }
1113         }
1114 }