-
Notifications
You must be signed in to change notification settings - Fork 0
/
WascBuilderPlugin.js
348 lines (303 loc) · 10.9 KB
/
WascBuilderPlugin.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
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
/**
* @author hexxone / https://hexx.one
*
* @license
* Copyright (c) 2024 hexxone All rights reserved.
* Licensed under the GNU GENERAL PUBLIC LICENSE.
* See LICENSE file in the project root for full license information.
* @ignore
*/
/* eslint-disable no-undef */
/* eslint-disable @typescript-eslint/no-var-requires */
const fs = require('fs');
const path = require('path');
const asc = import('assemblyscript/dist/asc.js');
const validate = require('schema-utils');
const { RawSource } = require('webpack-sources');
const { Compilation } = require('webpack');
// const { error } = require('console');
const pluginName = 'WasmPlugin';
// const outPath = path.resolve(__dirname, 'build');
/**
* schema for options object
* @see {WascBuilderPlugin}
*/
const wascSchema = {
type: 'object',
properties: {
production: {
type: 'boolean'
},
basedir: {
type: 'string'
},
modules: {
type: 'array'
},
cleanup: {
type: 'boolean'
},
shared: {
type: 'boolean'
}
}
};
/**
* This is a webpack plugin for compiling AssemblyScript to Wasm on build.
*/
class WascBuilderPlugin {
options = {};
/**
* Intializes the plugin in the webpack build process
* @param {wascSchema} options config
*/
constructor(options = {}) {
validate.validate(wascSchema, options);
this.options = options;
}
/**
* @ignore
* Hook into the compilation process,
* find all target files by a regex
* then compile and add them to the webpack compiled files.
* @param {Webpack.compiler} compiler object from webpack
* @returns {void}
*/
apply(compiler) {
let addedOnce = false;
// Specify the event hook to attach to
compiler.hooks.thisCompilation.tap(pluginName, (compilation) => {
return compilation.hooks.processAssets.tap(
{
name: pluginName,
stage: Compilation.PROCESS_ASSETS_STAGE_ADDITIONAL
},
async (_assets) => {
if (addedOnce) {
return;
}
addedOnce = true;
console.log(`[${pluginName}] Gathering infos....`);
// get static files from folder
// eslint-disable-next-line no-undef
const basedir = path.resolve(
__dirname,
this.options.basedir
);
const baseFiles = this.getAllFiles(basedir);
console.log(`[${pluginName}] Base directory: '${basedir}'`);
// filter files for module names.
const moduleNames = this.options.modules ?? [];
const moduleFiles = baseFiles.filter((sf) => {
return moduleNames.some((mn) => {
return sf.substring(1) === mn;
});
});
if (moduleFiles.length === 0) {
console.warn(
`[${pluginName}] Module file list empty. Check your webpack config. Nothing to compile...`
);
return;
}
// Parallel compiling
await Promise.all(
moduleFiles.map((moduleFile) => {
// finally return Promise of module compilation
// eslint-disable-next-line no-async-promise-executor
return new Promise(async (resolve) => {
const sName = moduleFile.replace(
/^.*[\\/]/,
''
);
// change new file ext to ".wasm"
let newName = sName.replace(/\.[^/.]+$/, '');
if (!newName.endsWith('.wasm')) {
newName += '.wasm';
}
console.log(
`[${pluginName}] Compiling normally: '${moduleFile}'.`
);
await this.doCompile(
basedir + moduleFile,
newName,
compilation
);
if (this.options.shared === true) {
console.log(
`[${pluginName}] Compiling with shared memory: '${moduleFile}'.`
);
const shName = newName.replace(
'.wasm',
'.shared.wasm'
);
await this.doCompile(
basedir + moduleFile,
shName,
compilation,
true
);
}
resolve();
});
})
);
console.info(`[${pluginName}] finished.`);
}
);
});
}
/**
* @ignore
* list files recursively
* @param {strring} basedir start directory
* @param {string} subDir sub directory
* @param {array} arrayOfFiles result files
* @returns {string[]} arrayOfFiles
*/
getAllFiles(basedir, subDir = '', arrayOfFiles = []) {
const sub = `${basedir}/${subDir}`;
const files = fs.readdirSync(sub);
files.forEach((file) => {
const fle = `${subDir}/${file}`;
if (fs.statSync(`${sub}/${file}`).isDirectory()) {
arrayOfFiles = this.getAllFiles(basedir, fle, arrayOfFiles);
} else {
arrayOfFiles.push(fle);
}
});
return arrayOfFiles;
}
/**
* Internal compiler shorthand
* @param {string} src source compile
* @param {string} trgt target file
* @param {WebPack.Compilation} compilation ctx
* @param {boolean} shared memory
* @returns {Promise<void>} prom
*/
doCompile(src, trgt, compilation, shared) {
return new Promise((resolve) => {
this.compileWasm(
src,
trgt,
this.options.production,
this.options.cleanup,
shared
).then(async ({ normal, map }) => {
// emit files into compilation
if (normal) {
await compilation.emitAsset(trgt, new RawSource(normal));
}
if (map) {
await compilation.emitAsset(
`${trgt}.map`,
new RawSource(map)
);
}
console.info(`[${pluginName}] Success: ${trgt}`);
resolve();
});
});
}
/**
* @ignore
* compile assemblyscript (typescript) module to wasm and return binary
* @param {string} inputFilePath module to compile
* @param {strring} outFile target name
* @param {boolean} production create symbols/map ?
* @param {boolean} cleanup cleanup after compile ?
* @param {boolean} sharedMem compile as shared mem module
* @param {string} sharedMax maximum memory
* @returns {Promise} finished binary(s)
*/
compileWasm(
inputFilePath,
outFile,
production,
cleanup,
sharedMem,
sharedMax = '4096'
) {
// inputPath = inputPath.replaceAll("\\", "/");
const inDir = path.dirname(inputFilePath);
const inFile = path.basename(inputFilePath);
const compileParams = [
inFile,
'--baseDir',
inDir,
'--outFile',
outFile,
'--textFile',
`"${outFile}.wat"`,
'--stats',
'--runtime',
'incremental',
'--exportRuntime',
sharedMem ? '--sharedMemory' : '',
sharedMem ? '--maximumMemory' : '',
sharedMem ? sharedMax : '',
'--importMemory',
'--enable',
'threads',
production ? '-Ospeed' : '--sourceMap'
].filter((e) => {
return e !== '';
});
console.info(
`[${pluginName}] Compile Params: ${compileParams.join(' ')}`
);
return asc
.then((ascompiler) => {
return ascompiler.main(compileParams);
})
.then(async (compResult) => {
if (compResult.error) {
const eMsg = `[${pluginName}] Compile Error: ${compResult.error.message}: \r\n${compResult.stderr}`;
console.error(eMsg);
throw new Error(eMsg);
}
// none? -> read and resolve optimized.wasm string
console.log(
`[${pluginName}] Compilation stats:\r\n${compResult.stats.toString()}`
);
const outFilePath = path.resolve(inDir, outFile);
const resultData = production
? {
normal: fs.readFileSync(outFilePath)
}
: {
normal: fs.readFileSync(outFilePath),
map: fs.readFileSync(`${outFilePath}.map`)
};
if (this.options.cleanup) {
await this.cleanup(outFilePath);
if (!production) {
await this.cleanup(`${outFilePath}.map`);
}
}
return resultData;
})
.catch((err) => {
const eMsg = `[${pluginName}] Compile Error:\r\n${err}`;
console.error(eMsg);
throw new Error(eMsg);
});
}
cleanup(file) {
console.info(`[${pluginName}] Cleaning '${file}'...`);
return new Promise((resolve, reject) => {
fs.unlink(file, (err) => {
if (err) {
console.info(
`[${pluginName}] Delete Error: ${file}: '${err}`
);
reject(err);
return;
}
console.info(`[${pluginName}] Deleted: ${file}`);
resolve();
});
});
}
}
module.exports = WascBuilderPlugin;