2006-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Configuration / HttpRuntimeConfigurationHandler.cs
1 //
2 // System.Web.Configuration.HttpRuntimeConfigurationHandler
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Novell, Inc. (http://www.novell.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
31 using System;
32 using System.Collections;
33 using System.Configuration;
34 using System.Security.Cryptography;
35 using System.Xml;
36
37 namespace System.Web.Configuration
38 {
39         class HttpRuntimeConfigurationHandler : IConfigurationSectionHandler
40         {
41                 public object Create (object parent, object context, XmlNode section)
42                 {
43                         if (section.HasChildNodes)
44                                 ThrowException ("Child nodes not allowed here", section.FirstChild);
45
46                         HttpRuntimeConfig config = new HttpRuntimeConfig (parent);
47
48                         config.ExecutionTimeout = AttUIntValue (section, "executionTimeout", 90);
49                         config.MaxRequestLength = AttUIntValue (section, "maxRequestLength", 4096);
50                         config.UseFullyQualifiedRedirectUrl = AttBoolValue (section, "useFullyQualifiedRedirectUrl", false);
51                         config.MinFreeThreads = AttUIntValue (section, "minFreeThreads", 8);
52                         config.MinLocalRequestFreeThreads = AttUIntValue (section, "minFreeLocalRequestFreeThreads", 4);
53                         config.AppRequestQueueLimit = AttUIntValue (section, "appRequestQueueLimit", 100);
54                         config.VersionHeader = AttValue (section, "versionHeader");
55                         config.RequestLengthDiskThreshold = AttUIntValue (section, "requestLengthDiskThreshold", 256);
56
57                         return config;
58                 }
59
60                 //
61                 static bool AttBoolValue (XmlNode node, string name, bool _default)
62                 {
63                         string v = AttValue (node, name);
64                         if (v == null)
65                                 return _default;
66
67                         bool result = (v == "true");
68                         if (!result && v != "false")
69                                 ThrowException ("Invalid boolean value in " + name, node);
70
71                         return result;
72                 }
73
74                 static int AttUIntValue (XmlNode node, string name, int _default)
75                 {
76                         string v = AttValue (node, name);
77                         if (v == null)
78                                 return _default;
79
80                         int result = 0;
81                         try {
82                                 result = (int) UInt32.Parse (v);
83                         } catch {
84                                 ThrowException ("Invalid number in " + name, node);
85                         }
86
87                         return result;
88                 }
89
90
91                 static string AttValue (XmlNode node, string name)
92                 {
93                         return HandlersUtil.ExtractAttributeValue (name, node, true);
94                 }
95
96                 static void ThrowException (string message, XmlNode node)
97                 {
98                         HandlersUtil.ThrowException (message, node);
99                 }
100                 //
101         }
102 }
103