Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102278012
FetchCompileWasmPlugin.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 19, 01:04
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Feb 21, 01:04 (2 d)
Engine
blob
Format
Raw Data
Handle
24322434
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
FetchCompileWasmPlugin.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const RuntimeGlobals = require("../RuntimeGlobals");
const WasmChunkLoadingRuntimeModule = require("../wasm-sync/WasmChunkLoadingRuntimeModule");
/** @typedef {import("../Compiler")} Compiler */
// TODO webpack 6 remove
class FetchCompileWasmPlugin {
constructor(options) {
this.options = options || {};
}
/**
* Apply the plugin
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
apply(compiler) {
compiler.hooks.thisCompilation.tap(
"FetchCompileWasmPlugin",
compilation => {
const globalWasmLoading = compilation.outputOptions.wasmLoading;
const isEnabledForChunk = chunk => {
const options = chunk.getEntryOptions();
const wasmLoading =
(options && options.wasmLoading) || globalWasmLoading;
return wasmLoading === "fetch";
};
const generateLoadBinaryCode = path =>
`fetch(${RuntimeGlobals.publicPath} + ${path})`;
compilation.hooks.runtimeRequirementInTree
.for(RuntimeGlobals.ensureChunkHandlers)
.tap("FetchCompileWasmPlugin", (chunk, set) => {
if (!isEnabledForChunk(chunk)) return;
const chunkGraph = compilation.chunkGraph;
if (
!chunkGraph.hasModuleInGraph(
chunk,
m => m.type === "webassembly/sync"
)
) {
return;
}
set.add(RuntimeGlobals.moduleCache);
set.add(RuntimeGlobals.publicPath);
compilation.addRuntimeModule(
chunk,
new WasmChunkLoadingRuntimeModule({
generateLoadBinaryCode,
supportsStreaming: true,
mangleImports: this.options.mangleImports
})
);
});
}
);
}
}
module.exports = FetchCompileWasmPlugin;
Event Timeline
Log In to Comment