2009-01-30 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / ApplicationFileParser.cs
1 //
2 // System.Web.UI.ApplicationFileParser.cs
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
8 // (c) 2004 Novell, Inc. (http://www.novell.com)
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31 using System;
32 using System.Collections;
33 using System.IO;
34 using System.Web;
35 using System.Web.Compilation;
36
37 namespace System.Web.UI
38 {
39         sealed class ApplicationFileParser : TemplateParser
40         {
41                 static ArrayList dependencies;
42 #if NET_2_0
43                 TextReader reader;
44 #endif
45                 
46                 public ApplicationFileParser (string fname, HttpContext context)
47                 {
48                         InputFile = fname;
49                         Context = context;
50                 }
51
52 #if NET_2_0
53                 internal ApplicationFileParser (string virtualPath, TextReader reader, HttpContext context)
54                         : this (virtualPath, null, reader, context)
55                 {
56                 }
57                 
58                 internal ApplicationFileParser (string virtualPath, string inputFile, TextReader reader, HttpContext context)
59                 {
60                         Context = context;
61                         Reader = reader;
62
63                         if (String.IsNullOrEmpty (inputFile)) {
64                                 HttpRequest req = context != null ? context.Request : null;
65                                 if (req != null)
66                                         InputFile = req.MapPath (virtualPath);
67                         } else
68                                 InputFile = inputFile;
69                         
70                         SetBaseType (null);
71                 }
72 #endif
73                 
74                 protected override Type CompileIntoType ()
75                 {
76                         return GlobalAsaxCompiler.CompileApplicationType (this);
77                 }
78
79                 internal static Type GetCompiledApplicationType (string inputFile, HttpContext context)
80                 {
81                         ApplicationFileParser parser = new ApplicationFileParser (inputFile, context);
82                         AspGenerator generator = new AspGenerator (parser);
83                         Type type = generator.GetCompiledType ();
84                         dependencies = parser.Dependencies;
85                         return type;
86                 }
87
88                 internal override void AddDirective (string directive, Hashtable atts)
89                 {
90                         if (String.Compare (directive, "application", true) != 0 &&
91                             String.Compare (directive, "Import", true) != 0 &&
92                             String.Compare (directive, "Assembly", true) != 0)
93                                 ThrowParseException ("Invalid directive: " + directive);
94
95                         base.AddDirective (directive, atts);
96                 }
97
98                 internal static ArrayList FileDependencies {
99                         get { return dependencies; }
100                 }               
101
102                 internal override string DefaultBaseTypeName {
103                         get { return "System.Web.HttpApplication"; }
104                 }
105
106                 internal override string DefaultDirectiveName {
107                         get { return "application"; }
108                 }
109
110                 internal override string BaseVirtualDir {
111                         get { return Context.Request.ApplicationPath; }
112                 }
113                 
114 #if NET_2_0
115                  internal override TextReader Reader {
116                         get { return reader; }
117                         set { reader = value; }
118                 }
119 #endif
120         }
121
122 }
123