| 
									
										
										
										
											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-03-01 22:07:43 +08:00
										 |  |  | const { traverse } = require("@webassemblyjs/ast"); | 
					
						
							|  |  |  | const { decode } = require("@webassemblyjs/wasm-parser"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const { Tapable } = require("tapable"); | 
					
						
							| 
									
										
										
										
											2017-12-15 22:39:53 +08:00
										 |  |  | const WebAssemblyImportDependency = require("./dependencies/WebAssemblyImportDependency"); | 
					
						
							| 
									
										
										
										
											2017-10-30 20:56:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 20:45:56 +08:00
										 |  |  | const isMemoryImport = moduleImport => moduleImport.descr.type === "Memory"; | 
					
						
							|  |  |  | 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
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 20:45:56 +08:00
										 |  |  | function nonSupportImportOfType(type) { | 
					
						
							|  |  |  | 	const e = new Error("Unsupported import of type " + JSON.stringify(type)); | 
					
						
							|  |  |  | 	e.stack = ""; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return e; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2017-12-14 08:21:44 +08:00
										 |  |  | 		// flag it as ESM
 | 
					
						
							| 
									
										
										
										
											2017-12-23 01:23:20 +08:00
										 |  |  | 		state.module.buildMeta.exportsType = "namespace"; | 
					
						
							| 
									
										
										
										
											2017-12-14 08:21:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-20 22:03:35 +08:00
										 |  |  | 		// parse it
 | 
					
						
							| 
									
										
										
										
											2018-02-28 15:50:29 +08:00
										 |  |  | 		const ast = decode(binary, decoderOpts); | 
					
						
							| 
									
										
										
										
											2018-02-20 22:03:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// extract imports and exports
 | 
					
						
							| 
									
										
										
										
											2018-03-01 22:07:43 +08:00
										 |  |  | 		const exports = (state.module.buildMeta.providedExports = []); | 
					
						
							| 
									
										
										
										
											2018-02-28 04:06:39 +08:00
										 |  |  | 		traverse(ast, { | 
					
						
							| 
									
										
										
										
											2018-03-01 22:07:43 +08:00
										 |  |  | 			ModuleExport({ node }) { | 
					
						
							| 
									
										
										
										
											2018-02-20 22:03:35 +08:00
										 |  |  | 				exports.push(node.name); | 
					
						
							|  |  |  | 			}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 22:07:43 +08:00
										 |  |  | 			ModuleImport({ node }) { | 
					
						
							| 
									
										
										
										
											2018-03-29 20:45:56 +08:00
										 |  |  | 				// Prevent importing a Memory or Table for now
 | 
					
						
							|  |  |  | 				// Depends on https://github.com/WebAssembly/esm-integration
 | 
					
						
							|  |  |  | 				if (isMemoryImport(node) === true) { | 
					
						
							|  |  |  | 					throw nonSupportImportOfType("Memory"); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (isTableImport(node) === true) { | 
					
						
							|  |  |  | 					throw nonSupportImportOfType("Table"); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 00:54:06 +08:00
										 |  |  | 				const dep = new WebAssemblyImportDependency( | 
					
						
							|  |  |  | 					node.module, | 
					
						
							|  |  |  | 					node.name, | 
					
						
							|  |  |  | 					node.descr | 
					
						
							|  |  |  | 				); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-20 22:03:35 +08:00
										 |  |  | 				state.module.addDependency(dep); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return state; | 
					
						
							| 
									
										
										
										
											2017-10-30 20:56:57 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = WebAssemblyParser; |