-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathHoistContainerReferencesPlugin.ts
More file actions
267 lines (246 loc) · 8.92 KB
/
HoistContainerReferencesPlugin.ts
File metadata and controls
267 lines (246 loc) · 8.92 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
import type {
Chunk,
Compiler,
Compilation,
WebpackPluginInstance,
Module,
Dependency,
} from 'webpack';
import { normalizeWebpackPath } from '@module-federation/sdk/normalize-webpack-path';
import FederationModulesPlugin from './runtime/FederationModulesPlugin';
import ContainerEntryDependency from './ContainerEntryDependency';
import FederationRuntimeDependency from './runtime/FederationRuntimeDependency';
import RemoteToExternalDependency from './RemoteToExternalDependency';
import FallbackDependency from './FallbackDependency';
const { AsyncDependenciesBlock, ExternalModule } = require(
normalizeWebpackPath('webpack'),
) as typeof import('webpack');
const PLUGIN_NAME = 'HoistContainerReferences';
/**
* This plugin hoists container-related modules into runtime chunks when using runtimeChunk: single configuration.
*/
class HoistContainerReferences implements WebpackPluginInstance {
apply(compiler: Compiler): void {
compiler.hooks.thisCompilation.tap(
PLUGIN_NAME,
(compilation: Compilation) => {
const logger = compilation.getLogger(PLUGIN_NAME);
const hooks = FederationModulesPlugin.getCompilationHooks(compilation);
const containerEntryDependencies = new Set<Dependency>();
const federationRuntimeDependencies = new Set<Dependency>();
const remoteDependencies = new Set<Dependency>();
hooks.addContainerEntryDependency.tap(
'HoistContainerReferences',
(dep: ContainerEntryDependency) => {
containerEntryDependencies.add(dep);
},
);
hooks.addFederationRuntimeDependency.tap(
'HoistContainerReferences',
(dep: FederationRuntimeDependency) => {
federationRuntimeDependencies.add(dep);
},
);
hooks.addRemoteDependency.tap(
'HoistContainerReferences',
(dep: RemoteToExternalDependency | FallbackDependency) => {
remoteDependencies.add(dep);
},
);
// Hook into the optimizeChunks phase
compilation.hooks.optimizeChunks.tap(
{
name: PLUGIN_NAME,
// advanced stage is where SplitChunksPlugin runs.
stage: 11, // advanced + 1
},
(chunks: Iterable<Chunk>) => {
const runtimeChunks = this.getRuntimeChunks(compilation);
this.hoistModulesInChunks(
compilation,
runtimeChunks,
logger,
containerEntryDependencies,
federationRuntimeDependencies,
remoteDependencies,
);
},
);
},
);
}
// Method to hoist modules in chunks
private hoistModulesInChunks(
compilation: Compilation,
runtimeChunks: Set<Chunk>,
logger: ReturnType<Compilation['getLogger']>,
containerEntryDependencies: Set<Dependency>,
federationRuntimeDependencies: Set<Dependency>,
remoteDependencies: Set<Dependency>,
): void {
const { chunkGraph, moduleGraph } = compilation;
const allModulesToHoist = new Set<Module>();
// Process container entry dependencies (needed for nextjs-mf exposed modules)
for (const dep of containerEntryDependencies) {
const containerEntryModule = moduleGraph.getModule(dep);
if (!containerEntryModule) continue;
const referencedModules = getAllReferencedModules(
compilation,
containerEntryModule,
'initial',
);
referencedModules.forEach((m: Module) => allModulesToHoist.add(m));
const moduleRuntimes = chunkGraph.getModuleRuntimes(containerEntryModule);
const runtimes = new Set<string>();
for (const runtimeSpec of moduleRuntimes) {
compilation.compiler.webpack.util.runtime.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 referencedModules) {
if (!chunkGraph.isModuleInChunk(module, runtimeChunk)) {
chunkGraph.connectChunkAndModule(runtimeChunk, module);
}
}
}
}
// Federation Runtime Dependencies: use 'initial' (not 'all')
for (const dep of federationRuntimeDependencies) {
const runtimeModule = moduleGraph.getModule(dep);
if (!runtimeModule) continue;
const referencedModules = getAllReferencedModules(
compilation,
runtimeModule,
'initial',
);
referencedModules.forEach((m: Module) => allModulesToHoist.add(m));
const moduleRuntimes = chunkGraph.getModuleRuntimes(runtimeModule);
const runtimes = new Set<string>();
for (const runtimeSpec of moduleRuntimes) {
compilation.compiler.webpack.util.runtime.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 referencedModules) {
if (!chunkGraph.isModuleInChunk(module, runtimeChunk)) {
chunkGraph.connectChunkAndModule(runtimeChunk, module);
}
}
}
}
// Process remote dependencies
for (const remoteDep of remoteDependencies) {
const remoteModule = moduleGraph.getModule(remoteDep);
if (!remoteModule) continue;
const referencedRemoteModules = getAllReferencedModules(
compilation,
remoteModule,
'initial',
);
referencedRemoteModules.forEach((m: Module) => allModulesToHoist.add(m));
const remoteModuleRuntimes = chunkGraph.getModuleRuntimes(remoteModule);
const remoteRuntimes = new Set<string>();
for (const runtimeSpec of remoteModuleRuntimes) {
compilation.compiler.webpack.util.runtime.forEachRuntime(
runtimeSpec,
(runtimeKey) => {
if (runtimeKey) remoteRuntimes.add(runtimeKey);
},
);
}
for (const runtime of remoteRuntimes) {
const runtimeChunk = compilation.namedChunks.get(runtime);
if (!runtimeChunk) continue;
for (const module of referencedRemoteModules) {
if (!chunkGraph.isModuleInChunk(module, runtimeChunk)) {
chunkGraph.connectChunkAndModule(runtimeChunk, module);
}
}
}
}
this.cleanUpChunks(compilation, allModulesToHoist);
}
// Method to clean up chunks by disconnecting unused modules
private cleanUpChunks(compilation: Compilation, modules: Set<Module>): void {
const { chunkGraph } = compilation;
for (const module of modules) {
for (const chunk of chunkGraph.getModuleChunks(module)) {
if (!chunk.hasRuntime()) {
chunkGraph.disconnectChunkAndModule(chunk, module);
}
}
}
}
// Method to get runtime chunks
private getRuntimeChunks(compilation: Compilation): Set<Chunk> {
const runtimeChunks = new Set<Chunk>();
for (const chunk of compilation.chunks) {
if (chunk.hasRuntime()) {
runtimeChunks.add(chunk);
}
}
return runtimeChunks;
}
}
// Helper method to collect all referenced modules recursively
export function getAllReferencedModules(
compilation: Compilation,
module: Module,
type?: 'all' | 'initial' | 'external',
): Set<Module> {
const collectedModules = new Set<Module>([module]);
const visitedModules = new WeakSet<Module>([module]);
const stack = [module];
while (stack.length > 0) {
const currentModule = stack.pop();
if (!currentModule) continue;
const mgm = compilation.moduleGraph._getModuleGraphModule(currentModule);
if (!mgm?.outgoingConnections) continue;
for (const connection of mgm.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(
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;
}
export default HoistContainerReferences;