~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/Mono.Cecil/Mono.Cecil/Mono.Xml/SecurityParser.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12
 
//
13
 
// Permission is hereby granted, free of charge, to any person obtaining
14
 
// a copy of this software and associated documentation files (the
15
 
// "Software"), to deal in the Software without restriction, including
16
 
// without limitation the rights to use, copy, modify, merge, publish,
17
 
// distribute, sublicense, and/or sell copies of the Software, and to
18
 
// permit persons to whom the Software is furnished to do so, subject to
19
 
// the following conditions:
20
 
//
21
 
// The above copyright notice and this permission notice shall be
22
 
// included in all copies or substantial portions of the Software.
23
 
//
24
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25
 
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26
 
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27
 
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28
 
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29
 
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30
 
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31
 
//
32
 
 
33
 
using System;
34
 
using System.Collections;
35
 
using System.IO;
36
 
using System.Security;
37
 
 
38
 
namespace Mono.Xml {
39
 
 
40
 
        // convert an XML document into SecurityElement objects
41
 
        internal sealed class SecurityParser : SmallXmlParser, SmallXmlParser.IContentHandler {
42
 
 
43
 
                private SecurityElement root;
44
 
 
45
 
                public SecurityParser () : base ()
46
 
                {
47
 
                        stack = new Stack ();
48
 
                }
49
 
 
50
 
                public void LoadXml (string xml)
51
 
                {
52
 
                        root = null;
53
 
#if CF_1_0
54
 
                        stack = new Stack ();
55
 
#else
56
 
                        stack.Clear ();
57
 
#endif
58
 
                        Parse (new StringReader (xml), this);
59
 
                }
60
 
 
61
 
                public SecurityElement ToXml ()
62
 
                {
63
 
                        return root;
64
 
                }
65
 
 
66
 
                // IContentHandler
67
 
 
68
 
                private SecurityElement current;
69
 
                private Stack stack;
70
 
 
71
 
                public void OnStartParsing (SmallXmlParser parser) {}
72
 
 
73
 
                public void OnProcessingInstruction (string name, string text) {}
74
 
 
75
 
                public void OnIgnorableWhitespace (string s) {}
76
 
 
77
 
                public void OnStartElement (string name, SmallXmlParser.IAttrList attrs)
78
 
                {
79
 
                        SecurityElement newel = new SecurityElement (name);
80
 
                        if (root == null) {
81
 
                                root = newel;
82
 
                                current = newel;
83
 
                        }
84
 
                        else {
85
 
                                SecurityElement parent = (SecurityElement) stack.Peek ();
86
 
                                parent.AddChild (newel);
87
 
                        }
88
 
                        stack.Push (newel);
89
 
                        current = newel;
90
 
                        // attributes
91
 
                        int n = attrs.Length;
92
 
                        for (int i=0; i < n; i++)
93
 
                                current.AddAttribute (attrs.GetName (i), attrs.GetValue (i));
94
 
                }
95
 
 
96
 
                public void OnEndElement (string name)
97
 
                {
98
 
                        current = (SecurityElement) stack.Pop ();
99
 
                }
100
 
 
101
 
                public void OnChars (string ch)
102
 
                {
103
 
                        current.Text = ch;
104
 
                }
105
 
 
106
 
                public void OnEndParsing (SmallXmlParser parser) {}
107
 
        }
108
 
}
109