Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XmlTextReader.cs « Core « Xml « System « System.Xml « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ce8ee9b56f7eee17eb835544441da25e2f2c959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398

//------------------------------------------------------------------------------
// <copyright file="XmlTextReader.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">[....]</owner>
//------------------------------------------------------------------------------

using System;
using System.IO;
using System.Text;
using System.Xml.Schema;
using System.Collections;
using System.Security.Policy;
using System.Collections.Generic;
using System.Security.Permissions;
using System.Runtime.Versioning;

namespace System.Xml {

    [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
    [PermissionSetAttribute( SecurityAction.InheritanceDemand, Name = "FullTrust" )]
    public class XmlTextReader : XmlReader, IXmlLineInfo, IXmlNamespaceResolver {
//
// Member fields
//
        XmlTextReaderImpl impl;
//
//
// Constructors
//
        protected XmlTextReader() {
            impl = new XmlTextReaderImpl();
            impl.OuterReader = this;
        }

        protected XmlTextReader( XmlNameTable nt ) {
            impl = new XmlTextReaderImpl( nt );
            impl.OuterReader = this;
        }

        public XmlTextReader( Stream input ) {
            impl = new XmlTextReaderImpl( input );
            impl.OuterReader = this;
        }

        public XmlTextReader( string url, Stream input ) {
            impl = new XmlTextReaderImpl( url, input );
            impl.OuterReader = this;
        }

        public XmlTextReader( Stream input, XmlNameTable nt ) { 
            impl = new XmlTextReaderImpl( input, nt );
            impl.OuterReader = this;
        }

        public XmlTextReader( string url, Stream input, XmlNameTable nt ) {
            impl = new XmlTextReaderImpl( url, input, nt );
            impl.OuterReader = this;
        }

        public XmlTextReader( TextReader input ) {
            impl = new XmlTextReaderImpl( input );
            impl.OuterReader = this;
        }

        public XmlTextReader( string url, TextReader input ) { 
            impl = new XmlTextReaderImpl( url, input );
            impl.OuterReader = this;
        }

        public XmlTextReader( TextReader input, XmlNameTable nt ) {
            impl = new XmlTextReaderImpl( input, nt );
            impl.OuterReader = this;
        }

        public XmlTextReader( string url, TextReader input, XmlNameTable nt ) {
            impl = new XmlTextReaderImpl( url, input, nt );
            impl.OuterReader = this;
        }

        public XmlTextReader( Stream xmlFragment, XmlNodeType fragType, XmlParserContext context ) {
            impl = new XmlTextReaderImpl( xmlFragment, fragType, context );
            impl.OuterReader = this;
        }

        public XmlTextReader( string xmlFragment, XmlNodeType fragType, XmlParserContext context ) {
            impl = new XmlTextReaderImpl( xmlFragment, fragType, context );
            impl.OuterReader = this;
        }

        [ResourceConsumption(ResourceScope.Machine)]
        [ResourceExposure(ResourceScope.Machine)]
        public XmlTextReader( string url ) {
            impl = new XmlTextReaderImpl( url, new NameTable() );
            impl.OuterReader = this;
        }

        [ResourceConsumption(ResourceScope.Machine)]
        [ResourceExposure(ResourceScope.Machine)]
        public XmlTextReader( String url, XmlNameTable nt ) {
            impl = new XmlTextReaderImpl( url, nt );
            impl.OuterReader = this;
        }
//
// XmlReader members
//
        public override XmlNodeType NodeType { 
            get { return impl.NodeType; } 
        }

        public override string Name { 
            get { return impl.Name; } 
        }

        public override string LocalName { 
            get { return impl.LocalName; } 
        }

        public override string NamespaceURI { 
            get { return impl.NamespaceURI; } 
        }

        public override string Prefix { 
            get { return impl.Prefix; } 
        }

        public override bool HasValue { 
            get { return impl.HasValue; } 
        }

        public override string Value { 
            get { return impl.Value; } 
        }

        public override int Depth { 
            get { return impl.Depth; } 
        }

        public override string BaseURI { 
            get { return impl.BaseURI; } 
        }

        public override bool IsEmptyElement { 
            get { return impl.IsEmptyElement; } 
        }

        public override bool IsDefault { 
            get { return impl.IsDefault; } 
        }

        public override char QuoteChar { 
            get { return impl.QuoteChar; } 
        }

        public override XmlSpace XmlSpace { 
            get { return impl.XmlSpace; } 
        }

        public override string XmlLang { 
            get { return impl.XmlLang; } 
        }

        // XmlTextReader does not override SchemaInfo, ValueType and ReadTypeValue

        public override int AttributeCount { get { return impl.AttributeCount; } }

        public override string GetAttribute( string name ) {
            return impl.GetAttribute( name );
        }

        public override string GetAttribute( string localName, string namespaceURI ) {
            return impl.GetAttribute( localName, namespaceURI );
        }

        public override string GetAttribute( int i ) {
            return impl.GetAttribute( i );
        }

        public override bool MoveToAttribute( string name ) {
            return impl.MoveToAttribute( name );
        }

        public override bool MoveToAttribute( string localName, string namespaceURI ) {
            return impl.MoveToAttribute( localName, namespaceURI );
        }

        public override void MoveToAttribute( int i ) {
            impl.MoveToAttribute( i );
        }

        public override bool MoveToFirstAttribute() {
            return impl.MoveToFirstAttribute();
        }

        public override bool MoveToNextAttribute() {
            return impl.MoveToNextAttribute();
        }

        public override bool MoveToElement() {
            return impl.MoveToElement();
        }

        public override bool ReadAttributeValue() {
            return impl.ReadAttributeValue();
        }

        public override bool Read() {
            return impl.Read();
        }

        public override bool EOF { 
            get { return impl.EOF; } 
        }
        
        public override void Close() {
            impl.Close();
        }

        public override ReadState ReadState { 
            get { return impl.ReadState; } 
        }
        
        public override void Skip() {
            impl.Skip();
        }

        public override XmlNameTable NameTable { 
            get { return impl.NameTable; } 
        }

        public override String LookupNamespace( String prefix ) {
            string ns = impl.LookupNamespace( prefix );
            if ( ns != null && ns.Length == 0 ) {
                ns = null;
            }
            return ns;
        }

        public override bool CanResolveEntity  { 
            get { return true; } 
        }

        public override void ResolveEntity() {
            impl.ResolveEntity();
        }

    // Binary content access methods
        public override bool CanReadBinaryContent {
            get { return true; }
        }

        public override int ReadContentAsBase64( byte[] buffer, int index, int count ) {
            return impl.ReadContentAsBase64( buffer, index, count );
        }

        public override int ReadElementContentAsBase64( byte[] buffer, int index, int count ) {
            return impl.ReadElementContentAsBase64( buffer, index, count );
        }

        public override int ReadContentAsBinHex( byte[] buffer, int index, int count ) {
            return impl.ReadContentAsBinHex( buffer, index, count );
        }

        public override int ReadElementContentAsBinHex( byte[] buffer, int index, int count ) {
            return impl.ReadElementContentAsBinHex( buffer, index, count );
        }

    // Text streaming methods

        // XmlTextReader does do support streaming of Value (there are backwards compatibility issues when enabled)
        public override bool CanReadValueChunk { 
            get { return false; }
        }

        // Overriden helper methods

        public override string ReadString() {
            impl.MoveOffEntityReference();
            return base.ReadString();
        }
        
//
// IXmlLineInfo members
//
        public bool HasLineInfo() { return true; }

        public int LineNumber { get { return impl.LineNumber; } }

        public int LinePosition { get { return impl.LinePosition; } }

//
// IXmlNamespaceResolver members
//
        IDictionary<string,string> IXmlNamespaceResolver.GetNamespacesInScope( XmlNamespaceScope scope ) {
            return impl.GetNamespacesInScope( scope );
        }

        string IXmlNamespaceResolver.LookupNamespace(string prefix) {
            return impl.LookupNamespace( prefix );
        }

        string IXmlNamespaceResolver.LookupPrefix( string namespaceName ) {
            return impl.LookupPrefix( namespaceName );
        }

// This pragma disables a warning that the return type is not CLS-compliant, but generics are part of CLS in Whidbey. 
#pragma warning disable 3002
        // FXCOP: ExplicitMethodImplementationsInUnsealedClassesHaveVisibleAlternates
        // public versions of IXmlNamespaceResolver methods, so that XmlTextReader subclasses can access them
        public IDictionary<string,string> GetNamespacesInScope( XmlNamespaceScope scope ) {
            return impl.GetNamespacesInScope( scope );
        }
#pragma warning restore 3002

//
// XmlTextReader 
//
        public bool Namespaces {
            get { return impl.Namespaces; }
            set { impl.Namespaces = value; }
        }

        public bool Normalization {
            get { return impl.Normalization; }
            set { impl.Normalization = value; }
        }

        public Encoding Encoding {
            get { return impl.Encoding; } 
        }

        public WhitespaceHandling WhitespaceHandling {
            get { return impl.WhitespaceHandling; }
            set { impl.WhitespaceHandling = value; }
        }

        [Obsolete("Use DtdProcessing property instead.")]
        public bool ProhibitDtd {
            get { return impl.DtdProcessing == DtdProcessing.Prohibit; }
            set { impl.DtdProcessing = value ? DtdProcessing.Prohibit : DtdProcessing.Parse; }
        }

        public DtdProcessing DtdProcessing {
            get { return impl.DtdProcessing; }
            set { impl.DtdProcessing = value; }
        }

        public EntityHandling EntityHandling {
            get { return impl.EntityHandling; }
            set { impl.EntityHandling = value; }
        }

        public XmlResolver XmlResolver {
            set { impl.XmlResolver = value; }
        }

        public void ResetState() {
            impl.ResetState();
        }

        public TextReader GetRemainder() {
            return impl.GetRemainder();
        }

        public int ReadChars( char[] buffer, int index, int count ) {
            return impl.ReadChars( buffer, index, count );
        }

        public int ReadBase64( byte[] array, int offset, int len ) {
            return impl.ReadBase64( array, offset, len );
        }

        public int ReadBinHex( byte[] array, int offset, int len ) {
            return impl.ReadBinHex( array, offset, len );
        }
//
// Internal helper methods
//
        internal XmlTextReaderImpl Impl {
            get { return impl; }
        }

        internal override XmlNamespaceManager NamespaceManager {
            get { return impl.NamespaceManager; }
        }

        // NOTE: System.Data.SqlXml.XmlDataSourceResolver accesses this property via reflection
        internal bool XmlValidatingReaderCompatibilityMode {
            set { impl.XmlValidatingReaderCompatibilityMode = value; }
        }

        internal override IDtdInfo DtdInfo {
            get { return impl.DtdInfo; }
        }
    }
}