2006-03-09 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / gmcs / namespace.cs
1 //
2 // namespace.cs: Tracks namespaces
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.
8 //
9 using System;
10 using System.Collections;
11 using System.Collections.Specialized;
12 using System.Reflection;
13
14 namespace Mono.CSharp {
15
16         public class RootNamespace : Namespace {
17                 static MethodInfo get_namespaces_method;
18
19                 string alias_name;
20                 Assembly referenced_assembly;
21
22                 Hashtable all_namespaces;
23
24                 static Hashtable root_namespaces;
25                 public static GlobalRootNamespace Global;
26                 
27                 static RootNamespace ()
28                 {
29                         get_namespaces_method = typeof (Assembly).GetMethod ("GetNamespaces", BindingFlags.Instance | BindingFlags.NonPublic);
30
31                         Reset ();
32                 }
33
34                 public static void Reset ()
35                 {
36                         root_namespaces = new Hashtable ();
37                         Global = new GlobalRootNamespace ();
38                         root_namespaces ["global"] = Global;
39                 }
40
41                 protected RootNamespace (string alias_name, Assembly assembly)
42                         : base (null, String.Empty)
43                 {
44                         this.alias_name = alias_name;
45                         referenced_assembly = assembly;
46
47                         all_namespaces = new Hashtable ();
48                         all_namespaces.Add ("", this);
49
50                         if (referenced_assembly != null)
51                                 ComputeNamespaces (this.referenced_assembly);
52                 }
53
54                 public static void DefineRootNamespace (string name, Assembly assembly)
55                 {
56                         if (name == "global") {
57                                 // FIXME: Add proper error number
58                                 Report.Error (-42, "Cannot define an external alias named `global'");
59                                 return;
60                         }
61                         RootNamespace retval = GetRootNamespace (name);
62                         if (retval == null || retval.referenced_assembly != assembly)
63                                 root_namespaces [name] = new RootNamespace (name, assembly);
64                 }
65
66                 public static RootNamespace GetRootNamespace (string name)
67                 {
68                         return (RootNamespace) root_namespaces [name];
69                 }
70
71                 public virtual Type LookupTypeReflection (string name, Location loc)
72                 {
73                         return GetTypeInAssembly (referenced_assembly, name);
74                 }
75
76                 public void RegisterNamespace (Namespace child)
77                 {
78                         if (child != this)
79                                 all_namespaces.Add (child.Name, child);
80                 }
81
82                 public bool IsNamespace (string name)
83                 {
84                         return all_namespaces.Contains (name);
85                 }
86
87                 protected void EnsureNamespace (string dotted_name)
88                 {
89                         if (dotted_name != null && dotted_name != "" && ! IsNamespace (dotted_name))
90                                 GetNamespace (dotted_name, true);
91                 }
92
93                 protected void ComputeNamespaces (Assembly assembly)
94                 {
95                         if (get_namespaces_method != null) {
96                                 string [] namespaces = (string []) get_namespaces_method.Invoke (assembly, null);
97                                 foreach (string ns in namespaces)
98                                         EnsureNamespace (ns);
99                                 return;
100                         }
101
102                         foreach (Type t in assembly.GetExportedTypes ())
103                                 EnsureNamespace (t.Namespace);
104                 }
105                 
106                 protected static Type GetTypeInAssembly (Assembly assembly, string name)
107                 {
108                         Type t = assembly.GetType (name);
109                         if (t == null)
110                                 return null;
111
112                         if (t.IsPointer)
113                                 throw new InternalErrorException ("Use GetPointerType() to get a pointer");
114                         
115                         
116                         TypeAttributes ta = t.Attributes & TypeAttributes.VisibilityMask;
117                         if (ta == TypeAttributes.NestedPrivate)
118                                 return null;
119                         
120                         if (ta == TypeAttributes.NotPublic ||
121                                         ta == TypeAttributes.NestedAssembly ||
122                                         ta == TypeAttributes.NestedFamANDAssem)
123                                 if (!TypeManager.IsFriendAssembly (t.Assembly))
124                                         return null;
125
126                         return t;
127                 }
128
129                 public override string ToString ()
130                 {
131                         return String.Format ("RootNamespace ({0}::)", alias_name);
132                 }
133
134                 public override string GetSignatureForError ()
135                 {
136                         return alias_name + "::";
137                 }
138         }
139
140         public class GlobalRootNamespace : RootNamespace {
141                 Assembly [] assemblies;
142                 Module [] modules;
143
144                 public GlobalRootNamespace ()
145                         : base ("global", null)
146                 {
147                         assemblies = new Assembly [0];
148                 }
149
150                 public Assembly [] Assemblies {
151                         get { return assemblies; }
152                 }
153
154                 public Module [] Modules {
155                         get { return modules; }
156                 }
157
158                 public void AddAssemblyReference (Assembly a)
159                 {
160                         foreach (Assembly assembly in assemblies) {
161                                 if (a == assembly)
162                                         return;
163                         }
164
165                         int top = assemblies.Length;
166                         Assembly [] n = new Assembly [top + 1];
167                         assemblies.CopyTo (n, 0);
168                         n [top] = a;
169                         assemblies = n;
170
171                         ComputeNamespaces (a);
172                 }
173
174                 public void AddModuleReference (Module m)
175                 {
176                         int top = modules != null ? modules.Length : 0;
177                         Module [] n = new Module [top + 1];
178                         if (modules != null)
179                                 modules.CopyTo (n, 0);
180                         n [top] = m;
181                         modules = n;
182
183                         if (m == CodeGen.Module.Builder)
184                                 return;
185
186                         foreach (Type t in m.GetTypes ())
187                                 EnsureNamespace (t.Namespace);
188                 }
189
190                 public override Type LookupTypeReflection (string name, Location loc)
191                 {
192                         Type found_type = null;
193                 
194                         foreach (Assembly a in assemblies) {
195                                 Type t = GetTypeInAssembly (a, name);
196                                 if (t == null)
197                                         continue;
198                                         
199                                 if (found_type == null) {
200                                         found_type = t;
201                                         continue;
202                                 }
203
204                                 Report.SymbolRelatedToPreviousError (found_type);
205                                 Report.SymbolRelatedToPreviousError (t);
206                                 Report.Error (433, loc, "The imported type `{0}' is defined multiple times", name);
207                                         
208                                 return found_type;
209                         }
210
211                         if (modules != null) {
212                                 foreach (Module module in modules) {
213                                         Type t = module.GetType (name);
214                                         if (t == null)
215                                                 continue;
216
217                                         if (found_type == null) {
218                                                 found_type = t;
219                                                 continue;
220                                         }
221                                         
222                                         Report.SymbolRelatedToPreviousError (t);
223                                         Report.SymbolRelatedToPreviousError (found_type);
224                                         Report.Warning (436, 2, loc, "Ignoring imported type `{0}' since the current assembly already has a declaration with the same name",
225                                                 TypeManager.CSharpName (t));
226                                         return t;
227                                 }
228                         }
229
230                         return found_type;
231                 }
232         }
233
234         /// <summary>
235         ///   Keeps track of the namespaces defined in the C# code.
236         ///
237         ///   This is an Expression to allow it to be referenced in the
238         ///   compiler parse/intermediate tree during name resolution.
239         /// </summary>
240         public class Namespace : FullNamedExpression {
241                 
242                 Namespace parent;
243                 string fullname;
244                 Hashtable namespaces;
245                 IDictionary declspaces;
246                 Hashtable cached_types;
247                 RootNamespace root;
248
249                 public readonly MemberName MemberName;
250
251                 /// <summary>
252                 ///   Constructor Takes the current namespace and the
253                 ///   name.  This is bootstrapped with parent == null
254                 ///   and name = ""
255                 /// </summary>
256                 public Namespace (Namespace parent, string name)
257                 {
258                         // Expression members.
259                         this.eclass = ExprClass.Namespace;
260                         this.Type = null;
261                         this.loc = Location.Null;
262
263                         this.parent = parent;
264
265                         if (parent != null)
266                                 this.root = parent.root;
267                         else
268                                 this.root = this as RootNamespace;
269
270                         if (this.root == null)
271                                 throw new InternalErrorException ("Root namespaces must be created using RootNamespace");
272                         
273                         string pname = parent != null ? parent.Name : "";
274                                 
275                         if (pname == "")
276                                 fullname = name;
277                         else
278                                 fullname = parent.Name + "." + name;
279
280                         if (fullname == null)
281                                 throw new InternalErrorException ("Namespace has a null fullname");
282
283                         if (parent != null && parent.MemberName != MemberName.Null)
284                                 MemberName = new MemberName (
285                                         parent.MemberName, name, parent.MemberName.Location);
286                         else if (name == "")
287                                 MemberName = MemberName.Null;
288                         else
289                                 MemberName = new MemberName (name, Location.Null);
290
291                         namespaces = new Hashtable ();
292                         cached_types = new Hashtable ();
293
294                         root.RegisterNamespace (this);
295                 }
296
297                 public override Expression DoResolve (EmitContext ec)
298                 {
299                         return this;
300                 }
301
302                 public override void Emit (EmitContext ec)
303                 {
304                         throw new InternalErrorException ("Expression tree referenced namespace " + fullname + " during Emit ()");
305                 }
306
307                 public override string GetSignatureForError ()
308                 {
309                         return Name;
310                 }
311                 
312                 public Namespace GetNamespace (string name, bool create)
313                 {
314                         int pos = name.IndexOf ('.');
315
316                         Namespace ns;
317                         string first;
318                         if (pos >= 0)
319                                 first = name.Substring (0, pos);
320                         else
321                                 first = name;
322
323                         ns = (Namespace) namespaces [first];
324                         if (ns == null) {
325                                 if (!create)
326                                         return null;
327
328                                 ns = new Namespace (this, first);
329                                 namespaces.Add (first, ns);
330                         }
331
332                         if (pos >= 0)
333                                 ns = ns.GetNamespace (name.Substring (pos + 1), create);
334
335                         return ns;
336                 }
337
338                 TypeExpr LookupType (string name, Location loc)
339                 {
340                         if (cached_types.Contains (name))
341                                 return cached_types [name] as TypeExpr;
342
343                         Type t = null;
344                         if (declspaces != null) {
345                                 DeclSpace tdecl = declspaces [name] as DeclSpace;
346                                 if (tdecl != null) {
347                                         //
348                                         // Note that this is not:
349                                         //
350                                         //   t = tdecl.DefineType ()
351                                         //
352                                         // This is to make it somewhat more useful when a DefineType
353                                         // fails due to problems in nested types (more useful in the sense
354                                         // of fewer misleading error messages)
355                                         //
356                                         tdecl.DefineType ();
357                                         t = tdecl.TypeBuilder;
358                                 }
359                         }
360                         string lookup = t != null ? t.FullName : (fullname == "" ? name : fullname + "." + name);
361                         Type rt = root.LookupTypeReflection (lookup, loc);
362                         if (t == null)
363                                 t = rt;
364
365                         TypeExpr te = t == null ? null : new TypeExpression (t, Location.Null);
366                         cached_types [name] = te;
367                         return te;
368                 }
369
370                 public FullNamedExpression Lookup (DeclSpace ds, string name, Location loc)
371                 {
372                         if (namespaces.Contains (name))
373                                 return (Namespace) namespaces [name];
374
375                         TypeExpr te = LookupType (name, loc);
376                         if (te == null || !ds.CheckAccessLevel (te.Type))
377                                 return null;
378
379                         return te;
380                 }
381
382                 public void AddDeclSpace (string name, DeclSpace ds)
383                 {
384                         if (declspaces == null)
385                                 declspaces = new HybridDictionary ();
386                         declspaces.Add (name, ds);
387                 }
388
389                 /// <summary>
390                 ///   The qualified name of the current namespace
391                 /// </summary>
392                 public string Name {
393                         get { return fullname; }
394                 }
395
396                 public override string FullName {
397                         get { return fullname; }
398                 }
399
400                 /// <summary>
401                 ///   The parent of this namespace, used by the parser to "Pop"
402                 ///   the current namespace declaration
403                 /// </summary>
404                 public Namespace Parent {
405                         get { return parent; }
406                 }
407
408                 public override string ToString ()
409                 {
410                         return String.Format ("Namespace ({0})", Name);
411                 }
412         }
413
414         public class NamespaceEntry {
415                 Namespace ns;
416                 NamespaceEntry parent, implicit_parent;
417                 SourceFile file;
418                 int symfile_id;
419                 Hashtable aliases;
420                 ArrayList using_clauses;
421                 public bool DeclarationFound = false;
422                 bool UsingFound;
423
424                 ListDictionary extern_aliases;
425
426                 static ArrayList entries = new ArrayList ();
427
428                 public static void Reset ()
429                 {
430                         entries = new ArrayList ();
431                 }
432
433                 //
434                 // This class holds the location where a using definition is
435                 // done, and whether it has been used by the program or not.
436                 //
437                 // We use this to flag using clauses for namespaces that do not
438                 // exist.
439                 //
440                 public class UsingEntry {
441                         public readonly MemberName Name;
442                         readonly Expression Expr;
443                         readonly NamespaceEntry NamespaceEntry;
444                         readonly Location Location;
445                         
446                         public UsingEntry (NamespaceEntry entry, MemberName name, Location loc)
447                         {
448                                 Name = name;
449                                 Expr = name.GetTypeExpression ();
450                                 NamespaceEntry = entry;
451                                 Location = loc;
452                         }
453
454                         internal Namespace resolved;
455
456                         public Namespace Resolve ()
457                         {
458                                 if (resolved != null)
459                                         return resolved;
460
461                                 DeclSpace root = RootContext.Tree.Types;
462                                 root.NamespaceEntry = NamespaceEntry;
463                                 FullNamedExpression fne = Expr.ResolveAsTypeStep (root.EmitContext, false);
464                                 root.NamespaceEntry = null;
465
466                                 if (fne == null) {
467                                         Error_NamespaceNotFound (Location, Name.ToString ());
468                                         return null;
469                                 }
470
471                                 resolved = fne as Namespace;
472                                 if (resolved == null) {
473                                         Report.Error (138, Location,
474                                                 "`{0} is a type not a namespace. A using namespace directive can only be applied to namespaces", Name.ToString ());
475                                 }
476                                 return resolved;
477                         }
478                 }
479
480                 public abstract class AliasEntry {
481                         public readonly string Name;
482                         public readonly NamespaceEntry NamespaceEntry;
483                         public readonly Location Location;
484                         
485                         protected AliasEntry (NamespaceEntry entry, string name, Location loc)
486                         {
487                                 Name = name;
488                                 NamespaceEntry = entry;
489                                 Location = loc;
490                         }
491                         
492                         protected FullNamedExpression resolved;
493                         bool error;
494
495                         public FullNamedExpression Resolve ()
496                         {
497                                 if (resolved != null || error)
498                                         return resolved;
499                                 resolved = DoResolve ();
500                                 if (resolved == null)
501                                         error = true;
502                                 return resolved;
503                         }
504
505                         protected abstract FullNamedExpression DoResolve ();
506                 }
507
508                 public class LocalAliasEntry : AliasEntry
509                 {
510                         public readonly Expression Alias;
511                         
512                         public LocalAliasEntry (NamespaceEntry entry, string name, MemberName alias, Location loc) :
513                                 base (entry, name, loc)
514                         {
515                                 Alias = alias.GetTypeExpression ();
516                         }
517
518                         protected override FullNamedExpression DoResolve ()
519                         {
520                                 DeclSpace root = RootContext.Tree.Types;
521                                 root.NamespaceEntry = NamespaceEntry;
522                                 resolved = Alias.ResolveAsTypeStep (root.EmitContext, false);
523                                 root.NamespaceEntry = null;
524
525                                 if (resolved == null)
526                                         Error_NamespaceNotFound (Location, Alias.ToString ());
527                                 return resolved;
528                         }
529                 }
530
531                 public class ExternAliasEntry : AliasEntry 
532                 {
533                         public ExternAliasEntry (NamespaceEntry entry, string name, Location loc) :
534                                 base (entry, name, loc)
535                         {
536                         }
537
538                         protected override FullNamedExpression DoResolve ()
539                         {
540                                 resolved = RootNamespace.GetRootNamespace (Name);
541                                 if (resolved == null)
542                                         Report.Error (430, Location, "The extern alias '" + Name +
543                                                                         "' was not specified in a /reference option");
544
545                                 return resolved;
546                         }
547                 }
548
549                 public NamespaceEntry (NamespaceEntry parent, SourceFile file, string name, Location loc)
550                 {
551                         this.parent = parent;
552                         this.file = file;
553                         entries.Add (this);
554                         this.ID = entries.Count;
555
556                         if (parent != null)
557                                 ns = parent.NS.GetNamespace (name, true);
558                         else if (name != null)
559                                 ns = RootNamespace.Global.GetNamespace (name, true);
560                         else
561                                 ns = RootNamespace.Global;
562                 }
563
564                 private NamespaceEntry (NamespaceEntry parent, SourceFile file, Namespace ns)
565                 {
566                         this.parent = parent;
567                         this.file = file;
568                         // no need to add self to 'entries', since we don't have any aliases or using entries.
569                         this.ID = -1;
570                         this.IsImplicit = true;
571                         this.ns = ns;
572                 }
573
574                 //
575                 // According to section 16.3.1 (using-alias-directive), the namespace-or-type-name is
576                 // resolved as if the immediately containing namespace body has no using-directives.
577                 //
578                 // Section 16.3.2 says that the same rule is applied when resolving the namespace-name
579                 // in the using-namespace-directive.
580                 //
581                 // To implement these rules, the expressions in the using directives are resolved using 
582                 // the "doppelganger" (ghostly bodiless duplicate).
583                 //
584                 NamespaceEntry doppelganger;
585                 NamespaceEntry Doppelganger {
586                         get {
587                                 if (!IsImplicit && doppelganger == null)
588                                         doppelganger = new NamespaceEntry (ImplicitParent, file, ns);
589                                 return doppelganger;
590                         }
591                 }
592
593                 public readonly int ID;
594                 public readonly bool IsImplicit;
595
596                 public Namespace NS {
597                         get { return ns; }
598                 }
599
600                 public NamespaceEntry Parent {
601                         get { return parent; }
602                 }
603
604                 public NamespaceEntry ImplicitParent {
605                         get {
606                                 if (parent == null)
607                                         return null;
608                                 if (implicit_parent == null) {
609                                         implicit_parent = (parent.NS == ns.Parent)
610                                                 ? parent
611                                                 : new NamespaceEntry (parent, file, ns.Parent);
612                                 }
613                                 return implicit_parent;
614                         }
615                 }
616
617                 /// <summary>
618                 ///   Records a new namespace for resolving name references
619                 /// </summary>
620                 public void Using (MemberName name, Location loc)
621                 {
622                         if (DeclarationFound){
623                                 Report.Error (1529, loc, "A using clause must precede all other namespace elements except extern alias declarations");
624                                 return;
625                         }
626
627                         UsingFound = true;
628
629                         if (name.Equals (ns.MemberName))
630                                 return;
631                         
632                         if (using_clauses == null)
633                                 using_clauses = new ArrayList ();
634
635                         foreach (UsingEntry old_entry in using_clauses) {
636                                 if (name.Equals (old_entry.Name)) {
637                                         Report.Warning (105, 3, loc, "The using directive for `{0}' appeared previously in this namespace", name.GetName ());
638                                                 return;
639                                         }
640                                 }
641
642                         UsingEntry ue = new UsingEntry (Doppelganger, name, loc);
643                         using_clauses.Add (ue);
644                 }
645
646                 public void UsingAlias (string name, MemberName alias, Location loc)
647                 {
648                         if (DeclarationFound){
649                                 Report.Error (1529, loc, "A using clause must precede all other namespace elements except extern alias declarations");
650                                 return;
651                         }
652
653                         UsingFound = true;
654
655                         if (aliases == null)
656                                 aliases = new Hashtable ();
657
658                         if (aliases.Contains (name)) {
659                                 AliasEntry ae = (AliasEntry) aliases [name];
660                                 Report.SymbolRelatedToPreviousError (ae.Location, ae.Name);
661                                 Report.Error (1537, loc, "The using alias `{0}' appeared previously in this namespace", name);
662                                 return;
663                         }
664
665                         if (RootContext.Version == LanguageVersion.Default &&
666                             name == "global" && RootContext.WarningLevel >= 2)
667                                 Report.Warning (440, 2, loc, "An alias named `global' will not be used when resolving 'global::';" +
668                                         " the global namespace will be used instead");
669
670                         // FIXME: get correct error number.  See if the above check can be merged
671                         if (extern_aliases != null && extern_aliases.Contains (name)) {
672                                 AliasEntry ae = (AliasEntry) extern_aliases [name];
673                                 Report.SymbolRelatedToPreviousError (ae.Location, ae.Name);
674                                 Report.Error (1537, loc, "The using alias `{0}' appeared previously in this namespace", name);
675                                 return;
676                         }
677
678                         aliases [name] = new LocalAliasEntry (Doppelganger, name, alias, loc);
679                 }
680
681                 public void UsingExternalAlias (string name, Location loc)
682                 {
683                         if (UsingFound || DeclarationFound) {
684                                 Report.Error (439, loc, "An extern alias declaration must precede all other elements");
685                                 return;
686                         }
687                         
688                         // Share the extern_aliases field with the Doppelganger
689                         if (extern_aliases == null) {
690                                 extern_aliases = new ListDictionary ();
691                                 Doppelganger.extern_aliases = extern_aliases;
692                         }
693
694                         if (extern_aliases.Contains (name)) {
695                                 AliasEntry ae = (AliasEntry) extern_aliases [name];
696                                 Report.SymbolRelatedToPreviousError (ae.Location, ae.Name);
697                                 Report.Error (1537, loc, "The using alias `{0}' appeared previously in this namespace", name);
698                                 return;
699                         }
700
701                         if (name == "global") {
702                                 Report.Error (1681, loc, "You cannot redefine the global extern alias");
703                                 return;
704                         }
705
706                         // Register the alias in aliases and extern_aliases, since we need both of them
707                         // to keep things simple (different resolution scenarios)
708                         ExternAliasEntry alias = new ExternAliasEntry (Doppelganger, name, loc);
709                         extern_aliases [name] = alias;
710                 }
711
712                 public FullNamedExpression LookupNamespaceOrType (DeclSpace ds, string name, Location loc, bool ignore_cs0104)
713                 {
714                         // Precondition: Only simple names (no dots) will be looked up with this function.
715                         FullNamedExpression resolved = null;
716                         for (NamespaceEntry curr_ns = this; curr_ns != null; curr_ns = curr_ns.ImplicitParent) {
717                                 if ((resolved = curr_ns.Lookup (ds, name, loc, ignore_cs0104)) != null)
718                                         break;
719                         }
720                         return resolved;
721                 }
722
723                 static void Error_AmbiguousTypeReference (Location loc, string name, FullNamedExpression t1, FullNamedExpression t2)
724                 {
725                         Report.Error (104, loc, "`{0}' is an ambiguous reference between `{1}' and `{2}'",
726                                 name, t1.FullName, t2.FullName);
727                 }
728
729                 // Looks-up a alias named @name in this and surrounding namespace declarations
730                 public FullNamedExpression LookupAlias (string name)
731                 {
732                         AliasEntry entry = null;
733                         for (NamespaceEntry n = this; n != null; n = n.ImplicitParent) {
734                                 if (n.extern_aliases != null && (entry = n.extern_aliases [name] as AliasEntry) != null)
735                                         break;
736                                 if (n.aliases != null && (entry = n.aliases [name] as AliasEntry) != null)
737                                         break;
738                         }
739                         return entry == null ? null : entry.Resolve ();
740                 }
741
742                 private FullNamedExpression Lookup (DeclSpace ds, string name, Location loc, bool ignore_cs0104)
743                 {
744                         //
745                         // Check whether it's in the namespace.
746                         //
747                         FullNamedExpression fne = NS.Lookup (ds, name, loc);
748                         if (fne != null)
749                                 return fne;
750
751                         if (extern_aliases != null) {
752                                 AliasEntry entry = extern_aliases [name] as AliasEntry;
753                                 if (entry != null)
754                                         return entry.Resolve ();
755                         }
756                         
757                         if (IsImplicit)
758                                 return null;
759                         
760                         //
761                         // Check aliases. 
762                         //
763                         if (aliases != null) {
764                                 AliasEntry entry = aliases [name] as AliasEntry;
765                                 if (entry != null)
766                                         return entry.Resolve ();
767                         }
768
769                         //
770                         // Check using entries.
771                         //
772                         FullNamedExpression match = null;
773                         foreach (Namespace using_ns in GetUsingTable ()) {
774                                 match = using_ns.Lookup (ds, name, loc);
775                                 if (match == null || !(match is TypeExpr))
776                                         continue;
777                                 if (fne != null) {
778                                         if (!ignore_cs0104)
779                                                 Error_AmbiguousTypeReference (loc, name, fne, match);
780                                         return null;
781                                 }
782                                 fne = match;
783                         }
784
785                         return fne;
786                 }
787
788                 // Our cached computation.
789                 readonly Namespace [] empty_namespaces = new Namespace [0];
790                 Namespace [] namespace_using_table;
791                 Namespace [] GetUsingTable ()
792                 {
793                         if (namespace_using_table != null)
794                                 return namespace_using_table;
795
796                         if (using_clauses == null) {
797                                 namespace_using_table = empty_namespaces;
798                                 return namespace_using_table;
799                         }
800
801                         ArrayList list = new ArrayList (using_clauses.Count);
802
803                         foreach (UsingEntry ue in using_clauses) {
804                                 Namespace using_ns = ue.Resolve ();
805                                 if (using_ns == null)
806                                         continue;
807
808                                 list.Add (using_ns);
809                         }
810
811                         namespace_using_table = new Namespace [list.Count];
812                         list.CopyTo (namespace_using_table, 0);
813                         return namespace_using_table;
814                 }
815
816                 readonly string [] empty_using_list = new string [0];
817
818                 public int SymbolFileID {
819                         get {
820                                 if (symfile_id == 0 && file.SourceFileEntry != null) {
821                                         int parent_id = parent == null ? 0 : parent.SymbolFileID;
822
823                                         string [] using_list = empty_using_list;
824                                         if (using_clauses != null) {
825                                                 using_list = new string [using_clauses.Count];
826                                                 for (int i = 0; i < using_clauses.Count; i++)
827                                                         using_list [i] = ((UsingEntry) using_clauses [i]).Name.ToString ();
828                                         }
829
830                                         symfile_id = CodeGen.SymbolWriter.DefineNamespace (ns.Name, file.SourceFileEntry, using_list, parent_id);
831                                 }
832                                 return symfile_id;
833                         }
834                 }
835
836                 static void MsgtryRef (string s)
837                 {
838                         Console.WriteLine ("    Try using -r:" + s);
839                 }
840
841                 static void MsgtryPkg (string s)
842                 {
843                         Console.WriteLine ("    Try using -pkg:" + s);
844                 }
845
846                 public static void Error_NamespaceNotFound (Location loc, string name)
847                 {
848                         Report.Error (246, loc, "The type or namespace name `{0}' could not be found. Are you missing a using directive or an assembly reference?",
849                                 name);
850
851                         switch (name) {
852                         case "Gtk": case "GtkSharp":
853                                 MsgtryPkg ("gtk-sharp");
854                                 break;
855
856                         case "Gdk": case "GdkSharp":
857                                 MsgtryPkg ("gdk-sharp");
858                                 break;
859
860                         case "Glade": case "GladeSharp":
861                                 MsgtryPkg ("glade-sharp");
862                                 break;
863
864                         case "System.Drawing":
865                         case "System.Web.Services":
866                         case "System.Web":
867                         case "System.Data":
868                         case "System.Windows.Forms":
869                                 MsgtryRef (name);
870                                 break;
871                         }
872                 }
873
874                 /// <summary>
875                 ///   Used to validate that all the using clauses are correct
876                 ///   after we are finished parsing all the files.  
877                 /// </summary>
878                 void VerifyUsing ()
879                 {
880                         if (extern_aliases != null) {
881                                 foreach (DictionaryEntry de in extern_aliases)
882                                         ((AliasEntry) de.Value).Resolve ();
883                         }               
884
885                         if (using_clauses != null) {
886                                 foreach (UsingEntry ue in using_clauses)
887                                         ue.Resolve ();
888                         }
889
890                         if (aliases != null) {
891                                 foreach (DictionaryEntry de in aliases)
892                                         ((AliasEntry) de.Value).Resolve ();
893                         }
894                 }
895
896                 /// <summary>
897                 ///   Used to validate that all the using clauses are correct
898                 ///   after we are finished parsing all the files.  
899                 /// </summary>
900                 static public void VerifyAllUsing ()
901                 {
902                         foreach (NamespaceEntry entry in entries)
903                                 entry.VerifyUsing ();
904                 }
905
906                 public string GetSignatureForError ()
907                 {
908                         return ns.GetSignatureForError ();
909                 }
910
911                 public override string ToString ()
912                 {
913                         return ns.ToString ();
914                 }
915         }
916 }