File: TraceXPathNavigator.cs

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (982 lines) | stat: -rw-r--r-- 31,194 bytes parent folder | download | duplicates (7)
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
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------

namespace System.ServiceModel.Diagnostics
{
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Xml;
    using System.Xml.XPath;
    using System.Globalization;
    using System.Text;
    using System.IO;
    using System.Runtime;

    // We have to put something here so that when this item appears in the
    // debugger, ToString() isn't called. Calling ToString() can cause bad behavior.
    [DebuggerDisplay("")]
    class TraceXPathNavigator : XPathNavigator
    {
        const int UnlimitedSize = -1;
        ElementNode root = null;
        TraceNode current = null;
        bool closed = false;
        XPathNodeType state = XPathNodeType.Element;
        int maxSize;
        long currentSize;

        public TraceXPathNavigator(int maxSize)
        {
            this.maxSize = maxSize;
            this.currentSize = 0;
        }

        interface IMeasurable
        {
            int Size { get; }
        }

        class TraceNode
        {
            protected TraceNode(XPathNodeType nodeType, ElementNode parent)
            {
                this.nodeType = nodeType;
                this.parent = parent;
            }

            internal XPathNodeType NodeType
            {
                get { return this.nodeType; }
            }

            XPathNodeType nodeType;
            internal ElementNode parent;
        }

        class CommentNode : TraceNode, IMeasurable
        {
            internal CommentNode(string text, ElementNode parent)
                : base(XPathNodeType.Comment, parent)
            {
                this.nodeValue = text;
            }

            internal string nodeValue;

            public int Size
            {
                get
                {
                    return this.nodeValue.Length + 8; // <!--XXX-->
                }
            }
        }

        class ElementNode : TraceNode, IMeasurable
        {
            int attributeIndex = 0;
            int elementIndex = 0;

            internal string name;
            internal string prefix;
            internal string xmlns;
            internal List<TraceNode> childNodes = new List<TraceNode>();
            internal List<AttributeNode> attributes = new List<AttributeNode>();
            internal TextNode text;
            internal bool movedToText = false;

            internal ElementNode(string name, string prefix, ElementNode parent, string xmlns)
                : base(XPathNodeType.Element, parent)
            {
                this.name = name;
                this.prefix = prefix;
                this.xmlns = xmlns;
            }

            internal void Add(TraceNode node)
            {
                this.childNodes.Add(node);
            }

            //This method returns all subnodes with the given path of local names. Namespaces are ignored. 
            //For all path elements but the last one, the first match is taken. For the last path element, all matches are returned.
            internal IEnumerable<ElementNode> FindSubnodes(string[] headersPath)
            {
#pragma warning disable 618
                Fx.Assert(null != headersPath, "Headers path should not be null");
                Fx.Assert(headersPath.Length > 0, "There should be more than one item in the headersPath array.");
#pragma warning restore 618

                if (null == headersPath)
                {
                    throw new ArgumentNullException("headersPath");
                }
                ElementNode node = this;
                if (String.CompareOrdinal(node.name, headersPath[0]) != 0)
                {
                    node = null;
                }
                int i = 0;
                while (null != node && ++i < headersPath.Length)
                {
#pragma warning disable 618
                    Fx.Assert(null != headersPath[i], "None of the elements in headersPath should be null.");
#pragma warning restore 618
                    ElementNode subNode = null;
                    if (null != node.childNodes)
                    {
                        foreach (TraceNode child in node.childNodes)
                        {
                            if (child.NodeType == XPathNodeType.Element)
                            {
                                ElementNode childNode = child as ElementNode;
                                if (null != childNode && 0 == String.CompareOrdinal(childNode.name, headersPath[i]))
                                {
                                    if (headersPath.Length == i + 1)
                                    {
                                        yield return childNode;
                                    }
                                    else
                                    {
                                        subNode = childNode;
                                        break;
                                    }
                                }
                            }
                        }
                    }

                    node = subNode;
                }
            }

            internal TraceNode MoveToNext()
            {
                TraceNode retval = null;
                if ((this.elementIndex + 1) < this.childNodes.Count)
                {
                    ++this.elementIndex;
                    retval = this.childNodes[this.elementIndex];
                }
                return retval;
            }

            internal bool MoveToFirstAttribute()
            {
                this.attributeIndex = 0;
                return null != this.attributes && this.attributes.Count > 0;
            }

