Fix 2.0 attributeusage
[mono.git] / mcs / class / Mono.Security / Mono.Xml / SecurityParser.cs
1 //
2 // Mono.Xml.SecurityParser.cs class implementation
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.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.Security;
34
35 namespace Mono.Xml {
36
37         // convert an XML document into SecurityElement objects
38         [CLSCompliant(false)]
39 #if INSIDE_CORLIB
40         internal
41 #else
42         public
43 #endif
44         class SecurityParser : MiniParser, MiniParser.IHandler, MiniParser.IReader {
45
46                 private SecurityElement root;
47
48                 public SecurityParser () : base () 
49                 {
50                         stack = new Stack ();
51                 }
52
53                 public void LoadXml (string xml) 
54                 {
55                         root = null;
56                         xmldoc = xml;
57                         pos = 0;
58                         stack.Clear ();
59                         Parse (this, this);
60                 }
61
62                 public SecurityElement ToXml () 
63                 {
64                         return root;
65                 }
66
67                 // IReader
68
69                 private string xmldoc;
70                 private int pos;
71
72                 public int Read () 
73                 {
74                         if (pos >= xmldoc.Length)
75                                 return -1;
76                         return (int) xmldoc [pos++];
77                 }
78
79                 // IHandler
80
81                 private SecurityElement current;
82                 private Stack stack;
83
84                 public void OnStartParsing (MiniParser parser) {}
85
86                 public void OnStartElement (string name, MiniParser.IAttrList attrs) 
87                 {
88                         SecurityElement newel = new SecurityElement (name); 
89                         if (root == null) {
90                                 root = newel;
91                                 current = newel;
92                         }
93                         else {
94                                 SecurityElement parent = (SecurityElement) stack.Peek ();
95                                 parent.AddChild (newel);
96                         }
97                         stack.Push (newel);
98                         current = newel;
99                         // attributes
100                         int n = attrs.Length;
101                         for (int i=0; i < n; i++)
102                                 current.AddAttribute (attrs.GetName (i), SecurityElement.Escape (attrs.GetValue (i)));
103                 }
104
105                 public void OnEndElement (string name) 
106                 {
107                         current = (SecurityElement) stack.Pop ();
108                 }
109
110                 public void OnChars (string ch) 
111                 {
112                         current.Text = SecurityElement.Escape (ch);
113                 }
114
115                 public void OnEndParsing (MiniParser parser) {}
116         }
117 }