[Microsoft.Build] Fix expected output newline from ProcessWrapper.OutputStreamChanged...
[mono.git] / mcs / class / Mainsoft.Web / Mainsoft.Web.AspnetConfig / aspnetconfig / HttpHandlersSectionHandler.cs
1 //
2 // System.Web.Configuration.HttpHandlersSectionHandler
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc (http://www.ximian.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.Collections;
32 using System.Configuration;
33 using System.Xml;
34 using System.Globalization;
35 using System;
36
37 namespace Mainsoft.Web.Configuration
38 {
39         
40
41         internal class HandlersUtil
42         {
43                 private HandlersUtil ()
44                 {
45                 }
46
47                 static internal string ExtractAttributeValue (string attKey, XmlNode node)
48                 {
49                         return ExtractAttributeValue (attKey, node, false);
50                 }
51                         
52                 static internal string ExtractAttributeValue (string attKey, XmlNode node, bool optional)
53                 {
54                         return ExtractAttributeValue (attKey, node, optional, false);
55                 }
56                 
57                 static internal string ExtractAttributeValue (string attKey, XmlNode node, bool optional,
58                                                               bool allowEmpty)
59                 {
60                         if (node.Attributes == null) {
61                                 if (optional)
62                                         return null;
63
64                                 ThrowException ("Required attribute not found: " + attKey, node);
65                         }
66
67                         XmlNode att = node.Attributes.RemoveNamedItem (attKey);
68                         if (att == null) {
69                                 if (optional)
70                                         return null;
71                                 ThrowException ("Required attribute not found: " + attKey, node);
72                         }
73
74                         string value = att.Value;
75                         if (!allowEmpty && value == String.Empty) {
76                                 string opt = optional ? "Optional" : "Required";
77                                 ThrowException (opt + " attribute is empty: " + attKey, node);
78                         }
79
80                         return value;
81                 }
82
83                 static internal void ThrowException (string msg, XmlNode node)
84                 {
85                         if (node != null && node.Name != String.Empty)
86                                 msg = msg + " (node name: " + node.Name + ") ";
87                         throw new ConfigurationException (msg, node);
88                 }
89         }
90 }
91