123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /**
- * @licstart The following is the entire license notice for the
- * JavaScript code in this page
- *
- * Copyright 2022 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.XRefMock = exports.TEST_PDFS_PATH = exports.STANDARD_FONT_DATA_URL = exports.DefaultFileReaderFactory = exports.CMAP_PARAMS = void 0;
- exports.buildGetDocumentParams = buildGetDocumentParams;
- exports.createIdFactory = createIdFactory;
- exports.isEmptyObj = isEmptyObj;
- var _stream = require("../../core/stream.js");
- var _document = require("../../core/document.js");
- var _util = require("../../shared/util.js");
- var _core_utils = require("../../core/core_utils.js");
- var _is_node = require("../../shared/is_node.js");
- var _primitives = require("../../core/primitives.js");
- const TEST_PDFS_PATH = _is_node.isNodeJS ? "./test/pdfs/" : "../pdfs/";
- exports.TEST_PDFS_PATH = TEST_PDFS_PATH;
- const CMAP_PARAMS = {
- cMapUrl: _is_node.isNodeJS ? "./external/bcmaps/" : "../../external/bcmaps/",
- cMapPacked: true
- };
- exports.CMAP_PARAMS = CMAP_PARAMS;
- const STANDARD_FONT_DATA_URL = _is_node.isNodeJS ? "./external/standard_fonts/" : "../../external/standard_fonts/";
- exports.STANDARD_FONT_DATA_URL = STANDARD_FONT_DATA_URL;
- class DOMFileReaderFactory {
- static async fetch(params) {
- const response = await fetch(params.path);
- if (!response.ok) {
- throw new Error(response.statusText);
- }
- return new Uint8Array(await response.arrayBuffer());
- }
- }
- class NodeFileReaderFactory {
- static async fetch(params) {
- const fs = require("fs");
- return new Promise((resolve, reject) => {
- fs.readFile(params.path, (error, data) => {
- if (error || !data) {
- reject(error || new Error(`Empty file for: ${params.path}`));
- return;
- }
- resolve(new Uint8Array(data));
- });
- });
- }
- }
- const DefaultFileReaderFactory = _is_node.isNodeJS ? NodeFileReaderFactory : DOMFileReaderFactory;
- exports.DefaultFileReaderFactory = DefaultFileReaderFactory;
- function buildGetDocumentParams(filename, options) {
- const params = Object.create(null);
- params.url = _is_node.isNodeJS ? TEST_PDFS_PATH + filename : new URL(TEST_PDFS_PATH + filename, window.location).href;
- params.standardFontDataUrl = STANDARD_FONT_DATA_URL;
- for (const option in options) {
- params[option] = options[option];
- }
- return params;
- }
- class XRefMock {
- constructor(array) {
- this._map = Object.create(null);
- this.stats = new _core_utils.DocStats({
- send: () => {}
- });
- this._newTemporaryRefNum = null;
- this._newPersistentRefNum = null;
- this.stream = new _stream.NullStream();
- for (const key in array) {
- const obj = array[key];
- this._map[obj.ref.toString()] = obj.data;
- }
- }
- getNewPersistentRef(obj) {
- if (this._newPersistentRefNum === null) {
- this._newPersistentRefNum = Object.keys(this._map).length || 1;
- }
- const ref = _primitives.Ref.get(this._newPersistentRefNum++, 0);
- this._map[ref.toString()] = obj;
- return ref;
- }
- getNewTemporaryRef() {
- if (this._newTemporaryRefNum === null) {
- this._newTemporaryRefNum = Object.keys(this._map).length || 1;
- }
- return _primitives.Ref.get(this._newTemporaryRefNum++, 0);
- }
- resetNewTemporaryRef() {
- this._newTemporaryRefNum = null;
- }
- fetch(ref) {
- return this._map[ref.toString()];
- }
- async fetchAsync(ref) {
- return this.fetch(ref);
- }
- fetchIfRef(obj) {
- if (obj instanceof _primitives.Ref) {
- return this.fetch(obj);
- }
- return obj;
- }
- async fetchIfRefAsync(obj) {
- return this.fetchIfRef(obj);
- }
- }
- exports.XRefMock = XRefMock;
- function createIdFactory(pageIndex) {
- const pdfManager = {
- get docId() {
- return "d0";
- }
- };
- const stream = new _stream.StringStream("Dummy_PDF_data");
- const pdfDocument = new _document.PDFDocument(pdfManager, stream);
- const page = new _document.Page({
- pdfManager: pdfDocument.pdfManager,
- xref: pdfDocument.xref,
- pageIndex,
- globalIdFactory: pdfDocument._globalIdFactory
- });
- return page._localIdFactory;
- }
- function isEmptyObj(obj) {
- (0, _util.assert)(typeof obj === "object" && obj !== null, "isEmptyObj - invalid argument.");
- return Object.keys(obj).length === 0;
- }
|