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 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
//
// System.Xml.XmlNodeReader2.cs - splitted XmlNodeReader that manages entities.
//
// Author:
// Duncan Mak (duncan@ximian.com)
// Atsushi Enomoto (ginga@kit.hi-ho.ne.jp)
//
// (C) Ximian, Inc.
// (C) Atsushi Enomoto
//
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
#if NET_2_0
using System.Collections.Generic;
#endif
using System.Xml;
using System.Xml.Schema;
using System.Text;
using Mono.Xml;
namespace System.Xml
{
#if NET_2_0
public class XmlNodeReader : XmlReader, IHasXmlParserContext, IXmlNamespaceResolver
#else
public class XmlNodeReader : XmlReader, IHasXmlParserContext
#endif
{
XmlReader entity;
XmlNodeReaderImpl source;
bool entityInsideAttribute;
bool insideAttribute;
#region Constructor
public XmlNodeReader (XmlNode node)
{
source = new XmlNodeReaderImpl (node);
}
private XmlNodeReader (XmlNodeReaderImpl entityContainer, bool insideAttribute)
{
source = new XmlNodeReaderImpl (entityContainer);
this.entityInsideAttribute = insideAttribute;
}
#endregion
#region Properties
private XmlReader Current {
get { return entity != null && entity.ReadState != ReadState.Initial ? entity : source; }
}
public override int AttributeCount {
get { return Current.AttributeCount; }
}
public override string BaseURI {
get { return Current.BaseURI; }
}
#if NET_2_0
public override bool CanReadBinaryContent {
get { return true; }
}
/*
public override bool CanReadValueChunk {
get { return true; }
}
*/
#else
internal override bool CanReadBinaryContent {
get { return true; }
}
/*
internal override bool CanReadValueChunk {
get { return true; }
}
*/
#endif
public override bool CanResolveEntity {
get { return true; }
}
public override int Depth {
get {
// On EndEntity, depth is the same as that
// of EntityReference.
if (entity != null && entity.ReadState == ReadState.Interactive)
return source.Depth + entity.Depth + 1;
else
return source.Depth;
}
}
public override bool EOF {
get { return source.EOF; }
}
public override bool HasAttributes {
get { return Current.HasAttributes; }
}
public override bool HasValue {
get { return Current.HasValue; }
}
public override bool IsDefault {
get { return Current.IsDefault; }
}
public override bool IsEmptyElement {
get { return Current.IsEmptyElement; }
}
#if NET_2_0
#else
public override string this [int i] {
get { return GetAttribute (i); }
}
public override string this [string name] {
get { return GetAttribute (name); }
}
public override string this [string name, string namespaceURI] {
get { return GetAttribute (name, namespaceURI); }
}
#endif
public override string LocalName {
get { return Current.LocalName; }
}
public override string Name {
get { return Current.Name; }
}
public override string NamespaceURI {
get { return Current.NamespaceURI; }
}
public override XmlNameTable NameTable {
get { return Current.NameTable; }
}
public override XmlNodeType NodeType {
get {
if (entity != null)
return entity.ReadState == ReadState.Initial ?
source.NodeType :
entity.EOF ? XmlNodeType.EndEntity :
entity.NodeType;
else
return source.NodeType;
}
}
XmlParserContext IHasXmlParserContext.ParserContext {
get { return ((IHasXmlParserContext) Current).ParserContext; }
}
public override string Prefix {
get { return Current.Prefix; }
}
#if NET_2_0
#else
public override char QuoteChar {
get { return '"'; }
}
#endif
public override ReadState ReadState {
get { return entity != null ? ReadState.Interactive : source.ReadState; }
}
#if NET_2_0
public override IXmlSchemaInfo SchemaInfo {
get { return entity != null ? entity.SchemaInfo : source.SchemaInfo; }
}
#endif
public override string Value {
get { return Current.Value; }
}
public override string XmlLang {
get { return Current.XmlLang; }
}
public override XmlSpace XmlSpace {
get { return Current.XmlSpace; }
}
#endregion
#region Methods
// If current entityReference is a child of an attribute,
// then MoveToAttribute simply means that we no more need this entity Current.
// Otherwise, this invokation means that
// it is expected to move to resolved (maybe) element's attribute.
//
// This rule applies to many methods like MoveTo*Attribute().
public override void Close ()
{
if (entity != null)
entity.Close ();
source.Close ();
}
public override string GetAttribute (int attributeIndex)
{
return Current.GetAttribute (attributeIndex);
}
public override string GetAttribute (string name)
{
return Current.GetAttribute (name);
}
public override string GetAttribute (string name, string namespaceURI)
{
return Current.GetAttribute (name, namespaceURI);
}
#if NET_2_0
IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope (XmlNamespaceScope scope)
{
return ((IXmlNamespaceResolver) Current).GetNamespacesInScope (scope);
}
#endif
public override string LookupNamespace (string prefix)
{
return Current.LookupNamespace (prefix);
}
#if NET_2_0
string IXmlNamespaceResolver.LookupPrefix (string ns)
{
return ((IXmlNamespaceResolver) Current).LookupPrefix (ns);
}
#endif
public override void MoveToAttribute (int attributeIndex)
{
if (entity != null && entityInsideAttribute) {
entity.Close ();
entity = null;
}
Current.MoveToAttribute (attributeIndex);
insideAttribute = true;
}
public override bool MoveToAttribute (string name)
{
if (entity != null && !entityInsideAttribute)
return entity.MoveToAttribute (name);
if (!source.MoveToAttribute (name))
return false;
if (entity != null && entityInsideAttribute) {
entity.Close ();
entity = null;
}
insideAttribute = true;
return true;
}
public override bool MoveToAttribute (string name, string namespaceURI)
{
if (entity != null && !entityInsideAttribute)
return entity.MoveToAttribute (name, namespaceURI);
if (!source.MoveToAttribute (name, namespaceURI))
return false;
if (entity != null && entityInsideAttribute) {
entity.Close ();
entity = null;
}
insideAttribute = true;
return true;
}
public override bool MoveToElement ()
{
if (entity != null && entityInsideAttribute)
entity = null;
if (!Current.MoveToElement ())
return false;
insideAttribute = false;
return true;
}
public override bool MoveToFirstAttribute ()
{
if (entity != null && !entityInsideAttribute)
return entity.MoveToFirstAttribute ();
if (!source.MoveToFirstAttribute ())
return false;
if (entity != null && entityInsideAttribute) {
entity.Close ();
entity = null;
}
insideAttribute = true;
return true;
}
public override bool MoveToNextAttribute ()
{
if (entity != null && !entityInsideAttribute)
return entity.MoveToNextAttribute ();
if (!source.MoveToNextAttribute ())
return false;
if (entity != null && entityInsideAttribute) {
entity.Close ();
entity = null;
}
insideAttribute = true;
return true;
}
public override bool Read ()
{
insideAttribute = false;
if (entity != null && (entityInsideAttribute || entity.EOF))
entity = null;
if (entity != null) {
entity.Read ();
return true; // either success or EndEntity
}
else
return source.Read ();
}
public override bool ReadAttributeValue ()
{
if (entity != null && entityInsideAttribute) {
if (entity.EOF)
entity = null;
else {
entity.Read ();
return true; // either success or EndEntity
}
}
return Current.ReadAttributeValue ();
}
#if NET_2_0
public override int ReadContentAsBase64 (byte [] buffer, int index, int count)
{
// return base.ReadContentAsBase64 (
// buffer, offset, length);
// FIXME: This is problematic wrt end of entity.
if (entity != null)
return entity.ReadContentAsBase64 (
buffer, index, count);
else
return source.ReadContentAsBase64 (
buffer, index, count);
}
public override int ReadContentAsBinHex (byte [] buffer, int index, int count)
{
// return base.ReadContentAsBinHex (
// buffer, offset, length);
// FIXME: This is problematic wrt end of entity.
if (entity != null)
return entity.ReadContentAsBinHex (
buffer, index, count);
else
return source.ReadContentAsBinHex (
buffer, index, count);
}
public override int ReadElementContentAsBase64 (byte [] buffer, int index, int count)
{
// return base.ReadElementContentAsBase64 (
// buffer, index, count);
// FIXME: This is problematic wrt end of entity.
if (entity != null)
return entity.ReadElementContentAsBase64 (
buffer, index, count);
else
return source.ReadElementContentAsBase64 (
buffer, index, count);
}
public override int ReadElementContentAsBinHex (
byte [] buffer, int index, int count)
{
// return base.ReadElementContentAsBinHex (
// buffer, index, count);
// FIXME: This is problematic wrt end of entity.
if (entity != null)
return entity.ReadElementContentAsBinHex (
buffer, index, count);
else
return source.ReadElementContentAsBinHex (
buffer, index, count);
}
#endif
public override string ReadString ()
{
return base.ReadString ();
}
public override void ResolveEntity ()
{
if (entity != null)
entity.ResolveEntity ();
else {
if (source.NodeType != XmlNodeType.EntityReference)
throw new InvalidOperationException ("The current node is not an Entity Reference");
entity = new XmlNodeReader (source, insideAttribute);
}
}
public override void Skip ()
{
if (entity != null && entityInsideAttribute)
entity = null;
Current.Skip ();
}
#endregion
}
}
|