2009-01-30 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / RootBuilder.cs
index 713235a40bf45bd18a18e775f369a20ec8570c52..15a87ea63815beb1d330bb1ea0c88513ff109e94 100644 (file)
@@ -5,7 +5,7 @@
 //     Gonzalo Paniagua Javier (gonzalo@ximian.com)
 //
 // (C) 2003 Ximian, Inc. (http://www.ximian.com)
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.Collections;
+using System.Security.Permissions;
 using System.Web.Compilation;
 using System.Web.UI.HtmlControls;
 
-namespace System.Web.UI
-{
-       public sealed class RootBuilder : TemplateBuilder
-       {
+namespace System.Web.UI {
+
+       [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+#if NET_2_0
+       [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
+       public class RootBuilder : TemplateBuilder {
+
+               Hashtable built_objects;
+
+               public RootBuilder ()
+               {
+               }
+#else
+       public sealed class RootBuilder : TemplateBuilder {
+#endif
                static Hashtable htmlControls;
                static Hashtable htmlInputControls;
                AspComponentFoundry foundry;
 
                static RootBuilder ()
                {
-                       htmlControls = new Hashtable (new CaseInsensitiveHashCodeProvider (),
-                                                     new CaseInsensitiveComparer ()); 
+#if NET_2_0
+                       htmlControls = new Hashtable (StringComparer.InvariantCultureIgnoreCase);
+#else
+                       htmlControls = new Hashtable (CaseInsensitiveHashCodeProvider.DefaultInvariant,
+                                                     CaseInsensitiveComparer.DefaultInvariant); 
+#endif
 
                        htmlControls.Add ("A", typeof (HtmlAnchor));
                        htmlControls.Add ("BUTTON", typeof (HtmlButton));
                        htmlControls.Add ("FORM", typeof (HtmlForm));
+#if NET_2_0
+                       htmlControls.Add ("HEAD", typeof (HtmlHead));
+#endif
                        htmlControls.Add ("IMG", typeof (HtmlImage));
                        htmlControls.Add ("INPUT", "INPUT");
+#if NET_2_0
+                       htmlControls.Add ("LINK", typeof (HtmlLink));
+                       htmlControls.Add ("META", typeof (HtmlLink));
+#endif
                        htmlControls.Add ("SELECT", typeof (HtmlSelect));
                        htmlControls.Add ("TABLE", typeof (HtmlTable));
                        htmlControls.Add ("TD", typeof (HtmlTableCell));
                        htmlControls.Add ("TH", typeof (HtmlTableCell));
                        htmlControls.Add ("TR", typeof (HtmlTableRow));
                        htmlControls.Add ("TEXTAREA", typeof (HtmlTextArea));
+
 #if NET_2_0
-                       htmlControls.Add ("HEAD", typeof (HtmlHead));
+                       htmlInputControls = new Hashtable (StringComparer.InvariantCultureIgnoreCase);
+#else
+                       htmlInputControls = new Hashtable (CaseInsensitiveHashCodeProvider.DefaultInvariant,
+                                                          CaseInsensitiveComparer.DefaultInvariant);
 #endif
 
-                       htmlInputControls = new Hashtable (new CaseInsensitiveHashCodeProvider (),
-                                                          new CaseInsensitiveComparer ());
-
                        htmlInputControls.Add ("BUTTON", typeof (HtmlInputButton));
+#if NET_2_0
+                       htmlInputControls.Add ("SUBMIT", typeof (HtmlInputSubmit));
+                       htmlInputControls.Add ("RESET", typeof (HtmlInputReset));
+#else
                        htmlInputControls.Add ("SUBMIT", typeof (HtmlInputButton));
                        htmlInputControls.Add ("RESET", typeof (HtmlInputButton));
+#endif
                        htmlInputControls.Add ("CHECKBOX", typeof (HtmlInputCheckBox));
                        htmlInputControls.Add ("FILE", typeof (HtmlInputFile));
                        htmlInputControls.Add ("HIDDEN", typeof (HtmlInputHidden));
                        htmlInputControls.Add ("IMAGE", typeof (HtmlInputImage));
                        htmlInputControls.Add ("RADIO", typeof (HtmlInputRadioButton));
                        htmlInputControls.Add ("TEXT", typeof (HtmlInputText));
+#if NET_2_0
+                       htmlInputControls.Add ("PASSWORD", typeof (HtmlInputPassword));
+#else
                        htmlInputControls.Add ("PASSWORD", typeof (HtmlInputText));
+#endif
                }
 
                public RootBuilder (TemplateParser parser)
                {
                        foundry = new AspComponentFoundry ();
-                       line = 1;
-                       fileName = parser.InputFile;
+                       Line = 1;
+                       if (parser != null)
+                               FileName = parser.InputFile;
                        Init (parser, null, null, null, null, null);
                }
 
                public override Type GetChildControlType (string tagName, IDictionary attribs) 
                {
-                       string prefix;
-                       string cname;
-                       int colon = tagName.IndexOf (':');
-                       if (colon != -1) {
-                               if (colon == 0)
-                                       throw new Exception ("Empty TagPrefix is not valid");
-
-                               if (colon + 1 == tagName.Length)
-                                       return null;
-
-                               prefix = tagName.Substring (0, colon);
-                               cname = tagName.Substring (colon + 1);
-                       } else {
-                               prefix = "";
-                               cname = tagName;
-                       }
+                       if (tagName == null)
+                               throw new ArgumentNullException ("tagName");
 
-                       Type t = foundry.GetComponentType (prefix, cname);
-                       if (t != null)
-                               return t;
-                       else if (prefix != "")
-                               throw new Exception ("TagPrefix " + prefix + " not registered");
+                       AspComponent component = foundry.GetComponent (tagName);
+                       
+                       if (component != null) {
+#if NET_2_0
+                               if (!String.IsNullOrEmpty (component.Source)) {
+                                       TemplateParser parser = Parser;
+
+                                       if (component.FromConfig) {
+                                               string parserDir = parser.BaseVirtualDir;
+                                               VirtualPath vp = new VirtualPath (component.Source);
+
+                                               if (parserDir == vp.Directory)
+                                                       throw new ParseException (parser.Location,
+                                                                                 String.Format ("The page '{0}' cannot use the user control '{1}', because it is registered in web.config and lives in the same directory as the page.", parser.VirtualPath, vp.Absolute));
+                                               
+                                               Parser.AddDependency (component.Source);
+                                       }
+                               }
+#endif
+                               return component.Type;
+                       } else if (component != null && component.Prefix != String.Empty)
+                               throw new Exception ("Unknown server tag '" + tagName + "'");
                        
                        return LookupHtmlControls (tagName, attribs);
                }
@@ -137,7 +173,21 @@ namespace System.Web.UI
 
                internal AspComponentFoundry Foundry {
                        get { return foundry; }
+                       set {
+                               if (value is AspComponentFoundry)
+                                       foundry = value;
+                       }
+               }
+#if NET_2_0
+               // FIXME: it's empty (but not null) when using the new default ctor
+               // but I'm not sure when something should gets in...
+               public IDictionary BuiltObjects {
+                       get {
+                               if (built_objects == null)
+                                       built_objects = new Hashtable ();
+                               return built_objects;
+                       }
                }
+#endif
        }
 }
-