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 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
|
//------------------------------------------------------------------------------
// <copyright file="DataPointer.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
// <owner current="true" primary="false">Microsoft</owner>
//------------------------------------------------------------------------------
#pragma warning disable 618 // ignore obsolete warning about XmlDataDocument
namespace System.Xml {
using System;
using System.Data;
using System.Diagnostics;
internal sealed class DataPointer : IXmlDataVirtualNode {
private XmlDataDocument doc;
private XmlNode node;
private DataColumn column;
private bool fOnValue;
private bool bNeedFoliate = false;
private bool _isInUse;
internal DataPointer( XmlDataDocument doc, XmlNode node ) {
this.doc = doc;
this.node = node;
this.column = null;
this.fOnValue = false;
bNeedFoliate = false;
this._isInUse = true;
AssertValid();
}
internal DataPointer( DataPointer pointer ) {
this.doc = pointer.doc;
this.node = pointer.node;
this.column = pointer.column;
this.fOnValue = pointer.fOnValue;
this.bNeedFoliate = false;
this._isInUse = true;
AssertValid();
}
internal void AddPointer() {
this.doc.AddPointer( (IXmlDataVirtualNode)this );
}
// Returns the row element of the region that the pointer points into
private XmlBoundElement GetRowElement() {
//AssertValid();
XmlBoundElement rowElem;
if ( this.column != null ) {
rowElem = this.node as XmlBoundElement;
Debug.Assert( rowElem != null );
Debug.Assert( rowElem.Row != null );
return rowElem;
}
doc.Mapper.GetRegion( this.node, out rowElem );
return rowElem;
}
private DataRow Row {
get {
//AssertValid();
XmlBoundElement rowElem = GetRowElement();
if ( rowElem == null )
return null;
Debug.Assert( rowElem.Row != null );
return rowElem.Row;
}
}
private static bool IsFoliated( XmlNode node ) {
if (node != null && node is XmlBoundElement)
return((XmlBoundElement)node).IsFoliated;
return true;
}
internal void MoveTo( DataPointer pointer ) {
AssertValid();
// You should not move outside of this document
Debug.Assert( node == this.doc || node.OwnerDocument == this.doc );
this.doc = pointer.doc;
this.node = pointer.node;
this.column = pointer.column;
this.fOnValue = pointer.fOnValue;
AssertValid();
}
private void MoveTo( XmlNode node ) {
//AssertValid();
// You should not move outside of this document
Debug.Assert( node == this.doc || node.OwnerDocument == this.doc );
this.node = node;
this.column = null;
this.fOnValue = false;
AssertValid();
}
private void MoveTo( XmlNode node, DataColumn column, bool fOnValue ) {
//AssertValid();
// You should not move outside of this document
Debug.Assert( node == this.doc || node.OwnerDocument == this.doc );
this.node = node;
this.column = column;
this.fOnValue = fOnValue;
AssertValid();
}
private DataColumn NextColumn( DataRow row, DataColumn col, bool fAttribute, bool fNulls ) {
if (row.RowState == DataRowState.Deleted)
return null;
DataTable table = row.Table;
DataColumnCollection columns = table.Columns;
int iColumn = (col != null) ? col.Ordinal + 1 : 0;
int cColumns = columns.Count;
DataRowVersion rowVersion = ( row.RowState == DataRowState.Detached ) ? DataRowVersion.Proposed : DataRowVersion.Current;
for (; iColumn < cColumns; iColumn++) {
DataColumn c = columns[iColumn];
if (!doc.IsNotMapped( c ) && (c.ColumnMapping == MappingType.Attribute) == fAttribute && (fNulls || ! Convert.IsDBNull( row[c, rowVersion] ) ) )
return c;
}
return null;
}
private DataColumn NthColumn( DataRow row, bool fAttribute, int iColumn, bool fNulls ) {
DataColumn c = null;
while ((c = NextColumn( row, c, fAttribute, fNulls )) != null) {
if (iColumn == 0)
return c;
iColumn = checked((int)iColumn-1);
}
return null;
}
private int ColumnCount( DataRow row, bool fAttribute, bool fNulls ) {
DataColumn c = null;
int count = 0;
while ((c = NextColumn( row, c, fAttribute, fNulls )) != null) {
count++;
}
return count;
}
internal bool MoveToFirstChild() {
RealFoliate();
AssertValid();
if (node == null)
return false;
if (column != null) {
if (fOnValue)
return false;
fOnValue = true;
return true;
}
else if (!IsFoliated( node )) {
// find virtual column elements first
DataColumn c = NextColumn( Row, null, false, false );
if (c != null) {
MoveTo( node, c, doc.IsTextOnly(c) );
return true;
}
}
// look for anything
XmlNode n = doc.SafeFirstChild( node );
if (n != null) {
MoveTo(n);
return true;
}
return false;
}
internal bool MoveToNextSibling() {
RealFoliate();
AssertValid();
if (node != null) {
if (column != null) {
if (fOnValue && !doc.IsTextOnly(column))
return false;
DataColumn c = NextColumn( Row, column, false, false );
if (c != null) {
MoveTo( this.node, c, false );
return true;
}
XmlNode n = doc.SafeFirstChild( node );
if (n != null) {
MoveTo( n );
return true;
}
}
else {
XmlNode n = doc.SafeNextSibling( node );
if (n != null) {
MoveTo(n);
return true;
}
}
}
return false;
}
internal bool MoveToParent() {
RealFoliate();
AssertValid();
if (node != null) {
if (column != null) {
if (fOnValue && !doc.IsTextOnly(column)) {
MoveTo( node, column, false );
return true;
}
if (column.ColumnMapping != MappingType.Attribute) {
MoveTo( node, null, false );
return true;
}
}
else {
XmlNode n = node.ParentNode;
if (n != null) {
MoveTo(n);
return true;
}
}
}
return false;
}
internal bool MoveToOwnerElement() {
RealFoliate();
AssertValid();
if (node != null) {
if (column != null) {
if (fOnValue || doc.IsTextOnly(column) || column.ColumnMapping != MappingType.Attribute)
return false;
MoveTo( node, null, false );
return true;
}
else if (node.NodeType == XmlNodeType.Attribute) {
XmlNode n = ((XmlAttribute)node).OwnerElement;
if (n != null) {
MoveTo( n, null, false );
return true;
}
}
}
return false;
}
internal int AttributeCount {
get {
RealFoliate();
AssertValid();
if (node != null) {
if (column == null && node.NodeType == XmlNodeType.Element) {
if (!IsFoliated( node )) {
return ColumnCount( Row, true, false );
}
else
return node.Attributes.Count;
}
}
return 0;
}
}
internal bool MoveToAttribute( int i ) {
RealFoliate();
AssertValid();
if ( i < 0 )
return false;
if (node != null) {
if ((column == null || column.ColumnMapping == MappingType.Attribute) && node.NodeType == XmlNodeType.Element) {
if (!IsFoliated( node )) {
DataColumn c = NthColumn( Row, true, i, false );
if (c != null) {
MoveTo( node, c, false );
return true;
}
}
else {
XmlNode n = node.Attributes.Item(i);
if (n != null) {
MoveTo( n, null, false );
return true;
}
}
}
}
return false;
}
internal XmlNodeType NodeType {
get {
RealFoliate();
AssertValid();
if (this.node == null) {
return XmlNodeType.None;
}
else if (this.column == null) {
return this.node.NodeType;
}
else if (this.fOnValue) {
return XmlNodeType.Text;
}
else if (this.column.ColumnMapping == MappingType.Attribute) {
return XmlNodeType.Attribute;
}
else {
return XmlNodeType.Element;
}
}
}
internal string LocalName {
get {
RealFoliate();
AssertValid();
if (this.node == null) {
return string.Empty;
}else if (this.column == null) {
String name = node.LocalName;
Debug.Assert( name != null );
if ( IsLocalNameEmpty( this.node.NodeType ) )
return String.Empty;
return name;
}
else if (this.fOnValue) {
return String.Empty;
}
else {
return doc.NameTable.Add(column.EncodedColumnName);
}
}
}
internal string NamespaceURI {
get {
RealFoliate();
AssertValid();
if (this.node == null) {
return string.Empty;
}
else if (this.column == null) {
return node.NamespaceURI;
}
else if (this.fOnValue) {
return string.Empty;
}
else {
return doc.NameTable.Add(column.Namespace);
}
}
}
internal string Name {
get {
RealFoliate();
AssertValid();
if (this.node == null) {
return string.Empty;
}
else if (this.column == null) {
String name = node.Name;
//Again it could be String.Empty at null position
Debug.Assert( name != null );
if ( IsLocalNameEmpty( this.node.NodeType ) )
return String.Empty;
return name;
}
else {
string prefix = Prefix;
string lname = LocalName;
if (prefix != null && prefix.Length > 0) {
if (lname != null && lname.Length > 0) {
return doc.NameTable.Add( prefix + ":" + lname );
}
else {
return prefix;
}
}
else {
return lname;
}
}
}
}
private bool IsLocalNameEmpty ( XmlNodeType nt) {
switch ( nt ) {
case XmlNodeType.None :
case XmlNodeType.Text :
case XmlNodeType.CDATA :
case XmlNodeType.Comment :
case XmlNodeType.Document :
case XmlNodeType.DocumentFragment :
case XmlNodeType.Whitespace :
case XmlNodeType.SignificantWhitespace :
case XmlNodeType.EndElement :
case XmlNodeType.EndEntity :
return true;
case XmlNodeType.Element :
case XmlNodeType.Attribute :
case XmlNodeType.EntityReference :
case XmlNodeType.Entity :
case XmlNodeType.ProcessingInstruction :
case XmlNodeType.DocumentType :
case XmlNodeType.Notation :
case XmlNodeType.XmlDeclaration :
return false;
default :
return true;
}
}
internal string Prefix {
get {
RealFoliate();
AssertValid();
if (this.node == null) {
return string.Empty;
}
else if (this.column == null) {
return node.Prefix;
}
else {
return string.Empty;
}
}
}
internal string Value {
get {
RealFoliate();
AssertValid();
if (this.node == null) {
return null;
}
else if (this.column == null) {
return this.node.Value;
}
else if (this.column.ColumnMapping == MappingType.Attribute || this.fOnValue) {
DataRow row = this.Row;
DataRowVersion rowVersion = ( row.RowState == DataRowState.Detached ) ? DataRowVersion.Proposed : DataRowVersion.Current;
object value = row[ this.column, rowVersion ];
if ( ! Convert.IsDBNull( value ) )
return this.column.ConvertObjectToXml( value );
return null;
}
else {
// column element has no value
return null;
}
}
}
bool IXmlDataVirtualNode.IsOnNode( XmlNode nodeToCheck ) {
RealFoliate();
return nodeToCheck == this.node;
}
bool IXmlDataVirtualNode.IsOnColumn( DataColumn col ) {
RealFoliate();
return col == this.column;
}
internal XmlNode GetNode() {
return this.node;
}
internal bool IsEmptyElement {
get {
RealFoliate();
AssertValid();
if (node != null && column == null) {
//
if (node.NodeType == XmlNodeType.Element) {
return((XmlElement)node).IsEmpty;
}
}
return false;
}
}
internal bool IsDefault {
get {
RealFoliate();
AssertValid();
if (node != null && column == null && node.NodeType == XmlNodeType.Attribute) {
return !((XmlAttribute)node).Specified;
}
return false;
}
}
void IXmlDataVirtualNode.OnFoliated( XmlNode foliatedNode ) {
// update the pointer if the element node has been foliated
if (node == foliatedNode) {
// if already on this node, nothing to do!
if (column == null)
return;
bNeedFoliate = true;
}
}
internal void RealFoliate() {
if ( !bNeedFoliate )
return;
XmlNode n = null;
if (doc.IsTextOnly( column )) {
n = node.FirstChild;
}
else {
if (column.ColumnMapping == MappingType.Attribute) {
n = node.Attributes.GetNamedItem( column.EncodedColumnName, column.Namespace );
}
else {
for (n = node.FirstChild; n != null; n = n.NextSibling) {
if (n.LocalName == column.EncodedColumnName && n.NamespaceURI == column.Namespace)
break;
}
}
if (n != null && fOnValue)
n = n.FirstChild;
}
if (n == null)
throw new InvalidOperationException(Res.GetString(Res.DataDom_Foliation));
// Cannot use MoveTo( n ); b/c the initial state for MoveTo is invalid (region is foliated but this is not)
this.node = n;
this.column = null;
this.fOnValue = false;
AssertValid();
bNeedFoliate = false;
}
//for the 6 properties below, only when the this.column == null that the nodetype could be XmlDeclaration node
internal String PublicId {
get {
XmlNodeType nt = NodeType;
switch ( nt ) {
case XmlNodeType.DocumentType : {
Debug.Assert( this.column == null );
return ( ( XmlDocumentType ) (this.node)).PublicId;
}
case XmlNodeType.Entity : {
Debug.Assert( this.column == null );
return ( ( XmlEntity ) (this.node)).PublicId;
}
case XmlNodeType.Notation : {
Debug.Assert( this.column == null );
return ( ( XmlNotation ) (this.node)).PublicId;
}
}
return null;
}
}
internal String SystemId {
get {
XmlNodeType nt = NodeType;
switch ( nt ) {
case XmlNodeType.DocumentType : {
Debug.Assert( this.column == null );
return ( ( XmlDocumentType ) (this.node)).SystemId;
}
case XmlNodeType.Entity : {
Debug.Assert( this.column == null );
return ( ( XmlEntity ) (this.node)).SystemId;
}
case XmlNodeType.Notation : {
Debug.Assert( this.column == null );
return ( ( XmlNotation ) (this.node)).SystemId;
}
}
return null;
}
}
internal String InternalSubset {
get {
if ( NodeType == XmlNodeType.DocumentType ) {
Debug.Assert( this.column == null );
return ( ( XmlDocumentType ) (this.node)).InternalSubset;
}
return null;
}
}
internal XmlDeclaration Declaration {
get {
XmlNode child = doc.SafeFirstChild(doc);
if ( child != null && child.NodeType == XmlNodeType.XmlDeclaration )
return (XmlDeclaration)child;
return null;
}
}
internal String Encoding {
get {
if ( NodeType == XmlNodeType.XmlDeclaration ) {
Debug.Assert( this.column == null );
return ( ( XmlDeclaration ) (this.node)).Encoding;
} else if ( NodeType == XmlNodeType.Document ) {
XmlDeclaration dec = Declaration;
if ( dec != null )
return dec.Encoding;
}
return null;
}
}
internal String Standalone {
get {
if ( NodeType == XmlNodeType.XmlDeclaration ) {
Debug.Assert( this.column == null );
return ( ( XmlDeclaration ) (this.node)).Standalone;
} else if ( NodeType == XmlNodeType.Document ) {
XmlDeclaration dec = Declaration;
if ( dec != null )
return dec.Standalone;
}
return null;
}
}
internal String Version {
get {
if ( NodeType == XmlNodeType.XmlDeclaration ) {
Debug.Assert( this.column == null );
return ( ( XmlDeclaration ) (this.node)).Version;
} else if ( NodeType == XmlNodeType.Document ) {
XmlDeclaration dec = Declaration;
if ( dec != null )
return dec.Version;
}
return null;
}
}
[System.Diagnostics.Conditional("DEBUG")]
private void AssertValid() {
// This pointer must be int the document list
if ( this.column != null ) {
// We must be on a de-foliated region
XmlBoundElement rowElem = this.node as XmlBoundElement;
Debug.Assert( rowElem != null );
DataRow row = rowElem.Row;
Debug.Assert( row != null );
ElementState state = rowElem.ElementState;
Debug.Assert( state == ElementState.Defoliated, "Region is accessed using column, but it's state is FOLIATED" );
// We cannot be on a column for which the value is DBNull
DataRowVersion rowVersion = ( row.RowState == DataRowState.Detached ) ? DataRowVersion.Proposed : DataRowVersion.Current;
Debug.Assert( ! Convert.IsDBNull( row[ this.column, rowVersion ] ) );
// If we are on the Text column, we should always have fOnValue == true
Debug.Assert( (this.column.ColumnMapping == MappingType.SimpleContent) ? (this.fOnValue == true) : true );
}
}
bool IXmlDataVirtualNode.IsInUse() {
return _isInUse;
}
internal void SetNoLongerUse() {
this.node = null;
this.column = null;
this.fOnValue = false;
this.bNeedFoliate = false;
this._isInUse = false;
}
}
}
|