-
Notifications
You must be signed in to change notification settings - Fork 595
Expand file tree
/
Copy pathOpenXmlCompositeElement.cs
More file actions
819 lines (686 loc) · 26.5 KB
/
OpenXmlCompositeElement.cs
File metadata and controls
819 lines (686 loc) · 26.5 KB
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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using DocumentFormat.OpenXml.Framework;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Xml;
namespace DocumentFormat.OpenXml
{
/// <summary>
/// Represents the base class for composite elements.
/// </summary>
public abstract class OpenXmlCompositeElement : OpenXmlElement
{
private protected const string UseGenericVersion = "Should use the generic version of this. This overload will be removed in a future version.";
private OpenXmlElement? _lastChild;
/// <summary>
/// Initializes a new instance of the OpenXmlCompositeElement class.
/// </summary>
protected OpenXmlCompositeElement()
: base()
{
}
/// <summary>
/// Initializes a new instance of the OpenXmlCompositeElement class using the supplied outer XML.
/// </summary>
/// <param name="outerXml">The outer XML of the element.</param>
protected OpenXmlCompositeElement(string outerXml)
: base(outerXml)
{
}
/// <summary>
/// Initializes a new instance of the OpenXmlCompositeElement class using the supplied collection of OpenXmlElement elements.
/// </summary>
/// <param name="childrenElements">A collection of OpenXmlElement elements.</param>
protected OpenXmlCompositeElement(IEnumerable<OpenXmlElement> childrenElements)
: this()
{
if (childrenElements is null)
{
throw new ArgumentNullException(nameof(childrenElements));
}
foreach (var child in childrenElements)
{
AppendChild(child);
}
}
/// <summary>
/// Initializes a new instance of the OpenXmlCompositeElement using the supplied array of OpenXmlElement elements.
/// </summary>
/// <param name="childrenElements">An array of OpenXmlElement elements.</param>
protected OpenXmlCompositeElement(params OpenXmlElement[] childrenElements)
: this()
{
if (childrenElements is null)
{
throw new ArgumentNullException(nameof(childrenElements));
}
foreach (var child in childrenElements)
{
AppendChild(child);
}
}
#region public properties
/// <summary>
/// Gets the first child of the current OpenXmlElement element.
/// </summary>
/// <remarks>
/// Returns null (Nothing in Visual Basic) if there is no such OpenXmlElement element.
/// </remarks>
public override OpenXmlElement? FirstChild
{
get
{
MakeSureParsed();
var lastChild = _lastChild;
if (lastChild is not null)
{
return lastChild.Next;
}
return null;
}
}
/// <summary>
/// Gets the last child of the current OpenXmlElement element.
/// Returns null (Nothing in Visual Basic) if there is no such OpenXmlElement element.
/// </summary>
public override OpenXmlElement? LastChild
{
get
{
MakeSureParsed();
return _lastChild;
}
}
/// <inheritdoc/>
public override bool HasChildren => LastChild is not null;
/// <inheritdoc/>
public override string InnerText
{
get
{
var innerText = StringBuilderPool.Acquire();
foreach (var child in ChildElements)
{
innerText.Append(child.InnerText);
}
return StringBuilderPool.GetValueAndRelease(innerText);
}
}
/// <inheritdoc/>
public override string InnerXml
{
set
{
// first, clear all children
RemoveAllChildren();
if (!string.IsNullOrEmpty(value))
{
// create an outer XML by wrapping the InnerXml with this element.
// because XmlReader can not be created on InnerXml ( InnerXml may have several root elements ).
using (var w = new StringWriter(CultureInfo.InvariantCulture))
{
using (var writer2 = new XmlDOMTextWriter(w))
{
writer2.WriteStartElement(Prefix, LocalName, NamespaceUri);
writer2.WriteRaw(value);
writer2.WriteEndElement();
}
// create a temp element to parse the xml.
OpenXmlElement newElement = CloneNode(false);
newElement.OuterXml = w.ToString();
var child = newElement.FirstChild;
var next = default(OpenXmlElement);
// then move all children to this element.
while (child is not null)
{
next = child.NextSibling();
child = newElement.RemoveChild(child);
AppendChild(child);
child = next;
}
}
}
}
}
#endregion
#region change children
/// <summary>
/// Adds the specified element to the element if it is a known child. This adds the element in the correct location according to the schema.
/// </summary>
/// <param name="newChild">The OpenXmlElement element to append.</param>
/// <param name="throwOnError">A flag to indicate if the method should throw if the child could not be added.</param>
/// <returns>Success if the element was added, otherwise <c>false</c>.</returns>
public bool AddChild(OpenXmlElement newChild, bool throwOnError = true)
{
if (newChild is null)
{
if (throwOnError)
{
throw new ArgumentNullException(nameof(newChild));
}
return false;
}
var wasAdded = Metadata.Particle.Set(this, newChild);
if (throwOnError && !wasAdded)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsNotChild);
}
return wasAdded;
}
/// <inheritdoc/>
[return: NotNullIfNotNull("newChild")]
public override T? AppendChild<T>(T? newChild)
where T : class
{
if (newChild is null)
{
return null;
}
if (newChild.Parent is not null)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsPartOfTree);
}
ElementInsertingEvent(newChild);
var prevNode = LastChild;
var nextNode = newChild;
if (prevNode is null)
{
nextNode.Next = nextNode;
_lastChild = nextNode;
}
else
{
nextNode.Next = prevNode.Next;
prevNode.Next = nextNode;
_lastChild = nextNode;
}
newChild.Parent = this;
ElementInsertedEvent(newChild);
return newChild;
}
/// <inheritdoc/>
[return: NotNullIfNotNull("newChild")]
public override T? InsertAfter<T>(T? newChild, OpenXmlElement? referenceChild)
where T : class
{
if (newChild is null)
{
return null;
}
if (newChild.Parent is not null)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsPartOfTree);
}
if (referenceChild is null)
{
return PrependChild(newChild);
}
if (referenceChild.Parent != this)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsNotChild);
}
ElementInsertingEvent(newChild);
var nextNode = newChild;
var prevNode = referenceChild;
if (prevNode == _lastChild)
{
nextNode.Next = prevNode.Next;
prevNode.Next = nextNode;
_lastChild = nextNode;
}
else
{
var next = prevNode.Next;
nextNode.Next = next;
prevNode.Next = nextNode;
}
newChild.Parent = this;
ElementInsertedEvent(newChild);
return newChild;
}
/// <inheritdoc/>
[return: NotNullIfNotNull("newChild")]
public override T? InsertBefore<T>(T? newChild, OpenXmlElement? referenceChild)
where T : class
{
if (newChild is null)
{
return null;
}
if (newChild.Parent is not null)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsPartOfTree);
}
if (referenceChild is null)
{
return AppendChild(newChild);
}
if (referenceChild.Parent != this)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsNotChild);
}
ElementInsertingEvent(newChild);
var prevNode = newChild;
var nextNode = referenceChild;
if (nextNode == FirstChild)
{
if (_lastChild is null)
{
throw new InvalidOperationException();
}
prevNode.Next = nextNode;
_lastChild.Next = prevNode;
}
else
{
var previousSibling = nextNode.PreviousSibling();
if (previousSibling is null)
{
throw new InvalidOperationException();
}
prevNode.Next = nextNode;
previousSibling.Next = prevNode;
}
newChild.Parent = this;
ElementInsertedEvent(newChild);
return newChild;
}
/// <inheritdoc/>
[return: NotNullIfNotNull("newChild")]
public override T? InsertAt<T>(T? newChild, int index)
where T : class
{
if (newChild is null)
{
return null;
}
if (newChild.Parent is not null)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsPartOfTree);
}
if (index < 0 || index > ChildElements.Count)
{
throw new ArgumentOutOfRangeException(nameof(index));
}
else if (index == 0)
{
return PrependChild(newChild);
}
else if (index == ChildElements.Count)
{
return AppendChild(newChild);
}
else
{
var refChild = ChildElements[index];
return InsertBefore(newChild, refChild);
}
}
/// <inheritdoc/>
[return: NotNullIfNotNull("newChild")]
public override T? PrependChild<T>(T? newChild)
where T : class
{
if (newChild is null)
{
return null;
}
if (newChild.Parent is not null)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsPartOfTree);
}
return InsertBefore(newChild, FirstChild);
}
/// <inheritdoc/>
[return: NotNullIfNotNull("newChild")]
public override T? RemoveChild<T>(T? oldChild)
where T : class
{
if (oldChild is null)
{
return null;
}
if (oldChild.Parent != this)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsNotChild);
}
var removedElement = oldChild;
var last = _lastChild;
ElementRemovingEvent(removedElement);
if (removedElement == FirstChild)
{
if (removedElement == _lastChild)
{
_lastChild = null;
}
else
{
if (last is null)
{
throw new InvalidOperationException();
}
var nextNode = removedElement.Next;
last.Next = nextNode;
}
}
else if (removedElement == _lastChild)
{
var prevNode = removedElement.PreviousSibling();
if (prevNode is null)
{
throw new InvalidOperationException();
}
var next = removedElement.Next;
prevNode.Next = next;
_lastChild = prevNode;
}
else
{
var prevNode = removedElement.PreviousSibling();
if (prevNode is null)
{
throw new InvalidOperationException();
}
var next = removedElement.Next;
prevNode.Next = next;
}
removedElement.Next = null;
removedElement.Parent = null;
ElementRemovedEvent(removedElement);
return removedElement;
}
/// <summary>
/// Removes all of the current element's child elements.
/// </summary>
public override void RemoveAllChildren()
{
var element = FirstChild;
while (element is not null)
{
var next = element.NextSibling();
RemoveChild(element);
element = next;
}
Debug.Assert(_lastChild is null);
}
/// <inheritdoc/>
[return: NotNullIfNotNull("oldChild")]
public override T? ReplaceChild<T>(OpenXmlElement newChild, T? oldChild)
where T : class
{
if (oldChild is null)
{
return null;
}
if (newChild is null)
{
throw new ArgumentNullException(nameof(newChild));
}
if (oldChild.Parent != this)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsNotChild);
}
if (newChild.Parent is not null)
{
throw new InvalidOperationException(ExceptionMessages.ElementIsPartOfTree);
}
var refChild = oldChild.NextSibling();
RemoveChild(oldChild);
InsertBefore(newChild, refChild);
return oldChild;
}
#endregion
/// <summary>
/// Determines whether the specified <see cref="OpenXmlElement"/> is a valid child element
/// for this <see cref="OpenXmlCompositeElement"/> according to the schema definition.
/// </summary>
/// <param name="element">The <see cref="OpenXmlElement"/> to validate as a child.</param>
/// <returns>
/// <c>true</c> if the specified element is a valid child; otherwise, <c>false</c>.
/// </returns>
public virtual bool IsValidChild(OpenXmlElement element)
{
if (element is null)
{
return false;
}
foreach (var elem in Metadata.Children.Elements)
{
if (elem.Type.Name.Equals(element.Metadata.Type.Name))
{
return true;
}
}
return false;
}
/// <summary>
/// Saves all of the current node's children to the specified XmlWriter.
/// </summary>
/// <param name="w">The XmlWriter at which to save the child nodes. </param>
internal override void WriteContentTo(XmlWriter w)
{
if (HasChildren)
{
foreach (OpenXmlElement childElement in ChildElements)
{
childElement.WriteTo(w);
}
}
}
/// <summary>
/// Fires the ElementInserting event.
/// </summary>
/// <param name="element">The OpenXmlElement element to insert.</param>
private void ElementInsertingEvent(OpenXmlElement element)
{
if (OpenXmlElementContext is not null)
{
OpenXmlElementContext.ElementInsertingEvent(element, this);
}
}
/// <summary>
/// Fires the ElementInserted event.
/// </summary>
/// <param name="element">The OpenXmlElement element to insert.</param>
private void ElementInsertedEvent(OpenXmlElement element)
{
if (OpenXmlElementContext is not null)
{
OpenXmlElementContext.ElementInsertedEvent(element, this);
}
}
/// <summary>
/// Fires the ElementRemoving event.
/// </summary>
/// <param name="element">The OpenXmlElement element to remove.</param>
private void ElementRemovingEvent(OpenXmlElement element)
{
if (OpenXmlElementContext is not null)
{
OpenXmlElementContext.ElementRemovingEvent(element, this);
}
}
/// <summary>
/// Fires the ElementRemoved event.
/// </summary>
/// <param name="element">The OpenXmlElement element to be removed.</param>
private void ElementRemovedEvent(OpenXmlElement element)
{
if (OpenXmlElementContext is not null)
{
OpenXmlElementContext.ElementRemovedEvent(element, this);
}
}
/// <summary>
/// Populates the XML into a strong typed DOM tree.
/// </summary>
/// <param name="xmlReader">The XmlReader to read the XML content.</param>
/// <param name="loadMode">Specifies a load mode that is either lazy or full.</param>
private protected override void Populate(XmlReader xmlReader, OpenXmlLoadMode loadMode)
{
LoadAttributes(xmlReader);
if (!xmlReader.IsEmptyElement)
{
xmlReader.Read(); // read this element
while (!xmlReader.EOF)
{
// O15:#3024890, OpenXmlCompositeElement ignores the Whitespace NodeType.
if (xmlReader.NodeType == XmlNodeType.Whitespace)
{
xmlReader.Skip();
continue;
}
else if (xmlReader.NodeType == XmlNodeType.EndElement)
{
Debug.Assert(string.Equals(xmlReader.LocalName, LocalName, StringComparison.Ordinal));
xmlReader.Skip(); // move to next node
break;
}
OpenXmlElement element = ElementFactory(xmlReader);
// set parent before Load( ) call. AlternateContentChoice need parent info on loading.
element.Parent = this;
bool isACB = element is AlternateContent;
if (isACB && element.OpenXmlElementContext is not null)
{
element.OpenXmlElementContext.ACBlockLevel++;
}
bool mcContextPushed = false;
if (!(element is OpenXmlMiscNode))
{
// push MC context based on the context of the child element to be loaded
mcContextPushed = PushMcContext(xmlReader);
}
// Process the element according to the MC behavior
var action = ElementAction.Normal;
if (OpenXmlElementContext is not null && OpenXmlElementContext.MCSettings.ProcessMode != DocumentFormat.OpenXml.Packaging.MarkupCompatibilityProcessMode.NoProcess)
{
action = OpenXmlElementContext.MCContext.GetElementAction(element, OpenXmlElementContext.MCSettings.TargetFileFormatVersions);
}
element.Load(xmlReader, loadMode);
if (mcContextPushed)
{
PopMcContext();
}
if (isACB && element.OpenXmlElementContext is not null)
{
element.OpenXmlElementContext.ACBlockLevel--;
}
switch (action)
{
case ElementAction.Normal:
{
AddANode(element);
break;
}
case ElementAction.Ignore:
{
element.Parent = null;
continue;
}
case ElementAction.ProcessContent:
{
element.Parent = null;
while (element.ChildElements.Count > 0)
{
if (element.FirstChild is not OpenXmlElement node)
{
break;
}
node.Remove();
var newnode = default(OpenXmlElement);
// If node is an UnknowElement, we should try to see whether the parent element can load the node as strong typed element
if (node is OpenXmlUnknownElement)
{
newnode = CreateElement(new(node.NamespaceUri, node.LocalName), node.Prefix);
if (newnode is not OpenXmlUnknownElement)
{
// The following method will load the element in MCMode.Full
// since the node is already MC-processed when loading as unknown type, full loading the outerXml is fine
newnode.OuterXml = node.OuterXml;
// unnecessary xmlns attribute will be added, remove it.
RemoveUnnecessaryExtAttr(node, newnode);
}
else
{
newnode = null;
}
}
if (newnode is not null)
{
AddANode(newnode);
}
else
{
// append the original node
AddANode(node);
}
}
break;
}
case ElementAction.ACBlock:
{
if (element is not AlternateContent acb)
{
break;
}
var effectiveNode = OpenXmlElementContext?.MCContext.GetContentFromACBlock(acb, OpenXmlElementContext.MCSettings.TargetFileFormatVersions);
if (effectiveNode is null)
{
break;
}
element.Parent = null;
effectiveNode.Parent = null;
while (effectiveNode.FirstChild is not null)
{
var node = effectiveNode.FirstChild;
node.Remove();
AddANode(node);
node.CheckMustUnderstandAttr();
}
break;
}
}
}
}
else
{
xmlReader.Skip();
}
// Set raw outer xml to empty to indicate that it passed
RawOuterXml = string.Empty;
}
private static void RemoveUnnecessaryExtAttr(OpenXmlElement node, OpenXmlElement newnode)
{
// Reconstruct the _nsMappings for the new node based on the original node
node.MakeSureParsed();
if (newnode.NamespaceDeclField is not null && node.NamespaceDeclField is not null)
{
newnode.NamespaceDeclField = new List<KeyValuePair<string, string>>(node.NamespaceDeclField);
}
}
private protected OpenXmlElement? GetElement(in OpenXmlSchemaType type)
=> Metadata.Particle.Get(this, type);
private protected bool SetElement(OpenXmlElement? value, OpenXmlSchemaType type)
=> Metadata.Particle.Set(this, value, type);
private void AddANode(OpenXmlElement node)
{
node.Parent = this;
if (_lastChild is null)
{
node.Next = node;
_lastChild = node;
}
else
{
node.Next = _lastChild.Next;
_lastChild.Next = node;
_lastChild = node;
}
}
}
}