New tests.
[mono.git] / mcs / mcs / roottypes.cs
index bfc7f7b8d28494078fb90e2f4c65033ed97ea191..0144f0130300ae893ee1a083325b921b5d1d5350 100644 (file)
 //
 // roottypes.cs: keeps a tree representation of the generated code
 //
-// Author: Miguel de Icaza (miguel@gnu.org)
+// Authors: Miguel de Icaza (miguel@gnu.org)
+//          Marek Safar  (marek.safar@gmail.com)
 //
-// Licensed under the terms of the GNU GPL
-//
-// (C) 2001 Ximian, Inc (http://www.ximian.com)
+// Dual licensed under the terms of the MIT X11 or GNU GPL
 //
+// Copyright 2001-2003 Ximian, Inc (http://www.ximian.com)
+// Copyright 2003-2008 Novell, Inc.
 //
 
 using System;
-using System.Collections;
+using System.Collections.Generic;
 using System.Reflection;
 using System.Reflection.Emit;
-using System.IO;
+using System.Runtime.InteropServices;
 
 namespace Mono.CSharp
 {
-       // <summary>
-       //   We store here all the toplevel types that we have parsed,
-       //   this is the root of all information we have parsed.
-       // </summary>
-       public sealed class RootTypes : TypeContainer
+       //
+       // Module container, it can be used as a top-level type
+       //
+       public class ModuleContainer : TypeContainer
        {
-               public RootTypes ()
-                       : base (null, null, MemberName.Null, null, Kind.Root)
+               public CharSet DefaultCharSet = CharSet.Ansi;
+               public TypeAttributes DefaultCharSetType = TypeAttributes.AnsiClass;
+
+               protected Assembly assembly;
+
+               public ModuleContainer (Assembly assembly)
+                       : base (null, null, MemberName.Null, null, 0)
                {
-                       types = new ArrayList ();
+                       this.assembly = assembly;
                }
 
-               public override bool IsClsComplianceRequired ()
+               public override Assembly Assembly {
+                       get { return assembly; }
+               }
+
+               // FIXME: Remove this evil one day
+               public ModuleCompiled Compiled {
+                       get { return (ModuleCompiled) this; }
+               }
+
+               public override ModuleContainer Module {
+                       get {
+                               return this;
+                       }
+               }
+       }
+
+       //
+       // Compiled top-level types
+       //
+       public class ModuleCompiled : ModuleContainer
+       {
+               Dictionary<int, List<AnonymousTypeClass>> anonymous_types;
+               readonly bool is_unsafe;
+               readonly CompilerContext context;
+
+               ModuleBuilder builder;
+
+               bool has_default_charset;
+
+               static readonly string[] attribute_targets = new string[] { "module" };
+
+               public ModuleCompiled (CompilerContext context, bool isUnsafe)
+                       : base (null)
                {
-                       return true;
+                       this.is_unsafe = isUnsafe;
+                       this.context = context;
+
+                       types = new List<TypeContainer> ();
+                       anonymous_types = new Dictionary<int, List<AnonymousTypeClass>> ();
+               }
+
+               public override AttributeTargets AttributeTargets {
+                       get {
+                               return AttributeTargets.Module;
+                       }
                }
 
-               public override bool GetClsCompliantAttributeValue ()
+               public void AddAnonymousType (AnonymousTypeClass type)
                {
-                       return CodeGen.Assembly.IsClsCompliant;
+                       List<AnonymousTypeClass> existing;
+                       if (!anonymous_types.TryGetValue (type.Parameters.Count, out existing))
+                       if (existing == null) {
+                               existing = new List<AnonymousTypeClass> ();
+                               anonymous_types.Add (type.Parameters.Count, existing);
+                       }
+
+                       existing.Add (type);
+               }
+
+               public void AddAttributes (List<Attribute> attrs)
+               {
+                       foreach (Attribute a in attrs)
+                               a.AttachTo (this, CodeGen.Assembly);
+
+                       if (attributes == null) {
+                               attributes = new Attributes (attrs);
+                               return;
+                       }
+
+                       attributes.AddAttributes (attrs);
+               }
+
+               public override TypeContainer AddPartial (TypeContainer nextPart)
+               {
+                       return AddPartial (nextPart, nextPart.Name);
+               }
+
+               public override void ApplyAttributeBuilder (Attribute a, MethodSpec ctor, byte[] cdata, PredefinedAttributes pa)
+               {
+                       if (a.Type == pa.CLSCompliant) {
+                               if (CodeGen.Assembly.ClsCompliantAttribute == null) {
+                                       Report.Warning (3012, 1, a.Location, "You must specify the CLSCompliant attribute on the assembly, not the module, to enable CLS compliance checking");
+                               } else if (CodeGen.Assembly.IsClsCompliant != a.GetBoolean ()) {
+                                       Report.SymbolRelatedToPreviousError (CodeGen.Assembly.ClsCompliantAttribute.Location, CodeGen.Assembly.ClsCompliantAttribute.GetSignatureForError ());
+                                       Report.Warning (3017, 1, a.Location, "You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly");
+                                       return;
+                               }
+                       }
+
+                       builder.SetCustomAttribute ((ConstructorInfo) ctor.GetMetaInfo (), cdata);
+               }
+
+               public ModuleBuilder Builder {
+                       get {
+                               return builder;
+                       }
+
+                       set {
+                               builder = value;
+                               assembly = builder.Assembly;
+                       }
+               }
+
+               public override CompilerContext Compiler {
+                       get { return context; }
+               }
+
+               public override void Emit ()
+               {
+                       if (OptAttributes != null)
+                               OptAttributes.Emit ();
+
+                       if (is_unsafe) {
+                               TypeSpec t = TypeManager.CoreLookupType (context, "System.Security", "UnverifiableCodeAttribute", MemberKind.Class, true);
+                               if (t != null) {
+                                       var unverifiable_code_ctor = TypeManager.GetPredefinedConstructor (t, Location.Null, TypeSpec.EmptyTypes);
+                                       if (unverifiable_code_ctor != null)
+                                               builder.SetCustomAttribute (new CustomAttributeBuilder ((ConstructorInfo) unverifiable_code_ctor.GetMetaInfo (), new object[0]));
+                               }
+                       }
+               }
+
+               public AnonymousTypeClass GetAnonymousType (IList<AnonymousTypeParameter> parameters)
+               {
+                       List<AnonymousTypeClass> candidates;
+                       if (!anonymous_types.TryGetValue (parameters.Count, out candidates))
+                               return null;
+
+                       int i;
+                       foreach (AnonymousTypeClass at in candidates) {
+                               for (i = 0; i < parameters.Count; ++i) {
+                                       if (!parameters [i].Equals (at.Parameters [i]))
+                                               break;
+                               }
+
+                               if (i == parameters.Count)
+                                       return at;
+                       }
+
+                       return null;
+               }
+
+               public bool HasDefaultCharSet {
+                       get {
+                               return has_default_charset;
+                       }
                }
 
                public override string GetSignatureForError ()
                {
-                       return "";
+                       return "<module>";
+               }
+
+               public override bool IsClsComplianceRequired ()
+               {
+                       return CodeGen.Assembly.IsClsCompliant;
                }
 
-               protected override bool AddMemberType (DeclSpace ds)
+               protected override bool AddMemberType (TypeContainer ds)
                {
                        if (!AddToContainer (ds, ds.Name))
                                return false;
-                       ds.NamespaceEntry.NS.AddDeclSpace (ds.Basename, ds);
+                       ds.NamespaceEntry.NS.AddType (ds.Definition);
                        return true;
                }
 
-               public override TypeContainer AddPartial (TypeContainer nextPart, bool is_interface)
+               protected override void RemoveMemberType (DeclSpace ds)
                {
-                       return AddPartial (nextPart, nextPart.Name, is_interface);
+                       ds.NamespaceEntry.NS.RemoveDeclSpace (ds.Basename);
+                       base.RemoveMemberType (ds);
+               }
+
+               /// <summary>
+               /// It is called very early therefore can resolve only predefined attributes
+               /// </summary>
+               public void Resolve ()
+               {
+                       if (OptAttributes == null)
+                               return;
+
+                       if (!OptAttributes.CheckTargets ())
+                               return;
+
+                       Attribute a = ResolveAttribute (PredefinedAttributes.Get.DefaultCharset);
+                       if (a != null) {
+                               has_default_charset = true;
+                               DefaultCharSet = a.GetCharSetValue ();
+                               switch (DefaultCharSet) {
+                               case CharSet.Ansi:
+                               case CharSet.None:
+                                       break;
+                               case CharSet.Auto:
+                                       DefaultCharSetType = TypeAttributes.AutoClass;
+                                       break;
+                               case CharSet.Unicode:
+                                       DefaultCharSetType = TypeAttributes.UnicodeClass;
+                                       break;
+                               default:
+                                       Report.Error (1724, a.Location, "Value specified for the argument to 'System.Runtime.InteropServices.DefaultCharSetAttribute' is not valid");
+                                       break;
+                               }
+                       }
+               }
+
+               Attribute ResolveAttribute (PredefinedAttribute a_type)
+               {
+                       Attribute a = OptAttributes.Search (a_type);
+                       if (a != null) {
+                               a.Resolve ();
+                       }
+                       return a;
+               }
+
+               public override string[] ValidAttributeTargets {
+                       get {
+                               return attribute_targets;
+                       }
                }
        }
 
-       public class RootDeclSpace : DeclSpace {
+       class RootDeclSpace : TypeContainer {
                public RootDeclSpace (NamespaceEntry ns)
-                       : base (ns, null, MemberName.Null, null)
+                       : base (ns, null, MemberName.Null, null, 0)
                {
                        PartialContainer = RootContext.ToplevelTypes;
                }
@@ -69,37 +265,40 @@ namespace Mono.CSharp
                        get { throw new InternalErrorException ("should not be called"); }
                }
 
+               public override CompilerContext Compiler {
+                       get {
+                               return PartialContainer.Compiler;
+                       }
+               }
+
                public override string DocCommentHeader {
                        get { throw new InternalErrorException ("should not be called"); }
                }
 
-               public override bool Define ()
-               {
-                       throw new InternalErrorException ("should not be called");
-               }
+               //public override bool Define ()
+               //{
+               //    throw new InternalErrorException ("should not be called");
+               //}
 
                public override TypeBuilder DefineType ()
                {
                        throw new InternalErrorException ("should not be called");
                }
 
-               public override MemberList FindMembers (MemberTypes mt, BindingFlags bf, MemberFilter filter, object criteria)
-               {
-                       throw new InternalErrorException ("should not be called");
-               }
-
-               public override MemberCache MemberCache {
-                       get { return PartialContainer.MemberCache; }
+               public override ModuleContainer Module {
+                       get {
+                               return PartialContainer.Module;
+                       }
                }
 
-               public override bool GetClsCompliantAttributeValue ()
+               public override bool IsClsComplianceRequired ()
                {
-                       return PartialContainer.GetClsCompliantAttributeValue ();
+                       return PartialContainer.IsClsComplianceRequired ();
                }
 
-               public override bool IsClsComplianceRequired ()
+               public override FullNamedExpression LookupNamespaceAlias (string name)
                {
-                       return PartialContainer.IsClsComplianceRequired ();
+                       return NamespaceEntry.LookupNamespaceAlias (name);
                }
        }
 }