123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- /**
- * @licstart The following is the entire license notice for the
- * Javascript code in this page
- *
- * Copyright 2021 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.NetworkPdfManager = exports.LocalPdfManager = void 0;
- var _util = require("../shared/util.js");
- var _chunked_stream = require("./chunked_stream.js");
- var _core_utils = require("./core_utils.js");
- var _document = require("./document.js");
- var _stream = require("./stream.js");
- function parseDocBaseUrl(url) {
- if (url) {
- const absoluteUrl = (0, _util.createValidAbsoluteUrl)(url);
- if (absoluteUrl) {
- return absoluteUrl.href;
- }
- (0, _util.warn)(`Invalid absolute docBaseUrl: "${url}".`);
- }
- return null;
- }
- class BasePdfManager {
- constructor() {
- if (this.constructor === BasePdfManager) {
- (0, _util.unreachable)("Cannot initialize BasePdfManager.");
- }
- }
- get docId() {
- return this._docId;
- }
- get password() {
- return this._password;
- }
- get docBaseUrl() {
- return this._docBaseUrl;
- }
- onLoadedStream() {
- (0, _util.unreachable)("Abstract method `onLoadedStream` called");
- }
- ensureDoc(prop, args) {
- return this.ensure(this.pdfDocument, prop, args);
- }
- ensureXRef(prop, args) {
- return this.ensure(this.pdfDocument.xref, prop, args);
- }
- ensureCatalog(prop, args) {
- return this.ensure(this.pdfDocument.catalog, prop, args);
- }
- getPage(pageIndex) {
- return this.pdfDocument.getPage(pageIndex);
- }
- fontFallback(id, handler) {
- return this.pdfDocument.fontFallback(id, handler);
- }
- loadXfaFonts(handler, task) {
- return this.pdfDocument.loadXfaFonts(handler, task);
- }
- cleanup(manuallyTriggered = false) {
- return this.pdfDocument.cleanup(manuallyTriggered);
- }
- async ensure(obj, prop, args) {
- (0, _util.unreachable)("Abstract method `ensure` called");
- }
- requestRange(begin, end) {
- (0, _util.unreachable)("Abstract method `requestRange` called");
- }
- requestLoadedStream() {
- (0, _util.unreachable)("Abstract method `requestLoadedStream` called");
- }
- sendProgressiveData(chunk) {
- (0, _util.unreachable)("Abstract method `sendProgressiveData` called");
- }
- updatePassword(password) {
- this._password = password;
- }
- terminate(reason) {
- (0, _util.unreachable)("Abstract method `terminate` called");
- }
- }
- class LocalPdfManager extends BasePdfManager {
- constructor(docId, data, password, evaluatorOptions, enableXfa, docBaseUrl) {
- super();
- this._docId = docId;
- this._password = password;
- this._docBaseUrl = parseDocBaseUrl(docBaseUrl);
- this.evaluatorOptions = evaluatorOptions;
- this.enableXfa = enableXfa;
- const stream = new _stream.Stream(data);
- this.pdfDocument = new _document.PDFDocument(this, stream);
- this._loadedStreamPromise = Promise.resolve(stream);
- }
- async ensure(obj, prop, args) {
- const value = obj[prop];
- if (typeof value === "function") {
- return value.apply(obj, args);
- }
- return value;
- }
- requestRange(begin, end) {
- return Promise.resolve();
- }
- requestLoadedStream() {}
- onLoadedStream() {
- return this._loadedStreamPromise;
- }
- terminate(reason) {}
- }
- exports.LocalPdfManager = LocalPdfManager;
- class NetworkPdfManager extends BasePdfManager {
- constructor(docId, pdfNetworkStream, args, evaluatorOptions, enableXfa, docBaseUrl) {
- super();
- this._docId = docId;
- this._password = args.password;
- this._docBaseUrl = parseDocBaseUrl(docBaseUrl);
- this.msgHandler = args.msgHandler;
- this.evaluatorOptions = evaluatorOptions;
- this.enableXfa = enableXfa;
- this.streamManager = new _chunked_stream.ChunkedStreamManager(pdfNetworkStream, {
- msgHandler: args.msgHandler,
- length: args.length,
- disableAutoFetch: args.disableAutoFetch,
- rangeChunkSize: args.rangeChunkSize
- });
- this.pdfDocument = new _document.PDFDocument(this, this.streamManager.getStream());
- }
- async ensure(obj, prop, args) {
- try {
- const value = obj[prop];
- if (typeof value === "function") {
- return value.apply(obj, args);
- }
- return value;
- } catch (ex) {
- if (!(ex instanceof _core_utils.MissingDataException)) {
- throw ex;
- }
- await this.requestRange(ex.begin, ex.end);
- return this.ensure(obj, prop, args);
- }
- }
- requestRange(begin, end) {
- return this.streamManager.requestRange(begin, end);
- }
- requestLoadedStream() {
- this.streamManager.requestAllChunks();
- }
- sendProgressiveData(chunk) {
- this.streamManager.onReceiveData({
- chunk
- });
- }
- onLoadedStream() {
- return this.streamManager.onLoadedStream();
- }
- terminate(reason) {
- this.streamManager.abort(reason);
- }
- }
- exports.NetworkPdfManager = NetworkPdfManager;
|