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
|
{
This file is part of the Free Component Library
XML writing routines
Copyright (c) 1999-2000 by Sebastian Guenther, sg@freepascal.org
Modified in 2006 by Sergei Gorelkin, sergei_gorelkin@mail.ru
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit XMLWrite;
{$ifdef fpc}{$MODE objfpc}{$endif}
{$H+}
interface
uses Classes, DOM;
procedure WriteXMLFile(doc: TXMLDocument; const AFileName: String); overload;
procedure WriteXMLFile(doc: TXMLDocument; var AFile: Text); overload;
procedure WriteXMLFile(doc: TXMLDocument; AStream: TStream); overload;
procedure WriteXML(Element: TDOMNode; const AFileName: String); overload;
procedure WriteXML(Element: TDOMNode; var AFile: Text); overload;
procedure WriteXML(Element: TDOMNode; AStream: TStream); overload;
// ===================================================================
implementation
uses SysUtils, xmlutils;
type
TXMLWriter = class;
TSpecialCharCallback = procedure(Sender: TXMLWriter; const s: DOMString;
var idx: Integer);
PAttrFixup = ^TAttrFixup;
TAttrFixup = record
Attr: TDOMNode;
Prefix: PHashItem;
end;
TXMLWriter = class(TObject)
private
FStream: TStream;
FInsideTextNode: Boolean;
FCanonical: Boolean;
FIndent: WideString;
FIndentCount: Integer;
FBuffer: PChar;
FBufPos: PChar;
FCapacity: Integer;
FLineBreak: WideString;
FNSHelper: TNSSupport;
FAttrFixups: TFPList;
FScratch: TFPList;
FNSDefs: TFPList;
procedure wrtChars(Src: PWideChar; Length: Integer);
procedure IncIndent;
procedure DecIndent; {$IFDEF HAS_INLINE} inline; {$ENDIF}
procedure wrtStr(const ws: WideString); {$IFDEF HAS_INLINE} inline; {$ENDIF}
procedure wrtChr(c: WideChar); {$IFDEF HAS_INLINE} inline; {$ENDIF}
procedure wrtIndent; {$IFDEF HAS_INLINE} inline; {$ENDIF}
procedure wrtQuotedLiteral(const ws: WideString);
procedure ConvWrite(const s: WideString; const SpecialChars: TSetOfChar;
const SpecialCharCallback: TSpecialCharCallback);
procedure WriteNSDef(B: TBinding);
procedure NamespaceFixup(Element: TDOMElement);
protected
procedure WriteNode(Node: TDOMNode);
procedure VisitDocument(Node: TDOMNode);
procedure VisitDocument_Canonical(Node: TDOMNode);
procedure VisitElement(Node: TDOMNode);
procedure VisitText(Node: TDOMNode);
procedure VisitCDATA(Node: TDOMNode);
procedure VisitComment(Node: TDOMNode);
procedure VisitFragment(Node: TDOMNode);
procedure VisitAttribute(Node: TDOMNode);
procedure VisitEntityRef(Node: TDOMNode);
procedure VisitDocumentType(Node: TDOMNode);
procedure VisitPI(Node: TDOMNode);
public
constructor Create(AStream: TStream);
destructor Destroy; override;
end;
TTextStream = class(TStream)
Private
F : ^Text;
Public
constructor Create(var AFile: Text);
function Write(Const Buffer; Count: Longint): Longint; override;
end;
{ ---------------------------------------------------------------------
TTextStream
---------------------------------------------------------------------}
constructor TTextStream.Create(var AFile: Text);
begin
inherited Create;
f := @AFile;
end;
function TTextStream.Write(const Buffer; Count: Longint): Longint;
var
s: string;
begin
if Count>0 then
begin
SetString(s, PChar(@Buffer), Count);
system.Write(f^, s);
end;
Result := Count;
end;
{ ---------------------------------------------------------------------
TXMLWriter
---------------------------------------------------------------------}
const
AttrSpecialChars = ['<', '>', '"', '&', #0..#$1F];
TextSpecialChars = ['<', '>', '&', #0..#8, #10..#$1F];
CDSectSpecialChars = [#0..#8, #11, #12, #14..#$1F, ']'];
LineEndingChars = [#13, #10];
QuotStr = '"';
AmpStr = '&';
ltStr = '<';
gtStr = '>';
constructor TXMLWriter.Create(AStream: TStream);
var
I: Integer;
begin
inherited Create;
FStream := AStream;
// some overhead - always be able to write at least one extra UCS4
FBuffer := AllocMem(512+32);
FBufPos := FBuffer;
FCapacity := 512;
// Later on, this may be put under user control
// for now, take OS setting
if FCanonical then
FLineBreak := #10
else
FLineBreak := sLineBreak;
// Initialize Indent string
// TODO: this must be done in setter of FLineBreak
SetLength(FIndent, 100);
FIndent[1] := FLineBreak[1];
if Length(FLineBreak) > 1 then
FIndent[2] := FLineBreak[2]
else
FIndent[2] := ' ';
for I := 3 to 100 do FIndent[I] := ' ';
FIndentCount := 0;
FNSHelper := TNSSupport.Create;
FScratch := TFPList.Create;
FNSDefs := TFPList.Create;
FAttrFixups := TFPList.Create;
end;
destructor TXMLWriter.Destroy;
var
I: Integer;
begin
for I := FAttrFixups.Count-1 downto 0 do
Dispose(PAttrFixup(FAttrFixups.List^[I]));
FAttrFixups.Free;
FNSDefs.Free;
FScratch.Free;
FNSHelper.Free;
if FBufPos > FBuffer then
FStream.write(FBuffer^, FBufPos-FBuffer);
FreeMem(FBuffer);
inherited Destroy;
end;
procedure TXMLWriter.wrtChars(Src: PWideChar; Length: Integer);
var
pb: PChar;
wc: Cardinal;
SrcEnd: PWideChar;
begin
pb := FBufPos;
SrcEnd := Src + Length;
while Src < SrcEnd do
begin
if pb >= @FBuffer[FCapacity] then
begin
FStream.write(FBuffer^, FCapacity);
Dec(pb, FCapacity);
if pb > FBuffer then
Move(FBuffer[FCapacity], FBuffer^, pb - FBuffer);
end;
wc := Cardinal(Src^); Inc(Src);
case wc of
0..$7F: begin
pb^ := char(wc); Inc(pb);
end;
$80..$7FF: begin
pb^ := Char($C0 or (wc shr 6));
pb[1] := Char($80 or (wc and $3F));
Inc(pb,2);
end;
$D800..$DBFF: begin
if (Src < SrcEnd) and (Src^ >= #$DC00) and (Src^ <= #$DFFF) then
begin
wc := ((LongInt(wc) - $D7C0) shl 10) + LongInt(word(Src^) xor $DC00);
Inc(Src);
pb^ := Char($F0 or (wc shr 18));
pb[1] := Char($80 or ((wc shr 12) and $3F));
pb[2] := Char($80 or ((wc shr 6) and $3F));
pb[3] := Char($80 or (wc and $3F));
Inc(pb,4);
end
else
raise EConvertError.Create('High surrogate without low one');
end;
$DC00..$DFFF:
raise EConvertError.Create('Low surrogate without high one');
else // $800 >= wc > $FFFF, excluding surrogates
begin
pb^ := Char($E0 or (wc shr 12));
pb[1] := Char($80 or ((wc shr 6) and $3F));
pb[2] := Char($80 or (wc and $3F));
Inc(pb,3);
end;
end;
end;
FBufPos := pb;
end;
procedure TXMLWriter.wrtStr(const ws: WideString); { inline }
begin
wrtChars(PWideChar(ws), Length(ws));
end;
{ No checks here - buffer always has 32 extra bytes }
procedure TXMLWriter.wrtChr(c: WideChar); { inline }
begin
FBufPos^ := char(ord(c));
Inc(FBufPos);
end;
procedure TXMLWriter.wrtIndent; { inline }
begin
wrtChars(PWideChar(FIndent), FIndentCount*2+Length(FLineBreak));
end;
procedure TXMLWriter.IncIndent;
var
I, NewLen, OldLen: Integer;
begin
Inc(FIndentCount);
if Length(FIndent) < 2 * FIndentCount then
begin
OldLen := Length(FIndent);
NewLen := 4 * FIndentCount;
SetLength(FIndent, NewLen);
for I := OldLen to NewLen do
FIndent[I] := ' ';
end;
end;
procedure TXMLWriter.DecIndent; { inline }
begin
if FIndentCount>0 then dec(FIndentCount);
end;
procedure TXMLWriter.ConvWrite(const s: WideString; const SpecialChars: TSetOfChar;
const SpecialCharCallback: TSpecialCharCallback);
var
StartPos, EndPos: Integer;
begin
StartPos := 1;
EndPos := 1;
while EndPos <= Length(s) do
begin
if (s[EndPos] < #128) and (Char(ord(s[EndPos])) in SpecialChars) then
begin
wrtChars(@s[StartPos], EndPos - StartPos);
SpecialCharCallback(Self, s, EndPos);
StartPos := EndPos + 1;
end;
Inc(EndPos);
end;
if StartPos <= length(s) then
wrtChars(@s[StartPos], EndPos - StartPos);
end;
procedure AttrSpecialCharCallback(Sender: TXMLWriter; const s: DOMString;
var idx: Integer);
begin
case s[idx] of
'"': Sender.wrtStr(QuotStr);
'&': Sender.wrtStr(AmpStr);
'<': Sender.wrtStr(ltStr);
// This is *only* to interoperate with broken parsers out there,
// Delphi ClientDataset parser being one of them.
'>': if not Sender.FCanonical then
Sender.wrtStr(gtStr)
else
Sender.wrtChr('>');
// Escape whitespace using CharRefs to be consistent with W3 spec § 3.3.3
#9: Sender.wrtStr('	');
#10: Sender.wrtStr('
');
#13: Sender.wrtStr('
');
else
raise EConvertError.Create('Illegal character');
end;
end;
procedure TextnodeNormalCallback(Sender: TXMLWriter; const s: DOMString;
var idx: Integer);
begin
case s[idx] of
'<': Sender.wrtStr(ltStr);
'>': Sender.wrtStr(gtStr); // Required only in ']]>' literal, otherwise optional
'&': Sender.wrtStr(AmpStr);
#13:
begin
// We normalize #13#10 and #13 to FLineBreak, going somewhat
// beyond the specs here, see issue #13879.
Sender.wrtStr(Sender.FLineBreak);
if (idx < Length(s)) and (s[idx+1] = #10) then
Inc(idx);
end;
#10: Sender.wrtStr(Sender.FLineBreak);
else
raise EConvertError.Create('Illegal character');
end;
end;
procedure TextnodeCanonicalCallback(Sender: TXMLWriter; const s: DOMString;
var idx: Integer);
begin
case s[idx] of
'<': Sender.wrtStr(ltStr);
'>': Sender.wrtStr(gtStr);
'&': Sender.wrtStr(AmpStr);
#13: Sender.wrtStr('
');
#10: Sender.wrtChr(#10);
else
raise EConvertError.Create('Illegal character');
end;
end;
procedure CDSectSpecialCharCallback(Sender: TXMLWriter; const s: DOMString;
var idx: Integer);
begin
if (idx <= Length(s)-2) and (s[idx+1] = ']') and (s[idx+2] = '>') then
begin
Sender.wrtStr(']]]]><![CDATA[>');
Inc(idx, 2);
// TODO: emit warning 'cdata-section-splitted'
end
else
raise EConvertError.Create('Illegal character');
end;
const
TextnodeCallbacks: array[boolean] of TSpecialCharCallback = (
@TextnodeNormalCallback,
@TextnodeCanonicalCallback
);
procedure TXMLWriter.wrtQuotedLiteral(const ws: WideString);
var
Quote: WideChar;
begin
// TODO: need to check if the string also contains single quote
// both quotes present is a error
if Pos('"', ws) > 0 then
Quote := ''''
else
Quote := '"';
wrtChr(Quote);
ConvWrite(ws, LineEndingChars, @TextnodeNormalCallback);
wrtChr(Quote);
end;
procedure TXMLWriter.WriteNode(node: TDOMNode);
begin
case node.NodeType of
ELEMENT_NODE: VisitElement(node);
ATTRIBUTE_NODE: VisitAttribute(node);
TEXT_NODE: VisitText(node);
CDATA_SECTION_NODE: VisitCDATA(node);
ENTITY_REFERENCE_NODE: VisitEntityRef(node);
PROCESSING_INSTRUCTION_NODE: VisitPI(node);
COMMENT_NODE: VisitComment(node);
DOCUMENT_NODE:
if FCanonical then
VisitDocument_Canonical(node)
else
VisitDocument(node);
DOCUMENT_TYPE_NODE: VisitDocumentType(node);
ENTITY_NODE,
DOCUMENT_FRAGMENT_NODE: VisitFragment(node);
end;
end;
procedure TXMLWriter.WriteNSDef(B: TBinding);
begin
wrtChars(' xmlns', 6);
if B.Prefix^.Key <> '' then
begin
wrtChr(':');
wrtStr(B.Prefix^.Key);
end;
wrtChars('="', 2);
ConvWrite(B.uri, AttrSpecialChars, @AttrSpecialCharCallback);
wrtChr('"');
end;
// clone of system.FPC_WIDESTR_COMPARE which cannot be called directly
function Compare(const s1, s2: DOMString): integer;
var
maxi, temp: integer;
begin
Result := 0;
if pointer(S1) = pointer(S2) then
exit;
maxi := Length(S1);
temp := Length(S2);
if maxi > temp then
maxi := temp;
Result := CompareWord(S1[1], S2[1], maxi);
if Result = 0 then
Result := Length(S1)-Length(S2);
end;
function SortNSDefs(Item1, Item2: Pointer): Integer;
begin
Result := Compare(TBinding(Item1).Prefix^.Key, TBinding(Item2).Prefix^.Key);
end;
function SortAtts(Item1, Item2: Pointer): Integer;
var
p1: PAttrFixup absolute Item1;
p2: PAttrFixup absolute Item2;
s1, s2: DOMString;
begin
Result := Compare(p1^.Attr.namespaceURI, p2^.Attr.namespaceURI);
if Result = 0 then
begin
// TODO: Must fix the parser so it doesn't produce Level 1 attributes
if nfLevel2 in p1^.Attr.Flags then
s1 := p1^.Attr.localName
else
s1 := p1^.Attr.nodeName;
if nfLevel2 in p2^.Attr.Flags then
s2 := p2^.Attr.localName
else
s2 := p2^.Attr.nodeName;
Result := Compare(s1, s2);
end;
end;
procedure TXMLWriter.NamespaceFixup(Element: TDOMElement);
var
B: TBinding;
i, j: Integer;
node: TDOMNode;
s: DOMString;
action: TAttributeAction;
p: PAttrFixup;
begin
FScratch.Count := 0;
FNSDefs.Count := 0;
if Element.hasAttributes then
begin
j := 0;
for i := 0 to Element.Attributes.Length-1 do
begin
node := Element.Attributes[i];
if TDOMNode_NS(node).NSI.NSIndex = 2 then
begin
if TDOMNode_NS(node).NSI.PrefixLen = 0 then
s := ''
else
s := node.localName;
FNSHelper.DefineBinding(s, node.nodeValue, B);
if Assigned(B) then // drop redundant namespace declarations
FNSDefs.Add(B);
end
else if FCanonical or TDOMAttr(node).Specified then
begin
// obtain a TAttrFixup record (allocate if needed)
if j >= FAttrFixups.Count then
begin
New(p);
FAttrFixups.Add(p);
end
else
p := PAttrFixup(FAttrFixups.List^[j]);
// add it to the working list
p^.Attr := node;
p^.Prefix := nil;
FScratch.Add(p);
Inc(j);
end;
end;
end;
FNSHelper.DefineBinding(Element.Prefix, Element.namespaceURI, B);
if Assigned(B) then
FNSDefs.Add(B);
for i := 0 to FScratch.Count-1 do
begin
node := PAttrFixup(FScratch.List^[i])^.Attr;
action := FNSHelper.CheckAttribute(node.Prefix, node.namespaceURI, B);
if action = aaBoth then
FNSDefs.Add(B);
if action in [aaPrefix, aaBoth] then
PAttrFixup(FScratch.List^[i])^.Prefix := B.Prefix;
end;
if FCanonical then
begin
FNSDefs.Sort(@SortNSDefs);
FScratch.Sort(@SortAtts);
end;
// now, at last, dump all this stuff.
for i := 0 to FNSDefs.Count-1 do
WriteNSDef(TBinding(FNSDefs.List^[I]));
for i := 0 to FScratch.Count-1 do
begin
wrtChr(' ');
with PAttrFixup(FScratch.List^[I])^ do
begin
if Assigned(Prefix) then
begin
wrtStr(Prefix^.Key);
wrtChr(':');
wrtStr(Attr.localName);
end
else
wrtStr(Attr.nodeName);
wrtChars('="', 2);
// TODO: not correct w.r.t. entities
ConvWrite(attr.nodeValue, AttrSpecialChars, @AttrSpecialCharCallback);
wrtChr('"');
end;
end;
end;
procedure TXMLWriter.VisitElement(node: TDOMNode);
var
i: Integer;
child: TDOMNode;
SavedInsideTextNode: Boolean;
begin
if not FInsideTextNode then
wrtIndent;
FNSHelper.StartElement;
wrtChr('<');
wrtStr(TDOMElement(node).TagName);
if nfLevel2 in node.Flags then
NamespaceFixup(TDOMElement(node))
else if node.HasAttributes then
for i := 0 to node.Attributes.Length - 1 do
begin
child := node.Attributes.Item[i];
if FCanonical or TDOMAttr(child).Specified then
VisitAttribute(child);
end;
Child := node.FirstChild;
if Child = nil then
wrtChars('/>', 2)
else
begin
// TODO: presence of zero-length textnodes triggers the indenting logic,
// while they should be ignored altogeter.
SavedInsideTextNode := FInsideTextNode;
wrtChr('>');
FInsideTextNode := FCanonical or (Child.NodeType in [TEXT_NODE, CDATA_SECTION_NODE]);
IncIndent;
repeat
WriteNode(Child);
Child := Child.NextSibling;
until Child = nil;
DecIndent;
if not (node.LastChild.NodeType in [TEXT_NODE, CDATA_SECTION_NODE]) then
wrtIndent;
FInsideTextNode := SavedInsideTextNode;
wrtChars('</', 2);
wrtStr(TDOMElement(Node).TagName);
wrtChr('>');
end;
FNSHelper.EndElement;
end;
procedure TXMLWriter.VisitText(node: TDOMNode);
begin
ConvWrite(TDOMCharacterData(node).Data, TextSpecialChars, TextnodeCallbacks[FCanonical]);
end;
procedure TXMLWriter.VisitCDATA(node: TDOMNode);
begin
if not FInsideTextNode then
wrtIndent;
if FCanonical then
ConvWrite(TDOMCharacterData(node).Data, TextSpecialChars, @TextnodeCanonicalCallback)
else
begin
wrtChars('<![CDATA[', 9);
ConvWrite(TDOMCharacterData(node).Data, CDSectSpecialChars, @CDSectSpecialCharCallback);
wrtChars(']]>', 3);
end;
end;
procedure TXMLWriter.VisitEntityRef(node: TDOMNode);
begin
wrtChr('&');
wrtStr(node.NodeName);
wrtChr(';');
end;
procedure TXMLWriter.VisitPI(node: TDOMNode);
begin
if not FInsideTextNode then wrtIndent;
wrtStr('<?');
wrtStr(TDOMProcessingInstruction(node).Target);
if TDOMProcessingInstruction(node).Data <> '' then
begin
wrtChr(' ');
// TODO: How does this comply with c14n??
ConvWrite(TDOMProcessingInstruction(node).Data, LineEndingChars, @TextnodeNormalCallback);
end;
wrtStr('?>');
end;
procedure TXMLWriter.VisitComment(node: TDOMNode);
begin
if not FInsideTextNode then wrtIndent;
wrtChars('<!--', 4);
// TODO: How does this comply with c14n??
ConvWrite(TDOMCharacterData(node).Data, LineEndingChars, @TextnodeNormalCallback);
wrtChars('-->', 3);
end;
procedure TXMLWriter.VisitDocument(node: TDOMNode);
var
child: TDOMNode;
begin
wrtStr('<?xml version="');
// Definitely should not escape anything here
if Length(TXMLDocument(node).XMLVersion) > 0 then
wrtStr(TXMLDocument(node).XMLVersion)
else
wrtStr('1.0');
wrtChr('"');
// Here we ignore doc.xmlEncoding and write a fixed utf-8 label,
// because it is the only output encoding currently supported.
wrtStr(' encoding="utf-8"');
if TXMLDocument(node).xmlStandalone then
wrtStr(' standalone="yes"');
wrtStr('?>');
// TODO: now handled as a regular PI, remove this?
if node is TXMLDocument then
begin
if Length(TXMLDocument(node).StylesheetType) > 0 then
begin
wrtStr(FLineBreak);
wrtStr('<?xml-stylesheet type="');
wrtStr(TXMLDocument(node).StylesheetType);
wrtStr('" href="');
wrtStr(TXMLDocument(node).StylesheetHRef);
wrtStr('"?>');
end;
end;
child := node.FirstChild;
while Assigned(Child) do
begin
WriteNode(Child);
Child := Child.NextSibling;
end;
wrtStr(FLineBreak);
end;
procedure TXMLWriter.VisitDocument_Canonical(Node: TDOMNode);
var
child, root: TDOMNode;
begin
root := TDOMDocument(Node).DocumentElement;
child := node.FirstChild;
while Assigned(child) and (child <> root) do
begin
if child.nodeType in [COMMENT_NODE, PROCESSING_INSTRUCTION_NODE] then
begin
WriteNode(child);
wrtChr(#10);
end;
child := child.nextSibling;
end;
if root = nil then
Exit;
VisitElement(TDOMElement(root));
child := root.nextSibling;
while Assigned(child) do
begin
if child.nodeType in [COMMENT_NODE, PROCESSING_INSTRUCTION_NODE] then
begin
wrtChr(#10);
WriteNode(child);
end;
child := child.nextSibling;
end;
end;
procedure TXMLWriter.VisitAttribute(Node: TDOMNode);
var
Child: TDOMNode;
begin
wrtChr(' ');
wrtStr(TDOMAttr(Node).Name);
wrtChars('="', 2);
Child := Node.FirstChild;
while Assigned(Child) do
begin
case Child.NodeType of
ENTITY_REFERENCE_NODE:
VisitEntityRef(Child);
TEXT_NODE:
ConvWrite(TDOMCharacterData(Child).Data, AttrSpecialChars, @AttrSpecialCharCallback);
end;
Child := Child.NextSibling;
end;
wrtChr('"');
end;
procedure TXMLWriter.VisitDocumentType(Node: TDOMNode);
begin
wrtStr(FLineBreak);
wrtStr('<!DOCTYPE ');
wrtStr(Node.NodeName);
wrtChr(' ');
with TDOMDocumentType(Node) do
begin
if PublicID <> '' then
begin
wrtStr('PUBLIC ');
wrtQuotedLiteral(PublicID);
wrtChr(' ');
wrtQuotedLiteral(SystemID);
end
else if SystemID <> '' then
begin
wrtStr('SYSTEM ');
wrtQuotedLiteral(SystemID);
end;
if InternalSubset <> '' then
begin
wrtChr('[');
ConvWrite(InternalSubset, LineEndingChars, @TextnodeNormalCallback);
wrtChr(']');
end;
end;
wrtChr('>');
end;
procedure TXMLWriter.VisitFragment(Node: TDOMNode);
var
Child: TDOMNode;
begin
// TODO: TextDecl is probably needed
// Fragment itself should not be written, only its children should...
Child := Node.FirstChild;
while Assigned(Child) do
begin
WriteNode(Child);
Child := Child.NextSibling;
end;
end;
// -------------------------------------------------------------------
// Interface implementation
// -------------------------------------------------------------------
procedure WriteXMLFile(doc: TXMLDocument; const AFileName: String);
var
fs: TFileStream;
begin
fs := TFileStream.Create(AFileName, fmCreate);
try
WriteXMLFile(doc, fs);
finally
fs.Free;
end;
end;
procedure WriteXMLFile(doc: TXMLDocument; var AFile: Text);
var
s: TStream;
begin
s := TTextStream.Create(AFile);
try
with TXMLWriter.Create(s) do
try
WriteNode(doc);
finally
Free;
end;
finally
s.Free;
end;
end;
procedure WriteXMLFile(doc: TXMLDocument; AStream: TStream);
begin
with TXMLWriter.Create(AStream) do
try
WriteNode(doc);
finally
Free;
end;
end;
procedure WriteXML(Element: TDOMNode; const AFileName: String);
begin
WriteXMLFile(TXMLDocument(Element), AFileName);
end;
procedure WriteXML(Element: TDOMNode; var AFile: Text);
begin
WriteXMLFile(TXMLDocument(Element), AFile);
end;
procedure WriteXML(Element: TDOMNode; AStream: TStream);
begin
WriteXMLFile(TXMLDocument(Element), AStream);
end;
end.
|