啊鑫
8 天以前 fca192d3c38c5dcfbb6ace8bc71d6078f6a079b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Zackary Jackson @ScriptedAlchemy
*/
 
"use strict";
 
const AsyncDependenciesBlock = require("../AsyncDependenciesBlock");
const ExternalModule = require("../ExternalModule");
const { STAGE_ADVANCED } = require("../OptimizationStages");
const memoize = require("../util/memoize");
const { forEachRuntime } = require("../util/runtime");
 
/** @typedef {import("../Compilation")} Compilation */
/** @typedef {import("../Compiler")} Compiler */
/** @typedef {import("../Dependency")} Dependency */
/** @typedef {import("../Module")} Module */
 
const getModuleFederationPlugin = memoize(() =>
    require("./ModuleFederationPlugin")
);
 
const PLUGIN_NAME = "HoistContainerReferences";
 
/**
 * This class is used to hoist container references in the code.
 */
class HoistContainerReferences {
    /**
     * Apply the plugin to the compiler.
     * @param {Compiler} compiler The webpack compiler instance.
     */
    apply(compiler) {
        compiler.hooks.thisCompilation.tap(PLUGIN_NAME, compilation => {
            const hooks =
                getModuleFederationPlugin().getCompilationHooks(compilation);
            const depsToTrace = new Set();
            const entryExternalsToHoist = new Set();
            hooks.addContainerEntryDependency.tap(PLUGIN_NAME, dep => {
                depsToTrace.add(dep);
            });
            hooks.addFederationRuntimeDependency.tap(PLUGIN_NAME, dep => {
                depsToTrace.add(dep);
            });
 
            compilation.hooks.addEntry.tap(PLUGIN_NAME, entryDep => {
                if (entryDep.type === "entry") {
                    entryExternalsToHoist.add(entryDep);
                }
            });
 
            // Hook into the optimizeChunks phase
            compilation.hooks.optimizeChunks.tap(
                {
                    name: PLUGIN_NAME,
                    // advanced stage is where SplitChunksPlugin runs.
                    stage: STAGE_ADVANCED + 1
                },
                chunks => {
                    this.hoistModulesInChunks(
                        compilation,
                        depsToTrace,
                        entryExternalsToHoist
                    );
                }
            );
        });
    }
 
    /**
     * Hoist modules in chunks.
     * @param {Compilation} compilation The webpack compilation instance.
     * @param {Set<Dependency>} depsToTrace Set of container entry dependencies.
     * @param {Set<Dependency>} entryExternalsToHoist Set of container entry dependencies to hoist.
     */
    hoistModulesInChunks(compilation, depsToTrace, entryExternalsToHoist) {
        const { chunkGraph, moduleGraph } = compilation;
 
        // loop over entry points
        for (const dep of entryExternalsToHoist) {
            const entryModule = moduleGraph.getModule(dep);
            if (!entryModule) continue;
            // get all the external module types and hoist them to the runtime chunk, this will get RemoteModule externals
            const allReferencedModules = getAllReferencedModules(
                compilation,
                entryModule,
                "external",
                false
            );
 
            const containerRuntimes = chunkGraph.getModuleRuntimes(entryModule);
            const runtimes = new Set();
 
            for (const runtimeSpec of containerRuntimes) {
                forEachRuntime(runtimeSpec, runtimeKey => {
                    if (runtimeKey) {
                        runtimes.add(runtimeKey);
                    }
                });
            }
 
            for (const runtime of runtimes) {
                const runtimeChunk = compilation.namedChunks.get(runtime);
                if (!runtimeChunk) continue;
 
                for (const module of allReferencedModules) {
                    if (!chunkGraph.isModuleInChunk(module, runtimeChunk)) {
                        chunkGraph.connectChunkAndModule(runtimeChunk, module);
                    }
                }
            }
            this.cleanUpChunks(compilation, allReferencedModules);
        }
 
        // handle container entry specifically
        for (const dep of depsToTrace) {
            const containerEntryModule = moduleGraph.getModule(dep);
            if (!containerEntryModule) continue;
            const allReferencedModules = getAllReferencedModules(
                compilation,
                containerEntryModule,
                "initial",
                false
            );
 
            const allRemoteReferences = getAllReferencedModules(
                compilation,
                containerEntryModule,
                "external",
                false
            );
 
            for (const remote of allRemoteReferences) {
                allReferencedModules.add(remote);
            }
 
            const containerRuntimes =
                chunkGraph.getModuleRuntimes(containerEntryModule);
            const runtimes = new Set();
 
            for (const runtimeSpec of containerRuntimes) {
                forEachRuntime(runtimeSpec, runtimeKey => {
                    if (runtimeKey) {
                        runtimes.add(runtimeKey);
                    }
                });
            }
 
            for (const runtime of runtimes) {
                const runtimeChunk = compilation.namedChunks.get(runtime);
                if (!runtimeChunk) continue;
 
                for (const module of allReferencedModules) {
                    if (!chunkGraph.isModuleInChunk(module, runtimeChunk)) {
                        chunkGraph.connectChunkAndModule(runtimeChunk, module);
                    }
                }
            }
            this.cleanUpChunks(compilation, allReferencedModules);
        }
    }
 
