Skip to content

Commit

Permalink
Change the BaseCMapReaderFactory fetch-helper to return a Uint8Array
Browse files Browse the repository at this point in the history
This moves more functionality into the base-class, rather than having to duplicate that in the extending classes.
For consistency, also updates the `BaseStandardFontDataFactory` and introduces more `async`/`await` in various relevant code.
  • Loading branch information
Snuffleupagus committed Oct 21, 2024
1 parent d37e4b0 commit df69606
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 32 deletions.
32 changes: 19 additions & 13 deletions src/display/base_factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,22 +127,27 @@ class BaseCMapReaderFactory {
throw new Error("CMap name must be specified.");
}
const url = this.baseUrl + name + (this.isCompressed ? ".bcmap" : "");
const compressionType = this.isCompressed
? CMapCompressionType.BINARY
: CMapCompressionType.NONE;

return this._fetchData(url, compressionType).catch(reason => {
throw new Error(
`Unable to load ${this.isCompressed ? "binary " : ""}CMap at: ${url}`
);
});
return this._fetch(url)
.then(cMapData => ({
cMapData,
compressionType: this.isCompressed
? CMapCompressionType.BINARY
: CMapCompressionType.NONE,
}))
.catch(reason => {
throw new Error(
`Unable to load ${this.isCompressed ? "binary " : ""}CMap at: ${url}`
);
});
}

/**
* @ignore
* @returns {Promise<Uint8Array>}
*/
_fetchData(url, compressionType) {
unreachable("Abstract method `_fetchData` called.");
async _fetch(url) {
unreachable("Abstract method `_fetch` called.");
}
}

Expand All @@ -168,16 +173,17 @@ class BaseStandardFontDataFactory {
}
const url = `${this.baseUrl}${filename}`;

return this._fetchData(url).catch(reason => {
return this._fetch(url).catch(reason => {
throw new Error(`Unable to load font data at: ${url}`);
});
}

/**
* @ignore
* @returns {Promise<Uint8Array>}
*/
_fetchData(url) {
unreachable("Abstract method `_fetchData` called.");
async _fetch(url) {
unreachable("Abstract method `_fetch` called.");
}
}

Expand Down
22 changes: 9 additions & 13 deletions src/display/display_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,28 +564,24 @@ class DOMCMapReaderFactory extends BaseCMapReaderFactory {
/**
* @ignore
*/
_fetchData(url, compressionType) {
return fetchData(
async _fetch(url) {
const data = await fetchData(
url,
/* type = */ this.isCompressed ? "arraybuffer" : "text"
).then(data => ({
cMapData:
data instanceof ArrayBuffer
? new Uint8Array(data)
: stringToBytes(data),
compressionType,
}));
);
return data instanceof ArrayBuffer
? new Uint8Array(data)
: stringToBytes(data);
}
}

class DOMStandardFontDataFactory extends BaseStandardFontDataFactory {
/**
* @ignore
*/
_fetchData(url) {
return fetchData(url, /* type = */ "arraybuffer").then(
data => new Uint8Array(data)
);
async _fetch(url) {
const data = await fetchData(url, /* type = */ "arraybuffer");
return new Uint8Array(data);
}
}

Expand Down
13 changes: 7 additions & 6 deletions src/display/node_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,11 @@ class NodePackages {
}
}

const fetchData = function (url) {
async function fetchData(url) {
const fs = NodePackages.get("fs");
return fs.promises.readFile(url).then(data => new Uint8Array(data));
};
const data = await fs.promises.readFile(url);
return new Uint8Array(data);
}

class NodeFilterFactory extends BaseFilterFactory {}

Expand All @@ -134,16 +135,16 @@ class NodeCMapReaderFactory extends BaseCMapReaderFactory {
/**
* @ignore
*/
_fetchData(url, compressionType) {
return fetchData(url).then(data => ({ cMapData: data, compressionType }));
async _fetch(url) {
return fetchData(url);
}
}

class NodeStandardFontDataFactory extends BaseStandardFontDataFactory {
/**
* @ignore
*/
_fetchData(url) {
async _fetch(url) {
return fetchData(url);
}
}
Expand Down

0 comments on commit df69606

Please sign in to comment.