| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- //
- // System.Web.UI.PageParser
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.Collections;
- using System.Text;
- using System.Web;
- using System.Web.Compilation;
- using System.Web.Util;
- namespace System.Web.UI
- {
- public sealed class PageParser : TemplateControlParser
- {
- bool enableSessionState = true;
- bool readonlySessionState;
- string responseEncoding;
- string contentType;
- int codepage = -1;
- // FIXME: this is here just for DesignTimeTemplateParser. Anything to do?
- internal PageParser ()
- {
- }
-
- internal PageParser (string virtualPath, string inputFile, HttpContext context)
- {
- Context = context;
- BaseVirtualDir = UrlUtils.GetDirectory (virtualPath);
- InputFile = inputFile;
- AddApplicationAssembly ();
- }
- public static IHttpHandler GetCompiledPageInstance (string virtualPath,
- string inputFile,
- HttpContext context)
- {
- PageParser pp = new PageParser (virtualPath, inputFile, context);
- IHttpHandler h = (IHttpHandler) pp.GetCompiledInstance ();
- return h;
- }
- internal override void ProcessMainAttributes (Hashtable atts)
- {
- string enabless = GetString (atts, "EnableSessionState", null);
- if (enabless != null) {
- readonlySessionState = (String.Compare (enabless, "readonly", true) == 0);
- if (readonlySessionState == true || String.Compare (enabless, "true", true) == 0) {
- enableSessionState = true;
- } else if (String.Compare (enabless, "false", true) == 0) {
- enableSessionState = false;
- } else {
- ThrowParseException ("Invalid value for EnableSessionState: " + enabless);
- }
- }
- string cp = GetString (atts, "CodePage", null);
- if (cp != null) {
- if (responseEncoding != null)
- ThrowParseException ("CodePage and ResponseEncoding are " +
- "mutually exclusive.");
- int codepage = 0;
- try {
- codepage = (int) UInt32.Parse (cp);
- } catch {
- ThrowParseException ("Invalid value for CodePage: " + cp);
- }
- try {
- Encoding.GetEncoding (codepage);
- } catch {
- ThrowParseException ("Unsupported codepage: " + cp);
- }
- }
-
- responseEncoding = GetString (atts, "ResponseEncoding", null);
- if (responseEncoding != null) {
- if (codepage != -1)
- ThrowParseException ("CodePage and ResponseEncoding are " +
- "mutually exclusive.");
- try {
- Encoding.GetEncoding (responseEncoding);
- } catch {
- ThrowParseException ("Unsupported encoding: " + responseEncoding);
- }
- }
-
- contentType = GetString (atts, "ContentType", null);
- // Ignored by now
- GetString (atts, "Buffer", null);
- GetString (atts, "ClientTarget", null);
- GetString (atts, "Culture", null);
- GetString (atts, "EnableViewStateMac", null);
- GetString (atts, "ErrorPage", null);
- GetString (atts, "LCID", null);
- GetString (atts, "Trace", null);
- GetString (atts, "TraceMode", null);
- GetString (atts, "UICulture", null);
- GetBool (atts, "ValidateRequest", true);
- base.ProcessMainAttributes (atts);
- }
-
- protected override Type CompileIntoType ()
- {
- AspGenerator generator = new AspGenerator (this);
- return generator.GetCompiledType ();
- }
- internal bool EnableSessionState {
- get { return enableSessionState; }
- }
-
- internal bool ReadOnlySessionState {
- get { return readonlySessionState; }
- }
-
- internal override Type DefaultBaseType
- {
- get {
- return typeof (Page);
- }
- }
- internal override string DefaultDirectiveName
- {
- get {
- return "page";
- }
- }
- internal string ResponseEncoding {
- get { return responseEncoding; }
- }
- internal string ContentType {
- get { return contentType; }
- }
- internal int CodePage {
- get { return codepage; }
- }
- }
- }
|