-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcompileApplicationToWasm.js
236 lines (223 loc) · 6.14 KB
/
compileApplicationToWasm.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
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
import { dirname, resolve, sep, normalize } from 'node:path';
import { tmpdir } from 'node:os';
import { spawnSync } from 'node:child_process';
import { mkdir, readFile, mkdtemp, writeFile } from 'node:fs/promises';
import { rmSync } from 'node:fs';
import { isFile } from './isFile.js';
import { isFileOrDoesNotExist } from './isFileOrDoesNotExist.js';
import wizer from '@bytecodealliance/wizer';
import weval from '@bytecodealliance/weval';
import { precompile } from './precompile.js';
import { bundle } from './bundle.js';
const maybeWindowsPath =
process.platform === 'win32'
? (path) => {
return '//?/' + path.replace(/\\/g, '/');
}
: (path) => path;
async function getTmpDir() {
return await mkdtemp(normalize(tmpdir() + sep));
}
export async function compileApplicationToWasm(
input,
output,
wasmEngine,
enableExperimentalHighResolutionTimeMethods = false,
enableAOT = false,
aotCache = '',
moduleMode = false,
doBundle = false,
) {
try {
if (!(await isFile(input))) {
console.error(
`Error: The \`input\` path does not point to a file: ${input}`,
);
process.exit(1);
}
} catch (error) {
console.error(
`Error: The \`input\` path points to a non-existent file: ${input}`,
);
process.exit(1);
}
try {
await readFile(input, { encoding: 'utf-8' });
} catch (error) {
console.error(
`Error: Failed to open the \`input\` (${input})`,
error.message,
);
process.exit(1);
}
try {
if (!(await isFile(wasmEngine))) {
console.error(
`Error: The \`wasmEngine\` path does not point to a file: ${wasmEngine}`,
);
process.exit(1);
}
} catch (error) {
console.error(
`Error: The \`wasmEngine\` path points to a non-existent file: ${wasmEngine}`,
);
process.exit(1);
}
try {
await mkdir(dirname(output), {
recursive: true,
});
} catch (error) {
console.error(
`Error: Failed to create the \`output\` (${output}) directory`,
error.message,
);
process.exit(1);
}
try {
if (!(await isFileOrDoesNotExist(output))) {
console.error(
`Error: The \`output\` path does not point to a file: ${output}`,
);
process.exit(1);
}
} catch (error) {
console.error(
`Error: Failed to check whether the \`output\` (${output}) is a file path`,
error.message,
);
process.exit(1);
}
let tmpDir;
if (doBundle) {
let contents;
try {
contents = await bundle(input, moduleMode);
} catch (error) {
console.error(`Error:`, error.message);
process.exit(1);
}
const precompiled = precompile(
contents.outputFiles[0].text,
undefined,
moduleMode,
);
tmpDir = await getTmpDir();
const outPath = resolve(tmpDir, 'input.js');
await writeFile(outPath, precompiled);
// the bundled output is now the Wizer input
input = outPath;
}
try {
if (!doBundle) {
// assert(moduleMode);
const spawnOpts = {
stdio: [null, process.stdout, process.stderr],
input: maybeWindowsPath(input),
shell: true,
encoding: 'utf-8',
env: {
ENABLE_EXPERIMENTAL_HIGH_RESOLUTION_TIME_METHODS:
enableExperimentalHighResolutionTimeMethods ? '1' : '0',
},
};
if (enableAOT) {
const wevalBin = await weval();
let wevalProcess = spawnSync(
`"${wevalBin}"`,
[
'weval',
...(aotCache ? [`--cache-ro ${aotCache}`] : []),
`--dir="${maybeWindowsPath(process.cwd())}"`,
'-w',
`-i "${wasmEngine}"`,
`-o "${output}"`,
],
spawnOpts,
);
if (wevalProcess.status !== 0) {
throw new Error(`Weval initialization failure`);
}
process.exitCode = wevalProcess.status;
} else {
let wizerProcess = spawnSync(
`"${wizer}"`,
[
'--allow-wasi',
`--wasm-bulk-memory=true`,
`--dir="${maybeWindowsPath(process.cwd())}"`,
'-r _start=wizer.resume',
`-o="${output}"`,
`"${wasmEngine}"`,
],
spawnOpts,
);
if (wizerProcess.status !== 0) {
throw new Error(`Wizer initialization failure`);
}
process.exitCode = wizerProcess.status;
}
} else {
const spawnOpts = {
stdio: [null, process.stdout, process.stderr],
input: `${maybeWindowsPath(input)}${moduleMode ? '' : ' --legacy-script'}`,
shell: true,
encoding: 'utf-8',
env: {
...process.env,
ENABLE_EXPERIMENTAL_HIGH_RESOLUTION_TIME_METHODS:
enableExperimentalHighResolutionTimeMethods ? '1' : '0',
},
};
if (enableAOT) {
const wevalBin = await weval();
let wevalProcess = spawnSync(
`"${wevalBin}"`,
[
'weval',
...(aotCache ? [`--cache-ro ${aotCache}`] : []),
'--dir .',
`--dir ${maybeWindowsPath(dirname(input))}`,
'-w',
`-i "${wasmEngine}"`,
`-o "${output}"`,
],
spawnOpts,
);
if (wevalProcess.status !== 0) {
throw new Error(`Weval initialization failure`);
}
process.exitCode = wevalProcess.status;
} else {
let wizerProcess = spawnSync(
`"${wizer}"`,
[
'--inherit-env=true',
'--allow-wasi',
'--dir=.',
`--dir=${maybeWindowsPath(dirname(input))}`,
'-r _start=wizer.resume',
`--wasm-bulk-memory=true`,
`-o="${output}"`,
`"${wasmEngine}"`,
],
spawnOpts,
);
if (wizerProcess.status !== 0) {
throw new Error(`Wizer initialization failure`);
}
process.exitCode = wizerProcess.status;
}
}
} catch (error) {
console.error(
`Error: Failed to compile JavaScript to Wasm: `,
error.message,
);
process.exit(1);
} finally {
if (doBundle) {
rmSync(tmpDir, { recursive: true });
}
}
}