-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathcheck.ts
More file actions
508 lines (476 loc) · 15 KB
/
check.ts
File metadata and controls
508 lines (476 loc) · 15 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
/*
* check.ts
*
* Copyright (C) 2021-2022 Posit Software, PBC
*/
import { info } from "../../deno_ral/log.ts";
import { render } from "../render/render-shared.ts";
import { renderServices } from "../render/render-services.ts";
import { JupyterCapabilities } from "../../core/jupyter/types.ts";
import { jupyterCapabilities } from "../../core/jupyter/capabilities.ts";
import {
jupyterCapabilitiesMessage,
jupyterInstallationMessage,
jupyterUnactivatedEnvMessage,
pythonInstallationMessage,
} from "../../core/jupyter/jupyter-shared.ts";
import { completeMessage, withSpinner } from "../../core/console.ts";
import {
checkRBinary,
KnitrCapabilities,
knitrCapabilities,
knitrCapabilitiesMessage,
knitrInstallationMessage,
rInstallationMessage,
} from "../../core/knitr.ts";
import { quartoConfig } from "../../core/quarto.ts";
import {
cacheCodePage,
clearCodePageCache,
readCodePage,
} from "../../core/windows.ts";
import { RenderServices } from "../render/types.ts";
import { jupyterKernelspecForLanguage } from "../../core/jupyter/kernels.ts";
import { execProcess } from "../../core/process.ts";
import { pandocBinaryPath } from "../../core/resources.ts";
import { lines } from "../../core/text.ts";
import { satisfies } from "semver/mod.ts";
import { dartCommand } from "../../core/dart-sass.ts";
import { allTools } from "../../tools/tools.ts";
import { texLiveContext, tlVersion } from "../render/latexmk/texlive.ts";
import { which } from "../../core/path.ts";
import { dirname } from "../../deno_ral/path.ts";
import { notebookContext } from "../../render/notebook/notebook-context.ts";
import { typstBinaryPath } from "../../core/typst.ts";
import { quartoCacheDir } from "../../core/appdirs.ts";
import { isWindows } from "../../deno_ral/platform.ts";
import { makeStringEnumTypeEnforcer } from "../../typing/dynamic.ts";
import { findChrome } from "../../core/puppeteer.ts";
export const kTargets = [
"install",
"info",
"jupyter",
"knitr",
"versions",
"all",
] as const;
export type Target = typeof kTargets[number];
export const enforceTargetType = makeStringEnumTypeEnforcer(...kTargets);
const kIndent = " ";
export async function check(target: Target, strict?: boolean): Promise<void> {
const services = renderServices(notebookContext());
try {
info(`Quarto ${quartoConfig.version()}`);
if (target === "info" || target === "all") {
await checkInfo(services);
}
if (target === "versions" || target === "all") {
await checkVersions(services, strict);
}
if (target === "install" || target === "all") {
await checkInstall(services);
}
if (target === "jupyter" || target === "all") {
await checkJupyterInstallation(services);
}
if (target === "knitr" || target === "all") {
await checkKnitrInstallation(services);
}
} finally {
services.cleanup();
}
}
// Currently this doesn't check anything
// but it's a placeholder for future checks
// and the message is useful for troubleshooting
async function checkInfo(_services: RenderServices) {
const cacheDir = quartoCacheDir();
completeMessage("Checking environment information...");
info(kIndent + "Quarto cache location: " + cacheDir);
}
async function checkVersions(_services: RenderServices, strict?: boolean) {
const checkVersion = (
version: string | undefined,
constraint: string,
name: string,
) => {
if (typeof version !== "string") {
throw new Error(`Unable to determine ${name} version`);
}
if (!satisfies(version, constraint)) {
info(
` NOTE: ${name} version ${version} is too old. Please upgrade to ${
constraint.slice(2)
} or later.`,
);
} else {
info(` ${name} version ${version}: OK`);
}
};
const strictCheckVersion = (
version: string,
constraint: string,
name: string,
) => {
if (version !== constraint) {
info(
` NOTE: ${name} version ${version} does not strictly match ${constraint} and strict checking is enabled. Please use ${constraint}.`,
);
} else {
info(` ${name} version ${version}: OK`);
}
};
completeMessage("Checking versions of quarto binary dependencies...");
let pandocVersion = lines(
(await execProcess({
cmd: [pandocBinaryPath(), "--version"],
stdout: "piped",
})).stdout!,
)[0]?.split(" ")[1];
const sassVersion = (await dartCommand(["--version"]))?.trim();
const denoVersion = Deno.version.deno;
const typstVersion = lines(
(await execProcess({
cmd: [typstBinaryPath(), "--version"],
stdout: "piped",
})).stdout!,
)[0].split(" ")[1];
// We hack around pandocVersion to build a sem-verish string
// that satisfies the semver package
// if pandoc reports more than three version numbers, pick the first three
// if pandoc reports fewer than three version numbers, pad with zeros
if (pandocVersion) {
const versionParts = pandocVersion.split(".");
if (versionParts.length > 3) {
pandocVersion = versionParts.slice(0, 3).join(".");
} else if (versionParts.length < 3) {
pandocVersion = versionParts.concat(
Array(3 - versionParts.length).fill("0"),
).join(".");
}
}
// FIXME: all of these strict checks should be done by
// loading the configuration file directly, but that
// file is in an awkward format and it is not packaged
// with our installers
const checkData: [string | undefined, string, string][] = strict
? [
[pandocVersion, "3.6.3", "Pandoc"],
[sassVersion, "1.85.1", "Dart Sass"],
[denoVersion, "1.46.3", "Deno"],
[typstVersion, "0.13.0", "Typst"],
]
: [
[pandocVersion, ">=2.19.2", "Pandoc"],
[sassVersion, ">=1.32.8", "Dart Sass"],
[denoVersion, ">=1.33.1", "Deno"],
[typstVersion, ">=0.10.0", "Typst"],
];
const fun = strict ? strictCheckVersion : checkVersion;
for (const [version, constraint, name] of checkData) {
if (version === undefined) {
info(` ${name} version: (not detected)`);
} else {
fun(version, constraint, name);
}
}
completeMessage("Checking versions of quarto dependencies......OK");
}
async function checkInstall(services: RenderServices) {
completeMessage("Checking Quarto installation......OK");
info(`${kIndent}Version: ${quartoConfig.version()}`);
if (quartoConfig.version() === "99.9.9") {
// if they're running a dev version, we assume git is installed
// and QUARTO_ROOT is set to the root of the quarto-cli repo
// print the output of git rev-parse HEAD
const quartoRoot = Deno.env.get("QUARTO_ROOT");
if (quartoRoot) {
const gitHead = await execProcess({
cmd: ["git", "-C", quartoRoot, "rev-parse", "HEAD"],
stdout: "piped",
stderr: "piped", // to not show error if not in a git repo
});
if (gitHead.success && gitHead.stdout) {
info(`${kIndent}commit: ${gitHead.stdout.trim()}`);
}
}
}
info(`${kIndent}Path: ${quartoConfig.binPath()}`);
if (isWindows) {
try {
const codePage = readCodePage();
clearCodePageCache();
await cacheCodePage();
const codePage2 = readCodePage();
info(`${kIndent}CodePage: ${codePage2 || "unknown"}`);
if (codePage && codePage !== codePage2) {
info(
`${kIndent}NOTE: Code page updated from ${codePage} to ${codePage2}. Previous rendering may have been affected.`,
);
}
// if non-standard code page, check for non-ascii characters in path
// deno-lint-ignore no-control-regex
const nonAscii = /[^\x00-\x7F]+/;
if (nonAscii.test(quartoConfig.binPath())) {
info(
`${kIndent}ERROR: Non-ASCII characters in Quarto path causes rendering problems.`,
);
}
} catch {
info(`${kIndent}CodePage: Unable to read code page`);
}
}
info("");
const toolsMessage = "Checking tools....................";
const toolsOutput: string[] = [];
let tools: Awaited<ReturnType<typeof allTools>>;
await withSpinner({
message: toolsMessage,
doneMessage: toolsMessage + "OK",
}, async () => {
tools = await allTools();
for (const tool of tools.installed) {
const version = await tool.installedVersion() || "(external install)";
toolsOutput.push(`${kIndent}${tool.name}: ${version}`);
}
for (const tool of tools.notInstalled) {
toolsOutput.push(`${kIndent}${tool.name}: (not installed)`);
}
});
toolsOutput.forEach((out) => info(out));
info("");
const latexMessage = "Checking LaTeX....................";
const latexOutput: string[] = [];
await withSpinner({
message: latexMessage,
doneMessage: latexMessage + "OK",
}, async () => {
const tlContext = await texLiveContext(true);
if (tlContext.hasTexLive) {
const version = await tlVersion(tlContext);
if (tlContext.usingGlobal) {
const tlMgrPath = await which("tlmgr");
latexOutput.push(`${kIndent}Using: Installation From Path`);
if (tlMgrPath) {
latexOutput.push(`${kIndent}Path: ${dirname(tlMgrPath)}`);
}
} else {
latexOutput.push(`${kIndent}Using: TinyTex`);
if (tlContext.binDir) {
latexOutput.push(`${kIndent}Path: ${tlContext.binDir}`);
}
}
latexOutput.push(`${kIndent}Version: ${version}`);
} else {
latexOutput.push(`${kIndent}Tex: (not detected)`);
}
});
latexOutput.forEach((out) => info(out));
info("");
const chromeHeadlessMessage = "Checking Chrome Headless....................";
const chromeHeadlessOutput: string[] = [];
await withSpinner({
message: chromeHeadlessMessage,
doneMessage: chromeHeadlessMessage + "OK",
}, async () => {
const chromeDetected = await findChrome();
const chromiumQuarto = tools.installed.find((tool) =>
tool.name === "chromium"
);
if (chromeDetected.path !== undefined) {
chromeHeadlessOutput.push(`${kIndent}Using: Chrome found on system`);
chromeHeadlessOutput.push(
`${kIndent}Path: ${chromeDetected.path}`,
);
if (chromeDetected.source) {
chromeHeadlessOutput.push(`${kIndent}Source: ${chromeDetected.source}`);
}
} else if (chromiumQuarto !== undefined) {
chromeHeadlessOutput.push(
`${kIndent}Using: Chromium installed by Quarto`,
);
if (chromiumQuarto?.binDir) {
chromeHeadlessOutput.push(
`${kIndent}Path: ${chromiumQuarto?.binDir}`,
);
}
chromeHeadlessOutput.push(
`${kIndent}Version: ${chromiumQuarto.installedVersion}`,
);
} else {
chromeHeadlessOutput.push(`${kIndent}Chrome: (not detected)`);
}
});
chromeHeadlessOutput.forEach((out) => info(out));
info("");
const kMessage = "Checking basic markdown render....";
await withSpinner({
message: kMessage,
doneMessage: kMessage + "OK\n",
}, async () => {
const mdPath = services.temp.createFile({ suffix: "check.md" });
Deno.writeTextFileSync(
mdPath,
`
---
title: "Title"
---
## Header
`,
);
const result = await render(mdPath, {
services,
flags: { quiet: true },
});
if (result.error) {
throw result.error;
}
});
}
async function checkJupyterInstallation(services: RenderServices) {
const kMessage = "Checking Python 3 installation....";
let caps: JupyterCapabilities | undefined;
await withSpinner({
message: kMessage,
doneMessage: false,
}, async () => {
caps = await jupyterCapabilities();
});
if (caps) {
completeMessage(kMessage + "OK");
info(await jupyterCapabilitiesMessage(caps, kIndent));
info("");
if (caps.jupyter_core) {
if (await jupyterKernelspecForLanguage("python")) {
const kJupyterMessage = "Checking Jupyter engine render....";
await withSpinner({
message: kJupyterMessage,
doneMessage: kJupyterMessage + "OK\n",
}, async () => {
await checkJupyterRender(services);
});
} else {
info(
kIndent + "NOTE: No Jupyter kernel for Python found",
);
info("");
}
} else {
info(jupyterInstallationMessage(caps, kIndent));
info("");
const envMessage = jupyterUnactivatedEnvMessage(caps, kIndent);
if (envMessage) {
info(envMessage);
info("");
}
}
} else {
completeMessage(kMessage + "(None)\n");
info(pythonInstallationMessage(kIndent));
info("");
}
}
async function checkJupyterRender(services: RenderServices) {
const qmdPath = services.temp.createFile({ suffix: "check.qmd" });
Deno.writeTextFileSync(
qmdPath,
`
---
title: "Title"
---
## Header
\`\`\`{python}
1 + 1
\`\`\`
`,
);
const result = await render(qmdPath, {
services,
flags: { quiet: true, executeDaemon: 0 },
});
if (result.error) {
throw result.error;
}
}
async function checkKnitrInstallation(services: RenderServices) {
const kMessage = "Checking R installation...........";
let caps: KnitrCapabilities | undefined;
let rBin: string | undefined;
await withSpinner({
message: kMessage,
doneMessage: false,
}, async () => {
rBin = await checkRBinary();
caps = await knitrCapabilities(rBin);
});
if (rBin && caps) {
completeMessage(kMessage + "OK");
info(knitrCapabilitiesMessage(caps, kIndent));
info("");
if (caps.packages.rmarkdownVersOk && caps.packages.knitrVersOk) {
const kKnitrMessage = "Checking Knitr engine render......";
await withSpinner({
message: kKnitrMessage,
doneMessage: kKnitrMessage + "OK\n",
}, async () => {
await checkKnitrRender(services);
});
} else {
// show install message if not available
// or update message if not up to date
if (!!!caps.packages.knitr || !caps.packages.knitrVersOk) {
info(
knitrInstallationMessage(
kIndent,
"knitr",
!!caps.packages.knitr && !caps.packages.knitrVersOk,
),
);
}
if (!!!caps.packages.rmarkdown || !caps.packages.rmarkdownVersOk) {
info(
knitrInstallationMessage(
kIndent,
"rmarkdown",
!!caps.packages.rmarkdown && !caps.packages.rmarkdownVersOk,
),
);
}
info("");
}
} else if (rBin === undefined) {
completeMessage(kMessage + "(None)\n");
info(rInstallationMessage(kIndent));
info("");
} else if (caps === undefined) {
completeMessage(kMessage + "(None)\n");
info(`R succesfully found at ${rBin}.`);
info(
"However, a problem was encountered when checking configurations of packages.",
);
info("Please check your installation of R.");
info("");
}
}
async function checkKnitrRender(services: RenderServices) {
const rmdPath = services.temp.createFile({ suffix: "check.rmd" });
Deno.writeTextFileSync(
rmdPath,
`
---
title: "Title"
---
## Header
\`\`\`{r}
1 + 1
\`\`\`
`,
);
const result = await render(rmdPath, {
services,
flags: { quiet: true },
});
if (result.error) {
throw result.error;
}
}