2013-09-26 02:32:04 +09:00
|
|
|
/* Copyright 2012 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.
|
|
|
|
*/
|
|
|
|
|
2017-04-02 23:14:30 +09:00
|
|
|
import {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
CMapCompressionType,
|
|
|
|
FormatError,
|
|
|
|
unreachable,
|
|
|
|
warn,
|
2020-01-02 20:00:16 +09:00
|
|
|
} from "../shared/util.js";
|
2022-02-21 20:45:00 +09:00
|
|
|
import { Cmd, EOF, isCmd, Name } from "./primitives.js";
|
2022-02-17 21:45:42 +09:00
|
|
|
import { BaseStream } from "./base_stream.js";
|
2023-04-21 18:43:11 +09:00
|
|
|
import { BinaryCMapReader } from "./binary_cmap.js";
|
2020-01-02 20:00:16 +09:00
|
|
|
import { Lexer } from "./parser.js";
|
|
|
|
import { MissingDataException } from "./core_utils.js";
|
|
|
|
import { Stream } from "./stream.js";
|
2015-11-22 01:32:47 +09:00
|
|
|
|
Enable the `no-var` linting rule in `src/core/cmap.js`
This is done automatically with `gulp lint --fix` and the following
manual changes:
```diff
diff --git a/src/core/cmap.js b/src/core/cmap.js
index 850275a19..8794726dd 100644
--- a/src/core/cmap.js
+++ b/src/core/cmap.js
@@ -519,8 +519,8 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
readHexNumber(num, size) {
let last;
- let stack = this.tmpBuf,
- sp = 0;
+ const stack = this.tmpBuf;
+ let sp = 0;
do {
const b = this.readByte();
if (b < 0) {
@@ -603,7 +603,6 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
const ucs2DataSize = 1;
const subitemsCount = stream.readNumber();
- var i;
switch (type) {
case 0: // codespacerange
stream.readHex(start, dataSize);
@@ -614,7 +613,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(start, dataSize),
hexToInt(end, dataSize)
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, dataSize);
stream.readHexNumber(start, dataSize);
addHex(start, end, dataSize);
@@ -633,7 +632,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
addHex(end, start, dataSize);
stream.readNumber(); // code
// undefined range, skipping
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, dataSize);
stream.readHexNumber(start, dataSize);
addHex(start, end, dataSize);
@@ -647,7 +646,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
stream.readHex(char, dataSize);
code = stream.readNumber();
cMap.mapOne(hexToInt(char, dataSize), code);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(char, dataSize);
if (!sequence) {
stream.readHexNumber(tmp, dataSize);
@@ -667,7 +666,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(end, dataSize),
code
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, dataSize);
if (!sequence) {
stream.readHexNumber(start, dataSize);
@@ -692,7 +691,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(char, ucs2DataSize),
hexToStr(charCode, dataSize)
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(char, ucs2DataSize);
if (!sequence) {
stream.readHexNumber(tmp, ucs2DataSize);
@@ -717,7 +716,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(end, ucs2DataSize),
hexToStr(charCode, dataSize)
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, ucs2DataSize);
if (!sequence) {
stream.readHexNumber(start, ucs2DataSize);
```
2021-04-25 22:47:19 +09:00
|
|
|
const BUILT_IN_CMAPS = [
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
// << Start unicode maps.
|
|
|
|
"Adobe-GB1-UCS2",
|
|
|
|
"Adobe-CNS1-UCS2",
|
|
|
|
"Adobe-Japan1-UCS2",
|
|
|
|
"Adobe-Korea1-UCS2",
|
|
|
|
// >> End unicode maps.
|
|
|
|
"78-EUC-H",
|
|
|
|
"78-EUC-V",
|
|
|
|
"78-H",
|
|
|
|
"78-RKSJ-H",
|
|
|
|
"78-RKSJ-V",
|
|
|
|
"78-V",
|
|
|
|
"78ms-RKSJ-H",
|
|
|
|
"78ms-RKSJ-V",
|
|
|
|
"83pv-RKSJ-H",
|
|
|
|
"90ms-RKSJ-H",
|
|
|
|
"90ms-RKSJ-V",
|
|
|
|
"90msp-RKSJ-H",
|
|
|
|
"90msp-RKSJ-V",
|
|
|
|
"90pv-RKSJ-H",
|
|
|
|
"90pv-RKSJ-V",
|
|
|
|
"Add-H",
|
|
|
|
"Add-RKSJ-H",
|
|
|
|
"Add-RKSJ-V",
|
|
|
|
"Add-V",
|
|
|
|
"Adobe-CNS1-0",
|
|
|
|
"Adobe-CNS1-1",
|
|
|
|
"Adobe-CNS1-2",
|
|
|
|
"Adobe-CNS1-3",
|
|
|
|
"Adobe-CNS1-4",
|
|
|
|
"Adobe-CNS1-5",
|
|
|
|
"Adobe-CNS1-6",
|
|
|
|
"Adobe-GB1-0",
|
|
|
|
"Adobe-GB1-1",
|
|
|
|
"Adobe-GB1-2",
|
|
|
|
"Adobe-GB1-3",
|
|
|
|
"Adobe-GB1-4",
|
|
|
|
"Adobe-GB1-5",
|
|
|
|
"Adobe-Japan1-0",
|
|
|
|
"Adobe-Japan1-1",
|
|
|
|
"Adobe-Japan1-2",
|
|
|
|
"Adobe-Japan1-3",
|
|
|
|
"Adobe-Japan1-4",
|
|
|
|
"Adobe-Japan1-5",
|
|
|
|
"Adobe-Japan1-6",
|
|
|
|
"Adobe-Korea1-0",
|
|
|
|
"Adobe-Korea1-1",
|
|
|
|
"Adobe-Korea1-2",
|
|
|
|
"B5-H",
|
|
|
|
"B5-V",
|
|
|
|
"B5pc-H",
|
|
|
|
"B5pc-V",
|
|
|
|
"CNS-EUC-H",
|
|
|
|
"CNS-EUC-V",
|
|
|
|
"CNS1-H",
|
|
|
|
"CNS1-V",
|
|
|
|
"CNS2-H",
|
|
|
|
"CNS2-V",
|
|
|
|
"ETHK-B5-H",
|
|
|
|
"ETHK-B5-V",
|
|
|
|
"ETen-B5-H",
|
|
|
|
"ETen-B5-V",
|
|
|
|
"ETenms-B5-H",
|
|
|
|
"ETenms-B5-V",
|
|
|
|
"EUC-H",
|
|
|
|
"EUC-V",
|
|
|
|
"Ext-H",
|
|
|
|
"Ext-RKSJ-H",
|
|
|
|
"Ext-RKSJ-V",
|
|
|
|
"Ext-V",
|
|
|
|
"GB-EUC-H",
|
|
|
|
"GB-EUC-V",
|
|
|
|
"GB-H",
|
|
|
|
"GB-V",
|
|
|
|
"GBK-EUC-H",
|
|
|
|
"GBK-EUC-V",
|
|
|
|
"GBK2K-H",
|
|
|
|
"GBK2K-V",
|
|
|
|
"GBKp-EUC-H",
|
|
|
|
"GBKp-EUC-V",
|
|
|
|
"GBT-EUC-H",
|
|
|
|
"GBT-EUC-V",
|
|
|
|
"GBT-H",
|
|
|
|
"GBT-V",
|
|
|
|
"GBTpc-EUC-H",
|
|
|
|
"GBTpc-EUC-V",
|
|
|
|
"GBpc-EUC-H",
|
|
|
|
"GBpc-EUC-V",
|
|
|
|
"H",
|
|
|
|
"HKdla-B5-H",
|
|
|
|
"HKdla-B5-V",
|
|
|
|
"HKdlb-B5-H",
|
|
|
|
"HKdlb-B5-V",
|
|
|
|
"HKgccs-B5-H",
|
|
|
|
"HKgccs-B5-V",
|
|
|
|
"HKm314-B5-H",
|
|
|
|
"HKm314-B5-V",
|
|
|
|
"HKm471-B5-H",
|
|
|
|
"HKm471-B5-V",
|
|
|
|
"HKscs-B5-H",
|
|
|
|
"HKscs-B5-V",
|
|
|
|
"Hankaku",
|
|
|
|
"Hiragana",
|
|
|
|
"KSC-EUC-H",
|
|
|
|
"KSC-EUC-V",
|
|
|
|
"KSC-H",
|
|
|
|
"KSC-Johab-H",
|
|
|
|
"KSC-Johab-V",
|
|
|
|
"KSC-V",
|
|
|
|
"KSCms-UHC-H",
|
|
|
|
"KSCms-UHC-HW-H",
|
|
|
|
"KSCms-UHC-HW-V",
|
|
|
|
"KSCms-UHC-V",
|
|
|
|
"KSCpc-EUC-H",
|
|
|
|
"KSCpc-EUC-V",
|
|
|
|
"Katakana",
|
|
|
|
"NWP-H",
|
|
|
|
"NWP-V",
|
|
|
|
"RKSJ-H",
|
|
|
|
"RKSJ-V",
|
|
|
|
"Roman",
|
|
|
|
"UniCNS-UCS2-H",
|
|
|
|
"UniCNS-UCS2-V",
|
|
|
|
"UniCNS-UTF16-H",
|
|
|
|
"UniCNS-UTF16-V",
|
|
|
|
"UniCNS-UTF32-H",
|
|
|
|
"UniCNS-UTF32-V",
|
|
|
|
"UniCNS-UTF8-H",
|
|
|
|
"UniCNS-UTF8-V",
|
|
|
|
"UniGB-UCS2-H",
|
|
|
|
"UniGB-UCS2-V",
|
|
|
|
"UniGB-UTF16-H",
|
|
|
|
"UniGB-UTF16-V",
|
|
|
|
"UniGB-UTF32-H",
|
|
|
|
"UniGB-UTF32-V",
|
|
|
|
"UniGB-UTF8-H",
|
|
|
|
"UniGB-UTF8-V",
|
|
|
|
"UniJIS-UCS2-H",
|
|
|
|
"UniJIS-UCS2-HW-H",
|
|
|
|
"UniJIS-UCS2-HW-V",
|
|
|
|
"UniJIS-UCS2-V",
|
|
|
|
"UniJIS-UTF16-H",
|
|
|
|
"UniJIS-UTF16-V",
|
|
|
|
"UniJIS-UTF32-H",
|
|
|
|
"UniJIS-UTF32-V",
|
|
|
|
"UniJIS-UTF8-H",
|
|
|
|
"UniJIS-UTF8-V",
|
|
|
|
"UniJIS2004-UTF16-H",
|
|
|
|
"UniJIS2004-UTF16-V",
|
|
|
|
"UniJIS2004-UTF32-H",
|
|
|
|
"UniJIS2004-UTF32-V",
|
|
|
|
"UniJIS2004-UTF8-H",
|
|
|
|
"UniJIS2004-UTF8-V",
|
|
|
|
"UniJISPro-UCS2-HW-V",
|
|
|
|
"UniJISPro-UCS2-V",
|
|
|
|
"UniJISPro-UTF8-V",
|
|
|
|
"UniJISX0213-UTF32-H",
|
|
|
|
"UniJISX0213-UTF32-V",
|
|
|
|
"UniJISX02132004-UTF32-H",
|
|
|
|
"UniJISX02132004-UTF32-V",
|
|
|
|
"UniKS-UCS2-H",
|
|
|
|
"UniKS-UCS2-V",
|
|
|
|
"UniKS-UTF16-H",
|
|
|
|
"UniKS-UTF16-V",
|
|
|
|
"UniKS-UTF32-H",
|
|
|
|
"UniKS-UTF32-V",
|
|
|
|
"UniKS-UTF8-H",
|
|
|
|
"UniKS-UTF8-V",
|
|
|
|
"V",
|
|
|
|
"WP-Symbol",
|
|
|
|
];
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2020-05-22 21:07:28 +09:00
|
|
|
// Heuristic to avoid hanging the worker-thread for CMap data with ridiculously
|
|
|
|
// large ranges, such as e.g. 0xFFFFFFFF (fixes issue11922_reduced.pdf).
|
|
|
|
const MAX_MAP_RANGE = 2 ** 24 - 1; // = 0xFFFFFF
|
|
|
|
|
2013-09-26 02:32:04 +09:00
|
|
|
// CMap, not to be confused with TrueType's cmap.
|
2018-07-09 05:41:52 +09:00
|
|
|
class CMap {
|
|
|
|
constructor(builtInCMap = false) {
|
2013-09-26 02:32:04 +09:00
|
|
|
// Codespace ranges are stored as follows:
|
|
|
|
// [[1BytePairs], [2BytePairs], [3BytePairs], [4BytePairs]]
|
|
|
|
// where nBytePairs are ranges e.g. [low1, high1, low2, high2, ...]
|
|
|
|
this.codespaceRanges = [[], [], [], []];
|
2014-02-12 03:27:09 +09:00
|
|
|
this.numCodespaceRanges = 0;
|
2014-08-01 15:46:37 +09:00
|
|
|
// Map entries have one of two forms.
|
|
|
|
// - cid chars are 16-bit unsigned integers, stored as integers.
|
|
|
|
// - bf chars are variable-length byte sequences, stored as strings, with
|
|
|
|
// one byte per character.
|
2014-07-30 12:30:16 +09:00
|
|
|
this._map = [];
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
this.name = "";
|
2013-09-26 02:32:04 +09:00
|
|
|
this.vertical = false;
|
2014-02-12 03:27:09 +09:00
|
|
|
this.useCMap = null;
|
|
|
|
this.builtInCMap = builtInCMap;
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
addCodespaceRange(n, low, high) {
|
|
|
|
this.codespaceRanges[n - 1].push(low, high);
|
|
|
|
this.numCodespaceRanges++;
|
|
|
|
}
|
|
|
|
|
|
|
|
mapCidRange(low, high, dstLow) {
|
2020-05-22 21:07:28 +09:00
|
|
|
if (high - low > MAX_MAP_RANGE) {
|
|
|
|
throw new Error("mapCidRange - ignoring data above MAX_MAP_RANGE.");
|
|
|
|
}
|
2018-07-09 05:41:52 +09:00
|
|
|
while (low <= high) {
|
|
|
|
this._map[low++] = dstLow++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mapBfRange(low, high, dstLow) {
|
2020-05-22 21:07:28 +09:00
|
|
|
if (high - low > MAX_MAP_RANGE) {
|
|
|
|
throw new Error("mapBfRange - ignoring data above MAX_MAP_RANGE.");
|
|
|
|
}
|
Enable the `no-var` linting rule in `src/core/cmap.js`
This is done automatically with `gulp lint --fix` and the following
manual changes:
```diff
diff --git a/src/core/cmap.js b/src/core/cmap.js
index 850275a19..8794726dd 100644
--- a/src/core/cmap.js
+++ b/src/core/cmap.js
@@ -519,8 +519,8 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
readHexNumber(num, size) {
let last;
- let stack = this.tmpBuf,
- sp = 0;
+ const stack = this.tmpBuf;
+ let sp = 0;
do {
const b = this.readByte();
if (b < 0) {
@@ -603,7 +603,6 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
const ucs2DataSize = 1;
const subitemsCount = stream.readNumber();
- var i;
switch (type) {
case 0: // codespacerange
stream.readHex(start, dataSize);
@@ -614,7 +613,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(start, dataSize),
hexToInt(end, dataSize)
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, dataSize);
stream.readHexNumber(start, dataSize);
addHex(start, end, dataSize);
@@ -633,7 +632,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
addHex(end, start, dataSize);
stream.readNumber(); // code
// undefined range, skipping
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, dataSize);
stream.readHexNumber(start, dataSize);
addHex(start, end, dataSize);
@@ -647,7 +646,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
stream.readHex(char, dataSize);
code = stream.readNumber();
cMap.mapOne(hexToInt(char, dataSize), code);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(char, dataSize);
if (!sequence) {
stream.readHexNumber(tmp, dataSize);
@@ -667,7 +666,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(end, dataSize),
code
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, dataSize);
if (!sequence) {
stream.readHexNumber(start, dataSize);
@@ -692,7 +691,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(char, ucs2DataSize),
hexToStr(charCode, dataSize)
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(char, ucs2DataSize);
if (!sequence) {
stream.readHexNumber(tmp, ucs2DataSize);
@@ -717,7 +716,7 @@ const BinaryCMapReader = (function BinaryCMapReaderClosure() {
hexToInt(end, ucs2DataSize),
hexToStr(charCode, dataSize)
);
- for (i = 1; i < subitemsCount; i++) {
+ for (let i = 1; i < subitemsCount; i++) {
incHex(end, ucs2DataSize);
if (!sequence) {
stream.readHexNumber(start, ucs2DataSize);
```
2021-04-25 22:47:19 +09:00
|
|
|
const lastByte = dstLow.length - 1;
|
2018-07-09 05:41:52 +09:00
|
|
|
while (low <= high) {
|
|
|
|
this._map[low++] = dstLow;
|
2021-10-24 18:51:57 +09:00
|
|
|
// Only the last byte has to be incremented (in the normal case).
|
|
|
|
const nextCharCode = dstLow.charCodeAt(lastByte) + 1;
|
|
|
|
if (nextCharCode > 0xff) {
|
|
|
|
dstLow =
|
|
|
|
dstLow.substring(0, lastByte - 1) +
|
|
|
|
String.fromCharCode(dstLow.charCodeAt(lastByte - 1) + 1) +
|
|
|
|
"\x00";
|
|
|
|
continue;
|
|
|
|
}
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
dstLow =
|
2021-10-24 18:51:57 +09:00
|
|
|
dstLow.substring(0, lastByte) + String.fromCharCode(nextCharCode);
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mapBfRangeToArray(low, high, array) {
|
2020-05-22 21:07:28 +09:00
|
|
|
if (high - low > MAX_MAP_RANGE) {
|
|
|
|
throw new Error("mapBfRangeToArray - ignoring data above MAX_MAP_RANGE.");
|
|
|
|
}
|
2020-01-24 21:21:16 +09:00
|
|
|
const ii = array.length;
|
|
|
|
let i = 0;
|
2018-07-09 05:41:52 +09:00
|
|
|
while (low <= high && i < ii) {
|
|
|
|
this._map[low] = array[i++];
|
|
|
|
++low;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is used for both bf and cid chars.
|
|
|
|
mapOne(src, dst) {
|
|
|
|
this._map[src] = dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
lookup(code) {
|
|
|
|
return this._map[code];
|
|
|
|
}
|
|
|
|
|
|
|
|
contains(code) {
|
|
|
|
return this._map[code] !== undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
forEach(callback) {
|
|
|
|
// Most maps have fewer than 65536 entries, and for those we use normal
|
|
|
|
// array iteration. But really sparse tables are possible -- e.g. with
|
|
|
|
// indices in the *billions*. For such tables we use for..in, which isn't
|
|
|
|
// ideal because it stringifies the indices for all present elements, but
|
|
|
|
// it does avoid iterating over every undefined entry.
|
2020-01-24 17:48:21 +09:00
|
|
|
const map = this._map;
|
|
|
|
const length = map.length;
|
2018-07-09 05:41:52 +09:00
|
|
|
if (length <= 0x10000) {
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
if (map[i] !== undefined) {
|
2014-07-30 12:33:43 +09:00
|
|
|
callback(i, map[i]);
|
|
|
|
}
|
2014-07-30 12:30:16 +09:00
|
|
|
}
|
2018-07-09 05:41:52 +09:00
|
|
|
} else {
|
2020-01-24 17:48:21 +09:00
|
|
|
for (const i in map) {
|
2018-07-09 05:41:52 +09:00
|
|
|
callback(i, map[i]);
|
2017-05-25 00:36:39 +09:00
|
|
|
}
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
charCodeOf(value) {
|
|
|
|
// `Array.prototype.indexOf` is *extremely* inefficient for arrays which
|
|
|
|
// are both very sparse and very large (see issue8372.pdf).
|
|
|
|
const map = this._map;
|
|
|
|
if (map.length <= 0x10000) {
|
|
|
|
return map.indexOf(value);
|
|
|
|
}
|
2020-01-24 17:48:21 +09:00
|
|
|
for (const charCode in map) {
|
2018-07-09 05:41:52 +09:00
|
|
|
if (map[charCode] === value) {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
return charCode | 0;
|
2017-05-25 00:36:39 +09:00
|
|
|
}
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
getMap() {
|
|
|
|
return this._map;
|
|
|
|
}
|
|
|
|
|
|
|
|
readCharCode(str, offset, out) {
|
|
|
|
let c = 0;
|
|
|
|
const codespaceRanges = this.codespaceRanges;
|
|
|
|
// 9.7.6.2 CMap Mapping
|
|
|
|
// The code length is at most 4.
|
|
|
|
for (let n = 0, nn = codespaceRanges.length; n < nn; n++) {
|
|
|
|
c = ((c << 8) | str.charCodeAt(offset + n)) >>> 0;
|
|
|
|
// Check each codespace range to see if it falls within.
|
|
|
|
const codespaceRange = codespaceRanges[n];
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
for (let k = 0, kk = codespaceRange.length; k < kk; ) {
|
2018-07-09 05:41:52 +09:00
|
|
|
const low = codespaceRange[k++];
|
|
|
|
const high = codespaceRange[k++];
|
|
|
|
if (c >= low && c <= high) {
|
|
|
|
out.charcode = c;
|
|
|
|
out.length = n + 1;
|
|
|
|
return;
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
|
|
|
}
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
|
|
|
out.charcode = 0;
|
|
|
|
out.length = 1;
|
|
|
|
}
|
2015-03-06 23:01:26 +09:00
|
|
|
|
2020-08-27 23:04:17 +09:00
|
|
|
getCharCodeLength(charCode) {
|
|
|
|
const codespaceRanges = this.codespaceRanges;
|
|
|
|
for (let n = 0, nn = codespaceRanges.length; n < nn; n++) {
|
|
|
|
// Check each codespace range to see if it falls within.
|
|
|
|
const codespaceRange = codespaceRanges[n];
|
|
|
|
for (let k = 0, kk = codespaceRange.length; k < kk; ) {
|
|
|
|
const low = codespaceRange[k++];
|
|
|
|
const high = codespaceRange[k++];
|
|
|
|
if (charCode >= low && charCode <= high) {
|
|
|
|
return n + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
get length() {
|
|
|
|
return this._map.length;
|
|
|
|
}
|
2015-09-19 23:54:19 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
get isIdentityCMap() {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
if (!(this.name === "Identity-H" || this.name === "Identity-V")) {
|
2018-07-09 05:41:52 +09:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (this._map.length !== 0x10000) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (let i = 0; i < 0x10000; i++) {
|
|
|
|
if (this._map[i] !== i) {
|
2015-03-06 23:01:26 +09:00
|
|
|
return false;
|
|
|
|
}
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2014-08-05 15:38:43 +09:00
|
|
|
// A special case of CMap, where the _map array implicitly has a length of
|
2015-03-06 23:01:26 +09:00
|
|
|
// 65536 and each element is equal to its index.
|
2018-07-09 05:41:52 +09:00
|
|
|
class IdentityCMap extends CMap {
|
|
|
|
constructor(vertical, n) {
|
|
|
|
super();
|
|
|
|
|
2013-09-26 02:32:04 +09:00
|
|
|
this.vertical = vertical;
|
|
|
|
this.addCodespaceRange(n, 0, 0xffff);
|
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
mapCidRange(low, high, dstLow) {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
unreachable("should not call mapCidRange");
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
mapBfRange(low, high, dstLow) {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
unreachable("should not call mapBfRange");
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
mapBfRangeToArray(low, high, array) {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
unreachable("should not call mapBfRangeToArray");
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
mapOne(src, dst) {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
unreachable("should not call mapCidOne");
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
lookup(code) {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
return Number.isInteger(code) && code <= 0xffff ? code : undefined;
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
contains(code) {
|
|
|
|
return Number.isInteger(code) && code <= 0xffff;
|
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
forEach(callback) {
|
|
|
|
for (let i = 0; i <= 0xffff; i++) {
|
|
|
|
callback(i, i);
|
|
|
|
}
|
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
charCodeOf(value) {
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
return Number.isInteger(value) && value <= 0xffff ? value : -1;
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
2015-03-06 23:01:26 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
getMap() {
|
|
|
|
// Sometimes identity maps must be instantiated, but it's rare.
|
|
|
|
const map = new Array(0x10000);
|
|
|
|
for (let i = 0; i <= 0xffff; i++) {
|
|
|
|
map[i] = i;
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
2015-09-19 23:54:19 +09:00
|
|
|
|
2018-07-09 05:41:52 +09:00
|
|
|
get length() {
|
|
|
|
return 0x10000;
|
|
|
|
}
|
2014-08-05 15:38:43 +09:00
|
|
|
|
2019-12-26 04:03:46 +09:00
|
|
|
// eslint-disable-next-line getter-return
|
Enable auto-formatting of the entire code-base using Prettier (issue 11444)
Note that Prettier, purposely, has only limited [configuration options](https://prettier.io/docs/en/options.html). The configuration file is based on [the one in `mozilla central`](https://searchfox.org/mozilla-central/source/.prettierrc) with just a few additions (to avoid future breakage if the defaults ever changes).
Prettier is being used for a couple of reasons:
- To be consistent with `mozilla-central`, where Prettier is already in use across the tree.
- To ensure a *consistent* coding style everywhere, which is automatically enforced during linting (since Prettier is used as an ESLint plugin). This thus ends "all" formatting disussions once and for all, removing the need for review comments on most stylistic matters.
Many ESLint options are now redundant, and I've tried my best to remove all the now unnecessary options (but I may have missed some).
Note also that since Prettier considers the `printWidth` option as a guide, rather than a hard rule, this patch resorts to a small hack in the ESLint config to ensure that *comments* won't become too long.
*Please note:* This patch is generated automatically, by appending the `--fix` argument to the ESLint call used in the `gulp lint` task. It will thus require some additional clean-up, which will be done in a *separate* commit.
(On a more personal note, I'll readily admit that some of the changes Prettier makes are *extremely* ugly. However, in the name of consistency we'll probably have to live with that.)
2019-12-25 23:59:37 +09:00
|
|
|
get isIdentityCMap() {
|
|
|
|
unreachable("should not access .isIdentityCMap");
|
2018-07-09 05:41:52 +09:00
|
|
|
}
|
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function strToInt(str) {
|
|
|
|
let a = 0;
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
|
|
a = (a << 8) | str.charCodeAt(i);
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
return a >>> 0;
|
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function expectString(obj) {
|
|
|
|
if (typeof obj !== "string") {
|
|
|
|
throw new FormatError("Malformed CMap: expected string.");
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function expectInt(obj) {
|
|
|
|
if (!Number.isInteger(obj)) {
|
|
|
|
throw new FormatError("Malformed CMap: expected int.");
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function parseBfChar(cMap, lexer) {
|
|
|
|
while (true) {
|
|
|
|
let obj = lexer.getObj();
|
|
|
|
if (obj === EOF) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (isCmd(obj, "endbfchar")) {
|
|
|
|
return;
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
expectString(obj);
|
|
|
|
const src = strToInt(obj);
|
|
|
|
obj = lexer.getObj();
|
|
|
|
// TODO are /dstName used?
|
|
|
|
expectString(obj);
|
|
|
|
const dst = obj;
|
|
|
|
cMap.mapOne(src, dst);
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function parseBfRange(cMap, lexer) {
|
|
|
|
while (true) {
|
|
|
|
let obj = lexer.getObj();
|
|
|
|
if (obj === EOF) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (isCmd(obj, "endbfrange")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
expectString(obj);
|
|
|
|
const low = strToInt(obj);
|
|
|
|
obj = lexer.getObj();
|
|
|
|
expectString(obj);
|
|
|
|
const high = strToInt(obj);
|
|
|
|
obj = lexer.getObj();
|
|
|
|
if (Number.isInteger(obj) || typeof obj === "string") {
|
|
|
|
const dstLow = Number.isInteger(obj) ? String.fromCharCode(obj) : obj;
|
|
|
|
cMap.mapBfRange(low, high, dstLow);
|
|
|
|
} else if (isCmd(obj, "[")) {
|
2013-09-26 02:32:04 +09:00
|
|
|
obj = lexer.getObj();
|
2023-04-21 18:55:55 +09:00
|
|
|
const array = [];
|
|
|
|
while (!isCmd(obj, "]") && obj !== EOF) {
|
|
|
|
array.push(obj);
|
2013-09-26 02:32:04 +09:00
|
|
|
obj = lexer.getObj();
|
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
cMap.mapBfRangeToArray(low, high, array);
|
|
|
|
} else {
|
|
|
|
break;
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
throw new FormatError("Invalid bf range.");
|
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function parseCidChar(cMap, lexer) {
|
|
|
|
while (true) {
|
|
|
|
let obj = lexer.getObj();
|
|
|
|
if (obj === EOF) {
|
|
|
|
break;
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
if (isCmd(obj, "endcidchar")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
expectString(obj);
|
|
|
|
const src = strToInt(obj);
|
|
|
|
obj = lexer.getObj();
|
|
|
|
expectInt(obj);
|
|
|
|
const dst = obj;
|
|
|
|
cMap.mapOne(src, dst);
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function parseCidRange(cMap, lexer) {
|
|
|
|
while (true) {
|
|
|
|
let obj = lexer.getObj();
|
|
|
|
if (obj === EOF) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (isCmd(obj, "endcidrange")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
expectString(obj);
|
|
|
|
const low = strToInt(obj);
|
|
|
|
obj = lexer.getObj();
|
|
|
|
expectString(obj);
|
|
|
|
const high = strToInt(obj);
|
|
|
|
obj = lexer.getObj();
|
|
|
|
expectInt(obj);
|
|
|
|
const dstLow = obj;
|
|
|
|
cMap.mapCidRange(low, high, dstLow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseCodespaceRange(cMap, lexer) {
|
|
|
|
while (true) {
|
|
|
|
let obj = lexer.getObj();
|
|
|
|
if (obj === EOF) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (isCmd(obj, "endcodespacerange")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (typeof obj !== "string") {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
const low = strToInt(obj);
|
|
|
|
obj = lexer.getObj();
|
|
|
|
if (typeof obj !== "string") {
|
|
|
|
break;
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
const high = strToInt(obj);
|
|
|
|
cMap.addCodespaceRange(obj.length, low, high);
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
throw new FormatError("Invalid codespace range.");
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseWMode(cMap, lexer) {
|
|
|
|
const obj = lexer.getObj();
|
|
|
|
if (Number.isInteger(obj)) {
|
|
|
|
cMap.vertical = !!obj;
|
|
|
|
}
|
|
|
|
}
|
2013-09-26 02:32:04 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
function parseCMapName(cMap, lexer) {
|
|
|
|
const obj = lexer.getObj();
|
|
|
|
if (obj instanceof Name) {
|
|
|
|
cMap.name = obj.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function parseCMap(cMap, lexer, fetchBuiltInCMap, useCMap) {
|
|
|
|
let previous, embeddedUseCMap;
|
|
|
|
objLoop: while (true) {
|
|
|
|
try {
|
|
|
|
const obj = lexer.getObj();
|
2021-08-03 19:41:58 +09:00
|
|
|
if (obj === EOF) {
|
2013-09-26 02:32:04 +09:00
|
|
|
break;
|
2023-04-21 18:55:55 +09:00
|
|
|
} else if (obj instanceof Name) {
|
|
|
|
if (obj.name === "WMode") {
|
|
|
|
parseWMode(cMap, lexer);
|
|
|
|
} else if (obj.name === "CMapName") {
|
|
|
|
parseCMapName(cMap, lexer);
|
2014-02-12 03:27:09 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
previous = obj;
|
|
|
|
} else if (obj instanceof Cmd) {
|
|
|
|
switch (obj.cmd) {
|
|
|
|
case "endcmap":
|
|
|
|
break objLoop;
|
|
|
|
case "usecmap":
|
|
|
|
if (previous instanceof Name) {
|
|
|
|
embeddedUseCMap = previous.name;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "begincodespacerange":
|
|
|
|
parseCodespaceRange(cMap, lexer);
|
|
|
|
break;
|
|
|
|
case "beginbfchar":
|
|
|
|
parseBfChar(cMap, lexer);
|
|
|
|
break;
|
|
|
|
case "begincidchar":
|
|
|
|
parseCidChar(cMap, lexer);
|
|
|
|
break;
|
|
|
|
case "beginbfrange":
|
|
|
|
parseBfRange(cMap, lexer);
|
|
|
|
break;
|
|
|
|
case "begincidrange":
|
|
|
|
parseCidRange(cMap, lexer);
|
|
|
|
break;
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
} catch (ex) {
|
|
|
|
if (ex instanceof MissingDataException) {
|
|
|
|
throw ex;
|
2021-02-27 22:20:43 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
warn("Invalid cMap data: " + ex);
|
|
|
|
continue;
|
2021-02-27 22:20:43 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
}
|
2021-02-27 22:20:43 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
if (!useCMap && embeddedUseCMap) {
|
|
|
|
// Load the useCMap definition from the file only if there wasn't one
|
|
|
|
// specified.
|
|
|
|
useCMap = embeddedUseCMap;
|
2014-02-12 03:27:09 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
if (useCMap) {
|
|
|
|
return extendCMap(cMap, fetchBuiltInCMap, useCMap);
|
|
|
|
}
|
|
|
|
return cMap;
|
|
|
|
}
|
2014-02-12 03:27:09 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
async function extendCMap(cMap, fetchBuiltInCMap, useCMap) {
|
|
|
|
cMap.useCMap = await createBuiltInCMap(useCMap, fetchBuiltInCMap);
|
|
|
|
// If there aren't any code space ranges defined clone all the parent ones
|
|
|
|
// into this cMap.
|
|
|
|
if (cMap.numCodespaceRanges === 0) {
|
|
|
|
const useCodespaceRanges = cMap.useCMap.codespaceRanges;
|
|
|
|
for (let i = 0; i < useCodespaceRanges.length; i++) {
|
|
|
|
cMap.codespaceRanges[i] = useCodespaceRanges[i].slice();
|
2014-02-12 03:27:09 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
cMap.numCodespaceRanges = cMap.useCMap.numCodespaceRanges;
|
|
|
|
}
|
|
|
|
// Merge the map into the current one, making sure not to override
|
|
|
|
// any previously defined entries.
|
|
|
|
cMap.useCMap.forEach(function (key, value) {
|
|
|
|
if (!cMap.contains(key)) {
|
|
|
|
cMap.mapOne(key, cMap.useCMap.lookup(key));
|
2017-07-20 21:04:54 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
});
|
2014-03-15 03:22:02 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
return cMap;
|
|
|
|
}
|
2021-02-27 22:20:43 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
async function createBuiltInCMap(name, fetchBuiltInCMap) {
|
|
|
|
if (name === "Identity-H") {
|
|
|
|
return new IdentityCMap(false, 2);
|
|
|
|
} else if (name === "Identity-V") {
|
|
|
|
return new IdentityCMap(true, 2);
|
|
|
|
}
|
|
|
|
if (!BUILT_IN_CMAPS.includes(name)) {
|
|
|
|
throw new Error("Unknown CMap name: " + name);
|
|
|
|
}
|
|
|
|
if (!fetchBuiltInCMap) {
|
|
|
|
throw new Error("Built-in CMap parameters are not provided.");
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2014-02-12 03:27:09 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
const { cMapData, compressionType } = await fetchBuiltInCMap(name);
|
|
|
|
const cMap = new CMap(true);
|
2017-02-12 23:54:41 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
if (compressionType === CMapCompressionType.BINARY) {
|
|
|
|
return new BinaryCMapReader().process(cMapData, cMap, useCMap => {
|
|
|
|
return extendCMap(cMap, fetchBuiltInCMap, useCMap);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (compressionType === CMapCompressionType.NONE) {
|
|
|
|
const lexer = new Lexer(new Stream(cMapData));
|
|
|
|
return parseCMap(cMap, lexer, fetchBuiltInCMap, null);
|
|
|
|
}
|
|
|
|
throw new Error(`Invalid CMap "compressionType" value: ${compressionType}`);
|
|
|
|
}
|
2021-02-27 22:20:43 +09:00
|
|
|
|
2023-04-21 18:55:55 +09:00
|
|
|
class CMapFactory {
|
|
|
|
static async create({ encoding, fetchBuiltInCMap, useCMap }) {
|
|
|
|
if (encoding instanceof Name) {
|
|
|
|
return createBuiltInCMap(encoding.name, fetchBuiltInCMap);
|
|
|
|
} else if (encoding instanceof BaseStream) {
|
|
|
|
const parsedCMap = await parseCMap(
|
|
|
|
/* cMap = */ new CMap(),
|
|
|
|
/* lexer = */ new Lexer(encoding),
|
|
|
|
fetchBuiltInCMap,
|
|
|
|
useCMap
|
|
|
|
);
|
|
|
|
|
|
|
|
if (parsedCMap.isIdentityCMap) {
|
|
|
|
return createBuiltInCMap(parsedCMap.name, fetchBuiltInCMap);
|
2013-09-26 02:32:04 +09:00
|
|
|
}
|
2023-04-21 18:55:55 +09:00
|
|
|
return parsedCMap;
|
|
|
|
}
|
|
|
|
throw new Error("Encoding required.");
|
|
|
|
}
|
|
|
|
}
|
2015-11-22 01:32:47 +09:00
|
|
|
|
2021-01-09 23:37:44 +09:00
|
|
|
export { CMap, CMapFactory, IdentityCMap };
|