forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathErrorStackParser.ts
More file actions
160 lines (149 loc) · 5.43 KB
/
ErrorStackParser.ts
File metadata and controls
160 lines (149 loc) · 5.43 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
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as Common from '../../core/common/common.js';
import type * as Platform from '../../core/platform/platform.js';
import type * as SDK from '../../core/sdk/sdk.js';
import type * as Protocol from '../../generated/protocol.js';
export interface ParsedErrorFrame {
line: string;
isCallFrame?: boolean;
link?: {
url: Platform.DevToolsPath.UrlString,
prefix: string,
suffix: string,
lineNumber?: number,
columnNumber?: number, enclosedInBraces: boolean,
scriptId?: Protocol.Runtime.ScriptId,
};
}
/**
* Takes a V8 Error#stack string and extracts source position information.
*
* The result includes the url, line and column number, as well as where
* the url is found in the raw line.
*
* @returns Null if the provided string has an unexpected format. A
* populated `ParsedErrorFrame[]` otherwise.
*/
export function parseSourcePositionsFromErrorStack(
runtimeModel: SDK.RuntimeModel.RuntimeModel, stack: string): ParsedErrorFrame[]|null {
if (!/^[\w.]*Error\b/.test(stack)) {
return null;
}
const debuggerModel = runtimeModel.debuggerModel();
const baseURL = runtimeModel.target().inspectedURL();
const lines = stack.split('\n');
const linkInfos = [];
for (const line of lines) {
const match = /^\s*at\s(async\s)?/.exec(line);
if (!match) {
if (linkInfos.length && linkInfos[linkInfos.length - 1].isCallFrame) {
return null;
}
linkInfos.push({line});
continue;
}
const isCallFrame = true;
let left = match[0].length;
let right = line.length;
let enclosedInBraces = false;
while (line[right - 1] === ')') {
right--;
enclosedInBraces = true;
do {
left = line.indexOf(' (', left);
if (left < 0) {
return null;
}
left += 2;
if (!line.substring(left).startsWith('eval at ')) {
break;
}
left += 8;
right = line.lastIndexOf(', ', right) - 1;
if (right < 0) {
return null;
}
} while (true);
}
const linkCandidate = line.substring(left, right);
const splitResult = Common.ParsedURL.ParsedURL.splitLineAndColumn(linkCandidate);
if (splitResult.url === '<anonymous>' || splitResult.url === 'native') {
if (linkInfos.length && linkInfos[linkInfos.length - 1].isCallFrame && !linkInfos[linkInfos.length - 1].link) {
// Combine builtin frames.
linkInfos[linkInfos.length - 1].line += `\n${line}`;
} else {
linkInfos.push({line, isCallFrame});
}
continue;
}
let url = parseOrScriptMatch(debuggerModel, splitResult.url);
if (!url && Common.ParsedURL.ParsedURL.isRelativeURL(splitResult.url)) {
url = parseOrScriptMatch(debuggerModel, Common.ParsedURL.ParsedURL.completeURL(baseURL, splitResult.url));
}
if (!url) {
return null;
}
linkInfos.push({
line,
isCallFrame,
link: {
url,
prefix: line.substring(0, left),
suffix: line.substring(right),
enclosedInBraces,
lineNumber: splitResult.lineNumber,
columnNumber: splitResult.columnNumber,
},
});
}
return linkInfos;
}
function parseOrScriptMatch(debuggerModel: SDK.DebuggerModel.DebuggerModel, url: Platform.DevToolsPath.UrlString|null):
Platform.DevToolsPath.UrlString|null {
if (!url) {
return null;
}
if (Common.ParsedURL.ParsedURL.isValidUrlString(url)) {
return url;
}
if (debuggerModel.scriptsForSourceURL(url).length) {
return url;
}
// nodejs stack traces contain (absolute) file paths, but v8 reports them as file: urls.
const fileUrl = new URL(url, 'file://');
if (debuggerModel.scriptsForSourceURL(fileUrl.href).length) {
return fileUrl.href as Platform.DevToolsPath.UrlString;
}
return null;
}
/**
* Error#stack output only contains script URLs. In some cases we are able to
* retrieve additional exception details from V8 that we can use to augment
* the parsed Error#stack with script IDs.
* This function sets the `scriptId` field in `ParsedErrorFrame` when it finds
* the corresponding info in `Protocol.Runtime.StackTrace`.
*/
export function augmentErrorStackWithScriptIds(
parsedFrames: ParsedErrorFrame[], protocolStackTrace: Protocol.Runtime.StackTrace): void {
// Note that the number of frames between the two stack traces can differ. The
// parsed Error#stack can contain Builtin frames which are not present in the protocol
// stack. This means its easier to always search the whole protocol stack for a matching
// frame rather then trying to detect the Builtin frames and skipping them.
for (const parsedFrame of parsedFrames) {
const protocolFrame = protocolStackTrace.callFrames.find(frame => framesMatch(parsedFrame, frame));
if (protocolFrame && parsedFrame.link) {
parsedFrame.link.scriptId = protocolFrame.scriptId;
}
}
}
/** Returns true iff both stack frames have the same url and line/column numbers. The function name is ignored */
function framesMatch(parsedFrame: ParsedErrorFrame, protocolFrame: Protocol.Runtime.CallFrame): boolean {
if (!parsedFrame.link) {
return false;
}
const {url, lineNumber, columnNumber} = parsedFrame.link;
return url === protocolFrame.url && lineNumber === protocolFrame.lineNumber &&
columnNumber === protocolFrame.columnNumber;
}