-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
client.ts
627 lines (550 loc) · 16.4 KB
/
client.ts
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
import type { HotContext, ModuleCache, ViteNodeRunnerOptions } from './types'
import { createRequire } from 'node:module'
import { dirname, resolve } from 'node:path'
import { fileURLToPath, pathToFileURL } from 'node:url'
import vm from 'node:vm'
import createDebug from 'debug'
import { extractSourceMap } from './source-map'
import {
cleanUrl,
createImportMetaEnvProxy,
isInternalRequest,
isNodeBuiltin,
isPrimitive,
normalizeModuleId,
normalizeRequestId,
slash,
toFilePath,
} from './utils'
const { setTimeout, clearTimeout } = globalThis
const debugExecute = createDebug('vite-node:client:execute')
const debugNative = createDebug('vite-node:client:native')
const clientStub = {
injectQuery: (id: string) => id,
createHotContext: () => {
return {
accept: () => {},
prune: () => {},
dispose: () => {},
decline: () => {},
invalidate: () => {},
on: () => {},
send: () => {},
}
},
updateStyle: () => {},
removeStyle: () => {},
}
const env = createImportMetaEnvProxy()
export const DEFAULT_REQUEST_STUBS: Record<string, Record<string, unknown>> = {
'/@vite/client': clientStub,
'@vite/client': clientStub,
}
export class ModuleCacheMap extends Map<string, ModuleCache> {
normalizePath(fsPath: string) {
return normalizeModuleId(fsPath)
}
/**
* Assign partial data to the map
*/
update(fsPath: string, mod: ModuleCache) {
fsPath = this.normalizePath(fsPath)
if (!super.has(fsPath)) {
this.setByModuleId(fsPath, mod)
}
else {
Object.assign(super.get(fsPath) as ModuleCache, mod)
}
return this
}
setByModuleId(modulePath: string, mod: ModuleCache) {
return super.set(modulePath, mod)
}
set(fsPath: string, mod: ModuleCache) {
return this.setByModuleId(this.normalizePath(fsPath), mod)
}
getByModuleId(modulePath: string) {
if (!super.has(modulePath)) {
this.setByModuleId(modulePath, {})
}
const mod = super.get(modulePath)!
if (!mod.imports) {
Object.assign(mod, {
imports: new Set(),
importers: new Set(),
})
}
return mod as ModuleCache &
Required<Pick<ModuleCache, 'imports' | 'importers'>>
}
get(fsPath: string) {
return this.getByModuleId(this.normalizePath(fsPath))
}
deleteByModuleId(modulePath: string): boolean {
return super.delete(modulePath)
}
delete(fsPath: string) {
return this.deleteByModuleId(this.normalizePath(fsPath))
}
invalidateModule(mod: ModuleCache) {
delete mod.evaluated
delete mod.resolving
delete mod.promise
delete mod.exports
mod.importers?.clear()
mod.imports?.clear()
return true
}
/**
* Invalidate modules that dependent on the given modules, up to the main entry
*/
invalidateDepTree(
ids: string[] | Set<string>,
invalidated = new Set<string>(),
) {
for (const _id of ids) {
const id = this.normalizePath(_id)
if (invalidated.has(id)) {
continue
}
invalidated.add(id)
const mod = super.get(id)
if (mod?.importers) {
this.invalidateDepTree(mod.importers, invalidated)
}
super.delete(id)
}
return invalidated
}
/**
* Invalidate dependency modules of the given modules, down to the bottom-level dependencies
*/
invalidateSubDepTree(
ids: string[] | Set<string>,
invalidated = new Set<string>(),
) {
for (const _id of ids) {
const id = this.normalizePath(_id)
if (invalidated.has(id)) {
continue
}
invalidated.add(id)
const subIds = Array.from(super.entries())
.filter(([, mod]) => mod.importers?.has(id))
.map(([key]) => key)
if (subIds.length) {
this.invalidateSubDepTree(subIds, invalidated)
}
super.delete(id)
}
return invalidated
}
/**
* Return parsed source map based on inlined source map of the module
*/
getSourceMap(id: string) {
const cache = this.get(id)
if (cache.map) {
return cache.map
}
const map = cache.code && extractSourceMap(cache.code)
if (map) {
cache.map = map
return map
}
return null
}
}
export class ViteNodeRunner {
root: string
debug: boolean
/**
* Holds the cache of modules
* Keys of the map are filepaths, or plain package names
*/
moduleCache: ModuleCacheMap
constructor(public options: ViteNodeRunnerOptions) {
this.root = options.root ?? process.cwd()
this.moduleCache = options.moduleCache ?? new ModuleCacheMap()
this.debug
= options.debug
?? (typeof process !== 'undefined'
? !!process.env.VITE_NODE_DEBUG_RUNNER
: false)
}
async executeFile(file: string) {
const url = `/@fs/${slash(resolve(file))}`
return await this.cachedRequest(url, url, [])
}
async executeId(rawId: string) {
const [id, url] = await this.resolveUrl(rawId)
return await this.cachedRequest(id, url, [])
}
/** @internal */
async cachedRequest(id: string, fsPath: string, callstack: string[]) {
const importee = callstack[callstack.length - 1]
const mod = this.moduleCache.get(fsPath)
const { imports, importers } = mod
if (importee) {
importers.add(importee)
}
const getStack = () =>
`stack:\n${[...callstack, fsPath]
.reverse()
.map(p => ` - ${p}`)
.join('\n')}`
// check circular dependency
if (
callstack.includes(fsPath)
|| Array.from(imports.values()).some(i => importers.has(i))
) {
if (mod.exports) {
return mod.exports
}
}
let debugTimer: any
if (this.debug) {
debugTimer = setTimeout(
() =>
console.warn(
`[vite-node] module ${fsPath} takes over 2s to load.\n${getStack()}`,
),
2000,
)
}
try {
// cached module
if (mod.promise) {
return await mod.promise
}
const promise = this.directRequest(id, fsPath, callstack)
Object.assign(mod, { promise, evaluated: false })
return await promise
}
finally {
mod.evaluated = true
if (debugTimer) {
clearTimeout(debugTimer)
}
}
}
shouldResolveId(id: string, _importee?: string) {
return (
!isInternalRequest(id) && !isNodeBuiltin(id) && !id.startsWith('data:')
)
}
private async _resolveUrl(
id: string,
importer?: string,
): Promise<[url: string, fsPath: string]> {
const dep = normalizeRequestId(id, this.options.base)
if (!this.shouldResolveId(dep)) {
return [dep, dep]
}
const { path, exists } = toFilePath(dep, this.root)
if (!this.options.resolveId || exists) {
return [dep, path]
}
const resolved = await this.options.resolveId(dep, importer)
// supported since Vite 5-beta.19
if (resolved?.meta?.['vite:alias']?.noResolved) {
const error = new Error(
`Cannot find module '${id}'${
importer ? ` imported from '${importer}'` : ''
}.`
+ '\n\n- If you rely on tsconfig.json\'s "paths" to resolve modules, please install "vite-tsconfig-paths" plugin to handle module resolution.'
+ '\n- Make sure you don\'t have relative aliases in your Vitest config. Use absolute paths instead. Read more: https://vitest.dev/guide/common-errors',
)
Object.defineProperty(error, 'code', {
value: 'ERR_MODULE_NOT_FOUND',
enumerable: true,
})
Object.defineProperty(error, Symbol.for('vitest.error.not_found.data'), {
value: { id: dep, importer },
enumerable: false,
})
throw error
}
const resolvedId = resolved
? normalizeRequestId(resolved.id, this.options.base)
: dep
return [resolvedId, resolvedId]
}
async resolveUrl(id: string, importee?: string) {
const resolveKey = `resolve:${id}`
// put info about new import as soon as possible, so we can start tracking it
this.moduleCache.setByModuleId(resolveKey, { resolving: true })
try {
return await this._resolveUrl(id, importee)
}
finally {
this.moduleCache.deleteByModuleId(resolveKey)
}
}
/** @internal */
async dependencyRequest(id: string, fsPath: string, callstack: string[]) {
return await this.cachedRequest(id, fsPath, callstack)
}
/** @internal */
async directRequest(id: string, fsPath: string, _callstack: string[]) {
const moduleId = normalizeModuleId(fsPath)
const callstack = [..._callstack, moduleId]
const mod = this.moduleCache.getByModuleId(moduleId)
const request = async (dep: string) => {
const [id, depFsPath] = await this.resolveUrl(String(dep), fsPath)
const depMod = this.moduleCache.getByModuleId(depFsPath)
depMod.importers.add(moduleId)
mod.imports.add(depFsPath)
return this.dependencyRequest(id, depFsPath, callstack)
}
const requestStubs = this.options.requestStubs || DEFAULT_REQUEST_STUBS
if (id in requestStubs) {
return requestStubs[id]
}
let { code: transformed, externalize } = await this.options.fetchModule(id)
if (externalize) {
debugNative(externalize)
const exports = await this.interopedImport(externalize)
mod.exports = exports
return exports
}
if (transformed == null) {
throw new Error(
`[vite-node] Failed to load "${id}" imported from ${
callstack[callstack.length - 2]
}`,
)
}
const { Object, Reflect, Symbol } = this.getContextPrimitives()
const modulePath = cleanUrl(moduleId)
// disambiguate the `<UNIT>:/` on windows: see nodejs/node#31710
const href = pathToFileURL(modulePath).href
const __filename = fileURLToPath(href)
const __dirname = dirname(__filename)
const meta = {
url: href,
env,
filename: __filename,
dirname: __dirname,
}
const exports = Object.create(null)
Object.defineProperty(exports, Symbol.toStringTag, {
value: 'Module',
enumerable: false,
configurable: false,
})
const SYMBOL_NOT_DEFINED = Symbol('not defined')
let moduleExports: unknown = SYMBOL_NOT_DEFINED
// this proxy is triggered only on exports.{name} and module.exports access
// inside the module itself. imported module is always "exports"
const cjsExports = new Proxy(exports, {
get: (target, p, receiver) => {
if (Reflect.has(target, p)) {
return Reflect.get(target, p, receiver)
}
return Reflect.get(Object.prototype, p, receiver)
},
getPrototypeOf: () => Object.prototype,
set: (_, p, value) => {
// treat "module.exports =" the same as "exports.default =" to not have nested "default.default",
// so "exports.default" becomes the actual module
if (
p === 'default'
&& this.shouldInterop(modulePath, { default: value })
&& cjsExports !== value
) {
exportAll(cjsExports, value)
exports.default = value
return true
}
if (!Reflect.has(exports, 'default')) {
exports.default = {}
}
// returns undefined, when accessing named exports, if default is not an object
// but is still present inside hasOwnKeys, this is Node behaviour for CJS
if (
moduleExports !== SYMBOL_NOT_DEFINED
&& isPrimitive(moduleExports)
) {
defineExport(exports, p, () => undefined)
return true
}
if (!isPrimitive(exports.default)) {
exports.default[p] = value
}
if (p !== 'default') {
defineExport(exports, p, () => value)
}
return true
},
})
Object.assign(mod, { code: transformed, exports })
const moduleProxy = {
set exports(value) {
exportAll(cjsExports, value)
exports.default = value
moduleExports = value
},
get exports() {
return cjsExports
},
}
// Vite hot context
let hotContext: HotContext | undefined
if (this.options.createHotContext) {
Object.defineProperty(meta, 'hot', {
enumerable: true,
get: () => {
hotContext ||= this.options.createHotContext?.(this, moduleId)
return hotContext
},
set: (value) => {
hotContext = value
},
})
}
// Be careful when changing this
// changing context will change amount of code added on line :114 (vm.runInThisContext)
// this messes up sourcemaps for coverage
// adjust `WRAPPER_LENGTH` variable in packages/coverage-v8/src/provider.ts if you do change this
const context = this.prepareContext({
// esm transformed by Vite
__vite_ssr_import__: request,
__vite_ssr_dynamic_import__: request,
__vite_ssr_exports__: exports,
__vite_ssr_exportAll__: (obj: any) => exportAll(exports, obj),
__vite_ssr_import_meta__: meta,
// cjs compact
require: createRequire(href),
exports: cjsExports,
module: moduleProxy,
__filename,
__dirname,
})
debugExecute(__filename)
// remove shebang
if (transformed[0] === '#') {
transformed = transformed.replace(/^#!.*/, s => ' '.repeat(s.length))
}
await this.runModule(context, transformed)
return exports
}
protected getContextPrimitives() {
return { Object, Reflect, Symbol }
}
protected async runModule(context: Record<string, any>, transformed: string) {
// add 'use strict' since ESM enables it by default
const codeDefinition = `'use strict';async (${Object.keys(context).join(
',',
)})=>{{`
const code = `${codeDefinition}${transformed}\n}}`
const options = {
filename: context.__filename,
lineOffset: 0,
columnOffset: -codeDefinition.length,
}
const fn = vm.runInThisContext(code, options)
await fn(...Object.values(context))
}
prepareContext(context: Record<string, any>) {
return context
}
/**
* Define if a module should be interop-ed
* This function mostly for the ability to override by subclass
*/
shouldInterop(path: string, mod: any) {
if (this.options.interopDefault === false) {
return false
}
// never interop ESM modules
// TODO: should also skip for `.js` with `type="module"`
return !path.endsWith('.mjs') && 'default' in mod
}
protected importExternalModule(path: string) {
return import(path)
}
/**
* Import a module and interop it
*/
async interopedImport(path: string) {
const importedModule = await this.importExternalModule(path)
if (!this.shouldInterop(path, importedModule)) {
return importedModule
}
const { mod, defaultExport } = interopModule(importedModule)
return new Proxy(mod, {
get(mod, prop) {
if (prop === 'default') {
return defaultExport
}
return mod[prop] ?? defaultExport?.[prop]
},
has(mod, prop) {
if (prop === 'default') {
return defaultExport !== undefined
}
return prop in mod || (defaultExport && prop in defaultExport)
},
getOwnPropertyDescriptor(mod, prop) {
const descriptor = Reflect.getOwnPropertyDescriptor(mod, prop)
if (descriptor) {
return descriptor
}
if (prop === 'default' && defaultExport !== undefined) {
return {
value: defaultExport,
enumerable: true,
configurable: true,
}
}
},
})
}
}
function interopModule(mod: any) {
if (isPrimitive(mod)) {
return {
mod: { default: mod },
defaultExport: mod,
}
}
let defaultExport = 'default' in mod ? mod.default : mod
if (!isPrimitive(defaultExport) && '__esModule' in defaultExport) {
mod = defaultExport
if ('default' in defaultExport) {
defaultExport = defaultExport.default
}
}
return { mod, defaultExport }
}
// keep consistency with Vite on how exports are defined
function defineExport(exports: any, key: string | symbol, value: () => any) {
Object.defineProperty(exports, key, {
enumerable: true,
configurable: true,
get: value,
})
}
function exportAll(exports: any, sourceModule: any) {
// #1120 when a module exports itself it causes
// call stack error
if (exports === sourceModule) {
return
}
if (
isPrimitive(sourceModule)
|| Array.isArray(sourceModule)
|| sourceModule instanceof Promise
) {
return
}
for (const key in sourceModule) {
if (key !== 'default') {
try {
defineExport(exports, key, () => sourceModule[key])
}
catch {}
}
}
}