            internal bool MoveToNextAttribute()
            {
                bool retval = false;
                if ((this.attributeIndex + 1) < this.attributes.Count)
                {
                    ++this.attributeIndex;
                    retval = true;
                }
                return retval;
            }

            internal void Reset()
            {
                this.attributeIndex = 0;
                this.elementIndex = 0;
                this.movedToText = false;
                if (null != this.childNodes)
                {
                    foreach (TraceNode node in this.childNodes)
                    {
                        if (node.NodeType == XPathNodeType.Element)
                        {
                            ElementNode child = node as ElementNode;
                            if (child != null)
                            {
                                child.Reset();
                            }
                        }
                    }
                }
            }

            internal AttributeNode CurrentAttribute
            {
                get
                {
                    return this.attributes[this.attributeIndex];
                }
            }

            public int Size
            {
                get
                {
                    int size = 2 * this.name.Length + 6; //upper bound <NAME></NAME>
                    if (!string.IsNullOrEmpty(this.prefix))
                    {
                        size += this.prefix.Length + 1;
                    }
                    if (!string.IsNullOrEmpty(this.xmlns))
                    {
                        size += this.xmlns.Length + 9;  // xmlns="xmlns" 
                    }
                    return size;
                }
            }
        }

        class AttributeNode : IMeasurable
        {
            internal AttributeNode(string name, string prefix, string value, string xmlns)
            {
                this.name = name;
                this.prefix = prefix;
                this.nodeValue = value;
                this.xmlns = xmlns;
            }

            internal string name;
            internal string nodeValue;
            internal string prefix;
            internal string xmlns;

            public int Size
            {
                get
                {
                    int size = this.name.Length + this.nodeValue.Length + 5; 
                    
                    if (!string.IsNullOrEmpty(this.prefix))
                    {
                        size += this.prefix.Length + 1;
                    }
                    
                    if (!string.IsNullOrEmpty(this.xmlns))
                    {
                        size += this.xmlns.Length + 9; //upper bound
                    }

                    return size;
                }
            }
        }

        class ProcessingInstructionNode : TraceNode, IMeasurable
        {
            internal ProcessingInstructionNode(string name, string text, ElementNode parent)
                :
                base(XPathNodeType.ProcessingInstruction, parent)
            {
                this.name = name;
                this.text = text;
            }

            internal string name;
            internal string text;
            
            public int Size
            {
                get
                {
                    return this.name.Length + this.text.Length + 12; //<?xml NAME="TEXT"?>
                }
            }
        }

        class TextNode : IMeasurable
        {
            internal TextNode(string value)
            {
                this.nodeValue = value;
            }
            internal string nodeValue;

            public int Size
            {
                get
                {
                    return this.nodeValue.Length;
                }
            }
        }

