Merge pull request #901 from Blewzman/FixAggregateExceptionGetBaseException
[mono.git] / mcs / mcs / namespace.cs
index f454b93498665cd1da1c66d74f2f4d03f96d42e9..f6031a534d39c5b1a48b228a1b71ca625ce5c881 100644 (file)
@@ -22,9 +22,10 @@ namespace Mono.CSharp {
                readonly Dictionary<string, Namespace> all_namespaces;
 
                public RootNamespace (string alias_name)
-                       : base (null, String.Empty)
+                       : base ()
                {
                        this.alias_name = alias_name;
+                       RegisterNamespace (this);
 
                        all_namespaces = new Dictionary<string, Namespace> ();
                        all_namespaces.Add ("", this);
@@ -64,12 +65,12 @@ namespace Mono.CSharp {
                //
                // For better error reporting where compiler tries to guess missing using directive
                //
-               public List<string> FindExtensionMethodNamespaces (IMemberContext ctx, TypeSpec extensionType, string name, int arity)
+               public List<string> FindExtensionMethodNamespaces (IMemberContext ctx, string name, int arity)
                {
                        List<string> res = null;
 
                        foreach (var ns in all_namespaces) {
-                               var methods = ns.Value.LookupExtensionMethod (ctx, extensionType, name, arity);
+                               var methods = ns.Value.LookupExtensionMethod (ctx, name, arity);
                                if (methods != null) {
                                        if (res == null)
                                                res = new List<string> ();
@@ -87,24 +88,13 @@ namespace Mono.CSharp {
                                all_namespaces.Add (child.Name, child);
                }
 
-               public bool IsNamespace (string name)
-               {
-                       return all_namespaces.ContainsKey (name);
-               }
-
-               protected void RegisterNamespace (string dotted_name)
-               {
-                       if (dotted_name != null && dotted_name.Length != 0 && ! IsNamespace (dotted_name))
-                               GetNamespace (dotted_name, true);
-               }
-
                public override string GetSignatureForError ()
                {
                        return alias_name + "::";
                }
        }
 
-       public class GlobalRootNamespace : RootNamespace
+       public sealed class GlobalRootNamespace : RootNamespace
        {
                public GlobalRootNamespace ()
                        : base ("global")
@@ -115,67 +105,52 @@ namespace Mono.CSharp {
        //
        // Namespace cache for imported and compiled namespaces
        //
-       // This is an Expression to allow it to be referenced in the
-       // compiler parse/intermediate tree during name resolution.
-       //
-       public class Namespace : FullNamedExpression
+       public class Namespace
        {
-               Namespace parent;
+               readonly Namespace parent;
                string fullname;
                protected Dictionary<string, Namespace> namespaces;
                protected Dictionary<string, IList<TypeSpec>> types;
                List<TypeSpec> extension_method_types;
-               Dictionary<string, TypeExpr> cached_types;
-               RootNamespace root;
+               Dictionary<string, TypeSpec> cached_types;
                bool cls_checked;
 
-               public readonly MemberName MemberName;
-
                /// <summary>
                ///   Constructor Takes the current namespace and the
                ///   name.  This is bootstrapped with parent == null
                ///   and name = ""
                /// </summary>
                public Namespace (Namespace parent, string name)
+                       : this ()
                {
-                       // Expression members.
-                       this.eclass = ExprClass.Namespace;
-                       this.Type = InternalType.Namespace;
-                       this.loc = Location.Null;
+                       if (name == null)
+                               throw new ArgumentNullException ("name");
 
                        this.parent = parent;
 
-                       if (parent != null)
-                               this.root = parent.root;
-                       else
-                               this.root = this as RootNamespace;
-
-                       if (this.root == null)
-                               throw new InternalErrorException ("Root namespaces must be created using RootNamespace");
-                       
-                       string pname = parent != null ? parent.fullname : "";
+                       string pname = parent != null ? parent.fullname : null;
                                
-                       if (pname == "")
+                       if (pname == null)
                                fullname = name;
                        else
-                               fullname = parent.fullname + "." + name;
-
-                       if (fullname == null)
-                               throw new InternalErrorException ("Namespace has a null fullname");
+                               fullname = pname + "." + name;
 
-                       if (parent != null && parent.MemberName != MemberName.Null)
-                               MemberName = new MemberName (parent.MemberName, name, Location.Null);
-                       else if (name.Length == 0)
-                               MemberName = MemberName.Null;
-                       else
-                               MemberName = new MemberName (name, Location.Null);
+                       while (parent.parent != null)
+                               parent = parent.parent;
 
-                       namespaces = new Dictionary<string, Namespace> ();
-                       cached_types = new Dictionary<string, TypeExpr> ();
+                       var root = parent as RootNamespace;
+                       if (root == null)
+                               throw new InternalErrorException ("Root namespaces must be created using RootNamespace");
 
                        root.RegisterNamespace (this);
                }
 
+               protected Namespace ()
+               {
+                       namespaces = new Dictionary<string, Namespace> ();
+                       cached_types = new Dictionary<string, TypeSpec> ();
+               }
+
                #region Properties
 
                /// <summary>
@@ -195,85 +170,6 @@ namespace Mono.CSharp {
 
                #endregion
 
-               protected override Expression DoResolve (ResolveContext ec)
-               {
-                       return this;
-               }
-
-               public void Error_NamespaceDoesNotExist (IMemberContext ctx, string name, int arity, Location loc)
-               {
-                       var retval = LookupType (ctx, name, arity, LookupMode.IgnoreAccessibility, loc);
-                       if (retval != null) {
-                               ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (retval.Type);
-                               ErrorIsInaccesible (ctx, retval.GetSignatureForError (), loc);
-                               return;
-                       }
-
-                       retval = LookupType (ctx, name, -System.Math.Max (1, arity), LookupMode.Probing, loc);
-                       if (retval != null) {
-                               Error_TypeArgumentsCannotBeUsed (ctx, retval.Type, arity, loc);
-                               return;
-                       }
-
-                       Namespace ns;
-                       if (arity > 0 && namespaces.TryGetValue (name, out ns)) {
-                               ns.Error_TypeArgumentsCannotBeUsed (ctx, null, arity, loc);
-                               return;
-                       }
-
-                       string assembly = null;
-                       string possible_name = fullname + "." + name;
-
-                       // Only assembly unique name should be added
-                       switch (possible_name) {
-                       case "System.Drawing":
-                       case "System.Web.Services":
-                       case "System.Web":
-                       case "System.Data":
-                       case "System.Configuration":
-                       case "System.Data.Services":
-                       case "System.DirectoryServices":
-                       case "System.Json":
-                       case "System.Net.Http":
-                       case "System.Numerics":
-                       case "System.Runtime.Caching":
-                       case "System.ServiceModel":
-                       case "System.Transactions":
-                       case "System.Web.Routing":
-                       case "System.Xml.Linq":
-                       case "System.Xml":
-                               assembly = possible_name;
-                               break;
-
-                       case "System.Linq":
-                       case "System.Linq.Expressions":
-                               assembly = "System.Core";
-                               break;
-
-                       case "System.Windows.Forms":
-                       case "System.Windows.Forms.Layout":
-                               assembly = "System.Windows.Forms";
-                               break;
-                       }
-
-                       assembly = assembly == null ? "an" : "`" + assembly + "'";
-
-                       if (this is GlobalRootNamespace) {
-                               ctx.Module.Compiler.Report.Error (400, loc,
-                                       "The type or namespace name `{0}' could not be found in the global namespace. Are you missing {1} assembly reference?",
-                                       name, assembly);
-                       } else {
-                               ctx.Module.Compiler.Report.Error (234, loc,
-                                       "The type or namespace name `{0}' does not exist in the namespace `{1}'. Are you missing {2} assembly reference?",
-                                       name, GetSignatureForError (), assembly);
-                       }
-               }
-
-               public override string GetSignatureForError ()
-               {
-                       return fullname;
-               }
-
                public Namespace AddNamespace (MemberName name)
                {
                        var ns_parent = name.Left == null ? this : AddNamespace (name.Left);
@@ -292,6 +188,11 @@ namespace Mono.CSharp {
                        return ns;
                }
 
+               public bool TryGetNamespace (string name, out Namespace ns)
+               {
+                       return namespaces.TryGetValue (name, out ns);
+               }
+
                // TODO: Replace with CreateNamespace where MemberName is created for the method call
                public Namespace GetNamespace (string name, bool create)
                {
@@ -327,20 +228,26 @@ namespace Mono.CSharp {
                        return found;
                }
 
-               public TypeExpr LookupType (IMemberContext ctx, string name, int arity, LookupMode mode, Location loc)
+               public virtual string GetSignatureForError ()
+               {
+                       return fullname;
+               }
+
+               public TypeSpec LookupType (IMemberContext ctx, string name, int arity, LookupMode mode, Location loc)
                {
                        if (types == null)
                                return null;
 
-                       TypeExpr te;
-                       if (arity == 0 && cached_types.TryGetValue (name, out te))
-                               return te;
+                       TypeSpec best = null;
+                       if (arity == 0 && cached_types.TryGetValue (name, out best)) {
+                               if (best != null || mode != LookupMode.IgnoreAccessibility)
+                                       return best;
+                       }
 
                        IList<TypeSpec> found;
                        if (!types.TryGetValue (name, out found))
                                return null;
 
-                       TypeSpec best = null;
                        foreach (var ts in found) {
                                if (ts.Arity == arity) {
                                        if (best == null) {
@@ -352,11 +259,20 @@ namespace Mono.CSharp {
                                        }
 
                                        if (best.MemberDefinition.IsImported && ts.MemberDefinition.IsImported) {
+                                               if (ts.Kind == MemberKind.MissingType)
+                                                       continue;
+
+                                               if (best.Kind == MemberKind.MissingType) {
+                                                       best = ts;
+                                                       continue;
+                                               }
+
                                                if (mode == LookupMode.Normal) {
                                                        ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (best);
                                                        ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (ts);
                                                        ctx.Module.Compiler.Report.Error (433, loc, "The imported type `{0}' is defined multiple times", ts.GetSignatureForError ());
                                                }
+
                                                break;
                                        }
 
@@ -391,16 +307,11 @@ namespace Mono.CSharp {
                                }
                        }
 
-                       if (best == null)
-                               return null;
-
-                       te = new TypeExpression (best, Location.Null);
-
                        // TODO MemberCache: Cache more
                        if (arity == 0 && mode == LookupMode.Normal)
-                               cached_types.Add (name, te);
+                               cached_types.Add (name, best);
 
-                       return te;
+                       return best;
                }
 
                public FullNamedExpression LookupTypeOrNamespace (IMemberContext ctx, string name, int arity, LookupMode mode, Location loc)
@@ -410,21 +321,24 @@ namespace Mono.CSharp {
                        Namespace ns;
                        if (arity == 0 && namespaces.TryGetValue (name, out ns)) {
                                if (texpr == null)
-                                       return ns;
+                                       return new NamespaceExpression (ns, loc);
 
                                if (mode != LookupMode.Probing) {
-                                       ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (texpr.Type);
+                                       //ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (texpr.Type);
                                        // ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (ns.loc, "");
                                        ctx.Module.Compiler.Report.Warning (437, 2, loc,
                                                "The type `{0}' conflicts with the imported namespace `{1}'. Using the definition found in the source file",
                                                texpr.GetSignatureForError (), ns.GetSignatureForError ());
                                }
 
-                               if (texpr.Type.MemberDefinition.IsImported)
-                                       return ns;
+                               if (texpr.MemberDefinition.IsImported)
+                                       return new NamespaceExpression (ns, loc);
                        }
 
-                       return texpr;
+                       if (texpr == null)
+                               return null;
+
+                       return new TypeExpression (texpr, loc);
                }
 
                //
@@ -448,7 +362,7 @@ namespace Mono.CSharp {
                // 
                // Looks for extension method in this namespace
                //
-               public List<MethodSpec> LookupExtensionMethod (IMemberContext invocationContext, TypeSpec extensionType, string name, int arity)
+               public List<MethodSpec> LookupExtensionMethod (IMemberContext invocationContext, string name, int arity)
                {
                        if (extension_method_types == null)
                                return null;
@@ -471,7 +385,7 @@ namespace Mono.CSharp {
                                        continue;
                                }
 
-                               var res = ts.MemberCache.FindExtensionMethods (invocationContext, extensionType, name, arity);
+                               var res = ts.MemberCache.FindExtensionMethods (invocationContext, name, arity);
                                if (res == null)
                                        continue;
 
@@ -572,11 +486,6 @@ namespace Mono.CSharp {
                        cached_types.Remove (tc.Basename);
                }
 
-               public override FullNamedExpression ResolveAsTypeOrNamespace (IMemberContext mc)
-               {
-                       return this;
-               }
-
                public void SetBuiltinType (BuiltinTypeSpec pts)
                {
                        var found = types[pts.Name];
@@ -643,11 +552,6 @@ namespace Mono.CSharp {
                                        "Identifier `{0}' differing only in case is not CLS-compliant", compiled.GetSignatureForError ());
                        }
                }
-
-               public override string ToString ()
-               {
-                       return Name;
-               }
        }
 
        public class CompilationSourceFile : NamespaceContainer
@@ -730,7 +634,7 @@ namespace Mono.CSharp {
                void CreateUnitSymbolInfo (MonoSymbolFile symwriter)
                {
                        var si = file.CreateSymbolInfo (symwriter);
-                       comp_unit = new CompileUnitEntry (symwriter, si);;
+                       comp_unit = new CompileUnitEntry (symwriter, si);
 
                        if (include_files != null) {
                                foreach (SourceFile include in include_files.Values) {
@@ -873,7 +777,7 @@ namespace Mono.CSharp {
                public override void AddPartial (TypeDefinition next_part)
                {
                        var existing = ns.LookupType (this, next_part.MemberName.Name, next_part.MemberName.Arity, LookupMode.Probing, Location.Null);
-                       var td = existing != null ? existing.Type.MemberDefinition as TypeDefinition : null;
+                       var td = existing != null ? existing.MemberDefinition as TypeDefinition : null;
                        AddPartial (next_part, td);
                }
 
@@ -969,7 +873,7 @@ namespace Mono.CSharp {
                        ExtensionMethodCandidates candidates;
                        var container = this;
                        do {
-                               candidates = container.LookupExtensionMethodCandidates (invocationContext, extensionType, name, arity, ref position);
+                               candidates = container.LookupExtensionMethodCandidates (invocationContext, name, arity, ref position);
                                if (candidates != null || container.MemberName == null)
                                        return candidates;
 
@@ -984,7 +888,7 @@ namespace Mono.CSharp {
                                while (mn != null) {
                                        ++position;
 
-                                       var methods = container_ns.LookupExtensionMethod (invocationContext, extensionType, name, arity);
+                                       var methods = container_ns.LookupExtensionMethod (invocationContext, name, arity);
                                        if (methods != null) {
                                                return new ExtensionMethodCandidates (invocationContext, methods, container, position);
                                        }
@@ -1000,14 +904,14 @@ namespace Mono.CSharp {
                        return null;
                }
 
-               ExtensionMethodCandidates LookupExtensionMethodCandidates (IMemberContext invocationContext, TypeSpec extensionType, string name, int arity, ref int position)
+               ExtensionMethodCandidates LookupExtensionMethodCandidates (IMemberContext invocationContext, string name, int arity, ref int position)
                {
                        List<MethodSpec> candidates = null;
 
                        if (position == 0) {
                                ++position;
 
-                               candidates = ns.LookupExtensionMethod (invocationContext, extensionType, name, arity);
+                               candidates = ns.LookupExtensionMethod (invocationContext, name, arity);
                                if (candidates != null) {
                                        return new ExtensionMethodCandidates (invocationContext, candidates, this, position);
                                }
@@ -1017,7 +921,7 @@ namespace Mono.CSharp {
                                ++position;
 
                                foreach (Namespace n in namespace_using_table) {
-                                       var a = n.LookupExtensionMethod (invocationContext, extensionType, name, arity);
+                                       var a = n.LookupExtensionMethod (invocationContext, name, arity);
                                        if (a == null)
                                                continue;
 
@@ -1172,10 +1076,11 @@ namespace Mono.CSharp {
                                // A using directive imports only types contained in the namespace, it
                                // does not import any nested namespaces
                                //
-                               fne = using_ns.LookupType (this, name, arity, mode, loc);
-                               if (fne == null)
+                               var t = using_ns.LookupType (this, name, arity, mode, loc);
+                               if (t == null)
                                        continue;
 
+                               fne = new TypeExpression (t, loc);
                                if (match == null) {
                                        match = fne;
                                        continue;
@@ -1262,18 +1167,18 @@ namespace Mono.CSharp {
                                                continue;
                                        }
 
-                                       Namespace using_ns = entry.ResolvedExpression as Namespace;
+                                       var using_ns = entry.ResolvedExpression as NamespaceExpression;
                                        if (using_ns == null)
                                                continue;
 
-                                       if (list.Contains (using_ns)) {
+                                       if (list.Contains (using_ns.Namespace)) {
                                                // Ensure we don't report the warning multiple times in repl
                                                clauses.RemoveAt (i--);
 
                                                Compiler.Report.Warning (105, 3, entry.Location,
                                                        "The using directive for `{0}' appeared previously in this namespace", using_ns.GetSignatureForError ());
                                        } else {
-                                               list.Add (using_ns);
+                                               list.Add (using_ns.Namespace);
                                        }
                                }
 
@@ -1388,7 +1293,7 @@ namespace Mono.CSharp {
                public virtual void Define (NamespaceContainer ctx)
                {
                        resolved = expr.ResolveAsTypeOrNamespace (ctx);
-                       var ns = resolved as Namespace;
+                       var ns = resolved as NamespaceExpression;
                        if (ns == null) {
                                if (resolved != null) {
                                        ctx.Module.Compiler.Report.SymbolRelatedToPreviousError (resolved.Type);
@@ -1414,12 +1319,15 @@ namespace Mono.CSharp {
 
                public override void Define (NamespaceContainer ctx)
                {
-                       resolved = ctx.Module.GetRootNamespace (Alias.Value);
-                       if (resolved == null) {
+                       var ns = ctx.Module.GetRootNamespace (Alias.Value);
+                       if (ns == null) {
                                ctx.Module.Compiler.Report.Error (430, Location,
                                        "The extern alias `{0}' was not specified in -reference option",
                                        Alias.Value);
+                               return;
                        }
+
+                       resolved = new NamespaceExpression (ns, Location);
                }
        }