-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.ts
113 lines (98 loc) · 3.73 KB
/
main.ts
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
import { load, setApiKey } from '@d2api/manifest-node';
import { spawnSync } from 'child_process';
import { readdirSync, copyFileSync } from 'node:fs';
import path, { basename, dirname } from 'path';
import { fileURLToPath } from 'url';
import { registerWriteHook } from './helpers.js';
import { infoLog, infoTable } from './log.js';
const TAG = 'MAIN';
setApiKey(process.env.API_KEY);
await load();
const scriptRegex = /generate-([a-zA-Z\\-]+)\.ts/;
const defaultExcludedScripts = [''];
// These scripts generate data needed by other scripts,
// so they need to run first in this order
const prioritizedScripts = [''];
// If a script outputs one of these files, compile it
const toCompileOutputs = ['d2-font-glyphs.ts', 'dim-custom-symbols.ts'];
const outputDirectories = ['data', 'output'];
// These files should be copied verbatim from data/ to output/
const copyDataToOutput = ['d2-font-glyphs.ts', 'dim-custom-symbols.ts'];
// Read all `generate-` files
const scriptsDir = dirname(fileURLToPath(import.meta.url));
const projectRootDir = path.join(scriptsDir, '..', '..');
const sourceDir = path.join(projectRootDir, 'src');
const argvScripts = process.argv.length > 2 ? process.argv.slice(2) : [];
let tsFiles = readdirSync(sourceDir).filter((file) => {
const match = basename(file).match(scriptRegex);
// let user run any script they desire
return match && (argvScripts.length || !defaultExcludedScripts.includes(match[1]));
});
// The user can restrict the scripts that should run via the command line
if (argvScripts.length) {
tsFiles = tsFiles.filter((script) => argvScripts.some((pattern) => script.includes(pattern)));
}
// Sort files so that prioritized files are in the order they appear in `prioritizedScripts`,
// and everything else comes alphabetically after
tsFiles.sort((fileA, fileB) => {
const matchA = fileA.match(scriptRegex);
const matchB = fileB.match(scriptRegex);
if (matchA && !matchB) {
return -1;
} else if (!matchA && matchB) {
return 1;
} else if (matchA && matchB) {
let indexA = prioritizedScripts.indexOf(matchA[1]);
let indexB = prioritizedScripts.indexOf(matchB[1]);
if (indexA === -1) {
indexA = Number.MAX_SAFE_INTEGER;
}
if (indexB === -1) {
indexB = Number.MAX_SAFE_INTEGER;
}
if (indexA === indexB) {
return fileA.localeCompare(fileB, 'en-US');
}
return indexA - indexB;
}
return fileA.localeCompare(fileB, 'en-US');
});
let totalTscRuntime = 0;
let totalJsRunTime = 0;
registerWriteHook((fileName) => {
if (
toCompileOutputs.includes(basename(fileName)) &&
outputDirectories.includes(basename(dirname(fileName)))
) {
const t = process.hrtime();
const result = spawnSync(process.platform === 'win32' ? 'pnpm.cmd' : 'pnpm', ['build'], {
cwd: projectRootDir,
stdio: 'inherit',
shell: true,
});
if (result.error) {
throw result.error;
}
const [s, ns] = process.hrtime(t);
totalTscRuntime += s + ns / 1e9;
}
});
// Keep track of the runtime of individual scripts to identify performance problems
const runtime: { [scriptName: string]: number } = {};
for (const tsFile of tsFiles) {
const jsFile = path.parse(tsFile).name + '.js';
const t = process.hrtime();
// Our files are individual scripts, so importing already
// has the side effect of running their contents.
await import('./' + jsFile);
const [s, ns] = process.hrtime(t);
runtime[jsFile] = s + ns / 1e9;
totalJsRunTime += runtime[jsFile];
}
for (const toCopyFile of copyDataToOutput) {
copyFileSync(`./data/${toCopyFile}`, `./output/${toCopyFile}`);
}
const runtimes = Object.entries(runtime).sort((a, b) => b[1] - a[1]);
infoTable(runtimes);
infoLog(TAG, 'total tsc runtime', totalTscRuntime);
infoLog(TAG, 'total js runtime', totalJsRunTime);