        internal void AddElement(string prefix, string name, string xmlns)
        {
            if (this.closed)
            {
#pragma warning disable 618
                Fx.Assert("Cannot add data to a closed document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            else
            {
                ElementNode node = new ElementNode(name, prefix, this.CurrentElement, xmlns);
                if (this.current == null)
                {
                    this.VerifySize(node);
                    this.root = node;
                    this.current = this.root;
                }
                else if (!this.closed)
                {
                    this.VerifySize(node);
                    this.CurrentElement.Add(node);
                    this.current = node;
                }
            }
        }

        internal void AddProcessingInstruction(string name, string text)
        {
            if (this.current == null)
            {
                return;
            }
            else
            {
                ProcessingInstructionNode node = new ProcessingInstructionNode(name, text, this.CurrentElement);
                this.VerifySize(node);
                this.CurrentElement.Add(node);
            }
        }

        internal void AddText(string value)
        {
            if (this.closed)
            {
#pragma warning disable 618
                Fx.Assert("Cannot add data to a closed document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            if (this.current == null)
            {
                return;
            }
            else
            {
                if (this.CurrentElement.text == null)
                {
                    TextNode node = new TextNode(value);
                    this.VerifySize(node);
                    this.CurrentElement.text = node;
                }
                else if (!string.IsNullOrEmpty(value))
                {
                    this.VerifySize(value);
                    this.CurrentElement.text.nodeValue += value;
                }
            }
        }

        internal void AddAttribute(string name, string value, string xmlns, string prefix)
        {
            if (this.closed)
            {
#pragma warning disable 618
                Fx.Assert("Cannot add data to a closed document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            if (this.current == null)
            {
#pragma warning disable 618
                Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            AttributeNode node = new AttributeNode(name, prefix, value, xmlns);
            this.VerifySize(node);
            this.CurrentElement.attributes.Add(node);
        }

        internal void AddComment(string text)
        {
            if (this.closed)
            {
#pragma warning disable 618
                Fx.Assert("Cannot add data to a closed document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            if (this.current == null)
            {
#pragma warning disable 618
                Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            CommentNode node = new CommentNode(text, this.CurrentElement);
            this.VerifySize(node);
            this.CurrentElement.Add(node);
        }

        internal void CloseElement()
        {
            if (this.closed)
            {
#pragma warning disable 618
                Fx.Assert("The document is already closed.");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            else
            {
                this.current = this.CurrentElement.parent;
                if (this.current == null)
                {
                    this.closed = true;
                }
            }
        }

        public override string BaseURI
        {
            get { return String.Empty; }
        }

        public override XPathNavigator Clone()
        {
            return this;
        }

        public override bool IsEmptyElement
        {
            get
            {
                bool retval = true;
                if (this.current != null)
                {
                    retval = this.CurrentElement.text != null || this.CurrentElement.childNodes.Count > 0;
                }
                return retval;
            }
        }

        public override bool IsSamePosition(XPathNavigator other)
        {
            return false;
        }

        [DebuggerDisplay("")]
        public override string LocalName
        {
            get { return this.Name; }
        }

        public override string LookupPrefix(string ns)
        {
            return this.LookupPrefix(ns, this.CurrentElement);
        }

        string LookupPrefix(string ns, ElementNode node)
        {
            string retval = null;
            if (string.Compare(ns, node.xmlns, StringComparison.Ordinal) == 0)
            {
                retval = node.prefix;
            }
            else
            {
                foreach (AttributeNode attributeNode in node.attributes)
                {
                    if (string.Compare("xmlns", attributeNode.prefix, StringComparison.Ordinal) == 0)
                    {
                        if (string.Compare(ns, attributeNode.nodeValue, StringComparison.Ordinal) == 0)
                        {
                            retval = attributeNode.name;
                            break;
                        }
                    }
                }
            }

            if (string.IsNullOrEmpty(retval) && node.parent != null)
            {
                retval = LookupPrefix(ns, node.parent);
            }
            return retval;
        }

        public override bool MoveTo(XPathNavigator other)
        {
            return false;
        }

        public override bool MoveToFirstAttribute()
        {
            if (this.current == null)
            {
#pragma warning disable 618
                Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            bool retval = this.CurrentElement.MoveToFirstAttribute();
            if (retval)
            {
                this.state = XPathNodeType.Attribute;
            }
            return retval;
        }

        public override bool MoveToFirstChild()
        {
            if (this.current == null)
            {
#pragma warning disable 618
                Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            bool retval = false;
            if (null != this.CurrentElement.childNodes && this.CurrentElement.childNodes.Count > 0)
            {
                this.current = this.CurrentElement.childNodes[0];
                this.state = this.current.NodeType;
                retval = true;
            }
            else if ((null == this.CurrentElement.childNodes || this.CurrentElement.childNodes.Count == 0) && this.CurrentElement.text != null)
            {
                this.state = XPathNodeType.Text;
                this.CurrentElement.movedToText = true;
                retval = true;
            }
            return retval;
        }

        public override bool MoveToFirstNamespace(XPathNamespaceScope namespaceScope)
        {
            return false;
        }

        public override bool MoveToId(string id)
        {
            return false;
        }

        public override bool MoveToNext()
        {
            if (this.current == null)
            {
#pragma warning disable 618
                Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            bool retval = false;
            if (this.state != XPathNodeType.Text)
            {
                ElementNode parent = this.current.parent;
                if (parent != null)
                {
                    TraceNode temp = parent.MoveToNext();
                    if (temp == null && parent.text != null && !parent.movedToText)
                    {
                        this.state = XPathNodeType.Text;
                        parent.movedToText = true;
                        this.current = parent;
                        retval = true;
                    }
                    else if (temp != null)
                    {
                        this.state = temp.NodeType;
                        retval = true;
                        this.current = temp;
                    }
                }
            }
            return retval;
        }

        public override bool MoveToNextAttribute()
        {
            if (this.current == null)
            {
#pragma warning disable 618
                Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            bool retval = this.CurrentElement.MoveToNextAttribute();
            if (retval)
            {
                this.state = XPathNodeType.Attribute;
            }
            return retval;
        }

        public override bool MoveToNextNamespace(XPathNamespaceScope namespaceScope)
        {
            return false;
        }

        public override bool MoveToParent()
        {
            if (this.current == null)
            {
#pragma warning disable 618
                Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                throw new InvalidOperationException();
            }
            bool retval = false;
            switch (this.state)
            {
                case XPathNodeType.Comment:
                case XPathNodeType.Element:
                case XPathNodeType.ProcessingInstruction:
                    if (this.current.parent != null)
                    {
                        this.current = this.current.parent;
                        this.state = this.current.NodeType;
                        retval = true;
                    }
                    break;
                case XPathNodeType.Attribute:
                    this.state = XPathNodeType.Element;
                    retval = true;
                    break;
                case XPathNodeType.Text:
                    this.state = XPathNodeType.Element;
                    retval = true;
                    break;
                case XPathNodeType.Namespace:
                    this.state = XPathNodeType.Element;
                    retval = true;
                    break;
            }
            return retval;
        }

        public override bool MoveToPrevious()
        {
            return false;
        }

        public override void MoveToRoot()
        {
            this.current = this.root;
            this.state = XPathNodeType.Element;
            this.root.Reset();
        }

        [DebuggerDisplay("")]
        public override string Name
        {
            get
            {
                string retval = String.Empty;
                if (this.current == null)
                {
#pragma warning disable 618
                    Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                }
                else
                {
                    switch (this.state)
                    {
                        case XPathNodeType.Attribute:
                            retval = this.CurrentElement.CurrentAttribute.name;
                            break;
                        case XPathNodeType.Element:
                            retval = this.CurrentElement.name;
                            break;
                        case XPathNodeType.ProcessingInstruction:
                            retval = this.CurrentProcessingInstruction.name;
                            break;
                    }
                }
                return retval;
            }
        }

        public override System.Xml.XmlNameTable NameTable
        {
            get { return null; }
        }

        [DebuggerDisplay("")]
        public override string NamespaceURI
        {
            get
            {
                string retval = String.Empty;
                if (this.current == null)
                {
#pragma warning disable 618
                    Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                }
                else
                {
                    switch (this.state)
                    {
                        case XPathNodeType.Element:
                            retval = this.CurrentElement.xmlns;
                            break;
                        case XPathNodeType.Attribute:
                            retval = this.CurrentElement.CurrentAttribute.xmlns;
                            break;
                        case XPathNodeType.Namespace:
                            retval = null;
                            break;
                    }
                }
                return retval;
            }
        }

        [DebuggerDisplay("")]
        public override XPathNodeType NodeType
        {
            get { return this.state; }
        }

        [DebuggerDisplay("")]
        public override string Prefix
        {
            get
            {
                string retval = String.Empty;
                if (this.current == null)
                {
#pragma warning disable 618
                    Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                }
                else
                {
                    switch (this.state)
                    {
                        case XPathNodeType.Element:
                            retval = this.CurrentElement.prefix;
                            break;
                        case XPathNodeType.Attribute:
                            retval = this.CurrentElement.CurrentAttribute.prefix;
                            break;
                        case XPathNodeType.Namespace:
                            retval = null;
                            break;
                    }
                }
                return retval;
            }
        }

        CommentNode CurrentComment
        {
            get { return this.current as CommentNode; }
        }

        ElementNode CurrentElement
        {
            get { return this.current as ElementNode; }
        }

        ProcessingInstructionNode CurrentProcessingInstruction
        {
            get { return this.current as ProcessingInstructionNode; }
        }

        [DebuggerDisplay("")]
        public override string Value
        {
            get
            {
                string retval = String.Empty;
                if (this.current == null)
                {
#pragma warning disable 618
                    Fx.Assert("Operation is invalid on an empty document");
#pragma warning restore 618
                }
                else
                {
                    switch (this.state)
                    {
                        case XPathNodeType.Text:
                            retval = this.CurrentElement.text.nodeValue;
                            break;
                        case XPathNodeType.Attribute:
                            retval = this.CurrentElement.CurrentAttribute.nodeValue;
                            break;
                        case XPathNodeType.Comment:
                            retval = this.CurrentComment.nodeValue;
                            break;
                        case XPathNodeType.ProcessingInstruction:
                            retval = this.CurrentProcessingInstruction.text;
                            break;
                    }
                }
                return retval;
            }
        }

        internal WriteState WriteState
        {
            get
            {
                WriteState retval = WriteState.Error;
                if (this.current == null)
                {
                    retval = WriteState.Start;
                }
                else if (this.closed)
                {
                    retval = WriteState.Closed;
                }
                else
                {
                    switch (this.state)
                    {
                        case XPathNodeType.Attribute:
                            retval = WriteState.Attribute;
                            break;
                        case XPathNodeType.Element:
                            retval = WriteState.Element;
                            break;
                        case XPathNodeType.Text:
                            retval = WriteState.Content;
                            break;
                        case XPathNodeType.Comment:
                            retval = WriteState.Content;
                            break;
                    }
                }
                return retval;
            }
        }

        public override string ToString()
        {
            this.MoveToRoot();
            StringBuilder sb = new StringBuilder();
            EncodingFallbackAwareXmlTextWriter writer = new EncodingFallbackAwareXmlTextWriter(new StringWriter(sb, CultureInfo.CurrentCulture));
            writer.WriteNode(this, false);
            return sb.ToString();
        }

        void VerifySize(IMeasurable node)
        {
            this.VerifySize(node.Size);
        }

        void VerifySize(string node)
        {
            this.VerifySize(node.Length);
        }

        void VerifySize(int nodeSize)
        {
            if (this.maxSize != TraceXPathNavigator.UnlimitedSize)
            {
                if (this.currentSize + nodeSize > this.maxSize)
                {
                    throw new PlainXmlWriter.MaxSizeExceededException();
                }
            }
            this.currentSize += nodeSize;
        }

        public void RemovePii(string[][] paths)
        {
#pragma warning disable 618
            Fx.Assert(null != paths, "");
#pragma warning restore 618
            if (paths == null)
            {
                throw new ArgumentNullException("paths");
            }

            foreach (string[] path in paths)
            {
                RemovePii(path);
            }
        }

        public void RemovePii(string[] path)
        {
            RemovePii(path, DiagnosticStrings.PiiList);
        }

        public void RemovePii(string[] headersPath, string[] piiList)
        {
#pragma warning disable 618
            Fx.Assert(null != this.root, "");
            if (this.root == null)
            {
                throw new InvalidOperationException();
            }
            foreach (ElementNode node in this.root.FindSubnodes(headersPath))
            {
                Fx.Assert(null != node, "");
                MaskSubnodes(node, piiList);
            }
        }
#pragma warning restore 618

        static void MaskElement(ElementNode element)
        {
            if (null != element)
            {
                element.childNodes.Clear();
                element.Add(new CommentNode("Removed", element));
                element.text = null;
                element.attributes = null;
            }
        }

        static void MaskSubnodes(ElementNode element, string[] elementNames)
        {
            MaskSubnodes(element, elementNames, false);
        }

        static void MaskSubnodes(ElementNode element, string[] elementNames, bool processNodeItself)
        {
#pragma warning disable 618
            Fx.Assert(null != elementNames, "");
#pragma warning restore 618
            if (elementNames == null)
            {
                throw new ArgumentNullException("elementNames");
            }

            if (null != element)
            {
                bool recurse = true;
                if (processNodeItself)
                {
                    foreach (string elementName in elementNames)
                    {
#pragma warning disable 618
                        Fx.Assert(!String.IsNullOrEmpty(elementName), "");
#pragma warning restore 618
                        if (0 == String.CompareOrdinal(elementName, element.name))
                        {
                            MaskElement(element);
                            recurse = false;
                            break;
                        }
                    }
                }
                if (recurse)
                {
                    if (null != element.childNodes)
                    {
                        foreach (ElementNode subNode in element.childNodes)
                        {
#pragma warning disable 618
                            Fx.Assert(null != subNode, "");
#pragma warning restore 618
                            MaskSubnodes(subNode, elementNames, true);
                        }
                    }
                }
            }
        }
    }
}