2020-02-25 04:18:14 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra and Zackary Jackson @ScriptedAlchemy
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const { RawSource } = require("webpack-sources");
|
|
|
|
const Module = require("../Module");
|
|
|
|
const RuntimeGlobals = require("../RuntimeGlobals");
|
2020-05-05 16:43:18 +08:00
|
|
|
const createHash = require("../util/createHash");
|
2020-04-17 08:41:51 +08:00
|
|
|
const makeSerializable = require("../util/makeSerializable");
|
2020-05-04 21:00:23 +08:00
|
|
|
const RemoteOverridesDependency = require("./RemoteOverridesDependency");
|
2020-02-25 04:18:14 +08:00
|
|
|
const RemoteToExternalDependency = require("./RemoteToExternalDependency");
|
|
|
|
|
|
|
|
/** @typedef {import("../../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
|
|
|
|
/** @typedef {import("../ChunkGraph")} ChunkGraph */
|
|
|
|
/** @typedef {import("../ChunkGroup")} ChunkGroup */
|
|
|
|
/** @typedef {import("../Compilation")} Compilation */
|
|
|
|
/** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */
|
|
|
|
/** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */
|
2020-05-05 16:43:18 +08:00
|
|
|
/** @typedef {import("../Module").LibIdentOptions} LibIdentOptions */
|
2020-04-17 08:41:51 +08:00
|
|
|
/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */
|
2020-02-25 04:18:14 +08:00
|
|
|
/** @typedef {import("../RequestShortener")} RequestShortener */
|
|
|
|
/** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */
|
|
|
|
/** @typedef {import("../WebpackError")} WebpackError */
|
|
|
|
/** @typedef {import("../util/Hash")} Hash */
|
|
|
|
/** @typedef {import("../util/fs").InputFileSystem} InputFileSystem */
|
2020-05-14 21:50:35 +08:00
|
|
|
/** @typedef {import("./RemoteOverridesModule").OverrideOptions} OverrideOptions */
|
2020-02-25 04:18:14 +08:00
|
|
|
|
|
|
|
const TYPES = new Set(["remote"]);
|
|
|
|
const RUNTIME_REQUIREMENTS = new Set([RuntimeGlobals.module]);
|
|
|
|
|
|
|
|
class RemoteModule extends Module {
|
2020-05-14 21:50:35 +08:00
|
|
|
/**
|
|
|
|
* @param {string} request request string
|
|
|
|
* @param {[string, OverrideOptions][]} overrides list of overrides
|
|
|
|
* @param {string[]} externalRequests list of external requests to containers
|
|
|
|
* @param {string} internalRequest name of exposed module in container
|
|
|
|
*/
|
|
|
|
constructor(request, overrides, externalRequests, internalRequest) {
|
2020-02-25 04:18:14 +08:00
|
|
|
super("remote-module");
|
|
|
|
this.request = request;
|
2020-02-27 00:16:01 +08:00
|
|
|
this.overrides = overrides;
|
2020-05-14 21:50:35 +08:00
|
|
|
this.externalRequests = externalRequests;
|
2020-02-25 04:18:14 +08:00
|
|
|
this.internalRequest = internalRequest;
|
2020-05-05 16:43:18 +08:00
|
|
|
const hash = createHash("md4");
|
|
|
|
for (const [key, request] of overrides) {
|
|
|
|
hash.update(key);
|
2020-05-14 21:50:35 +08:00
|
|
|
hash.update(request.import);
|
2020-05-05 16:43:18 +08:00
|
|
|
}
|
|
|
|
this._overridesHash = hash.digest("hex");
|
2020-05-14 21:50:35 +08:00
|
|
|
this._identifier = `remote ${this.externalRequests.join(" ")} ${
|
|
|
|
this.internalRequest
|
|
|
|
} ${this._overridesHash}`;
|
2020-02-25 04:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {string} a unique identifier of the module
|
|
|
|
*/
|
|
|
|
identifier() {
|
2020-05-04 21:00:23 +08:00
|
|
|
return this._identifier;
|
2020-02-25 04:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {RequestShortener} requestShortener the request shortener
|
|
|
|
* @returns {string} a user readable identifier of the module
|
|
|
|
*/
|
|
|
|
readableIdentifier(requestShortener) {
|
|
|
|
return `remote ${this.request}`;
|
|
|
|
}
|
|
|
|
|
2020-05-05 16:43:18 +08:00
|
|
|
/**
|
|
|
|
* @param {LibIdentOptions} options options
|
|
|
|
* @returns {string | null} an identifier for library inclusion
|
|
|
|
*/
|
|
|
|
libIdent(options) {
|
|
|
|
return `webpack/container/remote/${this.request}`;
|
|
|
|
}
|
|
|
|
|
2020-04-17 08:41:51 +08:00
|
|
|
/**
|
|
|
|
* @param {NeedBuildContext} context context info
|
|
|
|
* @param {function(WebpackError=, boolean=): void} callback callback function, returns true, if the module needs a rebuild
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
needBuild(context, callback) {
|
|
|
|
callback(null, !this.buildInfo);
|
|
|
|
}
|
|
|
|
|
2020-02-25 04:18:14 +08:00
|
|
|
/**
|
|
|
|
* @param {WebpackOptions} options webpack options
|
|
|
|
* @param {Compilation} compilation the compilation
|
|
|
|
* @param {ResolverWithOptions} resolver the resolver
|
|
|
|
* @param {InputFileSystem} fs the file system
|
|
|
|
* @param {function(WebpackError=): void} callback callback function
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
build(options, compilation, resolver, fs, callback) {
|
|
|
|
this.buildMeta = {};
|
|
|
|
this.buildInfo = {
|
|
|
|
strict: true
|
|
|
|
};
|
|
|
|
|
|
|
|
this.clearDependenciesAndBlocks();
|
2020-05-04 21:00:23 +08:00
|
|
|
this.addDependency(new RemoteOverridesDependency(this.overrides));
|
2020-05-14 21:50:35 +08:00
|
|
|
for (const externalRequest of this.externalRequests)
|
|
|
|
this.addDependency(new RemoteToExternalDependency(externalRequest));
|
2020-02-25 04:18:14 +08:00
|
|
|
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string=} type the source type for which the size should be estimated
|
|
|
|
* @returns {number} the estimated size of the module (must be non-zero)
|
|
|
|
*/
|
|
|
|
size(type) {
|
|
|
|
return 42;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-03-18 17:01:20 +08:00
|
|
|
* @returns {Set<string>} types available (do not mutate)
|
2020-02-25 04:18:14 +08:00
|
|
|
*/
|
|
|
|
getSourceTypes() {
|
|
|
|
return TYPES;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {string | null} absolute path which should be used for condition matching (usually the resource path)
|
|
|
|
*/
|
|
|
|
nameForCondition() {
|
|
|
|
return this.request;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {CodeGenerationContext} context context for code generation
|
|
|
|
* @returns {CodeGenerationResult} result
|
|
|
|
*/
|
|
|
|
codeGeneration({ runtimeTemplate, moduleGraph, chunkGraph }) {
|
|
|
|
const sources = new Map();
|
|
|
|
sources.set("remote", new RawSource(""));
|
|
|
|
return { sources, runtimeRequirements: RUNTIME_REQUIREMENTS };
|
|
|
|
}
|
2020-04-17 08:41:51 +08:00
|
|
|
|
|
|
|
serialize(context) {
|
|
|
|
const { write } = context;
|
|
|
|
write(this.request);
|
|
|
|
write(this.overrides);
|
2020-05-14 21:50:35 +08:00
|
|
|
write(this.externalRequests);
|
2020-04-17 08:41:51 +08:00
|
|
|
write(this.internalRequest);
|
|
|
|
super.serialize(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
deserialize(context) {
|
|
|
|
const { read } = context;
|
|
|
|
this.request = read();
|
|
|
|
this.overrides = read();
|
2020-05-14 21:50:35 +08:00
|
|
|
this.externalRequests = read();
|
2020-04-17 08:41:51 +08:00
|
|
|
this.internalRequest = read();
|
|
|
|
super.deserialize(context);
|
|
|
|
}
|
2020-02-25 04:18:14 +08:00
|
|
|
}
|
|
|
|
|
2020-04-17 08:41:51 +08:00
|
|
|
makeSerializable(RemoteModule, "webpack/lib/container/RemoteModule");
|
|
|
|
|
2020-02-25 04:18:14 +08:00
|
|
|
module.exports = RemoteModule;
|