mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-04-15 01:34:02 +02:00
In all cases where we currently use `Response.prototype.arrayBuffer()` the result is immediately wrapped in a `Uint8Array`, which can be avoided by instead using the newer `Response.prototype.bytes()` method; see https://developer.mozilla.org/en-US/docs/Web/API/Response/bytes
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
/* Copyright 2015 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.
|
|
*/
|
|
|
|
import { fetchData } from "./display_utils.js";
|
|
import { unreachable } from "../shared/util.js";
|
|
|
|
class BaseStandardFontDataFactory {
|
|
constructor({ baseUrl = null }) {
|
|
if (
|
|
(typeof PDFJSDev === "undefined" || PDFJSDev.test("TESTING")) &&
|
|
this.constructor === BaseStandardFontDataFactory
|
|
) {
|
|
unreachable("Cannot initialize BaseStandardFontDataFactory.");
|
|
}
|
|
this.baseUrl = baseUrl;
|
|
}
|
|
|
|
async fetch({ filename }) {
|
|
if (!this.baseUrl) {
|
|
throw new Error(
|
|
"Ensure that the `standardFontDataUrl` API parameter is provided."
|
|
);
|
|
}
|
|
if (!filename) {
|
|
throw new Error("Font filename must be specified.");
|
|
}
|
|
const url = `${this.baseUrl}${filename}`;
|
|
|
|
return this._fetch(url).catch(reason => {
|
|
throw new Error(`Unable to load font data at: ${url}`);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @ignore
|
|
* @returns {Promise<Uint8Array>}
|
|
*/
|
|
async _fetch(url) {
|
|
unreachable("Abstract method `_fetch` called.");
|
|
}
|
|
}
|
|
|
|
class DOMStandardFontDataFactory extends BaseStandardFontDataFactory {
|
|
/**
|
|
* @ignore
|
|
*/
|
|
async _fetch(url) {
|
|
return fetchData(url, /* type = */ "bytes");
|
|
}
|
|
}
|
|
|
|
export { BaseStandardFontDataFactory, DOMStandardFontDataFactory };
|