2009-03-18 Marek Habersack <mhabersack@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 #if NET_2_0
51                         VirtualPath = new VirtualPath ("/" + Path.GetFileName (fname));
52 #endif
53                 }
54
55 #if NET_2_0
56                 internal ApplicationFileParser (string virtualPath, TextReader reader, HttpContext context)
57                         : this (virtualPath, null, reader, context)
58                 {
59                 }
60                 
61                 internal ApplicationFileParser (string virtualPath, string inputFile, TextReader reader, HttpContext context)
62                 {
63                         VirtualPath = new VirtualPath (virtualPath);
64                         Context = context;
65                         Reader = reader;
66
67                         if (String.IsNullOrEmpty (inputFile)) {
68                                 HttpRequest req = context != null ? context.Request : null;
69                                 if (req != null)
70                                         InputFile = req.MapPath (virtualPath);
71                         } else
72                                 InputFile = inputFile;
73                         
74                         SetBaseType (null);
75                 }
76 #endif
77                 
78                 protected override Type CompileIntoType ()
79                 {
80                         return GlobalAsaxCompiler.CompileApplicationType (this);
81                 }
82
83                 internal static Type GetCompiledApplicationType (string inputFile, HttpContext context)
84                 {
85                         ApplicationFileParser parser = new ApplicationFileParser (inputFile, context);
86                         AspGenerator generator = new AspGenerator (parser);
87                         Type type = generator.GetCompiledType ();
88                         dependencies = parser.Dependencies;
89                         return type;
90                 }
91
92                 internal override void AddDirective (string directive, Hashtable atts)
93                 {
94                         if (String.Compare (directive, "application", true) != 0 &&
95                             String.Compare (directive, "Import", true) != 0 &&
96                             String.Compare (directive, "Assembly", true) != 0)
97                                 ThrowParseException ("Invalid directive: " + directive);
98
99                         base.AddDirective (directive, atts);
100                 }
101
102                 internal static ArrayList FileDependencies {
103                         get { return dependencies; }
104                 }               
105
106                 internal override string DefaultBaseTypeName {
107                         get { return "System.Web.HttpApplication"; }
108                 }
109
110                 internal override string DefaultDirectiveName {
111                         get { return "application"; }
112                 }
113
114                 internal override string BaseVirtualDir {
115                         get { return Context.Request.ApplicationPath; }
116                 }
117                 
118 #if NET_2_0
119                  internal override TextReader Reader {
120                         get { return reader; }
121                         set { reader = value; }
122                 }
123 #endif
124         }
125
126 }
127