webpack/lib/wasm/WebAssemblyParser.js

81 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-10-30 20:56:57 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
2018-04-28 00:53:07 +08:00
const t = require("@webassemblyjs/ast");
2018-03-01 22:07:43 +08:00
const { decode } = require("@webassemblyjs/wasm-parser");
const { Tapable } = require("tapable");
2018-04-28 00:53:07 +08:00
const WebAssemblyImportDependency = require("../dependencies/WebAssemblyImportDependency");
2017-10-30 20:56:57 +08:00
2018-04-28 00:53:07 +08:00
/**
* @param {t.ModuleImport} moduleImport the import
* @returns {boolean} true, if a memory was imported
*/
const isMemoryImport = moduleImport => moduleImport.descr.type === "Memory";
2018-04-28 00:53:07 +08:00
/**
* @param {t.ModuleImport} moduleImport the import
* @returns {boolean} true, if a table was imported
*/
const isTableImport = moduleImport => moduleImport.descr.type === "Table";
2018-02-28 15:50:29 +08:00
const decoderOpts = {
ignoreCodeSection: true,
2018-03-01 22:07:43 +08:00
ignoreDataSection: true
2018-02-28 15:50:29 +08:00
};
2017-10-30 20:56:57 +08:00
class WebAssemblyParser extends Tapable {
constructor(options) {
super();
2017-11-28 23:54:26 +08:00
this.hooks = {};
2017-10-30 20:56:57 +08:00
this.options = options;
}
2018-02-28 04:06:39 +08:00
parse(binary, state) {
// flag it as ESM
state.module.buildMeta.exportsType = "namespace";
// parse it
2018-02-28 15:50:29 +08:00
const ast = decode(binary, decoderOpts);
// extract imports and exports
2018-03-01 22:07:43 +08:00
const exports = (state.module.buildMeta.providedExports = []);
2018-04-28 00:53:07 +08:00
t.traverse(ast, {
2018-03-01 22:07:43 +08:00
ModuleExport({ node }) {
2018-04-28 00:53:07 +08:00
const moduleExport = /** @type {t.ModuleExport} */ (node);
exports.push(moduleExport.name);
},
2018-03-01 22:07:43 +08:00
ModuleImport({ node }) {
2018-04-28 00:53:07 +08:00
const moduleImport = /** @type {t.ModuleImport} */ (node);
let onlyDirectImport = false;
2018-04-28 00:53:07 +08:00
if (isMemoryImport(moduleImport) === true) {
onlyDirectImport = true;
}
2018-04-28 00:53:07 +08:00
if (isTableImport(moduleImport) === true) {
onlyDirectImport = true;
}
2018-03-09 00:54:06 +08:00
const dep = new WebAssemblyImportDependency(
2018-04-28 00:53:07 +08:00
moduleImport.module,
moduleImport.name,
moduleImport.descr,
onlyDirectImport
2018-03-09 00:54:06 +08:00
);
state.module.addDependency(dep);
}
});
return state;
2017-10-30 20:56:57 +08:00
}
}
module.exports = WebAssemblyParser;