2014-03-25 05:52:11 +09:00
|
|
|
/*
|
|
|
|
* Copyright 2014 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.
|
|
|
|
*/
|
|
|
|
|
2023-07-08 19:44:37 +09:00
|
|
|
import fs from "fs";
|
2023-10-30 03:43:32 +09:00
|
|
|
import os from "os";
|
2023-07-08 19:44:37 +09:00
|
|
|
import path from "path";
|
|
|
|
import { spawn } from "child_process";
|
2014-03-25 05:52:11 +09:00
|
|
|
|
2023-10-30 03:43:32 +09:00
|
|
|
let ttxTaskId = Date.now();
|
2014-03-25 05:52:11 +09:00
|
|
|
|
2023-10-30 03:43:32 +09:00
|
|
|
function runTtx(fontPath, registerOnCancel, callback) {
|
|
|
|
const ttx = spawn("ttx", [fontPath], { stdio: "ignore" });
|
|
|
|
let ttxRunError;
|
|
|
|
registerOnCancel(function (reason) {
|
|
|
|
ttxRunError = reason;
|
|
|
|
callback(reason);
|
|
|
|
ttx.kill();
|
|
|
|
});
|
|
|
|
ttx.on("error", function (errorTtx) {
|
|
|
|
ttxRunError = errorTtx;
|
|
|
|
callback(
|
|
|
|
"Unable to execute `ttx`; make sure the `fonttools` dependency is installed"
|
|
|
|
);
|
|
|
|
});
|
|
|
|
ttx.on("close", function (code) {
|
|
|
|
if (ttxRunError) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callback();
|
2014-03-25 05:52:11 +09:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-07-08 19:44:37 +09:00
|
|
|
function translateFont(content, registerOnCancel, callback) {
|
2020-10-26 20:20:03 +09:00
|
|
|
const buffer = Buffer.from(content, "base64");
|
2023-10-30 03:43:32 +09:00
|
|
|
const taskId = (ttxTaskId++).toString();
|
|
|
|
const fontPath = path.join(os.tmpdir(), `pdfjs-font-test-${taskId}.otf`);
|
|
|
|
const resultPath = path.join(os.tmpdir(), `pdfjs-font-test-${taskId}.ttx`);
|
2014-03-25 05:52:11 +09:00
|
|
|
|
|
|
|
fs.writeFileSync(fontPath, buffer);
|
2023-10-30 03:43:32 +09:00
|
|
|
runTtx(fontPath, registerOnCancel, function (err) {
|
2018-06-04 05:17:05 +09:00
|
|
|
fs.unlinkSync(fontPath);
|
2014-03-25 05:52:11 +09:00
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
|
|
|
callback(err);
|
|
|
|
} else if (!fs.existsSync(resultPath)) {
|
|
|
|
callback("Output was not generated");
|
|
|
|
} else {
|
|
|
|
callback(null, fs.readFileSync(resultPath));
|
2018-06-04 05:17:05 +09:00
|
|
|
fs.unlinkSync(resultPath);
|
2014-03-25 05:52:11 +09:00
|
|
|
}
|
|
|
|
});
|
2023-07-08 19:44:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
export { translateFont };
|