File size: 15,028 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 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 |
import type { IncomingMessage, ServerResponse } from 'http'
import {
getOriginalCodeFrame,
ignoreListAnonymousStackFramesIfSandwiched,
type IgnorableStackFrame,
type OriginalStackFrameResponse,
type OriginalStackFramesRequest,
type OriginalStackFramesResponse,
type StackFrame,
} from '../../next-devtools/server/shared'
import { middlewareResponse } from '../../next-devtools/server/middleware-response'
import path from 'path'
import { openFileInEditor } from '../../next-devtools/server/launch-editor'
import {
SourceMapConsumer,
type NullableMappedPosition,
} from 'next/dist/compiled/source-map08'
import type { Project, TurbopackStackFrame } from '../../build/swc/types'
import {
type ModernSourceMapPayload,
devirtualizeReactServerURL,
findApplicableSourceMapPayload,
} from '../lib/source-maps'
import { findSourceMap, type SourceMap } from 'node:module'
import { fileURLToPath, pathToFileURL } from 'node:url'
import { inspect } from 'node:util'
function shouldIgnorePath(modulePath: string): boolean {
return (
modulePath.includes('node_modules') ||
// Only relevant for when Next.js is symlinked e.g. in the Next.js monorepo
modulePath.includes('next/dist') ||
modulePath.startsWith('node:')
)
}
const currentSourcesByFile: Map<string, Promise<string | null>> = new Map()
/**
* @returns 1-based lines and 1-based columns
*/
async function batchedTraceSource(
project: Project,
frame: TurbopackStackFrame
): Promise<{ frame: IgnorableStackFrame; source: string | null } | undefined> {
const file = frame.file
? // TODO(veil): Why are the frames sent encoded?
decodeURIComponent(frame.file)
: undefined
if (!file) return
// For node internals they cannot traced the actual source code with project.traceSource,
// we need an early return to indicate it's ignored to avoid the unknown scheme error from `project.traceSource`.
if (file.startsWith('node:')) {
return {
frame: {
file,
line1: frame.line ?? null,
column1: frame.column ?? null,
methodName: frame.methodName ?? '<unknown>',
ignored: true,
arguments: [],
},
source: null,
}
}
const currentDirectoryFileUrl = pathToFileURL(process.cwd()).href
const sourceFrame = await project.traceSource(frame, currentDirectoryFileUrl)
if (!sourceFrame) {
return {
frame: {
file,
line1: frame.line ?? null,
column1: frame.column ?? null,
methodName: frame.methodName ?? '<unknown>',
ignored: shouldIgnorePath(file),
arguments: [],
},
source: null,
}
}
let source = null
const originalFile = sourceFrame.originalFile
// Don't look up source for node_modules or internals. These can often be large bundled files.
const ignored =
shouldIgnorePath(originalFile ?? sourceFrame.file) ||
// isInternal means resource starts with turbopack:///[turbopack]
!!sourceFrame.isInternal
if (originalFile && !ignored) {
let sourcePromise = currentSourcesByFile.get(originalFile)
if (!sourcePromise) {
sourcePromise = project.getSourceForAsset(originalFile)
currentSourcesByFile.set(originalFile, sourcePromise)
setTimeout(() => {
// Cache file reads for 100ms, as frames will often reference the same
// files and can be large.
currentSourcesByFile.delete(originalFile!)
}, 100)
}
source = await sourcePromise
}
// TODO: get ignoredList from turbopack source map
const ignorableFrame: IgnorableStackFrame = {
file: sourceFrame.file,
line1: sourceFrame.line ?? null,
column1: sourceFrame.column ?? null,
methodName:
// We ignore the sourcemapped name since it won't be the correct name.
// The callsite will point to the column of the variable name instead of the
// name of the enclosing function.
// TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.
frame.methodName ?? '<unknown>',
ignored,
arguments: [],
}
return {
frame: ignorableFrame,
source,
}
}
function parseFile(fileParam: string | null): string | undefined {
if (!fileParam) {
return undefined
}
return devirtualizeReactServerURL(fileParam)
}
function createStackFrames(
body: OriginalStackFramesRequest
): TurbopackStackFrame[] {
const { frames, isServer } = body
return frames
.map((frame): TurbopackStackFrame | undefined => {
const file = parseFile(frame.file)
if (!file) {
return undefined
}
return {
file,
methodName: frame.methodName ?? '<unknown>',
line: frame.line1 ?? undefined,
column: frame.column1 ?? undefined,
isServer,
}
})
.filter((f): f is TurbopackStackFrame => f !== undefined)
}
function createStackFrame(
searchParams: URLSearchParams
): TurbopackStackFrame | undefined {
const file = parseFile(searchParams.get('file'))
if (!file) {
return undefined
}
return {
file,
methodName: searchParams.get('methodName') ?? '<unknown>',
line: parseInt(searchParams.get('line1') ?? '0', 10) || undefined,
column: parseInt(searchParams.get('column1') ?? '0', 10) || undefined,
isServer: searchParams.get('isServer') === 'true',
}
}
/**
* @returns 1-based lines and 1-based columns
*/
async function nativeTraceSource(
frame: TurbopackStackFrame
): Promise<{ frame: IgnorableStackFrame; source: string | null } | undefined> {
const sourceURL = frame.file
let sourceMapPayload: ModernSourceMapPayload | undefined
try {
sourceMapPayload = findSourceMap(sourceURL)?.payload
} catch (cause) {
throw new Error(
`${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,
{ cause }
)
}
if (sourceMapPayload !== undefined) {
let consumer: SourceMapConsumer
try {
consumer = await new SourceMapConsumer(sourceMapPayload)
} catch (cause) {
throw new Error(
`${sourceURL}: Invalid source map. Only conformant source maps can be used to find the original code.`,
{ cause }
)
}
let traced: {
originalPosition: NullableMappedPosition
sourceContent: string | null
} | null
try {
const originalPosition = consumer.originalPositionFor({
line: frame.line ?? 1,
// 0-based columns out requires 0-based columns in.
column: (frame.column ?? 1) - 1,
})
if (originalPosition.source === null) {
traced = null
} else {
const sourceContent: string | null =
consumer.sourceContentFor(
originalPosition.source,
/* returnNullOnMissing */ true
) ?? null
traced = { originalPosition, sourceContent }
}
} finally {
consumer.destroy()
}
if (traced !== null) {
const { originalPosition, sourceContent } = traced
const applicableSourceMap = findApplicableSourceMapPayload(
(frame.line ?? 1) - 1,
(frame.column ?? 1) - 1,
sourceMapPayload
)
// TODO(veil): Upstream a method to sourcemap consumer that immediately says if a frame is ignored or not.
let ignored = false
if (applicableSourceMap === undefined) {
console.error(
'No applicable source map found in sections for frame',
frame
)
} else {
// TODO: O(n^2). Consider moving `ignoreList` into a Set
const sourceIndex = applicableSourceMap.sources.indexOf(
originalPosition.source!
)
ignored =
applicableSourceMap.ignoreList?.includes(sourceIndex) ??
// When sourcemap is not available, fallback to checking `frame.file`.
// e.g. In pages router, nextjs server code is not bundled into the page.
shouldIgnorePath(frame.file)
}
const originalStackFrame: IgnorableStackFrame = {
methodName:
// We ignore the sourcemapped name since it won't be the correct name.
// The callsite will point to the column of the variable name instead of the
// name of the enclosing function.
// TODO(NDX-531): Spy on prepareStackTrace to get the enclosing line number for method name mapping.
frame.methodName
?.replace('__WEBPACK_DEFAULT_EXPORT__', 'default')
?.replace('__webpack_exports__.', '') || '<unknown>',
file: originalPosition.source,
line1: originalPosition.line,
column1:
originalPosition.column === null ? null : originalPosition.column + 1,
// TODO: c&p from async createOriginalStackFrame but why not frame.arguments?
arguments: [],
ignored,
}
return {
frame: originalStackFrame,
source: sourceContent,
}
}
}
return undefined
}
async function createOriginalStackFrame(
project: Project,
projectPath: string,
frame: TurbopackStackFrame
): Promise<OriginalStackFrameResponse | null> {
const traced =
(await nativeTraceSource(frame)) ??
// TODO(veil): When would the bundler know more than native?
// If it's faster, try the bundler first and fall back to native later.
(await batchedTraceSource(project, frame))
if (!traced) {
return null
}
let normalizedStackFrameLocation = traced.frame.file
if (
normalizedStackFrameLocation !== null &&
normalizedStackFrameLocation.startsWith('file://')
) {
normalizedStackFrameLocation = path.relative(
projectPath,
fileURLToPath(normalizedStackFrameLocation)
)
}
return {
originalStackFrame: {
arguments: traced.frame.arguments,
file: normalizedStackFrameLocation,
line1: traced.frame.line1,
column1: traced.frame.column1,
ignored: traced.frame.ignored,
methodName: traced.frame.methodName,
},
originalCodeFrame: getOriginalCodeFrame(traced.frame, traced.source),
}
}
export function getOverlayMiddleware({
project,
projectPath,
isSrcDir,
}: {
project: Project
projectPath: string
isSrcDir: boolean
}) {
return async function (
req: IncomingMessage,
res: ServerResponse,
next: () => void
): Promise<void> {
const { pathname, searchParams } = new URL(req.url!, 'http://n')
if (pathname === '/__nextjs_original-stack-frames') {
if (req.method !== 'POST') {
return middlewareResponse.badRequest(res)
}
const body = await new Promise<string>((resolve, reject) => {
let data = ''
req.on('data', (chunk) => {
data += chunk
})
req.on('end', () => resolve(data))
req.on('error', reject)
})
const request = JSON.parse(body) as OriginalStackFramesRequest
const result = await getOriginalStackFrames({
project,
projectPath,
frames: request.frames,
isServer: request.isServer,
isEdgeServer: request.isEdgeServer,
isAppDirectory: request.isAppDirectory,
})
ignoreListAnonymousStackFramesIfSandwiched(result)
return middlewareResponse.json(res, result)
} else if (pathname === '/__nextjs_launch-editor') {
const isAppRelativePath = searchParams.get('isAppRelativePath') === '1'
let openEditorResult
if (isAppRelativePath) {
const relativeFilePath = searchParams.get('file') || ''
const appPath = path.join(
'app',
isSrcDir ? 'src' : '',
relativeFilePath
)
openEditorResult = await openFileInEditor(appPath, 1, 1, projectPath)
} else {
const frame = createStackFrame(searchParams)
if (!frame) return middlewareResponse.badRequest(res)
openEditorResult = await openFileInEditor(
frame.file,
frame.line ?? 1,
frame.column ?? 1,
projectPath
)
}
if (openEditorResult.error) {
return middlewareResponse.internalServerError(
res,
openEditorResult.error
)
}
if (!openEditorResult.found) {
return middlewareResponse.notFound(res)
}
return middlewareResponse.noContent(res)
}
return next()
}
}
export function getSourceMapMiddleware(project: Project) {
return async function (
req: IncomingMessage,
res: ServerResponse,
next: () => void
): Promise<void> {
const { pathname, searchParams } = new URL(req.url!, 'http://n')
if (pathname !== '/__nextjs_source-map') {
return next()
}
let filename = searchParams.get('filename')
if (!filename) {
return middlewareResponse.badRequest(res)
}
let nativeSourceMap: SourceMap | undefined
try {
nativeSourceMap = findSourceMap(filename)
} catch (cause) {
return middlewareResponse.internalServerError(
res,
new Error(
`${filename}: Invalid source map. Only conformant source maps can be used to find the original code.`,
{ cause }
)
)
}
if (nativeSourceMap !== undefined) {
const sourceMapPayload = nativeSourceMap.payload
return middlewareResponse.json(res, sourceMapPayload)
}
try {
// Turbopack chunk filenames might be URL-encoded.
filename = decodeURI(filename)
} catch {
return middlewareResponse.badRequest(res)
}
if (path.isAbsolute(filename)) {
filename = pathToFileURL(filename).href
}
try {
const sourceMapString = await project.getSourceMap(filename)
if (sourceMapString) {
return middlewareResponse.jsonString(res, sourceMapString)
}
} catch (cause) {
return middlewareResponse.internalServerError(
res,
new Error(
`Failed to get source map for '${filename}'. This is a bug in Next.js`,
{
cause,
}
)
)
}
middlewareResponse.noContent(res)
}
}
export async function getOriginalStackFrames({
project,
projectPath,
frames,
isServer,
isEdgeServer,
isAppDirectory,
}: {
project: Project
projectPath: string
frames: StackFrame[]
isServer: boolean
isEdgeServer: boolean
isAppDirectory: boolean
}): Promise<OriginalStackFramesResponse> {
const stackFrames = createStackFrames({
frames,
isServer,
isEdgeServer,
isAppDirectory,
})
return Promise.all(
stackFrames.map(async (frame) => {
try {
const stackFrame = await createOriginalStackFrame(
project,
projectPath,
frame
)
if (stackFrame === null) {
return {
status: 'rejected',
reason: 'Failed to create original stack frame',
}
}
return { status: 'fulfilled', value: stackFrame }
} catch (error) {
return {
status: 'rejected',
reason: inspect(error, { colors: false }),
}
}
})
)
}
|