New test.
[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 #if NET_2_0
42                 string masterPage;
43 #endif
44
45                 internal UserControlParser (string virtualPath, string inputFile, HttpContext context)
46                         : this (virtualPath, inputFile, context, null)
47                 {
48                 }
49
50                 internal UserControlParser (string virtualPath, string inputFile, ArrayList deps, HttpContext context)
51                         : this (virtualPath, inputFile, context, null)
52                 {
53                         this.Dependencies = deps;
54                 }
55                 
56                 internal UserControlParser (string virtualPath, string inputFile, HttpContext context, string type)
57                 {
58                         if (type == null) type = PagesConfig.UserControlBaseType;
59                         Context = context;
60                         BaseVirtualDir = UrlUtils.GetDirectory (virtualPath);
61                         InputFile = inputFile;
62                         SetBaseType (type);
63                         AddApplicationAssembly ();
64                 }
65
66 #if NET_2_0
67                 internal UserControlParser (string virtualPath, TextReader reader, HttpContext context)
68                 {
69                         Context = context;
70                         BaseVirtualDir = UrlUtils.GetDirectory (virtualPath);
71                         Reader = reader;
72                         SetBaseType (PagesConfig.UserControlBaseType);
73                         AddApplicationAssembly ();
74                 }
75 #endif
76
77                 internal static Type GetCompiledType (string virtualPath, string inputFile, ArrayList deps, HttpContext context)
78                 {
79                         UserControlParser ucp = new UserControlParser (virtualPath, inputFile, deps, context);
80                         return ucp.CompileIntoType ();
81                 }
82
83                 public static Type GetCompiledType (string virtualPath, string inputFile, HttpContext context)
84                 {
85                         UserControlParser ucp = new UserControlParser (virtualPath, inputFile, context);
86                         return ucp.CompileIntoType ();
87                 }
88
89                 protected override Type CompileIntoType ()
90                 {
91                         AspGenerator generator = new AspGenerator (this);
92                         return generator.GetCompiledType ();
93                 }
94
95                 internal override void ProcessMainAttributes (Hashtable atts)
96                 {
97 #if NET_2_0
98                         masterPage = GetString (atts, "MasterPageFile", null);
99                         if (masterPage != null) {
100                                 // Make sure the page exists
101                                 if (masterPage != null) {
102                                         MasterPageParser.GetCompiledMasterType (masterPage, MapPath (masterPage), HttpContext.Current);
103                                 }
104                         }
105 #endif
106
107                         base.ProcessMainAttributes (atts);
108                 }
109
110                 internal override Type DefaultBaseType {
111                         get { return typeof (UserControl); }
112                 }
113
114                 internal override string DefaultBaseTypeName {
115                         get { return "System.Web.UI.UserControl"; }
116                 }
117
118                 internal override string DefaultDirectiveName {
119                         get { return "control"; }
120                 }
121
122 #if NET_2_0
123                 internal string MasterPageFile {
124                         get { return masterPage; }
125                 }
126 #endif
127
128         }
129 }
130