| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const t = require("@webassemblyjs/ast"); | 
					
						
							|  |  |  | const { decode } = require("@webassemblyjs/wasm-parser"); | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | const Parser = require("../Parser"); | 
					
						
							| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | const StaticExportsDependency = require("../dependencies/StaticExportsDependency"); | 
					
						
							|  |  |  | const WebAssemblyImportDependency = require("../dependencies/WebAssemblyImportDependency"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | /** @typedef {import("../Parser").ParserState} ParserState */ | 
					
						
							|  |  |  | /** @typedef {import("../Parser").PreparsedAst} PreparsedAst */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | const decoderOpts = { | 
					
						
							|  |  |  | 	ignoreCodeSection: true, | 
					
						
							|  |  |  | 	ignoreDataSection: true, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// this will avoid having to lookup with identifiers in the ModuleContext
 | 
					
						
							|  |  |  | 	ignoreCustomNameSection: true | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | class WebAssemblyParser extends Parser { | 
					
						
							| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | 	constructor(options) { | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | 		super(); | 
					
						
							| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | 		this.hooks = Object.freeze({}); | 
					
						
							|  |  |  | 		this.options = options; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {string | Buffer | PreparsedAst} source the source to parse | 
					
						
							|  |  |  | 	 * @param {ParserState} state the parser state | 
					
						
							|  |  |  | 	 * @returns {ParserState} the parser state | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	parse(source, state) { | 
					
						
							|  |  |  | 		if (!Buffer.isBuffer(source)) { | 
					
						
							|  |  |  | 			throw new Error("WebAssemblyParser input must be a Buffer"); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | 		// flag it as async module
 | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | 		state.module.buildInfo.strict = true; | 
					
						
							| 
									
										
										
										
											2019-06-05 17:15:25 +08:00
										 |  |  | 		state.module.buildMeta.exportsType = "namespace"; | 
					
						
							|  |  |  | 		state.module.buildMeta.async = true; | 
					
						
							| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// parse it
 | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | 		const program = decode(source, decoderOpts); | 
					
						
							| 
									
										
										
										
											2019-05-24 18:30:43 +08:00
										 |  |  | 		const module = program.body[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		const exports = []; | 
					
						
							|  |  |  | 		t.traverse(module, { | 
					
						
							|  |  |  | 			ModuleExport({ node }) { | 
					
						
							|  |  |  | 				exports.push(node.name); | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ModuleImport({ node }) { | 
					
						
							|  |  |  | 				const dep = new WebAssemblyImportDependency( | 
					
						
							|  |  |  | 					node.module, | 
					
						
							|  |  |  | 					node.name, | 
					
						
							|  |  |  | 					node.descr, | 
					
						
							|  |  |  | 					false | 
					
						
							|  |  |  | 				); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				state.module.addDependency(dep); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		state.module.addDependency(new StaticExportsDependency(exports, false)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return state; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = WebAssemblyParser; |