2005-06-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / UserControlParser.cs
1 //
2 // System.Web.UI.UserControlParser
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 using System;
31 using System.Collections;
32 using System.IO;
33 using System.Web;
34 using System.Web.Compilation;
35 using System.Web.Util;
36
37 namespace System.Web.UI
38 {
39         internal class UserControlParser : TemplateControlParser
40         {
41                 internal UserControlParser (string virtualPath, string inputFile, HttpContext context)
42                         : this (virtualPath, inputFile, context, null)
43                 {
44                 }
45
46                 internal UserControlParser (string virtualPath, string inputFile, ArrayList deps, HttpContext context)
47                         : this (virtualPath, inputFile, context, null)
48                 {
49                         this.Dependencies = deps;
50                 }
51                 
52                 internal UserControlParser (string virtualPath, string inputFile, HttpContext context, string type)
53                 {
54                         if (type == null) type = PagesConfig.UserControlBaseType;
55                         Context = context;
56                         BaseVirtualDir = UrlUtils.GetDirectory (virtualPath);
57                         InputFile = inputFile;
58                         SetBaseType (type);
59                         AddApplicationAssembly ();
60                 }
61                 
62                 internal static Type GetCompiledType (string virtualPath, string inputFile, ArrayList deps, HttpContext context)
63                 {
64                         UserControlParser ucp = new UserControlParser (virtualPath, inputFile, deps, context);
65                         return ucp.CompileIntoType ();
66                 }
67
68                 public static Type GetCompiledType (string virtualPath, string inputFile, HttpContext context)
69                 {
70                         UserControlParser ucp = new UserControlParser (virtualPath, inputFile, context);
71                         return ucp.CompileIntoType ();
72                 }
73
74                 protected override Type CompileIntoType ()
75                 {
76                         AspGenerator generator = new AspGenerator (this);
77                         return generator.GetCompiledType ();
78                 }
79
80                 internal override void ProcessMainAttributes (Hashtable atts)
81                 {
82                         base.ProcessMainAttributes (atts);
83                 }
84                 
85                 internal override Type DefaultBaseType {
86                         get { return typeof (UserControl); }
87                 }
88
89                 internal override string DefaultBaseTypeName {
90                         get { return "System.Web.UI.UserControl"; }
91                 }
92
93                 internal override string DefaultDirectiveName {
94                         get { return "control"; }
95                 }
96         }
97 }
98