    /**
     * Clean up chunks by disconnecting unused modules.
     * @param {Compilation} compilation The webpack compilation instance.
     * @param {Set<Module>} modules Set of modules to clean up.
     */
    cleanUpChunks(compilation, modules) {
        const { chunkGraph } = compilation;
        for (const module of modules) {
            for (const chunk of chunkGraph.getModuleChunks(module)) {
                if (!chunk.hasRuntime()) {
                    chunkGraph.disconnectChunkAndModule(chunk, module);
                    if (
                        chunkGraph.getNumberOfChunkModules(chunk) === 0 &&
                        chunkGraph.getNumberOfEntryModules(chunk) === 0
                    ) {
                        chunkGraph.disconnectChunk(chunk);
                        compilation.chunks.delete(chunk);
                        if (chunk.name) {
                            compilation.namedChunks.delete(chunk.name);
                        }
                    }
                }
            }
        }
        modules.clear();
    }
}
 
/**
 * Helper method to collect all referenced modules recursively.
 * @param {Compilation} compilation The webpack compilation instance.
 * @param {Module} module The module to start collecting from.
 * @param {string} type The type of modules to collect ("initial", "external", or "all").
 * @param {boolean} includeInitial Should include the referenced module passed
 * @returns {Set<Module>} Set of collected modules.
 */
function getAllReferencedModules(compilation, module, type, includeInitial) {
    const collectedModules = new Set(includeInitial ? [module] : []);
    const visitedModules = new WeakSet([module]);
    const stack = [module];
 
    while (stack.length > 0) {
        const currentModule = stack.pop();
        if (!currentModule) continue;
 
        const outgoingConnections =
            compilation.moduleGraph.getOutgoingConnections(currentModule);
        if (outgoingConnections) {
            for (const connection of outgoingConnections) {
                const connectedModule = connection.module;
 
                // Skip if module has already been visited
                if (!connectedModule || visitedModules.has(connectedModule)) {
                    continue;
                }
 
                // Handle 'initial' type (skipping async blocks)
                if (type === "initial") {
                    const parentBlock = compilation.moduleGraph.getParentBlock(
                        /** @type {Dependency} */
                        (connection.dependency)
                    );
                    if (parentBlock instanceof AsyncDependenciesBlock) {
                        continue;
                    }
                }
 
                // Handle 'external' type (collecting only external modules)
                if (type === "external") {
                    if (connection.module instanceof ExternalModule) {
                        collectedModules.add(connectedModule);
                    }
                } else {
                    // Handle 'all' or unspecified types
                    collectedModules.add(connectedModule);
                }
 
                // Add connected module to the stack and mark it as visited
                visitedModules.add(connectedModule);
                stack.push(connectedModule);
            }
        }
    }
 
    return collectedModules;
}
 
module.exports = HoistContainerReferences;