This repository has been archived by the owner on Jun 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JsStAX.js
1173 lines (960 loc) · 26.8 KB
/
JsStAX.js
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
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright (C) 2018 Stephan Kreutzer
*
* This file is part of JsStAX.
*
* JsStAX is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 or any later
* version of the license, as published by the Free Software Foundation.
*
* JsStAX 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. See the
* GNU Affero General Public License 3 for more details.
*
* You should have received a copy of the GNU Affero General Public License 3
* along with JsStAX. If not, see <http://www.gnu.org/licenses/>.
*/
/** @todo The regex to match alphabetic letters is way too primitive, but
* JavaScript doesn't offer a proper Unicode alternative. */
"use strict";
function createXMLEventReader(stream)
{
return new XMLEventReader(stream);
}
function XMLEventReader(stream)
{
let self = this;
let _stream = stream;
let _hasNextCalled = false;
let _events = [];
let _entityReplacementDictionary = [];
_entityReplacementDictionary["amp"] = "&";
_entityReplacementDictionary["lt"] = "<";
_entityReplacementDictionary["gt"] = ">";
_entityReplacementDictionary["apos"] = "'";
_entityReplacementDictionary["quot"] = "\"";
/** @todo Load more from a catalogue, which itself is written in XML and needs to be read
* in here by another local XMLEventReader object, containing mappings from entity to
* replacement characters. No need to deal with DTDs as they're non-XML, and extracting
* those mappings from a DTD can be a separate program or manual procedure. Also see
* intermediate workaround method XMLEventReader.addToEntityReplacementDictionary(). */
self.hasNext = function()
{
if (_events.length > 0)
{
return true;
}
if (self._hasNextCalled == true)
{
return false;
}
else
{
self._hasNextCalled = true;
}
let byte = _stream.get();
if (_stream.eof() == true)
{
return false;
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '<')
{
return HandleTag();
}
else
{
return HandleText(byte);
}
}
self.nextEvent = function()
{
if (_events.length <= 0 &&
self._hasNextCalled == false)
{
if (self.hasNext() != true)
{
throw "Attempted XMLEventReader.nextEvent() while there isn't one instead of checking XMLEventReader.hasNext() first.";
}
}
self._hasNextCalled = false;
if (_events.length <= 0)
{
throw "XMLEventReader.nextEvent() while there isn't one, ignoring XMLEventReader.hasNext() == false.";
}
return _events.shift();
}
function HandleText(firstByte)
{
let data = "";
if (firstByte == '&')
{
data += ResolveEntity();
}
else
{
data += firstByte;
}
while (true)
{
let byte = _stream.get();
if (_stream.eof() == true)
{
break;
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '<')
{
_stream.unget();
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
break;
}
else if (byte == '&')
{
data += ResolveEntity();
}
else
{
data += byte;
}
}
let event = new Characters(data);
_events.push(event);
return true;
}
function HandleTag()
{
let byte = _stream.get();
if (_stream.eof() == true)
{
throw "Tag incomplete."
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '?')
{
if (HandleProcessingInstruction() == true)
{
return true;
}
else
{
self._hasNextCalled = false;
return self.hasNext();
}
}
else if (byte == '/')
{
return HandleTagEnd();
}
else if (byte == '!')
{
return HandleMarkupDeclaration();
}
else if (/[a-zA-Z]/.test(byte) == true ||
byte == '_')
{
return HandleTagStart(byte);
}
else
{
throw "Unknown byte '" + byte + "' within element.";
}
}
function HandleProcessingInstruction()
{
let target = HandleProcessingInstructionTarget();
if (typeof target == "undefined")
{
throw "Processing instruction without target name.";
}
if (target.length == 3)
{
if ((target.charAt(0) == 'x' ||
target.charAt(0) == 'X') &&
(target.charAt(1) == 'm' ||
target.charAt(1) == 'M') &&
(target.charAt(2) == 'l' ||
target.charAt(2) == 'L'))
{
/** @todo This should read the XML declaration instructions instead
* of just consuming/ignoring it. */
let byte;
let matchCount = 0;
while (matchCount < 2)
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "XML declaration incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '?' &&
matchCount <= 0)
{
matchCount++;
}
else if (byte == '>' &&
matchCount <= 1)
{
return false;
}
}
return false;
}
}
let data = "";
let byte;
let matchCount = 0;
while (matchCount < 2)
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Processing instruction data incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '?' &&
matchCount <= 0)
{
matchCount++;
}
else if (byte == '>' &&
matchCount <= 1)
{
//matchCount++;
let event = new ProcessingInstruction(target, data);
_events.push(event);
return true;
}
else
{
if (matchCount > 0)
{
data += '?';
}
matchCount = 0;
data += byte;
}
}
return false;
}
function HandleProcessingInstructionTarget()
{
let name = "";
let byte;
let matchCount = 0;
while (matchCount < 2)
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Processing instruction target name incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '?' &&
matchCount <= 0)
{
matchCount++;
}
else if (byte == '>' &&
matchCount <= 1)
{
throw "Processing instruction ended before processing instruction target name could be read.";
}
else if (/^\s+$/.test(byte) == true)
{
if (name.length <= 0)
{
throw "Processing instruction without target name.";
}
return name;
}
else
{
if (matchCount > 0)
{
throw "Processing instruction target name interrupted by '?'.";
}
if (name.length <= 0)
{
if (/[a-zA-Z]/.test(byte) != true)
{
throw "Character '" + byte + "' not supported as first character of an processing instruction target name.";
}
}
name += byte;
}
}
return undefined;
}
function HandleTagStart(firstByte)
{
let byte = _stream.get();
if (_stream.eof() == true)
{
throw "Tag start incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
let namePrefix = "";
let nameLocalPart = "";
let attributes = [];
nameLocalPart += firstByte;
do
{
/** @todo Check, if special characters appear at the very start where not allowed.
* This might apply for the namespace prefix as well as for the element name. */
if (byte == ':')
{
if (namePrefix.length > 0)
{
throw "There can't be two prefixes in element name.";
}
namePrefix = nameLocalPart;
nameLocalPart = "";
}
else if (byte == '>')
{
let name = new QName("", nameLocalPart, namePrefix);
let startElement = new StartElement(name, attributes);
_events.push(startElement);
break;
}
else if (byte == '/')
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Tag start incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte != '>')
{
throw "Empty start + end tag end without closing '>'.";
}
let name = new QName("", nameLocalPart, namePrefix);
let startElement = new StartElement(name, attributes);
_events.push(startElement);
name = new QName("", nameLocalPart, namePrefix);
let endElement = new EndElement(name);
_events.push(endElement);
break;
}
else if (/^\s+$/.test(byte) == true)
{
if (nameLocalPart.length <= 0)
{
throw "Start tag name begins with whitespace.";
}
while (true)
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Tag start incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '>')
{
break;
}
else if (/^\s+$/.test(byte) == true)
{
// Ignore/consume.
}
else if (byte == '/')
{
_stream.unget();
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
break;
}
else
{
attributes = HandleAttributes(byte);
break;
}
}
}
/** @todo The check was isalnum(), so it should support Unicode. */
else if (/[a-zA-Z0-9]/.test(byte) == true ||
byte == '-' ||
byte == '_' ||
byte == '.')
{
nameLocalPart += byte;
}
else
{
throw "Character '" + byte + "' not supported in a start tag name.";
}
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Tag start incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
} while (true);
return true;
}
function HandleMarkupDeclaration()
{
let byte = _stream.get();
if (_stream.eof() == true)
{
throw "Markup declaration incomplete.";
}
if (_stream.bad() == true)
{
throw "Steam is bad.";
}
if (byte == '-')
{
return HandleComment();
}
else
{
throw "Markup declaration type not implemented yet.";
}
return true;
}
function HandleComment()
{
let byte = _stream.get();
if (_stream.eof() == true)
{
throw "Comment incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte != '-')
{
throw "Comment malformed.";
}
let data = "";
let matchCount = 0;
let endSequence = [ '-', '-', '>' ];
do
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Comment incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == endSequence[matchCount])
{
if (matchCount + 1 < endSequence.length)
{
++matchCount;
}
else
{
let comment = new Comment(data);
_events.push(comment);
break;
}
}
else
{
if (matchCount > 0)
{
for (let i = 0; i < matchCount; i++)
{
data += endSequence[i];
}
data += byte;
matchCount = 0;
}
else
{
data += byte;
}
}
} while (true);
return true;
}
function HandleAttributes(firstByte)
{
let attributes = [];
let attributeName = HandleAttributeName(firstByte);
let attributeValue = HandleAttributeValue();
attributes.push(new Attribute(attributeName, attributeValue));
let byte;
do
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Tag start incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == '>')
{
// Not part of the attributes any more and indicator for outer
// methods to complete the StartElement.
_stream.unget();
break;
}
else if (byte == '/')
{
byte = _stream.get(byte);
if (_stream.eof() == true)
{
throw "Tag start incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte != '>')
{
throw "Empty start + end tag end without closing '>'.";
}
_stream.unget();
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
_stream.unget();
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
break;
}
else if (/^\s+$/.test(byte) == true)
{
// Ignore/consume.
continue;
}
else
{
attributeName = HandleAttributeName(byte);
attributeValue = HandleAttributeValue();
attributes.push(new Attribute(attributeName, attributeValue));
}
} while (true);
return attributes;
}
function HandleAttributeName(firstByte)
{
let namePrefix = "";
let nameLocalPart = "";
if (/[a-zA-Z]/.test(firstByte) == true ||
firstByte == '_')
{
nameLocalPart += firstByte;
}
else
{
throw "Character '" + firstByte + "' not supported as first character of an attribute name.";
}
let byte;
do
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Attribute name incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == ':')
{
if (namePrefix.length > 0)
{
throw "There can't be two prefixes in attribute name.";
}
namePrefix = nameLocalPart;
nameLocalPart = "";
}
else if (/^\s+$/.test(byte) == true)
{
byte = ConsumeWhitespace();
if (byte == '\0')
{
throw "Attribute incomplete.";
}
else if (byte != '=')
{
throw "Attribute name is malformed.";
}
// To make sure that the next loop iteration will end up in cByte == '='.
_stream.unget();
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
}
else if (byte == '=')
{
return new QName("", nameLocalPart, namePrefix);
}
else if (/[a-zA-Z0-9]/.test(byte) == true ||
byte == '-' ||
byte == '_' ||
byte == '.')
{
nameLocalPart += byte;
}
else
{
throw "Character '" + byte + "' not supported in an attribute name.";
}
} while (true);
return undefined;
}
function HandleAttributeValue()
{
let value = "";
let delimiter = ConsumeWhitespace();
if (delimiter == '\0')
{
throw "Attribute is missing its value.";
}
else if (delimiter != '\'' &&
delimiter != '"')
{
throw "Attribute value doesn't start with a delimiter like ''' or '\"', instead, '" + delimiter + "' was found.";
}
let byte;
do
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Attribute value incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == delimiter)
{
return value;
}
else if (byte == '&')
{
value += ResolveEntity();
}
else
{
value += byte;
}
} while (true);
return undefined;
}
/**
* @retval Returns the first non-whitespace character or '\0' in
* case of end-of-file.
*/
function ConsumeWhitespace()
{
let byte;
do
{
byte = _stream.get();
if (_stream.eof() == true)
{
return '\0';
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (/^\s+$/.test(byte) != true)
{
return byte;
}
} while (true);
}
self.addToEntityReplacementDictionary = function(name, replacementText)
{
if (name == "amp" ||
name == "lt" ||
name == "gt" ||
name == "apos" ||
name == "quot")
{
throw "Redefinition of built-in entity.";
}
_entityReplacementDictionary[name] = replacementText;
}
function ResolveEntity()
{
let byte = _stream.get();
if (_stream.eof() == true)
{
throw "Entity incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == ';')
{
throw "Entity has no name.";
}
else
{
let name = "";
name += byte;
do
{
byte = _stream.get();
if (_stream.eof() == true)
{
throw "Entity incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
if (byte == ';')
{
break;
}
name += byte;
} while (true);
if (name in _entityReplacementDictionary)
{
return _entityReplacementDictionary[name];
}
else
{
throw "Unable to resolve entity '&" + name + ";'.";
}
}
}
function HandleTagEnd()
{
let byte = _stream.get();
if (_stream.eof() == true)
{
throw "Tag end incomplete.";
}
if (_stream.bad() == true)
{
throw "Stream is bad.";
}
let namePrefix = "";
let nameLocalPart = "";
// No validity check for the XML element name is needed
// if end tags are compared to start tags and the start
// tags were already checked.
let complete = false;
do
{
if (byte == ':')
{
if (namePrefix.length > 0)
{
throw "There can't be two prefixes in the element name.";
}
namePrefix = nameLocalPart;
nameLocalPart = "";
}
else if (byte == '>')
{
let name = new QName("", nameLocalPart, namePrefix);
let endElement = new EndElement(name);
_events.push(endElement);
complete = true;
break;
}
else if (/[a-zA-Z0-9]/.test(byte) == true ||
byte == '-' ||
byte == '_' ||
byte == '.')
{
nameLocalPart += byte;
}
else
{
throw "Character '" + byte + "' not supported in an end tag name.";
}
byte = _stream.get();
if (_stream.eof() == true)
{
throw "End tag incomplete.";
}