File size: 9,885 Bytes
1e92f2d |
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 |
/* eslint-disable @typescript-eslint/no-unused-vars */
/// <reference path="../shared/runtime-utils.ts" />
/// <reference path="../shared-node/base-externals-utils.ts" />
/// <reference path="../shared-node/node-externals-utils.ts" />
/// <reference path="../shared-node/node-wasm-utils.ts" />
enum SourceType {
/**
* The module was instantiated because it was included in an evaluated chunk's
* runtime.
* SourceData is a ChunkPath.
*/
Runtime = 0,
/**
* The module was instantiated because a parent module imported it.
* SourceData is a ModuleId.
*/
Parent = 1,
}
type SourceData = ChunkPath | ModuleId
process.env.TURBOPACK = '1'
function stringifySourceInfo(
sourceType: SourceType,
sourceData: SourceData
): string {
switch (sourceType) {
case SourceType.Runtime:
return `runtime for chunk ${sourceData}`
case SourceType.Parent:
return `parent module ${sourceData}`
default:
invariant(
sourceType,
(sourceType) => `Unknown source type: ${sourceType}`
)
}
}
interface TurbopackNodeBuildContext extends TurbopackBaseContext<Module> {
R: ResolvePathFromModule
x: ExternalRequire
y: ExternalImport
}
const nodeContextPrototype = Context.prototype as TurbopackNodeBuildContext
type ModuleFactory = (
this: Module['exports'],
context: TurbopackNodeBuildContext
) => unknown
const url = require('url') as typeof import('url')
const fs = require('fs/promises') as typeof import('fs/promises')
const moduleFactories: ModuleFactories = Object.create(null)
nodeContextPrototype.M = moduleFactories
const moduleCache: ModuleCache<Module> = Object.create(null)
nodeContextPrototype.c = moduleCache
/**
* Returns an absolute path to the given module's id.
*/
function resolvePathFromModule(
this: TurbopackBaseContext<Module>,
moduleId: string
): string {
const exported = this.r(moduleId)
const exportedPath = exported?.default ?? exported
if (typeof exportedPath !== 'string') {
return exported as any
}
const strippedAssetPrefix = exportedPath.slice(ASSET_PREFIX.length)
const resolved = path.resolve(RUNTIME_ROOT, strippedAssetPrefix)
return url.pathToFileURL(resolved).href
}
nodeContextPrototype.R = resolvePathFromModule
function loadRuntimeChunk(sourcePath: ChunkPath, chunkData: ChunkData): void {
if (typeof chunkData === 'string') {
loadRuntimeChunkPath(sourcePath, chunkData)
} else {
loadRuntimeChunkPath(sourcePath, chunkData.path)
}
}
const loadedChunks = new Set<ChunkPath>()
const unsupportedLoadChunk = Promise.resolve(undefined)
const loadedChunk: Promise<void> = Promise.resolve(undefined)
const chunkCache = new Map<ChunkPath, Promise<void>>()
function clearChunkCache() {
chunkCache.clear()
}
function loadRuntimeChunkPath(
sourcePath: ChunkPath,
chunkPath: ChunkPath
): void {
if (!isJs(chunkPath)) {
// We only support loading JS chunks in Node.js.
// This branch can be hit when trying to load a CSS chunk.
return
}
if (loadedChunks.has(chunkPath)) {
return
}
try {
const resolved = path.resolve(RUNTIME_ROOT, chunkPath)
const chunkModules: CompressedModuleFactories = require(resolved)
for (const [moduleId, moduleFactory] of Object.entries(chunkModules)) {
if (!moduleFactories[moduleId]) {
if (Array.isArray(moduleFactory)) {
const [moduleFactoryFn, otherIds] = moduleFactory
moduleFactories[moduleId] = moduleFactoryFn
for (const otherModuleId of otherIds) {
moduleFactories[otherModuleId] = moduleFactoryFn
}
} else {
moduleFactories[moduleId] = moduleFactory
}
}
}
loadedChunks.add(chunkPath)
} catch (e) {
let errorMessage = `Failed to load chunk ${chunkPath}`
if (sourcePath) {
errorMessage += ` from runtime for chunk ${sourcePath}`
}
throw new Error(errorMessage, {
cause: e,
})
}
}
function loadChunkUncached(chunkPath: ChunkPath) {
// resolve to an absolute path to simplify `require` handling
const resolved = path.resolve(RUNTIME_ROOT, chunkPath)
// TODO: consider switching to `import()` to enable concurrent chunk loading and async file io
// However this is incompatible with hot reloading (since `import` doesn't use the require cache)
const chunkModules: CompressedModuleFactories = require(resolved)
for (const [moduleId, moduleFactory] of Object.entries(chunkModules)) {
if (!moduleFactories[moduleId]) {
if (Array.isArray(moduleFactory)) {
const [moduleFactoryFn, otherIds] = moduleFactory
moduleFactories[moduleId] = moduleFactoryFn
for (const otherModuleId of otherIds) {
moduleFactories[otherModuleId] = moduleFactoryFn
}
} else {
moduleFactories[moduleId] = moduleFactory
}
}
}
}
function loadChunkAsync(
this: TurbopackBaseContext<Module>,
chunkData: ChunkData
): Promise<void> {
const chunkPath = typeof chunkData === 'string' ? chunkData : chunkData.path
if (!isJs(chunkPath)) {
// We only support loading JS chunks in Node.js.
// This branch can be hit when trying to load a CSS chunk.
return unsupportedLoadChunk
}
let entry = chunkCache.get(chunkPath)
if (entry === undefined) {
try {
// Load the chunk synchronously
loadChunkUncached(chunkPath)
entry = loadedChunk
} catch (e) {
const errorMessage = `Failed to load chunk ${chunkPath} from module ${this.m.id}`
// Cache the failure promise, future requests will also get this same rejection
entry = Promise.reject(
new Error(errorMessage, {
cause: e,
})
)
}
chunkCache.set(chunkPath, entry)
}
// TODO: Return an instrumented Promise that React can use instead of relying on referential equality.
return entry
}
contextPrototype.l = loadChunkAsync
function loadChunkAsyncByUrl(
this: TurbopackBaseContext<Module>,
chunkUrl: string
) {
const path = url.fileURLToPath(new URL(chunkUrl, RUNTIME_ROOT)) as ChunkPath
return loadChunkAsync.call(this, path)
}
contextPrototype.L = loadChunkAsyncByUrl
function loadWebAssembly(
chunkPath: ChunkPath,
_edgeModule: () => WebAssembly.Module,
imports: WebAssembly.Imports
) {
const resolved = path.resolve(RUNTIME_ROOT, chunkPath)
return instantiateWebAssemblyFromPath(resolved, imports)
}
contextPrototype.w = loadWebAssembly
function loadWebAssemblyModule(
chunkPath: ChunkPath,
_edgeModule: () => WebAssembly.Module
) {
const resolved = path.resolve(RUNTIME_ROOT, chunkPath)
return compileWebAssemblyFromPath(resolved)
}
contextPrototype.u = loadWebAssemblyModule
function getWorkerBlobURL(_chunks: ChunkPath[]): string {
throw new Error('Worker blobs are not implemented yet for Node.js')
}
nodeContextPrototype.b = getWorkerBlobURL
function instantiateModule(
id: ModuleId,
sourceType: SourceType,
sourceData: SourceData
): Module {
const moduleFactory = moduleFactories[id]
if (typeof moduleFactory !== 'function') {
// This can happen if modules incorrectly handle HMR disposes/updates,
// e.g. when they keep a `setTimeout` around which still executes old code
// and contains e.g. a `require("something")` call.
let instantiationReason
switch (sourceType) {
case SourceType.Runtime:
instantiationReason = `as a runtime entry of chunk ${sourceData}`
break
case SourceType.Parent:
instantiationReason = `because it was required from module ${sourceData}`
break
default:
invariant(
sourceType,
(sourceType) => `Unknown source type: ${sourceType}`
)
}
throw new Error(
`Module ${id} was instantiated ${instantiationReason}, but the module factory is not available.`
)
}
const module: Module = createModuleObject(id)
moduleCache[id] = module
// NOTE(alexkirsz) This can fail when the module encounters a runtime error.
try {
const context = new (Context as any as ContextConstructor<Module>)(module)
moduleFactory(context)
} catch (error) {
module.error = error as any
throw error
}
module.loaded = true
if (module.namespaceObject && module.exports !== module.namespaceObject) {
// in case of a circular dependency: cjs1 -> esm2 -> cjs1
interopEsm(module.exports, module.namespaceObject)
}
return module
}
/**
* Retrieves a module from the cache, or instantiate it if it is not cached.
*/
// @ts-ignore
function getOrInstantiateModuleFromParent(
id: ModuleId,
sourceModule: Module
): Module {
const module = moduleCache[id]
if (module) {
return module
}
return instantiateModule(id, SourceType.Parent, sourceModule.id)
}
/**
* Instantiates a runtime module.
*/
function instantiateRuntimeModule(
chunkPath: ChunkPath,
moduleId: ModuleId
): Module {
return instantiateModule(moduleId, SourceType.Runtime, chunkPath)
}
/**
* Retrieves a module from the cache, or instantiate it as a runtime module if it is not cached.
*/
// @ts-ignore TypeScript doesn't separate this module space from the browser runtime
function getOrInstantiateRuntimeModule(
chunkPath: ChunkPath,
moduleId: ModuleId
): Module {
const module = moduleCache[moduleId]
if (module) {
if (module.error) {
throw module.error
}
return module
}
return instantiateRuntimeModule(chunkPath, moduleId)
}
const regexJsUrl = /\.js(?:\?[^#]*)?(?:#.*)?$/
/**
* Checks if a given path/URL ends with .js, optionally followed by ?query or #fragment.
*/
function isJs(chunkUrlOrPath: ChunkUrl | ChunkPath): boolean {
return regexJsUrl.test(chunkUrlOrPath)
}
module.exports = (sourcePath: ChunkPath) => ({
m: (id: ModuleId) => getOrInstantiateRuntimeModule(sourcePath, id),
c: (chunkData: ChunkData) => loadRuntimeChunk(sourcePath, chunkData),
})
|