2007-11-03 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.Web;
34 using System.Web.Compilation;
35
36 namespace System.Web.UI
37 {
38         sealed class ApplicationFileParser : TemplateParser
39         {
40                 static ArrayList dependencies;
41
42                 public ApplicationFileParser (string fname, HttpContext context)
43                 {
44                         InputFile = fname;
45                         Context = context;
46                 }
47                 
48                 protected override Type CompileIntoType ()
49                 {
50                         return GlobalAsaxCompiler.CompileApplicationType (this);
51                 }
52
53                 internal static Type GetCompiledApplicationType (string inputFile, HttpContext context)
54                 {
55                         ApplicationFileParser parser = new ApplicationFileParser (inputFile, context);
56                         AspGenerator generator = new AspGenerator (parser);
57                         Type type = generator.GetCompiledType ();
58                         dependencies = parser.Dependencies;
59                         return type;
60                 }
61
62                 internal override void AddDirective (string directive, Hashtable atts)
63                 {
64                         if (String.Compare (directive, "application", true) != 0 &&
65                             String.Compare (directive, "Import", true) != 0 &&
66                             String.Compare (directive, "Assembly", true) != 0)
67                                 ThrowParseException ("Invalid directive: " + directive);
68
69                         base.AddDirective (directive, atts);
70                 }
71
72                 internal static ArrayList FileDependencies {
73                         get { return dependencies; }
74                 }
75                 
76                 internal override Type DefaultBaseType {
77                         get { return typeof (HttpApplication); }
78                 }
79
80                 internal override string DefaultBaseTypeName {
81                         get { return "System.Web.HttpApplication"; }
82                 }
83
84                 internal override string DefaultDirectiveName {
85                         get { return "application"; }
86                 }
87
88                 internal override string BaseVirtualDir {
89                         get { return Context.Request.ApplicationPath; }
90                 }
91         }
92
93 }
94