-
-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathdevServer.ts
More file actions
469 lines (407 loc) · 13.5 KB
/
Copy pathdevServer.ts
File metadata and controls
469 lines (407 loc) · 13.5 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
import type { Server } from 'node:http';
import type { Http2SecureServer } from 'node:http2';
import { color, pick } from '../helpers';
import { getPublicPathFromCompiler, isMultiCompiler } from '../helpers/compiler';
import { requestRestart, watchFilesForRestart } from '../restart';
import type {
CreateCompiler,
CreateDevServerOptions,
EnvironmentAPI,
InternalContext,
NormalizedConfig,
} from '../types';
import { BuildManager } from './buildManager';
import { isCliShortcutsEnabled, setupCliShortcuts } from './cliShortcuts';
import { createCompileState } from './compileState';
import { type GetDevMiddlewaresResult, getDevMiddlewares } from './devMiddlewares';
import { createCacheableFunction, getTransformedHtml, loadBundle } from './environment';
import { registerCleanup, removeCleanup, setupGracefulShutdown } from './gracefulShutdown';
import {
getAddressUrls,
getRoutes,
getServerTerminator,
printServerURLs,
type RsbuildServerBase,
resolvePort,
type StartDevServerResult,
} from './helper';
import { createHttpServer } from './httpServer';
import { notFoundMiddleware, optionsFallbackMiddleware } from './middlewares';
import { open } from './open';
import { getPublicPathnames } from './publicPathnames';
import { applyServerSetup } from './serverSetup';
import type { ServerMessage } from './socketServer';
import { setupWatchFiles, type WatchFilesResult } from './watchFiles';
type HTTPServer = Server | Http2SecureServer;
type ExtractSocketMessageData<T extends ServerMessage['type']> = 'data' extends keyof Extract<
ServerMessage,
{ type: T }
>
? Extract<ServerMessage, { type: T }>['data']
: undefined;
export type HotSend = <T extends ServerMessage['type']>(
type: T,
data?: ExtractSocketMessageData<T>,
) => void;
export type RsbuildDevServer = RsbuildServerBase & {
/**
* Notifies Rsbuild that the custom server has successfully started.
* Rsbuild will trigger the `onAfterStartDevServer` hook at this stage.
*/
afterListen: () => Promise<void>;
/**
* Activate socket connection.
* This ensures that HMR works properly.
*/
connectWebSocket: (options: { server: HTTPServer }) => void;
/**
* Environment API of Rsbuild server.
*/
environments: EnvironmentAPI;
/**
* Start listening on the Rsbuild dev server.
* Do not call this method if you are using a custom server.
*/
listen: () => Promise<StartDevServerResult>;
/**
* Allows middleware to send some message to HMR client, and then the HMR
* client will take different actions depending on the message type.
* - `full-reload`: The page will reload.
* - `static-changed`: Alias of `full-reload` for backward compatibility.
* - `custom`: Send custom messages via `custom` type with optional data to the browser and handle them via HMR events.
*/
sockWrite: HotSend;
};
export async function createDevServer<
Options extends {
context: InternalContext;
},
>(
options: Options,
createCompiler: CreateCompiler,
config: NormalizedConfig,
devServerOptions: CreateDevServerOptions = {},
): Promise<RsbuildDevServer> {
const { getPortSilently, runCompile = true } = devServerOptions;
const restartContext = {
action: 'dev' as const,
options: pick(devServerOptions, ['getPortSilently']),
};
const { context } = options;
const { logger } = context;
logger.debug('create dev server');
const { port, portTip } = await resolvePort(config);
const { middlewareMode, host } = config.server;
const isHttps = Boolean(config.server.https);
const routes = getRoutes(context);
// SSR or backend-integrated apps may not generate HTML upfront. In that case,
// keep printing the dev server base URL for web targets so users still get
// a meaningful address, while node targets stay silent.
const fallbackPathname =
routes.length === 0 &&
context.environmentList.some((item) => item.config.output.target === 'web')
? config.server.base
: undefined;
context.devServer = {
hostname: host,
port,
https: isHttps,
};
const compileState = createCompileState(context.environmentList.length);
const startCompile: () => Promise<BuildManager> = async () => {
const compiler = await createCompiler();
if (!compiler) {
throw new Error(`${color.dim('[rsbuild:server]')} Failed to get compiler instance.`);
}
const publicPaths = isMultiCompiler(compiler)
? compiler.compilers.map(getPublicPathFromCompiler)
: [getPublicPathFromCompiler(compiler)];
context.publicPathnames = getPublicPathnames(publicPaths, config.server.base);
const hookOptions = {
name: 'rsbuild:environment-api',
// Reset API state before user watchRun hooks can read stale environment stats.
stage: -10000,
};
if (isMultiCompiler(compiler)) {
compiler.compilers.forEach((compiler, index) => {
compiler.hooks.watchRun.tap(hookOptions, () => {
compileState.reset(index);
});
compiler.hooks.done.tap(hookOptions, (stats) => {
compileState.done(index, stats);
});
});
} else {
compiler.hooks.watchRun.tap(hookOptions, () => {
compileState.reset(0);
});
compiler.hooks.done.tap(hookOptions, (stats) => {
compileState.done(0, stats);
});
}
const buildManager = new BuildManager({
context,
config,
compiler,
resolvedPort: port,
});
await buildManager.init();
return buildManager;
};
const protocol = isHttps ? 'https' : 'http';
const urls = await getAddressUrls({ protocol, port, host });
const cliShortcutsEnabled = isCliShortcutsEnabled(config);
const printUrls = (options?: { showAllRoutes?: boolean }) =>
printServerURLs({
urls,
port,
routes,
protocol,
printUrls: config.server.printUrls,
fallbackPathname,
showAllRoutes: options?.showAllRoutes,
cliShortcutsEnabled,
originalConfig: context.originalConfig,
logger,
});
const openPage = async () => {
return open({
port,
routes,
config,
protocol,
clearCache: true,
logger,
});
};
const state: {
fileWatcher?: WatchFilesResult;
restartWatcher?: WatchFilesResult;
devMiddlewares?: GetDevMiddlewaresResult;
buildManager?: BuildManager;
} = {};
const cleanupGracefulShutdown = middlewareMode ? null : setupGracefulShutdown();
let closingPromise: Promise<void> | undefined;
let unregisterRestart: (() => void) | undefined;
// Keep the restart watcher active when closing server resources,
// so failed restarts can be retried.
const closeServerResources = () => {
if (!closingPromise) {
unregisterRestart?.();
unregisterRestart = undefined;
closingPromise = (async () => {
removeCleanup(closeServer);
cleanupGracefulShutdown?.();
await context.hooks.onCloseDevServer.callBatch();
await Promise.all([state.devMiddlewares?.close(), state.fileWatcher?.close()]);
})();
}
return closingPromise;
};
// Fully close the server and its restart watcher.
const closeServer = async () => {
await state.restartWatcher?.close();
await closeServerResources();
};
// Request a manual restart and close the old watcher only after it succeeds.
const restartServer = async () => {
const restarted = await requestRestart({
restartContext,
clear: false,
logger,
restartManager: context.restartManager,
});
if (restarted) {
await state.restartWatcher?.close();
}
return restarted;
};
if (!middlewareMode) {
registerCleanup(closeServer);
}
const beforeCreateCompiler = async () => {
printUrls();
if (cliShortcutsEnabled) {
const shortcutsOptions =
typeof config.dev.cliShortcuts === 'boolean' ? {} : config.dev.cliShortcuts;
const cleanup = await setupCliShortcuts({
openPage,
closeServer,
printUrls,
restartServer: context.restartManager.canRestart ? restartServer : undefined,
help: shortcutsOptions.help,
customShortcuts: shortcutsOptions.custom,
logger,
});
context.hooks.onCloseDevServer.tap(cleanup);
}
if (!getPortSilently && portTip) {
logger.info(portTip);
}
};
const cacheableLoadBundle = createCacheableFunction(loadBundle);
const cacheableTransformedHtml = createCacheableFunction<string>((_stats, entryName, utils) =>
getTransformedHtml(entryName, utils),
);
const environmentAPI: EnvironmentAPI = {};
const createHotSend =
(token?: string): HotSend =>
(type, data) =>
state.buildManager?.socketServer.sendMessage(
{
type,
data,
} as ServerMessage,
token,
);
const getErrorMsg = (method: string) =>
`${color.dim('[rsbuild:server]')} Can not call ` +
`${color.yellow(method)} when ` +
`${color.yellow('runCompile')} is false`;
context.environmentList.forEach((environment, index) => {
environmentAPI[environment.name] = {
context: environment,
hot: {
send: createHotSend(environment.webSocketToken),
},
getStats: async () => {
if (!state.buildManager) {
throw new Error(getErrorMsg('getStats'));
}
return compileState.wait(index);
},
loadBundle: async <T>(entryName: string) => {
if (!state.buildManager) {
throw new Error(getErrorMsg('loadBundle'));
}
const stats = await compileState.wait(index);
return cacheableLoadBundle(stats, entryName, {
readFileSync: state.buildManager.readFileSync,
environment,
}) as T;
},
getTransformedHtml: async (entryName: string) => {
if (!state.buildManager) {
throw new Error(getErrorMsg('getTransformedHtml'));
}
const stats = await compileState.wait(index);
return cacheableTransformedHtml(stats, entryName, {
readFileSync: state.buildManager.readFileSync,
environment,
});
},
};
});
const { connect } = await import(/* rspackChunkName: "connect-next" */ 'connect-next');
const middlewares = connect();
const httpServer = middlewareMode
? null
: await createHttpServer({
serverConfig: config.server,
middlewares,
});
const sockWrite = createHotSend();
const devServer: RsbuildDevServer = {
port,
middlewares,
environments: environmentAPI,
httpServer,
sockWrite,
listen: async () => {
if (!httpServer) {
throw new Error(
`${color.dim('[rsbuild:server]')} Can not listen dev server as ` +
`${color.yellow('server.middlewareMode')} is enabled.`,
);
}
const serverTerminator = getServerTerminator(httpServer);
logger.debug('listen dev server');
context.hooks.onCloseDevServer.tap(serverTerminator);
return new Promise<StartDevServerResult>((resolve) => {
httpServer.listen(
{
host,
port,
},
async (err?: Error) => {
if (err) {
throw err;
}
// OPTIONS request fallback middleware
// Should register this middleware as the last
// see: https://github.com/web-infra-dev/rsbuild/pull/2867
middlewares.use(optionsFallbackMiddleware);
// 404 fallback middleware should be the last middleware
middlewares.use(notFoundMiddleware);
if (state.devMiddlewares) {
httpServer.on('upgrade', state.devMiddlewares.onUpgrade);
}
logger.debug('listen dev server done');
await devServer.afterListen();
resolve({
port,
urls: urls.map((item) => item.url),
server: devServer,
});
},
);
});
},
afterListen: async () => {
await context.hooks.onAfterStartDevServer.callBatch({
port,
routes,
environments: context.environments,
});
},
connectWebSocket: ({ server }: { server: HTTPServer }) => {
if (state.devMiddlewares) {
server.on('upgrade', state.devMiddlewares.onUpgrade);
}
},
close: closeServer,
printUrls,
open: openPage,
};
const setupPostCallbacks = await applyServerSetup(config.server.setup, {
action: 'dev',
server: devServer,
environments: context.environments,
});
const hookPostCallbacks = (
await context.hooks.onBeforeStartDevServer.callBatch({
server: devServer,
environments: context.environments,
})
).filter((item) => typeof item === 'function');
const postCallbacks = [...hookPostCallbacks, ...setupPostCallbacks];
if (runCompile) {
// print server url should between listen and beforeCompile
context.hooks.onBeforeCreateCompiler.tap(beforeCreateCompiler);
} else {
await beforeCreateCompiler();
}
state.buildManager = runCompile ? await startCompile() : undefined;
state.fileWatcher = await setupWatchFiles({
config,
buildManager: state.buildManager,
root: context.rootPath,
});
state.devMiddlewares = await getDevMiddlewares({
buildManager: state.buildManager,
config,
devServer,
context,
postCallbacks,
});
// start watching
state.buildManager?.watch();
unregisterRestart = context.restartManager.registerCleanup(closeServerResources);
state.restartWatcher = watchFilesForRestart({
watchFiles: config.dev.watchFiles,
context,
restartContext,
});
logger.debug('create dev server done');
return devServer;
}