123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2020 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.
- *
- * @licend The above is the entire license notice for the
- * Javascript code in this page
- */
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.FileSpec = exports.XRef = exports.ObjectLoader = exports.Catalog = void 0;
- var _util = require("../shared/util.js");
- var _primitives = require("./primitives.js");
- var _parser = require("./parser.js");
- var _core_utils = require("./core_utils.js");
- var _crypto = require("./crypto.js");
- var _colorspace = require("./colorspace.js");
- function fetchDestination(dest) {
- return (0, _primitives.isDict)(dest) ? dest.get("D") : dest;
- }
- class Catalog {
- constructor(pdfManager, xref) {
- this.pdfManager = pdfManager;
- this.xref = xref;
- this.catDict = xref.getCatalogObj();
- if (!(0, _primitives.isDict)(this.catDict)) {
- throw new _util.FormatError("Catalog object is not a dictionary.");
- }
- this.fontCache = new _primitives.RefSetCache();
- this.builtInCMapCache = new Map();
- this.pageKidsCountCache = new _primitives.RefSetCache();
- }
- get metadata() {
- const streamRef = this.catDict.getRaw("Metadata");
- if (!(0, _primitives.isRef)(streamRef)) {
- return (0, _util.shadow)(this, "metadata", null);
- }
- const suppressEncryption = !(this.xref.encrypt && this.xref.encrypt.encryptMetadata);
- const stream = this.xref.fetch(streamRef, suppressEncryption);
- let metadata;
- if (stream && (0, _primitives.isDict)(stream.dict)) {
- const type = stream.dict.get("Type");
- const subtype = stream.dict.get("Subtype");
- if ((0, _primitives.isName)(type, "Metadata") && (0, _primitives.isName)(subtype, "XML")) {
- try {
- metadata = (0, _util.stringToUTF8String)((0, _util.bytesToString)(stream.getBytes()));
- } catch (e) {
- if (e instanceof _core_utils.MissingDataException) {
- throw e;
- }
- (0, _util.info)("Skipping invalid metadata.");
- }
- }
- }
- return (0, _util.shadow)(this, "metadata", metadata);
- }
- get toplevelPagesDict() {
- const pagesObj = this.catDict.get("Pages");
- if (!(0, _primitives.isDict)(pagesObj)) {
- throw new _util.FormatError("Invalid top-level pages dictionary.");
- }
- return (0, _util.shadow)(this, "toplevelPagesDict", pagesObj);
- }
- get documentOutline() {
- let obj = null;
- try {
- obj = this._readDocumentOutline();
- } catch (ex) {
- if (ex instanceof _core_utils.MissingDataException) {
- throw ex;
- }
- (0, _util.warn)("Unable to read document outline.");
- }
- return (0, _util.shadow)(this, "documentOutline", obj);
- }
- _readDocumentOutline() {
- let obj = this.catDict.get("Outlines");
- if (!(0, _primitives.isDict)(obj)) {
- return null;
- }
- obj = obj.getRaw("First");
- if (!(0, _primitives.isRef)(obj)) {
- return null;
- }
- const root = {
- items: []
- };
- const queue = [{
- obj,
- parent: root
- }];
- const processed = new _primitives.RefSet();
- processed.put(obj);
- const xref = this.xref,
- blackColor = new Uint8ClampedArray(3);
- while (queue.length > 0) {
- const i = queue.shift();
- const outlineDict = xref.fetchIfRef(i.obj);
- if (outlineDict === null) {
- continue;
- }
- if (!outlineDict.has("Title")) {
- throw new _util.FormatError("Invalid outline item encountered.");
- }
- const data = {
- url: null,
- dest: null
- };
- Catalog.parseDestDictionary({
- destDict: outlineDict,
- resultObj: data,
- docBaseUrl: this.pdfManager.docBaseUrl
- });
- const title = outlineDict.get("Title");
- const flags = outlineDict.get("F") || 0;
- const color = outlineDict.getArray("C");
- const count = outlineDict.get("Count");
- let rgbColor = blackColor;
- if (Array.isArray(color) && color.length === 3 && (color[0] !== 0 || color[1] !== 0 || color[2] !== 0)) {
- rgbColor = _colorspace.ColorSpace.singletons.rgb.getRgb(color, 0);
- }
- const outlineItem = {
- dest: data.dest,
- url: data.url,
- unsafeUrl: data.unsafeUrl,
- newWindow: data.newWindow,
- title: (0, _util.stringToPDFString)(title),
- color: rgbColor,
- count: Number.isInteger(count) ? count : undefined,
- bold: !!(flags & 2),
- italic: !!(flags & 1),
- items: []
- };
- i.parent.items.push(outlineItem);
- obj = outlineDict.getRaw("First");
- if ((0, _primitives.isRef)(obj) && !processed.has(obj)) {
- queue.push({
- obj,
- parent: outlineItem
- });
- processed.put(obj);
- }
- obj = outlineDict.getRaw("Next");
- if ((0, _primitives.isRef)(obj) && !processed.has(obj)) {
- queue.push({
- obj,
- parent: i.parent
- });
- processed.put(obj);
- }
- }
- return root.items.length > 0 ? root.items : null;
- }
- get permissions() {
- let permissions = null;
- try {
- permissions = this._readPermissions();
- } catch (ex) {
- if (ex instanceof _core_utils.MissingDataException) {
- throw ex;
- }
- (0, _util.warn)("Unable to read permissions.");
- }
- return (0, _util.shadow)(this, "permissions", permissions);
- }
- _readPermissions() {
- const encrypt = this.xref.trailer.get("Encrypt");
- if (!(0, _primitives.isDict)(encrypt)) {
- return null;
- }
- let flags = encrypt.get("P");
- if (!(0, _util.isNum)(flags)) {
- return null;
- }
- flags += 2 ** 32;
- const permissions = [];
- for (const key in _util.PermissionFlag) {
- const value = _util.PermissionFlag[key];
- if (flags & value) {
- permissions.push(value);
- }
- }
- return permissions;
- }
- get numPages() {
- const obj = this.toplevelPagesDict.get("Count");
- if (!Number.isInteger(obj)) {
- throw new _util.FormatError("Page count in top-level pages dictionary is not an integer.");
- }
- return (0, _util.shadow)(this, "numPages", obj);
- }
- get destinations() {
- const obj = this._readDests(),
- dests = Object.create(null);
- if (obj instanceof NameTree) {
- const names = obj.getAll();
- for (const name in names) {
- dests[name] = fetchDestination(names[name]);
- }
- } else if (obj instanceof _primitives.Dict) {
- obj.forEach(function (key, value) {
- if (value) {
- dests[key] = fetchDestination(value);
- }
- });
- }
- return (0, _util.shadow)(this, "destinations", dests);
- }
- getDestination(destinationId) {
- const obj = this._readDests();
- if (obj instanceof NameTree || obj instanceof _primitives.Dict) {
- return fetchDestination(obj.get(destinationId) || null);
- }
- return null;
- }
- _readDests() {
- const obj = this.catDict.get("Names");
- if (obj && obj.has("Dests")) {
- return new NameTree(obj.getRaw("Dests"), this.xref);
- } else if (this.catDict.has("Dests")) {
- return this.catDict.get("Dests");
- }
- return undefined;
- }
- get pageLabels() {
- let obj = null;
- try {
- obj = this._readPageLabels();
- } catch (ex) {
- if (ex instanceof _core_utils.MissingDataException) {
- throw ex;
- }
- (0, _util.warn)("Unable to read page labels.");
- }
- return (0, _util.shadow)(this, "pageLabels", obj);
- }
- _readPageLabels() {
- const obj = this.catDict.getRaw("PageLabels");
- if (!obj) {
- return null;
- }
- const pageLabels = new Array(this.numPages);
- let style = null,
- prefix = "";
- const numberTree = new NumberTree(obj, this.xref);
- const nums = numberTree.getAll();
- let currentLabel = "",
- currentIndex = 1;
- for (let i = 0, ii = this.numPages; i < ii; i++) {
- if (i in nums) {
- const labelDict = nums[i];
- if (!(0, _primitives.isDict)(labelDict)) {
- throw new _util.FormatError("PageLabel is not a dictionary.");
- }
- if (labelDict.has("Type") && !(0, _primitives.isName)(labelDict.get("Type"), "PageLabel")) {
- throw new _util.FormatError("Invalid type in PageLabel dictionary.");
- }
- if (labelDict.has("S")) {
- const s = labelDict.get("S");
- if (!(0, _primitives.isName)(s)) {
- throw new _util.FormatError("Invalid style in PageLabel dictionary.");
- }
- style = s.name;
- } else {
- style = null;
- }
- if (labelDict.has("P")) {
- const p = labelDict.get("P");
- if (!(0, _util.isString)(p)) {
- throw new _util.FormatError("Invalid prefix in PageLabel dictionary.");
- }
- prefix = (0, _util.stringToPDFString)(p);
- } else {
- prefix = "";
- }
- if (labelDict.has("St")) {
- const st = labelDict.get("St");
- if (!(Number.isInteger(st) && st >= 1)) {
- throw new _util.FormatError("Invalid start in PageLabel dictionary.");
- }
- currentIndex = st;
- } else {
- currentIndex = 1;
- }
- }
- switch (style) {
- case "D":
- currentLabel = currentIndex;
- break;
- case "R":
- case "r":
- currentLabel = (0, _core_utils.toRomanNumerals)(currentIndex, style === "r");
- break;
- case "A":
- case "a":
- const LIMIT = 26;
- const A_UPPER_CASE = 0x41,
- A_LOWER_CASE = 0x61;
- const baseCharCode = style === "a" ? A_LOWER_CASE : A_UPPER_CASE;
- const letterIndex = currentIndex - 1;
- const character = String.fromCharCode(baseCharCode + letterIndex % LIMIT);
- const charBuf = [];
- for (let j = 0, jj = letterIndex / LIMIT | 0; j <= jj; j++) {
- charBuf.push(character);
- }
- currentLabel = charBuf.join("");
- break;
- default:
- if (style) {
- throw new _util.FormatError(`Invalid style "${style}" in PageLabel dictionary.`);
- }
- currentLabel = "";
- }
- pageLabels[i] = prefix + currentLabel;
- currentIndex++;
- }
- return pageLabels;
- }
- get pageLayout() {
- const obj = this.catDict.get("PageLayout");
- let pageLayout = "";
- if ((0, _primitives.isName)(obj)) {
- switch (obj.name) {
- case "SinglePage":
- case "OneColumn":
- case "TwoColumnLeft":
- case "TwoColumnRight":
- case "TwoPageLeft":
- case "TwoPageRight":
- pageLayout = obj.name;
- }
- }
- return (0, _util.shadow)(this, "pageLayout", pageLayout);
- }
- get pageMode() {
- const obj = this.catDict.get("PageMode");
- let pageMode = "UseNone";
- if ((0, _primitives.isName)(obj)) {
- switch (obj.name) {
- case "UseNone":
- case "UseOutlines":
- case "UseThumbs":
- case "FullScreen":
- case "UseOC":
- case "UseAttachments":
- pageMode = obj.name;
- }
- }
- return (0, _util.shadow)(this, "pageMode", pageMode);
- }
- get viewerPreferences() {
- const ViewerPreferencesValidators = {
- HideToolbar: _util.isBool,
- HideMenubar: _util.isBool,
- HideWindowUI: _util.isBool,
- FitWindow: _util.isBool,
- CenterWindow: _util.isBool,
- DisplayDocTitle: _util.isBool,
- NonFullScreenPageMode: _primitives.isName,
- Direction: _primitives.isName,
- ViewArea: _primitives.isName,
- ViewClip: _primitives.isName,
- PrintArea: _primitives.isName,
- PrintClip: _primitives.isName,
- PrintScaling: _primitives.isName,
- Duplex: _primitives.isName,
- PickTrayByPDFSize: _util.isBool,
- PrintPageRange: Array.isArray,
- NumCopies: Number.isInteger
- };
- const obj = this.catDict.get("ViewerPreferences");
- const prefs = Object.create(null);
- if ((0, _primitives.isDict)(obj)) {
- for (const key in ViewerPreferencesValidators) {
- if (!obj.has(key)) {
- continue;
- }
- const value = obj.get(key);
- if (!ViewerPreferencesValidators[key](value)) {
- (0, _util.info)(`Bad value in ViewerPreferences for "${key}".`);
- continue;
- }
- let prefValue;
- switch (key) {
- case "NonFullScreenPageMode":
- switch (value.name) {
- case "UseNone":
- case "UseOutlines":
- case "UseThumbs":
- case "UseOC":
- prefValue = value.name;
- break;
- default:
- prefValue = "UseNone";
- }
- break;
- case "Direction":
- switch (value.name) {
- case "L2R":
- case "R2L":
- prefValue = value.name;
- break;
- default:
- prefValue = "L2R";
- }
- break;
- case "ViewArea":
- case "ViewClip":
- case "PrintArea":
- case "PrintClip":
- switch (value.name) {
- case "MediaBox":
- case "CropBox":
- case "BleedBox":
- case "TrimBox":
- case "ArtBox":
- prefValue = value.name;
- break;
- default:
- prefValue = "CropBox";
- }
- break;
- case "PrintScaling":
- switch (value.name) {
- case "None":
- case "AppDefault":
- prefValue = value.name;
- break;
- default:
- prefValue = "AppDefault";
- }
- break;
- case "Duplex":
- switch (value.name) {
- case "Simplex":
- case "DuplexFlipShortEdge":
- case "DuplexFlipLongEdge":
- prefValue = value.name;
- break;
- default:
- prefValue = "None";
- }
- break;
- case "PrintPageRange":
- const length = value.length;
- if (length % 2 !== 0) {
- break;
- }
- const isValid = value.every((page, i, arr) => {
- return Number.isInteger(page) && page > 0 && (i === 0 || page >= arr[i - 1]) && page <= this.numPages;
- });
- if (isValid) {
- prefValue = value;
- }
- break;
- case "NumCopies":
- if (value > 0) {
- prefValue = value;
- }
- break;
- default:
- (0, _util.assert)(typeof value === "boolean");
- prefValue = value;
- }
- if (prefValue !== undefined) {
- prefs[key] = prefValue;
- } else {
- (0, _util.info)(`Bad value in ViewerPreferences for "${key}".`);
- }
- }
- }
- return (0, _util.shadow)(this, "viewerPreferences", prefs);
- }
- get openAction() {
- const obj = this.catDict.get("OpenAction");
- let openAction = null;
- if ((0, _primitives.isDict)(obj)) {
- const destDict = new _primitives.Dict(this.xref);
- destDict.set("A", obj);
- const resultObj = {
- url: null,
- dest: null,
- action: null
- };
- Catalog.parseDestDictionary({
- destDict,
- resultObj
- });
- if (Array.isArray(resultObj.dest)) {
- if (!openAction) {
- openAction = Object.create(null);
- }
- openAction.dest = resultObj.dest;
- } else if (resultObj.action) {
- if (!openAction) {
- openAction = Object.create(null);
- }
- openAction.action = resultObj.action;
- }
- } else if (Array.isArray(obj)) {
- if (!openAction) {
- openAction = Object.create(null);
- }
- openAction.dest = obj;
- }
- return (0, _util.shadow)(this, "openAction", openAction);
- }
- get attachments() {
- const obj = this.catDict.get("Names");
- let attachments = null;
- if (obj && obj.has("EmbeddedFiles")) {
- const nameTree = new NameTree(obj.getRaw("EmbeddedFiles"), this.xref);
- const names = nameTree.getAll();
- for (const name in names) {
- const fs = new FileSpec(names[name], this.xref);
- if (!attachments) {
- attachments = Object.create(null);
- }
- attachments[(0, _util.stringToPDFString)(name)] = fs.serializable;
- }
- }
- return (0, _util.shadow)(this, "attachments", attachments);
- }
- get javaScript() {
- const obj = this.catDict.get("Names");
- let javaScript = null;
- function appendIfJavaScriptDict(jsDict) {
- const type = jsDict.get("S");
- if (!(0, _primitives.isName)(type, "JavaScript")) {
- return;
- }
- let js = jsDict.get("JS");
- if ((0, _primitives.isStream)(js)) {
- js = (0, _util.bytesToString)(js.getBytes());
- } else if (!(0, _util.isString)(js)) {
- return;
- }
- if (!javaScript) {
- javaScript = [];
- }
- javaScript.push((0, _util.stringToPDFString)(js));
- }
- if (obj && obj.has("JavaScript")) {
- const nameTree = new NameTree(obj.getRaw("JavaScript"), this.xref);
- const names = nameTree.getAll();
- for (const name in names) {
- const jsDict = names[name];
- if ((0, _primitives.isDict)(jsDict)) {
- appendIfJavaScriptDict(jsDict);
- }
- }
- }
- const openAction = this.catDict.get("OpenAction");
- if ((0, _primitives.isDict)(openAction) && (0, _primitives.isName)(openAction.get("S"), "JavaScript")) {
- appendIfJavaScriptDict(openAction);
- }
- return (0, _util.shadow)(this, "javaScript", javaScript);
- }
- fontFallback(id, handler) {
- const promises = [];
- this.fontCache.forEach(function (promise) {
- promises.push(promise);
- });
- return Promise.all(promises).then(translatedFonts => {
- for (const translatedFont of translatedFonts) {
- if (translatedFont.loadedName === id) {
- translatedFont.fallback(handler);
- return;
- }
- }
- });
- }
- cleanup() {
- (0, _primitives.clearPrimitiveCaches)();
- this.pageKidsCountCache.clear();
- const promises = [];
- this.fontCache.forEach(function (promise) {
- promises.push(promise);
- });
- return Promise.all(promises).then(translatedFonts => {
- for (const {
- dict
- } of translatedFonts) {
- delete dict.translated;
- }
- this.fontCache.clear();
- this.builtInCMapCache.clear();
- });
- }
- getPageDict(pageIndex) {
- const capability = (0, _util.createPromiseCapability)();
- const nodesToVisit = [this.catDict.getRaw("Pages")];
- const visitedNodes = new _primitives.RefSet();
- const xref = this.xref,
- pageKidsCountCache = this.pageKidsCountCache;
- let count,
- currentPageIndex = 0;
- function next() {
- while (nodesToVisit.length) {
- const currentNode = nodesToVisit.pop();
- if ((0, _primitives.isRef)(currentNode)) {
- count = pageKidsCountCache.get(currentNode);
- if (count > 0 && currentPageIndex + count < pageIndex) {
- currentPageIndex += count;
- continue;
- }
- if (visitedNodes.has(currentNode)) {
- capability.reject(new _util.FormatError("Pages tree contains circular reference."));
- return;
- }
- visitedNodes.put(currentNode);
- xref.fetchAsync(currentNode).then(function (obj) {
- if ((0, _primitives.isDict)(obj, "Page") || (0, _primitives.isDict)(obj) && !obj.has("Kids")) {
- if (pageIndex === currentPageIndex) {
- if (currentNode && !pageKidsCountCache.has(currentNode)) {
- pageKidsCountCache.put(currentNode, 1);
- }
- capability.resolve([obj, currentNode]);
- } else {
- currentPageIndex++;
- next();
- }
- return;
- }
- nodesToVisit.push(obj);
- next();
- }, capability.reject);
- return;
- }
- if (!(0, _primitives.isDict)(currentNode)) {
- capability.reject(new _util.FormatError("Page dictionary kid reference points to wrong type of object."));
- return;
- }
- count = currentNode.get("Count");
- if (Number.isInteger(count) && count >= 0) {
- const objId = currentNode.objId;
- if (objId && !pageKidsCountCache.has(objId)) {
- pageKidsCountCache.put(objId, count);
- }
- if (currentPageIndex + count <= pageIndex) {
- currentPageIndex += count;
- continue;
- }
- }
- const kids = currentNode.get("Kids");
- if (!Array.isArray(kids)) {
- if ((0, _primitives.isName)(currentNode.get("Type"), "Page") || !currentNode.has("Type") && currentNode.has("Contents")) {
- if (currentPageIndex === pageIndex) {
- capability.resolve([currentNode, null]);
- return;
- }
- currentPageIndex++;
- continue;
- }
- capability.reject(new _util.FormatError("Page dictionary kids object is not an array."));
- return;
- }
- for (let last = kids.length - 1; last >= 0; last--) {
- nodesToVisit.push(kids[last]);
- }
- }
- capability.reject(new Error(`Page index ${pageIndex} not found.`));
- }
- next();
- return capability.promise;
- }
- getPageIndex(pageRef) {
- const xref = this.xref;
- function pagesBeforeRef(kidRef) {
- let total = 0,
- parentRef;
- return xref.fetchAsync(kidRef).then(function (node) {
- if ((0, _primitives.isRefsEqual)(kidRef, pageRef) && !(0, _primitives.isDict)(node, "Page") && !((0, _primitives.isDict)(node) && !node.has("Type") && node.has("Contents"))) {
- throw new _util.FormatError("The reference does not point to a /Page dictionary.");
- }
- if (!node) {
- return null;
- }
- if (!(0, _primitives.isDict)(node)) {
- throw new _util.FormatError("Node must be a dictionary.");
- }
- parentRef = node.getRaw("Parent");
- return node.getAsync("Parent");
- }).then(function (parent) {
- if (!parent) {
- return null;
- }
- if (!(0, _primitives.isDict)(parent)) {
- throw new _util.FormatError("Parent must be a dictionary.");
- }
- return parent.getAsync("Kids");
- }).then(function (kids) {
- if (!kids) {
- return null;
- }
- const kidPromises = [];
- let found = false;
- for (let i = 0, ii = kids.length; i < ii; i++) {
- const kid = kids[i];
- if (!(0, _primitives.isRef)(kid)) {
- throw new _util.FormatError("Kid must be a reference.");
- }
- if ((0, _primitives.isRefsEqual)(kid, kidRef)) {
- found = true;
- break;
- }
- kidPromises.push(xref.fetchAsync(kid).then(function (kid) {
- if (!(0, _primitives.isDict)(kid)) {
- throw new _util.FormatError("Kid node must be a dictionary.");
- }
- if (kid.has("Count")) {
- total += kid.get("Count");
- } else {
- total++;
- }
- }));
- }
- if (!found) {
- throw new _util.FormatError("Kid reference not found in parent's kids.");
- }
- return Promise.all(kidPromises).then(function () {
- return [total, parentRef];
- });
- });
- }
- let total = 0;
- function next(ref) {
- return pagesBeforeRef(ref).then(function (args) {
- if (!args) {
- return total;
- }
- const [count, parentRef] = args;
- total += count;
- return next(parentRef);
- });
- }
- return next(pageRef);
- }
- static parseDestDictionary(params) {
- function addDefaultProtocolToUrl(url) {
- return url.startsWith("www.") ? `http://${url}` : url;
- }
- function tryConvertUrlEncoding(url) {
- try {
- return (0, _util.stringToUTF8String)(url);
- } catch (e) {
- return url;
- }
- }
- const destDict = params.destDict;
- if (!(0, _primitives.isDict)(destDict)) {
- (0, _util.warn)("parseDestDictionary: `destDict` must be a dictionary.");
- return;
- }
- const resultObj = params.resultObj;
- if (typeof resultObj !== "object") {
- (0, _util.warn)("parseDestDictionary: `resultObj` must be an object.");
- return;
- }
- const docBaseUrl = params.docBaseUrl || null;
- let action = destDict.get("A"),
- url,
- dest;
- if (!(0, _primitives.isDict)(action) && destDict.has("Dest")) {
- action = destDict.get("Dest");
- }
- if ((0, _primitives.isDict)(action)) {
- const actionType = action.get("S");
- if (!(0, _primitives.isName)(actionType)) {
- (0, _util.warn)("parseDestDictionary: Invalid type in Action dictionary.");
- return;
- }
- const actionName = actionType.name;
- switch (actionName) {
- case "URI":
- url = action.get("URI");
- if ((0, _primitives.isName)(url)) {
- url = "/" + url.name;
- } else if ((0, _util.isString)(url)) {
- url = addDefaultProtocolToUrl(url);
- }
- break;
- case "GoTo":
- dest = action.get("D");
- break;
- case "Launch":
- case "GoToR":
- const urlDict = action.get("F");
- if ((0, _primitives.isDict)(urlDict)) {
- url = urlDict.get("F") || null;
- } else if ((0, _util.isString)(urlDict)) {
- url = urlDict;
- }
- let remoteDest = action.get("D");
- if (remoteDest) {
- if ((0, _primitives.isName)(remoteDest)) {
- remoteDest = remoteDest.name;
- }
- if ((0, _util.isString)(url)) {
- const baseUrl = url.split("#")[0];
- if ((0, _util.isString)(remoteDest)) {
- url = baseUrl + "#" + remoteDest;
- } else if (Array.isArray(remoteDest)) {
- url = baseUrl + "#" + JSON.stringify(remoteDest);
- }
- }
- }
- const newWindow = action.get("NewWindow");
- if ((0, _util.isBool)(newWindow)) {
- resultObj.newWindow = newWindow;
- }
- break;
- case "Named":
- const namedAction = action.get("N");
- if ((0, _primitives.isName)(namedAction)) {
- resultObj.action = namedAction.name;
- }
- break;
- case "JavaScript":
- const jsAction = action.get("JS");
- let js;
- if ((0, _primitives.isStream)(jsAction)) {
- js = (0, _util.bytesToString)(jsAction.getBytes());
- } else if ((0, _util.isString)(jsAction)) {
- js = jsAction;
- }
- if (js) {
- const URL_OPEN_METHODS = ["app.launchURL", "window.open"];
- const regex = new RegExp("^\\s*(" + URL_OPEN_METHODS.join("|").split(".").join("\\.") + ")\\((?:'|\")([^'\"]*)(?:'|\")(?:,\\s*(\\w+)\\)|\\))", "i");
- const jsUrl = regex.exec((0, _util.stringToPDFString)(js));
- if (jsUrl && jsUrl[2]) {
- url = jsUrl[2];
- if (jsUrl[3] === "true" && jsUrl[1] === "app.launchURL") {
- resultObj.newWindow = true;
- }
- break;
- }
- }
- default:
- (0, _util.warn)(`parseDestDictionary: unsupported action type "${actionName}".`);
- break;
- }
- } else if (destDict.has("Dest")) {
- dest = destDict.get("Dest");
- }
- if ((0, _util.isString)(url)) {
- url = tryConvertUrlEncoding(url);
- const absoluteUrl = (0, _util.createValidAbsoluteUrl)(url, docBaseUrl);
- if (absoluteUrl) {
- resultObj.url = absoluteUrl.href;
- }
- resultObj.unsafeUrl = url;
- }
- if (dest) {
- if ((0, _primitives.isName)(dest)) {
- dest = dest.name;
- }
- if ((0, _util.isString)(dest) || Array.isArray(dest)) {
- resultObj.dest = dest;
- }
- }
- }
- }
- exports.Catalog = Catalog;
- var XRef = function XRefClosure() {
- function XRef(stream, pdfManager) {
- this.stream = stream;
- this.pdfManager = pdfManager;
- this.entries = [];
- this.xrefstms = Object.create(null);
- this._cacheMap = new Map();
- this.stats = {
- streamTypes: Object.create(null),
- fontTypes: Object.create(null)
- };
- }
- XRef.prototype = {
- setStartXRef: function XRef_setStartXRef(startXRef) {
- this.startXRefQueue = [startXRef];
- },
- parse: function XRef_parse(recoveryMode) {
- var trailerDict;
- if (!recoveryMode) {
- trailerDict = this.readXRef();
- } else {
- (0, _util.warn)("Indexing all PDF objects");
- trailerDict = this.indexObjects();
- }
- trailerDict.assignXref(this);
- this.trailer = trailerDict;
- let encrypt;
- try {
- encrypt = trailerDict.get("Encrypt");
- } catch (ex) {
- if (ex instanceof _core_utils.MissingDataException) {
- throw ex;
- }
- (0, _util.warn)(`XRef.parse - Invalid "Encrypt" reference: "${ex}".`);
- }
- if ((0, _primitives.isDict)(encrypt)) {
- var ids = trailerDict.get("ID");
- var fileId = ids && ids.length ? ids[0] : "";
- encrypt.suppressEncryption = true;
- this.encrypt = new _crypto.CipherTransformFactory(encrypt, fileId, this.pdfManager.password);
- }
- let root;
- try {
- root = trailerDict.get("Root");
- } catch (ex) {
- if (ex instanceof _core_utils.MissingDataException) {
- throw ex;
- }
- (0, _util.warn)(`XRef.parse - Invalid "Root" reference: "${ex}".`);
- }
- if ((0, _primitives.isDict)(root) && root.has("Pages")) {
- this.root = root;
- } else {
- if (!recoveryMode) {
- throw new _core_utils.XRefParseException();
- }
- throw new _util.FormatError("Invalid root reference");
- }
- },
- processXRefTable: function XRef_processXRefTable(parser) {
- if (!("tableState" in this)) {
- this.tableState = {
- entryNum: 0,
- streamPos: parser.lexer.stream.pos,
- parserBuf1: parser.buf1,
- parserBuf2: parser.buf2
- };
- }
- var obj = this.readXRefTable(parser);
- if (!(0, _primitives.isCmd)(obj, "trailer")) {
- throw new _util.FormatError("Invalid XRef table: could not find trailer dictionary");
- }
- var dict = parser.getObj();
- if (!(0, _primitives.isDict)(dict) && dict.dict) {
- dict = dict.dict;
- }
- if (!(0, _primitives.isDict)(dict)) {
- throw new _util.FormatError("Invalid XRef table: could not parse trailer dictionary");
- }
- delete this.tableState;
- return dict;
- },
- readXRefTable: function XRef_readXRefTable(parser) {
- var stream = parser.lexer.stream;
- var tableState = this.tableState;
- stream.pos = tableState.streamPos;
- parser.buf1 = tableState.parserBuf1;
- parser.buf2 = tableState.parserBuf2;
- var obj;
- while (true) {
- if (!("firstEntryNum" in tableState) || !("entryCount" in tableState)) {
- if ((0, _primitives.isCmd)(obj = parser.getObj(), "trailer")) {
- break;
- }
- tableState.firstEntryNum = obj;
- tableState.entryCount = parser.getObj();
- }
- var first = tableState.firstEntryNum;
- var count = tableState.entryCount;
- if (!Number.isInteger(first) || !Number.isInteger(count)) {
- throw new _util.FormatError("Invalid XRef table: wrong types in subsection header");
- }
- for (var i = tableState.entryNum; i < count; i++) {
- tableState.streamPos = stream.pos;
- tableState.entryNum = i;
- tableState.parserBuf1 = parser.buf1;
- tableState.parserBuf2 = parser.buf2;
- var entry = {};
- entry.offset = parser.getObj();
- entry.gen = parser.getObj();
- var type = parser.getObj();
- if (type instanceof _primitives.Cmd) {
- switch (type.cmd) {
- case "f":
- entry.free = true;
- break;
- case "n":
- entry.uncompressed = true;
- break;
- }
- }
- if (!Number.isInteger(entry.offset) || !Number.isInteger(entry.gen) || !(entry.free || entry.uncompressed)) {
- throw new _util.FormatError(`Invalid entry in XRef subsection: ${first}, ${count}`);
- }
- if (i === 0 && entry.free && first === 1) {
- first = 0;
- }
- if (!this.entries[i + first]) {
- this.entries[i + first] = entry;
- }
- }
- tableState.entryNum = 0;
- tableState.streamPos = stream.pos;
- tableState.parserBuf1 = parser.buf1;
- tableState.parserBuf2 = parser.buf2;
- delete tableState.firstEntryNum;
- delete tableState.entryCount;
- }
- if (this.entries[0] && !this.entries[0].free) {
- throw new _util.FormatError("Invalid XRef table: unexpected first object");
- }
- return obj;
- },
- processXRefStream: function XRef_processXRefStream(stream) {
- if (!("streamState" in this)) {
- var streamParameters = stream.dict;
- var byteWidths = streamParameters.get("W");
- var range = streamParameters.get("Index");
- if (!range) {
- range = [0, streamParameters.get("Size")];
- }
- this.streamState = {
- entryRanges: range,
- byteWidths,
- entryNum: 0,
- streamPos: stream.pos
- };
- }
- this.readXRefStream(stream);
- delete this.streamState;
- return stream.dict;
- },
- readXRefStream: function XRef_readXRefStream(stream) {
- var i, j;
- var streamState = this.streamState;
- stream.pos = streamState.streamPos;
- var byteWidths = streamState.byteWidths;
- var typeFieldWidth = byteWidths[0];
- var offsetFieldWidth = byteWidths[1];
- var generationFieldWidth = byteWidths[2];
- var entryRanges = streamState.entryRanges;
- while (entryRanges.length > 0) {
- var first = entryRanges[0];
- var n = entryRanges[1];
- if (!Number.isInteger(first) || !Number.isInteger(n)) {
- throw new _util.FormatError(`Invalid XRef range fields: ${first}, ${n}`);
- }
- if (!Number.isInteger(typeFieldWidth) || !Number.isInteger(offsetFieldWidth) || !Number.isInteger(generationFieldWidth)) {
- throw new _util.FormatError(`Invalid XRef entry fields length: ${first}, ${n}`);
- }
- for (i = streamState.entryNum; i < n; ++i) {
- streamState.entryNum = i;
- streamState.streamPos = stream.pos;
- var type = 0,
- offset = 0,
- generation = 0;
- for (j = 0; j < typeFieldWidth; ++j) {
- type = type << 8 | stream.getByte();
- }
- if (typeFieldWidth === 0) {
- type = 1;
- }
- for (j = 0; j < offsetFieldWidth; ++j) {
- offset = offset << 8 | stream.getByte();
- }
- for (j = 0; j < generationFieldWidth; ++j) {
- generation = generation << 8 | stream.getByte();
- }
- var entry = {};
- entry.offset = offset;
- entry.gen = generation;
- switch (type) {
- case 0:
- entry.free = true;
- break;
- case 1:
- entry.uncompressed = true;
- break;
- case 2:
- break;
- default:
- throw new _util.FormatError(`Invalid XRef entry type: ${type}`);
- }
- if (!this.entries[first + i]) {
- this.entries[first + i] = entry;
- }
- }
- streamState.entryNum = 0;
- streamState.streamPos = stream.pos;
- entryRanges.splice(0, 2);
- }
- },
- indexObjects: function XRef_indexObjects() {
- var TAB = 0x9,
- LF = 0xa,
- CR = 0xd,
- SPACE = 0x20;
- var PERCENT = 0x25,
- LT = 0x3c;
- function readToken(data, offset) {
- var token = "",
- ch = data[offset];
- while (ch !== LF && ch !== CR && ch !== LT) {
- if (++offset >= data.length) {
- break;
- }
- token += String.fromCharCode(ch);
- ch = data[offset];
- }
- return token;
- }
- function skipUntil(data, offset, what) {
- var length = what.length,
- dataLength = data.length;
- var skipped = 0;
- while (offset < dataLength) {
- var i = 0;
- while (i < length && data[offset + i] === what[i]) {
- ++i;
- }
- if (i >= length) {
- break;
- }
- offset++;
- skipped++;
- }
- return skipped;
- }
- var objRegExp = /^(\d+)\s+(\d+)\s+obj\b/;
- const endobjRegExp = /\bendobj[\b\s]$/;
- const nestedObjRegExp = /\s+(\d+\s+\d+\s+obj[\b\s<])$/;
- const CHECK_CONTENT_LENGTH = 25;
- var trailerBytes = new Uint8Array([116, 114, 97, 105, 108, 101, 114]);
- var startxrefBytes = new Uint8Array([115, 116, 97, 114, 116, 120, 114, 101, 102]);
- const objBytes = new Uint8Array([111, 98, 106]);
- var xrefBytes = new Uint8Array([47, 88, 82, 101, 102]);
- this.entries.length = 0;
- var stream = this.stream;
- stream.pos = 0;
- var buffer = stream.getBytes();
- var position = stream.start,
- length = buffer.length;
- var trailers = [],
- xrefStms = [];
- while (position < length) {
- var ch = buffer[position];
- if (ch === TAB || ch === LF || ch === CR || ch === SPACE) {
- ++position;
- continue;
- }
- if (ch === PERCENT) {
- do {
- ++position;
- if (position >= length) {
- break;
- }
- ch = buffer[position];
- } while (ch !== LF && ch !== CR);
- continue;
- }
- var token = readToken(buffer, position);
- var m;
- if (token.startsWith("xref") && (token.length === 4 || /\s/.test(token[4]))) {
- position += skipUntil(buffer, position, trailerBytes);
- trailers.push(position);
- position += skipUntil(buffer, position, startxrefBytes);
- } else if (m = objRegExp.exec(token)) {
- const num = m[1] | 0,
- gen = m[2] | 0;
- if (!this.entries[num] || this.entries[num].gen === gen) {
- this.entries[num] = {
- offset: position - stream.start,
- gen,
- uncompressed: true
- };
- }
- let contentLength,
- startPos = position + token.length;
- while (startPos < buffer.length) {
- const endPos = startPos + skipUntil(buffer, startPos, objBytes) + 4;
- contentLength = endPos - position;
- const checkPos = Math.max(endPos - CHECK_CONTENT_LENGTH, startPos);
- const tokenStr = (0, _util.bytesToString)(buffer.subarray(checkPos, endPos));
- if (endobjRegExp.test(tokenStr)) {
- break;
- } else {
- const objToken = nestedObjRegExp.exec(tokenStr);
- if (objToken && objToken[1]) {
- (0, _util.warn)('indexObjects: Found new "obj" inside of another "obj", ' + 'caused by missing "endobj" -- trying to recover.');
- contentLength -= objToken[1].length;
- break;
- }
- }
- startPos = endPos;
- }
- const content = buffer.subarray(position, position + contentLength);
- var xrefTagOffset = skipUntil(content, 0, xrefBytes);
- if (xrefTagOffset < contentLength && content[xrefTagOffset + 5] < 64) {
- xrefStms.push(position - stream.start);
- this.xrefstms[position - stream.start] = 1;
- }
- position += contentLength;
- } else if (token.startsWith("trailer") && (token.length === 7 || /\s/.test(token[7]))) {
- trailers.push(position);
- position += skipUntil(buffer, position, startxrefBytes);
- } else {
- position += token.length + 1;
- }
- }
- var i, ii;
- for (i = 0, ii = xrefStms.length; i < ii; ++i) {
- this.startXRefQueue.push(xrefStms[i]);
- this.readXRef(true);
- }
- let trailerDict;
- for (i = 0, ii = trailers.length; i < ii; ++i) {
- stream.pos = trailers[i];
- const parser = new _parser.Parser({
- lexer: new _parser.Lexer(stream),
- xref: this,
- allowStreams: true,
- recoveryMode: true
- });
- var obj = parser.getObj();
- if (!(0, _primitives.isCmd)(obj, "trailer")) {
- continue;
- }
- const dict = parser.getObj();
- if (!(0, _primitives.isDict)(dict)) {
- continue;
- }
- let rootDict;
- try {
- rootDict = dict.get("Root");
- } catch (ex) {
- if (ex instanceof _core_utils.MissingDataException) {
- throw ex;
- }
- continue;
- }
- if (!(0, _primitives.isDict)(rootDict) || !rootDict.has("Pages")) {
- continue;
- }
- if (dict.has("ID")) {
- return dict;
- }
- trailerDict = dict;
- }
- if (trailerDict) {
- return trailerDict;
- }
- throw new _util.InvalidPDFException("Invalid PDF structure.");
- },
- readXRef: function XRef_readXRef(recoveryMode) {
- var stream = this.stream;
- const startXRefParsedCache = Object.create(null);
- try {
- while (this.startXRefQueue.length) {
- var startXRef = this.startXRefQueue[0];
- if (startXRefParsedCache[startXRef]) {
- (0, _util.warn)("readXRef - skipping XRef table since it was already parsed.");
- this.startXRefQueue.shift();
- continue;
- }
- startXRefParsedCache[startXRef] = true;
- stream.pos = startXRef + stream.start;
- const parser = new _parser.Parser({
- lexer: new _parser.Lexer(stream),
- xref: this,
- allowStreams: true
- });
- var obj = parser.getObj();
- var dict;
- if ((0, _primitives.isCmd)(obj, "xref")) {
- dict = this.processXRefTable(parser);
- if (!this.topDict) {
- this.topDict = dict;
- }
- obj = dict.get("XRefStm");
- if (Number.isInteger(obj)) {
- var pos = obj;
- if (!(pos in this.xrefstms)) {
- this.xrefstms[pos] = 1;
- this.startXRefQueue.push(pos);
- }
- }
- } else if (Number.isInteger(obj)) {
- if (!Number.isInteger(parser.getObj()) || !(0, _primitives.isCmd)(parser.getObj(), "obj") || !(0, _primitives.isStream)(obj = parser.getObj())) {
- throw new _util.FormatError("Invalid XRef stream");
- }
- dict = this.processXRefStream(obj);
- if (!this.topDict) {
- this.topDict = dict;
- }
- if (!dict) {
- throw new _util.FormatError("Failed to read XRef stream");
- }
- } else {
- throw new _util.FormatError("Invalid XRef stream header");
- }
- obj = dict.get("Prev");
- if (Number.isInteger(obj)) {
- this.startXRefQueue.push(obj);
- } else if ((0, _primitives.isRef)(obj)) {
- this.startXRefQueue.push(obj.num);
- }
- this.startXRefQueue.shift();
- }
- return this.topDict;
- } catch (e) {
- if (e instanceof _core_utils.MissingDataException) {
- throw e;
- }
- (0, _util.info)("(while reading XRef): " + e);
- }
- if (recoveryMode) {
- return undefined;
- }
- throw new _core_utils.XRefParseException();
- },
- getEntry: function XRef_getEntry(i) {
- var xrefEntry = this.entries[i];
- if (xrefEntry && !xrefEntry.free && xrefEntry.offset) {
- return xrefEntry;
- }
- return null;
- },
- fetchIfRef: function XRef_fetchIfRef(obj, suppressEncryption) {
- if (obj instanceof _primitives.Ref) {
- return this.fetch(obj, suppressEncryption);
- }
- return obj;
- },
- fetch: function XRef_fetch(ref, suppressEncryption) {
- if (!(ref instanceof _primitives.Ref)) {
- throw new Error("ref object is not a reference");
- }
- const num = ref.num;
- const cacheEntry = this._cacheMap.get(num);
- if (cacheEntry !== undefined) {
- if (cacheEntry instanceof _primitives.Dict && !cacheEntry.objId) {
- cacheEntry.objId = ref.toString();
- }
- return cacheEntry;
- }
- let xrefEntry = this.getEntry(num);
- if (xrefEntry === null) {
- this._cacheMap.set(num, xrefEntry);
- return xrefEntry;
- }
- if (xrefEntry.uncompressed) {
- xrefEntry = this.fetchUncompressed(ref, xrefEntry, suppressEncryption);
- } else {
- xrefEntry = this.fetchCompressed(ref, xrefEntry, suppressEncryption);
- }
- if ((0, _primitives.isDict)(xrefEntry)) {
- xrefEntry.objId = ref.toString();
- } else if ((0, _primitives.isStream)(xrefEntry)) {
- xrefEntry.dict.objId = ref.toString();
- }
- return xrefEntry;
- },
- fetchUncompressed(ref, xrefEntry, suppressEncryption = false) {
- var gen = ref.gen;
- var num = ref.num;
- if (xrefEntry.gen !== gen) {
- throw new _core_utils.XRefEntryException(`Inconsistent generation in XRef: ${ref}`);
- }
- var stream = this.stream.makeSubStream(xrefEntry.offset + this.stream.start);
- const parser = new _parser.Parser({
- lexer: new _parser.Lexer(stream),
- xref: this,
- allowStreams: true
- });
- var obj1 = parser.getObj();
- var obj2 = parser.getObj();
- var obj3 = parser.getObj();
- if (obj1 !== num || obj2 !== gen || !(obj3 instanceof _primitives.Cmd)) {
- throw new _core_utils.XRefEntryException(`Bad (uncompressed) XRef entry: ${ref}`);
- }
- if (obj3.cmd !== "obj") {
- if (obj3.cmd.startsWith("obj")) {
- num = parseInt(obj3.cmd.substring(3), 10);
- if (!Number.isNaN(num)) {
- return num;
- }
- }
- throw new _core_utils.XRefEntryException(`Bad (uncompressed) XRef entry: ${ref}`);
- }
- if (this.encrypt && !suppressEncryption) {
- xrefEntry = parser.getObj(this.encrypt.createCipherTransform(num, gen));
- } else {
- xrefEntry = parser.getObj();
- }
- if (!(0, _primitives.isStream)(xrefEntry)) {
- this._cacheMap.set(num, xrefEntry);
- }
- return xrefEntry;
- },
- fetchCompressed(ref, xrefEntry, suppressEncryption = false) {
- const tableOffset = xrefEntry.offset;
- const stream = this.fetch(_primitives.Ref.get(tableOffset, 0));
- if (!(0, _primitives.isStream)(stream)) {
- throw new _util.FormatError("bad ObjStm stream");
- }
- const first = stream.dict.get("First");
- const n = stream.dict.get("N");
- if (!Number.isInteger(first) || !Number.isInteger(n)) {
- throw new _util.FormatError("invalid first and n parameters for ObjStm stream");
- }
- const parser = new _parser.Parser({
- lexer: new _parser.Lexer(stream),
- xref: this,
- allowStreams: true
- });
- const nums = new Array(n);
- for (let i = 0; i < n; ++i) {
- const num = parser.getObj();
- if (!Number.isInteger(num)) {
- throw new _util.FormatError(`invalid object number in the ObjStm stream: ${num}`);
- }
- const offset = parser.getObj();
- if (!Number.isInteger(offset)) {
- throw new _util.FormatError(`invalid object offset in the ObjStm stream: ${offset}`);
- }
- nums[i] = num;
- }
- const entries = new Array(n);
- for (let i = 0; i < n; ++i) {
- const obj = parser.getObj();
- entries[i] = obj;
- if (parser.buf1 instanceof _primitives.Cmd && parser.buf1.cmd === "endobj") {
- parser.shift();
- }
- if ((0, _primitives.isStream)(obj)) {
- continue;
- }
- const num = nums[i],
- entry = this.entries[num];
- if (entry && entry.offset === tableOffset && entry.gen === i) {
- this._cacheMap.set(num, obj);
- }
- }
- xrefEntry = entries[xrefEntry.gen];
- if (xrefEntry === undefined) {
- throw new _core_utils.XRefEntryException(`Bad (compressed) XRef entry: ${ref}`);
- }
- return xrefEntry;
- },
- async fetchIfRefAsync(obj, suppressEncryption) {
- if (obj instanceof _primitives.Ref) {
- return this.fetchAsync(obj, suppressEncryption);
- }
- return obj;
- },
- async fetchAsync(ref, suppressEncryption) {
- try {
- return this.fetch(ref, suppressEncryption);
- } catch (ex) {
- if (!(ex instanceof _core_utils.MissingDataException)) {
- throw ex;
- }
- await this.pdfManager.requestRange(ex.begin, ex.end);
- return this.fetchAsync(ref, suppressEncryption);
- }
- },
- getCatalogObj: function XRef_getCatalogObj() {
- return this.root;
- }
- };
- return XRef;
- }();
- exports.XRef = XRef;
- class NameOrNumberTree {
- constructor(root, xref, type) {
- if (this.constructor === NameOrNumberTree) {
- (0, _util.unreachable)("Cannot initialize NameOrNumberTree.");
- }
- this.root = root;
- this.xref = xref;
- this._type = type;
- }
- getAll() {
- const dict = Object.create(null);
- if (!this.root) {
- return dict;
- }
- const xref = this.xref;
- const processed = new _primitives.RefSet();
- processed.put(this.root);
- const queue = [this.root];
- while (queue.length > 0) {
- const obj = xref.fetchIfRef(queue.shift());
- if (!(0, _primitives.isDict)(obj)) {
- continue;
- }
- if (obj.has("Kids")) {
- const kids = obj.get("Kids");
- for (let i = 0, ii = kids.length; i < ii; i++) {
- const kid = kids[i];
- if (processed.has(kid)) {
- throw new _util.FormatError(`Duplicate entry in "${this._type}" tree.`);
- }
- queue.push(kid);
- processed.put(kid);
- }
- continue;
- }
- const entries = obj.get(this._type);
- if (Array.isArray(entries)) {
- for (let i = 0, ii = entries.length; i < ii; i += 2) {
- dict[xref.fetchIfRef(entries[i])] = xref.fetchIfRef(entries[i + 1]);
- }
- }
- }
- return dict;
- }
- get(key) {
- if (!this.root) {
- return null;
- }
- const xref = this.xref;
- let kidsOrEntries = xref.fetchIfRef(this.root);
- let loopCount = 0;
- const MAX_LEVELS = 10;
- while (kidsOrEntries.has("Kids")) {
- if (++loopCount > MAX_LEVELS) {
- (0, _util.warn)(`Search depth limit reached for "${this._type}" tree.`);
- return null;
- }
- const kids = kidsOrEntries.get("Kids");
- if (!Array.isArray(kids)) {
- return null;
- }
- let l = 0,
- r = kids.length - 1;
- while (l <= r) {
- const m = l + r >> 1;
- const kid = xref.fetchIfRef(kids[m]);
- const limits = kid.get("Limits");
- if (key < xref.fetchIfRef(limits[0])) {
- r = m - 1;
- } else if (key > xref.fetchIfRef(limits[1])) {
- l = m + 1;
- } else {
- kidsOrEntries = xref.fetchIfRef(kids[m]);
- break;
- }
- }
- if (l > r) {
- return null;
- }
- }
- const entries = kidsOrEntries.get(this._type);
- if (Array.isArray(entries)) {
- let l = 0,
- r = entries.length - 2;
- while (l <= r) {
- const tmp = l + r >> 1,
- m = tmp + (tmp & 1);
- const currentKey = xref.fetchIfRef(entries[m]);
- if (key < currentKey) {
- r = m - 2;
- } else if (key > currentKey) {
- l = m + 2;
- } else {
- return xref.fetchIfRef(entries[m + 1]);
- }
- }
- (0, _util.info)(`Falling back to an exhaustive search, for key "${key}", ` + `in "${this._type}" tree.`);
- for (let m = 0, mm = entries.length; m < mm; m += 2) {
- const currentKey = xref.fetchIfRef(entries[m]);
- if (currentKey === key) {
- (0, _util.warn)(`The "${key}" key was found at an incorrect, ` + `i.e. out-of-order, position in "${this._type}" tree.`);
- return xref.fetchIfRef(entries[m + 1]);
- }
- }
- }
- return null;
- }
- }
- class NameTree extends NameOrNumberTree {
- constructor(root, xref) {
- super(root, xref, "Names");
- }
- }
- class NumberTree extends NameOrNumberTree {
- constructor(root, xref) {
- super(root, xref, "Nums");
- }
- }
- var FileSpec = function FileSpecClosure() {
- function FileSpec(root, xref) {
- if (!root || !(0, _primitives.isDict)(root)) {
- return;
- }
- this.xref = xref;
- this.root = root;
- if (root.has("FS")) {
- this.fs = root.get("FS");
- }
- this.description = root.has("Desc") ? (0, _util.stringToPDFString)(root.get("Desc")) : "";
- if (root.has("RF")) {
- (0, _util.warn)("Related file specifications are not supported");
- }
- this.contentAvailable = true;
- if (!root.has("EF")) {
- this.contentAvailable = false;
- (0, _util.warn)("Non-embedded file specifications are not supported");
- }
- }
- function pickPlatformItem(dict) {
- if (dict.has("UF")) {
- return dict.get("UF");
- } else if (dict.has("F")) {
- return dict.get("F");
- } else if (dict.has("Unix")) {
- return dict.get("Unix");
- } else if (dict.has("Mac")) {
- return dict.get("Mac");
- } else if (dict.has("DOS")) {
- return dict.get("DOS");
- }
- return null;
- }
- FileSpec.prototype = {
- get filename() {
- if (!this._filename && this.root) {
- var filename = pickPlatformItem(this.root) || "unnamed";
- this._filename = (0, _util.stringToPDFString)(filename).replace(/\\\\/g, "\\").replace(/\\\//g, "/").replace(/\\/g, "/");
- }
- return this._filename;
- },
- get content() {
- if (!this.contentAvailable) {
- return null;
- }
- if (!this.contentRef && this.root) {
- this.contentRef = pickPlatformItem(this.root.get("EF"));
- }
- var content = null;
- if (this.contentRef) {
- var xref = this.xref;
- var fileObj = xref.fetchIfRef(this.contentRef);
- if (fileObj && (0, _primitives.isStream)(fileObj)) {
- content = fileObj.getBytes();
- } else {
- (0, _util.warn)("Embedded file specification points to non-existing/invalid " + "content");
- }
- } else {
- (0, _util.warn)("Embedded file specification does not have a content");
- }
- return content;
- },
- get serializable() {
- return {
- filename: this.filename,
- content: this.content
- };
- }
- };
- return FileSpec;
- }();
- exports.FileSpec = FileSpec;
- const ObjectLoader = function () {
- function mayHaveChildren(value) {
- return value instanceof _primitives.Ref || value instanceof _primitives.Dict || Array.isArray(value) || (0, _primitives.isStream)(value);
- }
- function addChildren(node, nodesToVisit) {
- if (node instanceof _primitives.Dict || (0, _primitives.isStream)(node)) {
- const dict = node instanceof _primitives.Dict ? node : node.dict;
- const dictKeys = dict.getKeys();
- for (let i = 0, ii = dictKeys.length; i < ii; i++) {
- const rawValue = dict.getRaw(dictKeys[i]);
- if (mayHaveChildren(rawValue)) {
- nodesToVisit.push(rawValue);
- }
- }
- } else if (Array.isArray(node)) {
- for (let i = 0, ii = node.length; i < ii; i++) {
- const value = node[i];
- if (mayHaveChildren(value)) {
- nodesToVisit.push(value);
- }
- }
- }
- }
- function ObjectLoader(dict, keys, xref) {
- this.dict = dict;
- this.keys = keys;
- this.xref = xref;
- this.refSet = null;
- }
- ObjectLoader.prototype = {
- async load() {
- if (!this.xref.stream.allChunksLoaded || this.xref.stream.allChunksLoaded()) {
- return undefined;
- }
- const {
- keys,
- dict
- } = this;
- this.refSet = new _primitives.RefSet();
- const nodesToVisit = [];
- for (let i = 0, ii = keys.length; i < ii; i++) {
- const rawValue = dict.getRaw(keys[i]);
- if (rawValue !== undefined) {
- nodesToVisit.push(rawValue);
- }
- }
- return this._walk(nodesToVisit);
- },
- async _walk(nodesToVisit) {
- const nodesToRevisit = [];
- const pendingRequests = [];
- while (nodesToVisit.length) {
- let currentNode = nodesToVisit.pop();
- if (currentNode instanceof _primitives.Ref) {
- if (this.refSet.has(currentNode)) {
- continue;
- }
- try {
- this.refSet.put(currentNode);
- currentNode = this.xref.fetch(currentNode);
- } catch (ex) {
- if (!(ex instanceof _core_utils.MissingDataException)) {
- throw ex;
- }
- nodesToRevisit.push(currentNode);
- pendingRequests.push({
- begin: ex.begin,
- end: ex.end
- });
- }
- }
- if (currentNode && currentNode.getBaseStreams) {
- const baseStreams = currentNode.getBaseStreams();
- let foundMissingData = false;
- for (let i = 0, ii = baseStreams.length; i < ii; i++) {
- const stream = baseStreams[i];
- if (stream.allChunksLoaded && !stream.allChunksLoaded()) {
- foundMissingData = true;
- pendingRequests.push({
- begin: stream.start,
- end: stream.end
- });
- }
- }
- if (foundMissingData) {
- nodesToRevisit.push(currentNode);
- }
- }
- addChildren(currentNode, nodesToVisit);
- }
- if (pendingRequests.length) {
- await this.xref.stream.manager.requestRanges(pendingRequests);
- for (let i = 0, ii = nodesToRevisit.length; i < ii; i++) {
- const node = nodesToRevisit[i];
- if (node instanceof _primitives.Ref) {
- this.refSet.remove(node);
- }
- }
- return this._walk(nodesToRevisit);
- }
- this.refSet = null;
- return undefined;
- }
- };
- return ObjectLoader;
- }();
- exports.ObjectLoader = ObjectLoader;
|