-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathcheck.ts
More file actions
568 lines (524 loc) · 16.3 KB
/
check.ts
File metadata and controls
568 lines (524 loc) · 16.3 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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/*
* 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 { completeMessage, withSpinner } from "../../core/console.ts";
import { quartoConfig } from "../../core/quarto.ts";
import {
cacheCodePage,
clearCodePageCache,
readCodePage,
} from "../../core/windows.ts";
import { RenderServiceWithLifetime } from "../render/types.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, installableTool } 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 { detectBrowser } from "../../core/puppeteer.ts";
import { executionEngines } from "../../execute/engine.ts";
export function getTargets(): readonly string[] {
const checkableEngineNames = executionEngines()
.filter((engine) => engine.checkInstallation)
.map((engine) => engine.name);
return ["install", "info", ...checkableEngineNames, "versions", "all"];
}
export type Target = string;
export function enforceTargetType(value: unknown): Target {
const targets = getTargets();
return makeStringEnumTypeEnforcer(...targets)(value);
}
const kIndent = " ";
type CheckJsonResult = Record<string, unknown>;
export type CheckConfiguration = {
strict: boolean;
target: Target;
output: string | undefined;
services: RenderServiceWithLifetime;
jsonResult: CheckJsonResult | undefined;
};
function checkCompleteMessage(conf: CheckConfiguration, message: string) {
if (!conf.jsonResult) {
completeMessage(message);
}
}
function checkInfoMsg(conf: CheckConfiguration, message: string) {
if (!conf.jsonResult) {
info(message);
}
}
export async function check(
target: Target,
strict?: boolean,
output?: string,
): Promise<void> {
const services = renderServices(notebookContext());
const conf: CheckConfiguration = {
strict: !!strict,
target: target,
output,
services,
jsonResult: undefined,
};
if (conf.output) {
conf.jsonResult = {
strict,
};
}
try {
if (conf.jsonResult) {
conf.jsonResult.version = quartoConfig.version();
}
checkInfoMsg(conf, `Quarto ${quartoConfig.version()}`);
// Fixed checks (non-engine)
for (
const [name, checker] of [
["info", checkInfo],
["versions", checkVersions],
["install", checkInstall],
] as const
) {
if (target === name || target === "all") {
await checker(conf);
}
}
// Dynamic engine checks
for (const engine of executionEngines()) {
if (
engine.checkInstallation && (target === engine.name || target === "all")
) {
await engine.checkInstallation(conf);
}
}
if (conf.jsonResult && conf.output) {
await Deno.writeTextFile(
conf.output,
JSON.stringify(conf.jsonResult, null, 2),
);
}
} 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(conf: CheckConfiguration) {
const cacheDir = quartoCacheDir();
if (conf.jsonResult) {
conf.jsonResult!.info = { cacheDir };
}
checkCompleteMessage(conf, "Checking environment information...");
checkInfoMsg(conf, kIndent + "Quarto cache location: " + cacheDir);
}
async function checkVersions(conf: CheckConfiguration) {
const {
strict,
} = conf;
const checkVersion = (
version: string | undefined,
constraint: string,
name: string,
) => {
if (typeof version !== "string") {
throw new Error(`Unable to determine ${name} version`);
}
const good = satisfies(version, constraint);
if (conf.jsonResult) {
if (conf.jsonResult.dependencies === undefined) {
conf.jsonResult.dependencies = {};
}
(conf.jsonResult.dependencies as Record<string, unknown>)[name] = {
version,
constraint,
satisfies: good,
};
}
if (!good) {
checkInfoMsg(
conf,
` NOTE: ${name} version ${version} is too old. Please upgrade to ${
constraint.slice(2)
} or later.`,
);
} else {
checkInfoMsg(conf, ` ${name} version ${version}: OK`);
}
};
const strictCheckVersion = (
version: string,
constraint: string,
name: string,
) => {
const good = version === constraint;
if (conf.jsonResult) {
if (conf.jsonResult.dependencies === undefined) {
conf.jsonResult.dependencies = {};
}
(conf.jsonResult.dependencies as Record<string, unknown>)[name] = {
version,
constraint,
satisfies: good,
};
}
if (!good) {
checkInfoMsg(
conf,
` NOTE: ${name} version ${version} does not strictly match ${constraint} and strict checking is enabled. Please use ${constraint}.`,
);
} else {
checkInfoMsg(conf, ` ${name} version ${version}: OK`);
}
};
checkCompleteMessage(
conf,
"Checking versions of quarto binary dependencies...",
);
let pandocVersion = lines(
(await execProcess({
cmd: pandocBinaryPath(),
args: ["--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(),
args: ["--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 versionConstraints: [string | undefined, string, string][] = [
[pandocVersion, "3.8.3", "Pandoc"],
[sassVersion, "1.87.0", "Dart Sass"],
[denoVersion, "2.4.5", "Deno"],
[typstVersion, "0.14.2", "Typst"],
];
const checkData: [string | undefined, string, string][] = versionConstraints
.map(([version, ver, name]) => [
version,
strict ? ver : `>=${ver}`,
name,
]);
const fun = strict ? strictCheckVersion : checkVersion;
for (const [version, constraint, name] of checkData) {
if (version === undefined) {
if (conf.jsonResult) {
if (conf.jsonResult.dependencies === undefined) {
conf.jsonResult.dependencies = {};
}
(conf.jsonResult.dependencies as Record<string, unknown>)[name] = {
version,
constraint,
found: false,
};
}
checkInfoMsg(conf, ` ${name} version: (not detected)`);
} else {
fun(version, constraint, name);
}
}
checkCompleteMessage(
conf,
"Checking versions of quarto dependencies......OK",
);
}
async function checkInstall(conf: CheckConfiguration) {
const {
services,
} = conf;
checkCompleteMessage(conf, "Checking Quarto installation......OK");
checkInfoMsg(conf, `${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",
args: ["-C", quartoRoot, "rev-parse", "HEAD"],
stdout: "piped",
stderr: "piped", // to not show error if not in a git repo
});
if (gitHead.success && gitHead.stdout) {
checkInfoMsg(conf, `${kIndent}commit: ${gitHead.stdout.trim()}`);
if (conf.jsonResult) {
conf.jsonResult["quarto-dev-version"] = gitHead.stdout.trim();
}
}
}
}
checkInfoMsg(conf, `${kIndent}Path: ${quartoConfig.binPath()}`);
if (conf.jsonResult) {
conf.jsonResult["quarto-path"] = quartoConfig.binPath();
}
if (isWindows) {
const json: Record<string, unknown> = {};
if (conf.jsonResult) {
conf.jsonResult.windows = json;
}
try {
const codePage = readCodePage();
clearCodePageCache();
await cacheCodePage();
const codePage2 = readCodePage();
checkInfoMsg(conf, `${kIndent}CodePage: ${codePage2 || "unknown"}`);
json["code-page"] = codePage2 || "unknown";
if (codePage && codePage !== codePage2) {
checkInfoMsg(
conf,
`${kIndent}NOTE: Code page updated from ${codePage} to ${codePage2}. Previous rendering may have been affected.`,
);
json["code-page-updated-from"] = codePage;
}
// 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())) {
checkInfoMsg(
conf,
`${kIndent}ERROR: Non-ASCII characters in Quarto path causes rendering problems.`,
);
json["non-ascii-in-path"] = true;
}
} catch {
checkInfoMsg(conf, `${kIndent}CodePage: Unable to read code page`);
json["error"] = "Unable to read code page";
}
}
checkInfoMsg(conf, "");
const toolsMessage = "Checking tools....................";
const toolsOutput: string[] = [];
let tools: Awaited<ReturnType<typeof allTools>>;
const toolsJson: Record<string, unknown> = {};
if (conf.jsonResult) {
conf.jsonResult.tools = toolsJson;
}
const toolsCb = async () => {
tools = await allTools();
for (const tool of tools.installed) {
const version = await tool.installedVersion() || "(external install)";
toolsOutput.push(`${kIndent}${tool.name}: ${version}`);
toolsJson[tool.name] = {
version,
};
if (tool.name === "Chromium (deprecated)") {
toolsOutput.push(
`${kIndent} (Run "quarto install chrome-headless-shell" to replace)`,
);
}
}
for (const tool of tools.notInstalled) {
toolsOutput.push(`${kIndent}${tool.name}: (not installed)`);
toolsJson[tool.name] = {
installed: false,
};
}
};
if (conf.jsonResult) {
await toolsCb();
} else {
await withSpinner({
message: toolsMessage,
doneMessage: toolsMessage + "OK",
}, toolsCb);
}
toolsOutput.forEach((out) => checkInfoMsg(conf, out));
checkInfoMsg(conf, "");
const latexMessage = "Checking LaTeX....................";
const latexOutput: string[] = [];
const latexJson: Record<string, unknown> = {};
if (conf.jsonResult) {
conf.jsonResult.latex = latexJson;
}
const latexCb = 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)}`);
latexJson["path"] = dirname(tlMgrPath);
latexJson["source"] = "global";
}
} else {
latexOutput.push(`${kIndent}Using: TinyTex`);
if (tlContext.binDir) {
latexOutput.push(`${kIndent}Path: ${tlContext.binDir}`);
latexJson["path"] = tlContext.binDir;
latexJson["source"] = "tinytex";
}
}
latexOutput.push(`${kIndent}Version: ${version}`);
latexJson["version"] = version;
} else {
latexOutput.push(`${kIndent}Tex: (not detected)`);
latexJson["installed"] = false;
}
};
if (conf.jsonResult) {
await latexCb();
} else {
await withSpinner({
message: latexMessage,
doneMessage: latexMessage + "OK",
}, latexCb);
}
latexOutput.forEach((out) => checkInfoMsg(conf, out));
checkInfoMsg(conf, "");
const chromeHeadlessMessage = "Checking Chrome Headless....................";
const chromeHeadlessOutput: string[] = [];
const chromeJson: Record<string, unknown> = {};
if (conf.jsonResult) {
conf.jsonResult.chrome = chromeJson;
}
const chromeCb = async () => {
const check = await detectChromeForCheck();
if (check.warning) {
chromeHeadlessOutput.push(`${kIndent}NOTE: ${check.warning}`);
chromeJson["warning"] = check.warning;
}
if (check.detected) {
const { label, path, source, displaySource, version } = check.detected;
chromeHeadlessOutput.push(`${kIndent}Using: ${label}`);
if (path) {
chromeHeadlessOutput.push(`${kIndent}Path: ${path}`);
chromeJson["path"] = path;
}
chromeJson["source"] = source;
if (displaySource) {
chromeHeadlessOutput.push(`${kIndent}Source: ${displaySource}`);
}
if (version) {
chromeHeadlessOutput.push(`${kIndent}Version: ${version}`);
chromeJson["version"] = version;
}
} else {
chromeHeadlessOutput.push(`${kIndent}Chrome: (not detected)`);
chromeJson["installed"] = false;
}
};
if (conf.jsonResult) {
await chromeCb();
} else {
await withSpinner({
message: chromeHeadlessMessage,
doneMessage: chromeHeadlessMessage + "OK",
}, chromeCb);
}
chromeHeadlessOutput.forEach((out) => checkInfoMsg(conf, out));
checkInfoMsg(conf, "");
const kMessage = "Checking basic markdown render....";
const markdownRenderJson: Record<string, unknown> = {};
if (conf.jsonResult) {
conf.jsonResult.render = {
markdown: markdownRenderJson,
};
}
const markdownRenderCb = 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) {
if (!conf.jsonResult) {
throw result.error;
} else {
markdownRenderJson["error"] = result.error;
}
} else {
markdownRenderJson["ok"] = true;
}
};
if (conf.jsonResult) {
await markdownRenderCb();
} else {
await withSpinner({
message: kMessage,
doneMessage: kMessage + "OK\n",
}, markdownRenderCb);
}
}
interface ChromeDetectionResult {
label: string;
path?: string;
source: string;
version?: string;
displaySource?: string;
}
interface ChromeCheckInfo {
warning?: string;
detected?: ChromeDetectionResult;
}
async function detectChromeForCheck(): Promise<ChromeCheckInfo> {
const detection = await detectBrowser();
if (detection.detected) {
return { detected: detection.detected };
}
const result: ChromeCheckInfo = {};
if (detection.warning) {
result.warning = detection.warning;
}
// Legacy: chromium installed by Quarto
const chromiumTool = installableTool("chromium");
if (chromiumTool && await chromiumTool.installed()) {
let path: string | undefined;
if (chromiumTool.binDir) {
path = await chromiumTool.binDir();
}
const version = await chromiumTool.installedVersion();
result.detected = {
label: "Chromium installed by Quarto",
path,
source: "quarto",
version,
};
}
return result;
}