| 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 |
1x
1x
1x
1x
1x
1x
1x
1x
1x
1x
1x
258x
258x
258x
258x
258x
258x
1x
258x
258x
14908x
14908x
14908x
41x
41x
41x
12104x
12104x
12104x
4007x
325x
325x
1172x
325x
325x
325x
304x
304x
1319x
16x
16x
16x
1303x
1303x
1303x
1303x
304x
304x
45x
259x
259x
3378x
8097x
7218x
7218x
389x
389x
389x
389x
6829x
879x
179x
179x
179x
700x
41x
41x
41x
41x
41x
41x
1x
1x
41x
41x
41x
38x
3x
3x
3x
3x
3x
3x
3x
4x
4x
4x
1x
3x
3x
3x
108x
108x
24x
108x
2x
2x
106x
3x
2x
2x
2x
1x
1x
3x
1x
2x
2x
2x
2x
40x
40x
40x
40x
40x
40x
40x
40x
40x
35x
35x
5x
5x
2x
2x
2x
4x
4x
4x
4x
4x
4x
5x
39x
39x
39x
39x
35x
35x
15x
20x
4x
4x
2x
2x
2x
2x
2x
2x
2x
1x
1x
293x
293x
293x
293x
1x
9196x
5997x
3199x
3196x
3x
1x
99757x
5x
8076x
8076x
8076x
8076x
8076x
20x
20x
20x
1x
8056x
1x
8076x
1x
1x
8076x
1x
2x
8076x
8076x
8076x
8076x
8076x
43167x
34625x
34625x
3x
34622x
1052x
34622x
8542x
478x
478x
8064x
2x
8062x
3x
3x
1x
1x
2x
1x
2x
8059x
8076x
479x
8076x
2x
8076x
112x
112x
112x
112x
112x
112x
2932x
2932x
1x
1x
1x
111x
111x
111x
111x
465x
465x
3x
3x
9x
9x
3x
3x
11x
11x
436x
436x
436x
436x
436x
436x
436x
436x
436x
436x
436x
2x
1x
2x
1x
465x
2355x
2355x
2932x
112x
2820x
2820x
112x
1770x
1770x
1770x
9327x
4x
4x
1x
1x
1x
3x
3x
3x
3x
3x
3x
2x
2x
2x
1x
1x
1x
1x
9323x
1770x
1770x
1631x
1631x
1631x
1631x
1631x
10832x
10832x
1631x
1631x
9201x
11x
11x
9190x
4596x
4596x
1x
1x
1x
4594x
4594x
4594x
9189x
9189x
1631x
17111x
17111x
17111x
35893x
96x
35797x
668x
33x
35129x
33x
35096x
17015x
18782x
17015x
8059x
110x
1767x
326x
326x
326x
326x
1940x
1940x
310x
310x
1630x
308x
308x
308x
308x
4179x
4179x
4179x
4179x
3374x
3374x
17x
3357x
3357x
3357x
4179x
2x
4177x
3x
4174x
15x
4159x
41x
41x
41x
20x
20x
20x
20x
21x
21x
21x
1x
1x
40x
40x
38x
2x
11x
11x
9x
19x
1x
8x
2x
37x
37x
37x
37x
37x
37x
24x
13x
2x
11x
1x
1x
1x | /* Copyright 2017 Mozilla Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Parser = exports.Linearization = exports.Lexer = undefined;
var _stream = require('./stream');
var _util = require('../shared/util');
var _primitives = require('./primitives');
var _ccitt_stream = require('./ccitt_stream');
var _jbig2_stream = require('./jbig2_stream');
var _jpeg_stream = require('./jpeg_stream');
var _jpx_stream = require('./jpx_stream');
var MAX_LENGTH_TO_CACHE = 1000;
var Parser = function ParserClosure() {
function Parser(lexer, allowStreams, xref, recoveryMode) {
this.lexer = lexer;
this.allowStreams = allowStreams;
this.xref = xref;
this.recoveryMode = recoveryMode || false;
this.imageCache = Object.create(null);
this.refill();
}
Parser.prototype = {
refill: function Parser_refill() {
this.buf1 = this.lexer.getObj();
this.buf2 = this.lexer.getObj();
},
shift: function Parser_shift() {
Iif ((0, _primitives.isCmd)(this.buf2, 'ID')) {
this.buf1 = this.buf2;
this.buf2 = null;
} else {
this.buf1 = this.buf2;
this.buf2 = this.lexer.getObj();
}
},
tryShift: function Parser_tryShift() {
try {
this.shift();
return true;
} catch (e) {
if (e instanceof _util.MissingDataException) {
throw e;
}
return false;
}
},
getObj: function Parser_getObj(cipherTransform) {
var buf1 = this.buf1;
this.shift();
if (buf1 instanceof _primitives.Cmd) {
switch (buf1.cmd) {
case 'BI':
return this.makeInlineImage(cipherTransform);
case '[':
var array = [];
while (!(0, _primitives.isCmd)(this.buf1, ']') && !(0, _primitives.isEOF)(this.buf1)) {
array.push(this.getObj(cipherTransform));
}
Iif ((0, _primitives.isEOF)(this.buf1)) {
if (!this.recoveryMode) {
throw new _util.FormatError('End of file inside array');
}
return array;
}
this.shift();
return array;
case '<<':
var dict = new _primitives.Dict(this.xref);
while (!(0, _primitives.isCmd)(this.buf1, '>>') && !(0, _primitives.isEOF)(this.buf1)) {
if (!(0, _primitives.isName)(this.buf1)) {
(0, _util.info)('Malformed dictionary: key must be a name object');
this.shift();
continue;
}
var key = this.buf1.name;
this.shift();
Iif ((0, _primitives.isEOF)(this.buf1)) {
break;
}
dict.set(key, this.getObj(cipherTransform));
}
Iif ((0, _primitives.isEOF)(this.buf1)) {
if (!this.recoveryMode) {
throw new _util.FormatError('End of file inside dictionary');
}
return dict;
}
if ((0, _primitives.isCmd)(this.buf2, 'stream')) {
return this.allowStreams ? this.makeStream(dict, cipherTransform) : dict;
}
this.shift();
return dict;
default:
return buf1;
}
}
if (Number.isInteger(buf1)) {
var num = buf1;
if (Number.isInteger(this.buf1) && (0, _primitives.isCmd)(this.buf2, 'R')) {
var ref = new _primitives.Ref(num, this.buf1);
this.shift();
this.shift();
return ref;
}
return num;
}
if ((0, _util.isString)(buf1)) {
var str = buf1;
Iif (cipherTransform) {
str = cipherTransform.decryptString(str);
}
return str;
}
return buf1;
},
findDefaultInlineStreamEnd: function findDefaultInlineStreamEnd(stream) {
var E = 0x45,
I = 0x49,
SPACE = 0x20,
LF = 0xA,
CR = 0xD;
var n = 10,
NUL = 0x0;
var startPos = stream.pos,
state = 0,
ch = void 0,
maybeEIPos = void 0;
while ((ch = stream.getByte()) !== -1) {
if (state === 0) {
state = ch === E ? 1 : 0;
} else if (state === 1) {
state = ch === I ? 2 : 0;
} else {
(0, _util.assert)(state === 2);
if (ch === SPACE || ch === LF || ch === CR) {
maybeEIPos = stream.pos;
var followingBytes = stream.peekBytes(n);
for (var i = 0, ii = followingBytes.length; i < ii; i++) {
ch = followingBytes[i];
if (ch === NUL && followingBytes[i + 1] !== NUL) {
continue;
}
if (ch !== LF && ch !== CR && (ch < SPACE || ch > 0x7F)) {
state = 0;
break;
}
}
if (state === 2) {
break;
}
} else {
state = 0;
}
}
}
if (ch === -1) {
(0, _util.warn)('findDefaultInlineStreamEnd: ' + 'Reached the end of the stream without finding a valid EI marker');
if (maybeEIPos) {
(0, _util.warn)('... trying to recover by using the last "EI" occurrence.');
stream.skip(-(stream.pos - maybeEIPos));
}
}
return stream.pos - 4 - startPos;
},
findDCTDecodeInlineStreamEnd: function Parser_findDCTDecodeInlineStreamEnd(stream) {
var startPos = stream.pos,
foundEOI = false,
b,
markerLength,
length;
while ((b = stream.getByte()) !== -1) {
if (b !== 0xFF) {
continue;
}
switch (stream.getByte()) {
case 0x00:
break;
case 0xFF:
stream.skip(-1);
break;
case 0xD9:
foundEOI = true;
break;
case 0xC0:
case 0xC1:
case 0xC2:
case 0xC3:
case 0xC5:
case 0xC6:
case 0xC7:
case 0xC9:
case 0xCA:
case 0xCB:
case 0xCD:
case 0xCE:
case 0xCF:
case 0xC4:
case 0xCC:
case 0xDA:
case 0xDB:
case 0xDC:
case 0xDD:
case 0xDE:
case 0xDF:
case 0xE0:
case 0xE1:
case 0xE2:
case 0xE3:
case 0xE4:
case 0xE5:
case 0xE6:
case 0xE7:
case 0xE8:
case 0xE9:
case 0xEA:
case 0xEB:
case 0xEC:
case 0xED:
case 0xEE:
case 0xEF:
case 0xFE:
markerLength = stream.getUint16();
if (markerLength > 2) {
stream.skip(markerLength - 2);
} else {
stream.skip(-2);
}
break;
}
if (foundEOI) {
break;
}
}
length = stream.pos - startPos;
if (b === -1) {
(0, _util.warn)('Inline DCTDecode image stream: ' + 'EOI marker not found, searching for /EI/ instead.');
stream.skip(-length);
return this.findDefaultInlineStreamEnd(stream);
}
this.inlineStreamSkipEI(stream);
return length;
},
findASCII85DecodeInlineStreamEnd: function Parser_findASCII85DecodeInlineStreamEnd(stream) {
var TILDE = 0x7E,
GT = 0x3E;
var startPos = stream.pos,
ch,
length;
while ((ch = stream.getByte()) !== -1) {
if (ch === TILDE && stream.peekByte() === GT) {
stream.skip();
break;
}
}
length = stream.pos - startPos;
if (ch === -1) {
(0, _util.warn)('Inline ASCII85Decode image stream: ' + 'EOD marker not found, searching for /EI/ instead.');
stream.skip(-length);
return this.findDefaultInlineStreamEnd(stream);
}
this.inlineStreamSkipEI(stream);
return length;
},
findASCIIHexDecodeInlineStreamEnd: function Parser_findASCIIHexDecodeInlineStreamEnd(stream) {
var GT = 0x3E;
var startPos = stream.pos,
ch,
length;
while ((ch = stream.getByte()) !== -1) {
if (ch === GT) {
break;
}
}
length = stream.pos - startPos;
if (ch === -1) {
(0, _util.warn)('Inline ASCIIHexDecode image stream: ' + 'EOD marker not found, searching for /EI/ instead.');
stream.skip(-length);
return this.findDefaultInlineStreamEnd(stream);
}
this.inlineStreamSkipEI(stream);
return length;
},
inlineStreamSkipEI: function Parser_inlineStreamSkipEI(stream) {
var E = 0x45,
I = 0x49;
var state = 0,
ch;
while ((ch = stream.getByte()) !== -1) {
if (state === 0) {
state = ch === E ? 1 : 0;
} else if (state === 1) {
state = ch === I ? 2 : 0;
} else if (state === 2) {
break;
}
}
},
makeInlineImage: function Parser_makeInlineImage(cipherTransform) {
var lexer = this.lexer;
var stream = lexer.stream;
var dict = new _primitives.Dict(this.xref);
while (!(0, _primitives.isCmd)(this.buf1, 'ID') && !(0, _primitives.isEOF)(this.buf1)) {
if (!(0, _primitives.isName)(this.buf1)) {
throw new _util.FormatError('Dictionary key must be a name object');
}
var key = this.buf1.name;
this.shift();
if ((0, _primitives.isEOF)(this.buf1)) {
break;
}
dict.set(key, this.getObj(cipherTransform));
}
var filter = dict.get('Filter', 'F'),
filterName;
if ((0, _primitives.isName)(filter)) {
filterName = filter.name;
} else if (Array.isArray(filter)) {
var filterZero = this.xref.fetchIfRef(filter[0]);
if ((0, _primitives.isName)(filterZero)) {
filterName = filterZero.name;
}
}
var startPos = stream.pos,
length,
i,
ii;
if (filterName === 'DCTDecode' || filterName === 'DCT') {
length = this.findDCTDecodeInlineStreamEnd(stream);
} else if (filterName === 'ASCII85Decode' || filterName === 'A85') {
length = this.findASCII85DecodeInlineStreamEnd(stream);
} else if (filterName === 'ASCIIHexDecode' || filterName === 'AHx') {
length = this.findASCIIHexDecodeInlineStreamEnd(stream);
} else {
length = this.findDefaultInlineStreamEnd(stream);
}
var imageStream = stream.makeSubStream(startPos, length, dict);
var adler32;
if (length < MAX_LENGTH_TO_CACHE) {
var imageBytes = imageStream.getBytes();
imageStream.reset();
var a = 1;
var b = 0;
for (i = 0, ii = imageBytes.length; i < ii; ++i) {
a += imageBytes[i] & 0xff;
b += a;
}
adler32 = b % 65521 << 16 | a % 65521;
var cacheEntry = this.imageCache[adler32];
if (cacheEntry !== undefined) {
this.buf2 = _primitives.Cmd.get('EI');
this.shift();
cacheEntry.reset();
return cacheEntry;
}
}
if (cipherTransform) {
imageStream = cipherTransform.createStream(imageStream, length);
}
imageStream = this.filter(imageStream, dict, length);
imageStream.dict = dict;
if (adler32 !== undefined) {
imageStream.cacheKey = 'inline_' + length + '_' + adler32;
this.imageCache[adler32] = imageStream;
}
this.buf2 = _primitives.Cmd.get('EI');
this.shift();
return imageStream;
},
makeStream: function Parser_makeStream(dict, cipherTransform) {
var lexer = this.lexer;
var stream = lexer.stream;
lexer.skipToNextLine();
var pos = stream.pos - 1;
var length = dict.get('Length');
if (!Number.isInteger(length)) {
(0, _util.info)('Bad ' + length + ' attribute in stream');
length = 0;
}
stream.pos = pos + length;
lexer.nextChar();
if (this.tryShift() && (0, _primitives.isCmd)(this.buf2, 'endstream')) {
this.shift();
} else {
stream.pos = pos;
var SCAN_BLOCK_SIZE = 2048;
var ENDSTREAM_SIGNATURE_LENGTH = 9;
var ENDSTREAM_SIGNATURE = [0x65, 0x6E, 0x64, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6D];
var skipped = 0,
found = false,
i,
j;
while (stream.pos < stream.end) {
var scanBytes = stream.peekBytes(SCAN_BLOCK_SIZE);
var scanLength = scanBytes.length - ENDSTREAM_SIGNATURE_LENGTH;
if (scanLength <= 0) {
break;
}
found = false;
i = 0;
while (i < scanLength) {
j = 0;
while (j < ENDSTREAM_SIGNATURE_LENGTH && scanBytes[i + j] === ENDSTREAM_SIGNATURE[j]) {
j++;
}
if (j >= ENDSTREAM_SIGNATURE_LENGTH) {
found = true;
break;
}
i++;
}
if (found) {
skipped += i;
stream.pos += i;
break;
}
skipped += scanLength;
stream.pos += scanLength;
}
if (!found) {
throw new _util.FormatError('Missing endstream');
}
length = skipped;
lexer.nextChar();
this.shift();
this.shift();
}
this.shift();
stream = stream.makeSubStream(pos, length, dict);
Iif (cipherTransform) {
stream = cipherTransform.createStream(stream, length);
}
stream = this.filter(stream, dict, length);
stream.dict = dict;
return stream;
},
filter: function Parser_filter(stream, dict, length) {
var filter = dict.get('Filter', 'F');
var params = dict.get('DecodeParms', 'DP');
if ((0, _primitives.isName)(filter)) {
Iif (Array.isArray(params)) {
(0, _util.warn)('/DecodeParms should not contain an Array, ' + 'when /Filter contains a Name.');
}
return this.makeFilter(stream, filter.name, length, params);
}
var maybeLength = length;
if (Array.isArray(filter)) {
var filterArray = filter;
var paramsArray = params;
for (var i = 0, ii = filterArray.length; i < ii; ++i) {
filter = this.xref.fetchIfRef(filterArray[i]);
Iif (!(0, _primitives.isName)(filter)) {
throw new _util.FormatError('Bad filter name: ' + filter);
}
params = null;
Iif (Array.isArray(paramsArray) && i in paramsArray) {
params = this.xref.fetchIfRef(paramsArray[i]);
}
stream = this.makeFilter(stream, filter.name, maybeLength, params);
maybeLength = null;
}
}
return stream;
},
makeFilter: function Parser_makeFilter(stream, name, maybeLength, params) {
Iif (maybeLength === 0) {
(0, _util.warn)('Empty "' + name + '" stream.');
return new _stream.NullStream();
}
try {
var xrefStreamStats = this.xref.stats.streamTypes;
if (name === 'FlateDecode' || name === 'Fl') {
xrefStreamStats[_util.StreamType.FLATE] = true;
if (params) {
return new _stream.PredictorStream(new _stream.FlateStream(stream, maybeLength), maybeLength, params);
}
return new _stream.FlateStream(stream, maybeLength);
}
Iif (name === 'LZWDecode' || name === 'LZW') {
xrefStreamStats[_util.StreamType.LZW] = true;
var earlyChange = 1;
if (params) {
if (params.has('EarlyChange')) {
earlyChange = params.get('EarlyChange');
}
return new _stream.PredictorStream(new _stream.LZWStream(stream, maybeLength, earlyChange), maybeLength, params);
}
return new _stream.LZWStream(stream, maybeLength, earlyChange);
}
if (name === 'DCTDecode' || name === 'DCT') {
xrefStreamStats[_util.StreamType.DCT] = true;
return new _jpeg_stream.JpegStream(stream, maybeLength, stream.dict, params);
}
Iif (name === 'JPXDecode' || name === 'JPX') {
xrefStreamStats[_util.StreamType.JPX] = true;
return new _jpx_stream.JpxStream(stream, maybeLength, stream.dict, params);
}
Iif (name === 'ASCII85Decode' || name === 'A85') {
xrefStreamStats[_util.StreamType.A85] = true;
return new _stream.Ascii85Stream(stream, maybeLength);
}
Eif (name === 'ASCIIHexDecode' || name === 'AHx') {
xrefStreamStats[_util.StreamType.AHX] = true;
return new _stream.AsciiHexStream(stream, maybeLength);
}
if (name === 'CCITTFaxDecode' || name === 'CCF') {
xrefStreamStats[_util.StreamType.CCF] = true;
return new _ccitt_stream.CCITTFaxStream(stream, maybeLength, params);
}
if (name === 'RunLengthDecode' || name === 'RL') {
xrefStreamStats[_util.StreamType.RL] = true;
return new _stream.RunLengthStream(stream, maybeLength);
}
if (name === 'JBIG2Decode') {
xrefStreamStats[_util.StreamType.JBIG] = true;
return new _jbig2_stream.Jbig2Stream(stream, maybeLength, stream.dict, params);
}
(0, _util.warn)('filter "' + name + '" not supported yet');
return stream;
} catch (ex) {
if (ex instanceof _util.MissingDataException) {
throw ex;
}
(0, _util.warn)('Invalid stream: \"' + ex + '\"');
return new _stream.NullStream();
}
}
};
return Parser;
}();
var Lexer = function LexerClosure() {
function Lexer(stream, knownCommands) {
this.stream = stream;
this.nextChar();
this.strBuf = [];
this.knownCommands = knownCommands;
}
var specialChars = [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
function toHexDigit(ch) {
if (ch >= 0x30 && ch <= 0x39) {
return ch & 0x0F;
}
if (ch >= 0x41 && ch <= 0x46 || ch >= 0x61 && ch <= 0x66) {
return (ch & 0x0F) + 9;
}
return -1;
}
Lexer.prototype = {
nextChar: function Lexer_nextChar() {
return this.currentChar = this.stream.getByte();
},
peekChar: function Lexer_peekChar() {
return this.stream.peekByte();
},
getNumber: function Lexer_getNumber() {
var ch = this.currentChar;
var eNotation = false;
var divideBy = 0;
var sign = 1;
if (ch === 0x2D) {
sign = -1;
ch = this.nextChar();
if (ch === 0x2D) {
ch = this.nextChar();
}
} else if (ch === 0x2B) {
ch = this.nextChar();
}
if (ch === 0x2E) {
divideBy = 10;
ch = this.nextChar();
}
if (ch === 0x0A || ch === 0x0D) {
do {
ch = this.nextChar();
} while (ch === 0x0A || ch === 0x0D);
}
Iif (ch < 0x30 || ch > 0x39) {
throw new _util.FormatError('Invalid number: ' + String.fromCharCode(ch) + ' (charCode ' + ch + ')');
}
var baseValue = ch - 0x30;
var powerValue = 0;
var powerValueSign = 1;
while ((ch = this.nextChar()) >= 0) {
if (0x30 <= ch && ch <= 0x39) {
var currentDigit = ch - 0x30;
if (eNotation) {
powerValue = powerValue * 10 + currentDigit;
} else {
if (divideBy !== 0) {
divideBy *= 10;
}
baseValue = baseValue * 10 + currentDigit;
}
} else if (ch === 0x2E) {
Eif (divideBy === 0) {
divideBy = 1;
} else {
break;
}
} else if (ch === 0x2D) {
(0, _util.warn)('Badly formatted number');
} else if (ch === 0x45 || ch === 0x65) {
ch = this.peekChar();
if (ch === 0x2B || ch === 0x2D) {
powerValueSign = ch === 0x2D ? -1 : 1;
this.nextChar();
} else if (ch < 0x30 || ch > 0x39) {
break;
}
eNotation = true;
} else {
break;
}
}
if (divideBy !== 0) {
baseValue /= divideBy;
}
if (eNotation) {
baseValue *= Math.pow(10, powerValueSign * powerValue);
}
return sign * baseValue;
},
getString: function Lexer_getString() {
var numParen = 1;
var done = false;
var strBuf = this.strBuf;
strBuf.length = 0;
var ch = this.nextChar();
while (true) {
var charBuffered = false;
switch (ch | 0) {
case -1:
(0, _util.warn)('Unterminated string');
done = true;
break;
case 0x28:
++numParen;
strBuf.push('(');
break;
case 0x29:
Eif (--numParen === 0) {
this.nextChar();
done = true;
} else {
strBuf.push(')');
}
break;
case 0x5C:
ch = this.nextChar();
switch (ch) {
case -1:
(0, _util.warn)('Unterminated string');
done = true;
break;
case 0x6E:
strBuf.push('\n');
break;
case 0x72:
strBuf.push('\r');
break;
case 0x74:
strBuf.push('\t');
break;
case 0x62:
strBuf.push('\b');
break;
case 0x66:
strBuf.push('\f');
break;
case 0x5C:
case 0x28:
case 0x29:
strBuf.push(String.fromCharCode(ch));
break;
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
var x = ch & 0x0F;
ch = this.nextChar();
charBuffered = true;
Eif (ch >= 0x30 && ch <= 0x37) {
x = (x << 3) + (ch & 0x0F);
ch = this.nextChar();
Eif (ch >= 0x30 && ch <= 0x37) {
charBuffered = false;
x = (x << 3) + (ch & 0x0F);
}
}
strBuf.push(String.fromCharCode(x));
break;
case 0x0D:
if (this.peekChar() === 0x0A) {
this.nextChar();
}
break;
case 0x0A:
break;
default:
strBuf.push(String.fromCharCode(ch));
break;
}
break;
default:
strBuf.push(String.fromCharCode(ch));
break;
}
if (done) {
break;
}
Eif (!charBuffered) {
ch = this.nextChar();
}
}
return strBuf.join('');
},
getName: function Lexer_getName() {
var ch, previousCh;
var strBuf = this.strBuf;
strBuf.length = 0;
while ((ch = this.nextChar()) >= 0 && !specialChars[ch]) {
if (ch === 0x23) {
ch = this.nextChar();
if (specialChars[ch]) {
(0, _util.warn)('Lexer_getName: ' + 'NUMBER SIGN (#) should be followed by a hexadecimal number.');
strBuf.push('#');
break;
}
var x = toHexDigit(ch);
Eif (x !== -1) {
previousCh = ch;
ch = this.nextChar();
var x2 = toHexDigit(ch);
if (x2 === -1) {
(0, _util.warn)('Lexer_getName: Illegal digit (' + String.fromCharCode(ch) + ') in hexadecimal number.');
strBuf.push('#', String.fromCharCode(previousCh));
if (specialChars[ch]) {
break;
}
strBuf.push(String.fromCharCode(ch));
continue;
}
strBuf.push(String.fromCharCode(x << 4 | x2));
} else {
strBuf.push('#', String.fromCharCode(ch));
}
} else {
strBuf.push(String.fromCharCode(ch));
}
}
Iif (strBuf.length > 127) {
(0, _util.warn)('name token is longer than allowed by the spec: ' + strBuf.length);
}
return _primitives.Name.get(strBuf.join(''));
},
getHexString: function Lexer_getHexString() {
var strBuf = this.strBuf;
strBuf.length = 0;
var ch = this.currentChar;
var isFirstHex = true;
var firstDigit;
var secondDigit;
while (true) {
Iif (ch < 0) {
(0, _util.warn)('Unterminated hex string');
break;
} else if (ch === 0x3E) {
this.nextChar();
break;
} else if (specialChars[ch] === 1) {
ch = this.nextChar();
continue;
} else {
if (isFirstHex) {
firstDigit = toHexDigit(ch);
if (firstDigit === -1) {
(0, _util.warn)('Ignoring invalid character "' + ch + '" in hex string');
ch = this.nextChar();
continue;
}
} else {
secondDigit = toHexDigit(ch);
Iif (secondDigit === -1) {
(0, _util.warn)('Ignoring invalid character "' + ch + '" in hex string');
ch = this.nextChar();
continue;
}
strBuf.push(String.fromCharCode(firstDigit << 4 | secondDigit));
}
isFirstHex = !isFirstHex;
ch = this.nextChar();
}
}
return strBuf.join('');
},
getObj: function Lexer_getObj() {
var comment = false;
var ch = this.currentChar;
while (true) {
if (ch < 0) {
return _primitives.EOF;
}
if (comment) {
if (ch === 0x0A || ch === 0x0D) {
comment = false;
}
} else if (ch === 0x25) {
comment = true;
} else if (specialChars[ch] !== 1) {
break;
}
ch = this.nextChar();
}
switch (ch | 0) {
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
case 0x2B:
case 0x2D:
case 0x2E:
return this.getNumber();
case 0x28:
return this.getString();
case 0x2F:
return this.getName();
case 0x5B:
this.nextChar();
return _primitives.Cmd.get('[');
case 0x5D:
this.nextChar();
return _primitives.Cmd.get(']');
case 0x3C:
ch = this.nextChar();
if (ch === 0x3C) {
this.nextChar();
return _primitives.Cmd.get('<<');
}
return this.getHexString();
case 0x3E:
ch = this.nextChar();
Eif (ch === 0x3E) {
this.nextChar();
return _primitives.Cmd.get('>>');
}
return _primitives.Cmd.get('>');
case 0x7B:
this.nextChar();
return _primitives.Cmd.get('{');
case 0x7D:
this.nextChar();
return _primitives.Cmd.get('}');
case 0x29:
this.nextChar();
throw new _util.FormatError('Illegal character: ' + ch);
}
var str = String.fromCharCode(ch);
var knownCommands = this.knownCommands;
var knownCommandFound = knownCommands && knownCommands[str] !== undefined;
while ((ch = this.nextChar()) >= 0 && !specialChars[ch]) {
var possibleCommand = str + String.fromCharCode(ch);
if (knownCommandFound && knownCommands[possibleCommand] === undefined) {
break;
}
Iif (str.length === 128) {
throw new _util.FormatError('Command token too long: ' + str.length);
}
str = possibleCommand;
knownCommandFound = knownCommands && knownCommands[str] !== undefined;
}
if (str === 'true') {
return true;
}
if (str === 'false') {
return false;
}
if (str === 'null') {
return null;
}
return _primitives.Cmd.get(str);
},
skipToNextLine: function Lexer_skipToNextLine() {
var ch = this.currentChar;
while (ch >= 0) {
if (ch === 0x0D) {
ch = this.nextChar();
Eif (ch === 0x0A) {
this.nextChar();
}
break;
} else Eif (ch === 0x0A) {
this.nextChar();
break;
}
ch = this.nextChar();
}
}
};
return Lexer;
}();
var Linearization = {
create: function LinearizationCreate(stream) {
function getInt(name, allowZeroValue) {
var obj = linDict.get(name);
if (Number.isInteger(obj) && (allowZeroValue ? obj >= 0 : obj > 0)) {
return obj;
}
throw new Error('The "' + name + '" parameter in the linearization ' + 'dictionary is invalid.');
}
function getHints() {
var hints = linDict.get('H'),
hintsLength,
item;
if (Array.isArray(hints) && ((hintsLength = hints.length) === 2 || hintsLength === 4)) {
for (var index = 0; index < hintsLength; index++) {
if (!(Number.isInteger(item = hints[index]) && item > 0)) {
throw new Error('Hint (' + index + ') in the linearization dictionary is invalid.');
}
}
return hints;
}
throw new Error('Hint array in the linearization dictionary is invalid.');
}
var parser = new Parser(new Lexer(stream), false, null);
var obj1 = parser.getObj();
var obj2 = parser.getObj();
var obj3 = parser.getObj();
var linDict = parser.getObj();
var obj, length;
if (!(Number.isInteger(obj1) && Number.isInteger(obj2) && (0, _primitives.isCmd)(obj3, 'obj') && (0, _primitives.isDict)(linDict) && (0, _util.isNum)(obj = linDict.get('Linearized')) && obj > 0)) {
return null;
} else if ((length = getInt('L')) !== stream.length) {
throw new Error('The "L" parameter in the linearization dictionary ' + 'does not equal the stream length.');
}
return {
length: length,
hints: getHints(),
objectNumberFirst: getInt('O'),
endFirst: getInt('E'),
numPages: getInt('N'),
mainXRefEntriesOffset: getInt('T'),
pageFirst: linDict.has('P') ? getInt('P', true) : 0
};
}
};
exports.Lexer = Lexer;
exports.Linearization = Linearization;
exports.Parser = Parser; |