-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmds.js
48 lines (44 loc) · 1.25 KB
/
cmds.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const { spawn } = require("child_process");
const envPaths = require("env-paths");
const pyEnvPath = envPaths("saltcorn-docling-env", { suffix: "" }).data;
const fs = require("fs");
const path = require("path");
const asyncSpawn = (cmd, args, opts = { stdio: "inherit" }) => {
const child = spawn(cmd, args, opts);
const outs = [];
return new Promise((resolve, reject) => {
if (child.stdout) {
child.stdout.on("data", (data) => {
outs.push(data);
});
child.stderr.on("data", (data) => {
console.error(data.toString());
});
}
child.on("exit", (exitCode, signal) => {
if (exitCode === 0) resolve(outs.join(""));
else reject();
});
child.on("error", (msg) => {
reject(msg);
});
});
};
const check_install = async () => {
if (!fs.existsSync(pyEnvPath)) {
console.log("installing docling env in", pyEnvPath);
await asyncSpawn("python", ["-m", "venv", pyEnvPath]);
await asyncSpawn(`${pyEnvPath}/bin/pip`, ["install", "docling"]);
}
};
const run_docling = async (src_file) => {
return await asyncSpawn(
`${pyEnvPath}/bin/python`,
[path.join(__dirname, "run_docling.py"), src_file],
{ stdio: "pipe" }
);
};
module.exports = {
check_install,
run_docling,
};