-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
SourceMap.js
477 lines (475 loc) · 21 KB
/
SourceMap.js
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
// @ts-nocheck
// generated by yarn build-cdt-lib
/* eslint-disable */
"use strict";
const Common = require('../Common.js');
const Platform = require('../Platform.js');
// Copyright 2021 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.
Object.defineProperty(exports, "__esModule", { value: true });
exports.SourceMap = exports.SourceMapEntry = void 0;
exports.parseSourceMap = parseSourceMap;
/*
* Copyright (C) 2012 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the #name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
;
;
;
/**
* Parses the {@link content} as JSON, ignoring BOM markers in the beginning, and
* also handling the CORB bypass prefix correctly.
*
* @param content the string representation of a sourcemap.
* @returns the {@link SourceMapV3} representation of the {@link content}.
*/
function parseSourceMap(content) {
if (content.startsWith(')]}')) {
content = content.substring(content.indexOf('\n'));
}
if (content.charCodeAt(0) === 0xFEFF) {
// Strip BOM at the beginning before parsing the JSON.
content = content.slice(1);
}
return JSON.parse(content);
}
class SourceMapEntry {
lineNumber;
columnNumber;
sourceURL;
sourceLineNumber;
sourceColumnNumber;
name;
constructor(lineNumber, columnNumber, sourceURL, sourceLineNumber, sourceColumnNumber, name) {
this.lineNumber = lineNumber;
this.columnNumber = columnNumber;
this.sourceURL = sourceURL;
this.sourceLineNumber = sourceLineNumber;
this.sourceColumnNumber = sourceColumnNumber;
this.name = name;
}
static compare(entry1, entry2) {
if (entry1.lineNumber !== entry2.lineNumber) {
return entry1.lineNumber - entry2.lineNumber;
}
return entry1.columnNumber - entry2.columnNumber;
}
}
exports.SourceMapEntry = SourceMapEntry;
const base64Digits = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
const base64Map = new Map();
for (let i = 0; i < base64Digits.length; ++i) {
base64Map.set(base64Digits.charAt(i), i);
}
const sourceMapToSourceList = new WeakMap();
class SourceMap {
#json;
#compiledURLInternal;
#sourceMappingURL;
#baseURL;
#mappingsInternal;
#sourceInfos;
/**
* Implements Source Map V3 model. See https://github.com/google/closure-compiler/wiki/Source-Maps
* for format description.
*/
constructor(compiledURL, sourceMappingURL, payload) {
this.#json = payload;
this.#compiledURLInternal = compiledURL;
this.#sourceMappingURL = sourceMappingURL;
this.#baseURL = (sourceMappingURL.startsWith('data:') ? compiledURL : sourceMappingURL);
this.#mappingsInternal = null;
this.#sourceInfos = new Map();
if ('sections' in this.#json) {
if (this.#json.sections.find(section => 'url' in section)) {
console.warn(`SourceMap "${sourceMappingURL}" contains unsupported "URL" field in one of its sections.`);
}
}
this.eachSection(this.parseSources.bind(this));
}
compiledURL() {
return this.#compiledURLInternal;
}
url() {
return this.#sourceMappingURL;
}
sourceURLs() {
return [...this.#sourceInfos.keys()];
}
embeddedContentByURL(sourceURL) {
const entry = this.#sourceInfos.get(sourceURL);
if (!entry) {
return null;
}
return entry.content;
}
findEntry(lineNumber, columnNumber) {
const mappings = this.mappings();
const index = Platform.ArrayUtilities.upperBound(mappings, undefined, (unused, entry) => lineNumber - entry.lineNumber || columnNumber - entry.columnNumber);
return index ? mappings[index - 1] : null;
}
findEntryRanges(lineNumber, columnNumber) {
const mappings = this.mappings();
const endIndex = Platform.ArrayUtilities.upperBound(mappings, undefined, (unused, entry) => lineNumber - entry.lineNumber || columnNumber - entry.columnNumber);
if (!endIndex) {
// If the line and column are preceding all the entries, then there is nothing to map.
return null;
}
// startIndex must be within mappings range because endIndex must be not falsy
const startIndex = endIndex - 1;
const sourceURL = mappings[startIndex].sourceURL;
if (!sourceURL) {
return null;
}
// Let us compute the range that contains the source position in the compiled code.
const endLine = endIndex < mappings.length ? mappings[endIndex].lineNumber : 2 ** 31 - 1;
const endColumn = endIndex < mappings.length ? mappings[endIndex].columnNumber : 2 ** 31 - 1;
const range = new TextUtils.TextRange.TextRange(mappings[startIndex].lineNumber, mappings[startIndex].columnNumber, endLine, endColumn);
// Now try to find the corresponding token in the original code.
const reverseMappings = this.reversedMappings(sourceURL);
const startSourceLine = mappings[startIndex].sourceLineNumber;
const startSourceColumn = mappings[startIndex].sourceColumnNumber;
const endReverseIndex = Platform.ArrayUtilities.upperBound(reverseMappings, undefined, (unused, i) => startSourceLine - mappings[i].sourceLineNumber || startSourceColumn - mappings[i].sourceColumnNumber);
if (!endReverseIndex) {
return null;
}
const endSourceLine = endReverseIndex < reverseMappings.length ?
mappings[reverseMappings[endReverseIndex]].sourceLineNumber :
2 ** 31 - 1;
const endSourceColumn = endReverseIndex < reverseMappings.length ?
mappings[reverseMappings[endReverseIndex]].sourceColumnNumber :
2 ** 31 - 1;
const sourceRange = new TextUtils.TextRange.TextRange(startSourceLine, startSourceColumn, endSourceLine, endSourceColumn);
return { range, sourceRange, sourceURL };
}
sourceLineMapping(sourceURL, lineNumber, columnNumber) {
const mappings = this.mappings();
const reverseMappings = this.reversedMappings(sourceURL);
const first = Platform.ArrayUtilities.lowerBound(reverseMappings, lineNumber, lineComparator);
const last = Platform.ArrayUtilities.upperBound(reverseMappings, lineNumber, lineComparator);
if (first >= reverseMappings.length || mappings[reverseMappings[first]].sourceLineNumber !== lineNumber) {
return null;
}
const columnMappings = reverseMappings.slice(first, last);
if (!columnMappings.length) {
return null;
}
const index = Platform.ArrayUtilities.lowerBound(columnMappings, columnNumber, (columnNumber, i) => columnNumber - mappings[i].sourceColumnNumber);
return index >= columnMappings.length ? mappings[columnMappings[columnMappings.length - 1]] :
mappings[columnMappings[index]];
function lineComparator(lineNumber, i) {
return lineNumber - mappings[i].sourceLineNumber;
}
}
findReverseIndices(sourceURL, lineNumber, columnNumber) {
const mappings = this.mappings();
const reverseMappings = this.reversedMappings(sourceURL);
const endIndex = Platform.ArrayUtilities.upperBound(reverseMappings, undefined, (unused, i) => lineNumber - mappings[i].sourceLineNumber || columnNumber - mappings[i].sourceColumnNumber);
let startIndex = endIndex;
while (startIndex > 0 &&
mappings[reverseMappings[startIndex - 1]].sourceLineNumber ===
mappings[reverseMappings[endIndex - 1]].sourceLineNumber &&
mappings[reverseMappings[startIndex - 1]].sourceColumnNumber ===
mappings[reverseMappings[endIndex - 1]].sourceColumnNumber) {
--startIndex;
}
return reverseMappings.slice(startIndex, endIndex);
}
findReverseEntries(sourceURL, lineNumber, columnNumber) {
const mappings = this.mappings();
return this.findReverseIndices(sourceURL, lineNumber, columnNumber).map(i => mappings[i]);
}
findReverseRanges(sourceURL, lineNumber, columnNumber) {
const mappings = this.mappings();
const indices = this.findReverseIndices(sourceURL, lineNumber, columnNumber);
const ranges = [];
for (let i = 0; i < indices.length; ++i) {
const startIndex = indices[i];
// Merge adjacent ranges.
let endIndex = startIndex + 1;
while (i + 1 < indices.length && endIndex === indices[i + 1]) {
++endIndex;
++i;
}
// Source maps don't contain end positions for entries, but each entry is assumed to
// span until the following entry. This doesn't work however in case of the last
// entry, where there's no following entry. We also don't know the number of lines
// and columns in the original source code (which might not be available at all), so
// for that case we store the maximum signed 32-bit integer, which is definitely going
// to be larger than any script we can process and can safely be serialized as part of
// the skip list we send to V8 with `Debugger.stepOver` (http://crbug.com/1305956).
const startLine = mappings[startIndex].lineNumber;
const startColumn = mappings[startIndex].columnNumber;
const endLine = endIndex < mappings.length ? mappings[endIndex].lineNumber : 2 ** 31 - 1;
const endColumn = endIndex < mappings.length ? mappings[endIndex].columnNumber : 2 ** 31 - 1;
ranges.push(new TextUtils.TextRange.TextRange(startLine, startColumn, endLine, endColumn));
}
return ranges;
}
/** @return {Array<{lineNumber: number, columnNumber: number, sourceURL?: string, sourceLineNumber: number, sourceColumnNumber: number, name?: string, lastColumnNumber?: number}>} */
mappings() {
this.#ensureMappingsProcessed();
return this.#mappingsInternal ?? [];
}
reversedMappings(sourceURL) {
this.#ensureMappingsProcessed();
return this.#sourceInfos.get(sourceURL)?.reverseMappings ?? [];
}
#ensureMappingsProcessed() {
if (this.#mappingsInternal === null) {
this.#mappingsInternal = [];
this.eachSection(this.parseMap.bind(this));
// As per spec, mappings are not necessarily sorted.
this.mappings().sort(SourceMapEntry.compare);
this.#computeReverseMappings(this.#mappingsInternal);
this.#json = null;
}
}
#computeReverseMappings(mappings) {
const reverseMappingsPerUrl = new Map();
for (let i = 0; i < mappings.length; i++) {
const entryUrl = mappings[i].sourceURL;
if (!entryUrl) {
continue;
}
let reverseMap = reverseMappingsPerUrl.get(entryUrl);
if (!reverseMap) {
reverseMap = [];
reverseMappingsPerUrl.set(entryUrl, reverseMap);
}
reverseMap.push(i);
}
for (const [url, reverseMap] of reverseMappingsPerUrl.entries()) {
const info = this.#sourceInfos.get(url);
if (!info) {
continue;
}
reverseMap.sort(sourceMappingComparator);
info.reverseMappings = reverseMap;
}
function sourceMappingComparator(indexA, indexB) {
const a = mappings[indexA];
const b = mappings[indexB];
return a.sourceLineNumber - b.sourceLineNumber || a.sourceColumnNumber - b.sourceColumnNumber ||
a.lineNumber - b.lineNumber || a.columnNumber - b.columnNumber;
}
}
eachSection(callback) {
if (!this.#json) {
return;
}
if ('sections' in this.#json) {
for (const section of this.#json.sections) {
if ('map' in section) {
callback(section.map, section.offset.line, section.offset.column);
}
}
}
else {
callback(this.#json, 0, 0);
}
}
parseSources(sourceMap) {
const sourcesList = [];
const sourceRoot = sourceMap.sourceRoot ?? '';
const ignoreList = new Set(sourceMap.x_google_ignoreList);
for (let i = 0; i < sourceMap.sources.length; ++i) {
let href = sourceMap.sources[i];
// The source map v3 proposal says to prepend the sourceRoot to the source URL
// and if the resulting URL is not absolute, then resolve the source URL against
// the source map URL. Prepending the sourceRoot (if one exists) is not likely to
// be meaningful or useful if the source URL is already absolute though. In this
// case, use the source URL as is without prepending the sourceRoot.
if (Common.ParsedURL.ParsedURL.isRelativeURL(href)) {
if (sourceRoot && !sourceRoot.endsWith('/') && href && !href.startsWith('/')) {
href = sourceRoot.concat('/', href);
}
else {
href = sourceRoot.concat(href);
}
}
const url = '' || href;
const source = sourceMap.sourcesContent && sourceMap.sourcesContent[i];
sourcesList.push(url);
if (!this.#sourceInfos.has(url)) {
const content = source ?? null;
const ignoreListHint = ignoreList.has(i);
this.#sourceInfos.set(url, { content, ignoreListHint, reverseMappings: null });
}
}
sourceMapToSourceList.set(sourceMap, sourcesList);
}
parseMap(map, lineNumber, columnNumber) {
let sourceIndex = 0;
let sourceLineNumber = 0;
let sourceColumnNumber = 0;
let nameIndex = 0;
// TODO(crbug.com/1011811): refactor away map.
// `sources` can be undefined if it wasn't previously
// processed and added to the list. However, that
// is not WAI and we should make sure that we can
// only reach this point when we are certain
// we have the list available.
const sources = sourceMapToSourceList.get(map);
const names = map.names ?? [];
const stringCharIterator = new SourceMap.StringCharIterator(map.mappings);
let sourceURL = sources && sources[sourceIndex];
while (true) {
if (stringCharIterator.peek() === ',') {
stringCharIterator.next();
}
else {
while (stringCharIterator.peek() === ';') {
lineNumber += 1;
columnNumber = 0;
stringCharIterator.next();
}
if (!stringCharIterator.hasNext()) {
break;
}
}
columnNumber += this.decodeVLQ(stringCharIterator);
if (!stringCharIterator.hasNext() || this.isSeparator(stringCharIterator.peek())) {
this.mappings().push(new SourceMapEntry(lineNumber, columnNumber));
continue;
}
const sourceIndexDelta = this.decodeVLQ(stringCharIterator);
if (sourceIndexDelta) {
sourceIndex += sourceIndexDelta;
if (sources) {
sourceURL = sources[sourceIndex];
}
}
sourceLineNumber += this.decodeVLQ(stringCharIterator);
sourceColumnNumber += this.decodeVLQ(stringCharIterator);
if (!stringCharIterator.hasNext() || this.isSeparator(stringCharIterator.peek())) {
this.mappings().push(new SourceMapEntry(lineNumber, columnNumber, sourceURL, sourceLineNumber, sourceColumnNumber));
continue;
}
nameIndex += this.decodeVLQ(stringCharIterator);
this.mappings().push(new SourceMapEntry(lineNumber, columnNumber, sourceURL, sourceLineNumber, sourceColumnNumber, names[nameIndex]));
}
}
isSeparator(char) {
return char === ',' || char === ';';
}
decodeVLQ(stringCharIterator) {
// Read unsigned value.
let result = 0;
let shift = 0;
let digit = SourceMap._VLQ_CONTINUATION_MASK;
while (digit & SourceMap._VLQ_CONTINUATION_MASK) {
digit = base64Map.get(stringCharIterator.next()) || 0;
result += (digit & SourceMap._VLQ_BASE_MASK) << shift;
shift += SourceMap._VLQ_BASE_SHIFT;
}
// Fix the sign.
const negative = result & 1;
result >>= 1;
return negative ? -result : result;
}
mapsOrigin() {
const mappings = this.mappings();
if (mappings.length > 0) {
const firstEntry = mappings[0];
return firstEntry?.lineNumber === 0 || firstEntry.columnNumber === 0;
}
return false;
}
hasIgnoreListHint(sourceURL) {
return this.#sourceInfos.get(sourceURL)?.ignoreListHint ?? false;
}
/**
* Returns a list of ranges in the generated script for original sources that
* match a predicate. Each range is a [begin, end) pair, meaning that code at
* the beginning location, up to but not including the end location, matches
* the predicate.
*/
findRanges(predicate, options) {
const mappings = this.mappings();
const ranges = [];
if (!mappings.length) {
return [];
}
let current = null;
// If the first mapping isn't at the beginning of the original source, it's
// up to the caller to decide if it should be considered matching the
// predicate or not. By default, it's not.
if ((mappings[0].lineNumber !== 0 || mappings[0].columnNumber !== 0) && options?.isStartMatching) {
current = TextUtils.TextRange.TextRange.createUnboundedFromLocation(0, 0);
ranges.push(current);
}
for (const { sourceURL, lineNumber, columnNumber } of mappings) {
const ignoreListHint = sourceURL && predicate(sourceURL);
if (!current && ignoreListHint) {
current = TextUtils.TextRange.TextRange.createUnboundedFromLocation(lineNumber, columnNumber);
ranges.push(current);
continue;
}
if (current && !ignoreListHint) {
current.endLine = lineNumber;
current.endColumn = columnNumber;
current = null;
}
}
return ranges;
}
}
exports.SourceMap = SourceMap;
(function (SourceMap) {
// TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration
// eslint-disable-next-line @typescript-eslint/naming-convention
SourceMap._VLQ_BASE_SHIFT = 5;
// TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration
// eslint-disable-next-line @typescript-eslint/naming-convention
SourceMap._VLQ_BASE_MASK = (1 << 5) - 1;
// TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration
// eslint-disable-next-line @typescript-eslint/naming-convention
SourceMap._VLQ_CONTINUATION_MASK = 1 << 5;
class StringCharIterator {
string;
position;
constructor(string) {
this.string = string;
this.position = 0;
}
next() {
return this.string.charAt(this.position++);
}
peek() {
return this.string.charAt(this.position);
}
hasNext() {
return this.position < this.string.length;
}
}
SourceMap.StringCharIterator = StringCharIterator;
})(SourceMap || (exports.SourceMap = SourceMap = {}));
module.exports = SourceMap;
SourceMap.parseSourceMap = parseSourceMap;