forked from evanw/esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph-debugger.html
475 lines (414 loc) · 13.1 KB
/
graph-debugger.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>Graph debugger</title>
<style>
body {
margin: 0;
overflow: hidden;
font: 14px/20px sans-serif;
background: #fff;
color: #000;
}
@media (prefers-color-scheme: dark) {
body {
background: #222;
color: #ddd;
}
}
canvas {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
#instructions {
padding: 20px;
}
</style>
</head>
<body>
<div id="instructions">
This is a debugger for some of esbuild's internals. To use:
<ol>
<li>Set "debugVerboseMetafile = true"</li>
<li>Serve the esbuild repo over localhost</li>
<li>Visit this page with "#metafile=path/to/metafile.json"</li>
</ol>
</div>
<canvas></canvas>
<script type="module">
const lightColors = {
bg: '#fff',
fg: '#000',
accent: '#7BF',
}
const darkColors = {
bg: '#222',
fg: '#ddd',
accent: '#FB0',
}
const prefersColorSchemeDark = matchMedia("(prefers-color-scheme: dark)")
function lightOrDarkColors() {
return prefersColorSchemeDark.matches ? darkColors : lightColors
}
const paddingX = 10
const paddingY = 10
class InputFile {
constructor(source, data) {
this.source = source
this.data = data
this.x = 0
this.y = 0
this.w = 0
this.h = 0
this.measure()
}
measure() {
this.w = 0
this.h = 0
// Title
c.font = titleFont
this.w = Math.max(this.w, c.measureText(this.source).width)
this.h += titleLineHeight
// Parts
let prevIndent = 0
c.font = codeFont
for (const part of this.data.parts) {
let code = part.code.replace(/\t/g, ' ')
const lastNewline = code.lastIndexOf('\n')
let nextIndent = 0
if (lastNewline >= 0) {
const lastLine = code.slice(lastNewline + 1)
nextIndent = lastLine.length
if (!/\S/.test(lastLine)) code = code.slice(0, lastNewline)
}
code = ' '.repeat(prevIndent) + code
prevIndent = nextIndent
part.lines = code.split('\n')
part.y = this.h
for (const line of part.lines) {
this.w = Math.max(this.w, c.measureText(line).width)
this.h += codeLineHeight
}
if (part.nsExportPartIndex) {
this.w = Math.max(this.w, c.measureText('/* <nsExportPartIndex> */').width)
}
if (part.wrapperPartIndex) {
this.w = Math.max(this.w, c.measureText('/* <wrapperPartIndex> */').width)
}
part.h = this.h - part.y
}
this.w += paddingX * 2
this.h += paddingY * 2
}
render() {
const colors = lightOrDarkColors()
// Background
c.clearRect(this.x, this.y, this.w, this.h)
// Title
c.font = titleFont
c.textBaseline = 'middle'
c.fillStyle = colors.fg
c.fillText(this.source, this.x + paddingX, this.y + paddingY + titleLineHeight / 2)
// Lines
c.font = codeFont
c.textBaseline = 'middle'
c.fillStyle = colors.fg
for (const part of this.data.parts) {
c.globalAlpha = part.isLive ? 1 : 0.2
for (let i = 0; i < part.lines.length; i++) {
c.fillText(part.lines[i], this.x + paddingX, this.y + paddingY + part.y + i * codeLineHeight + codeLineHeight / 2)
}
if (part.nsExportPartIndex) {
c.fillText('/* <nsExportPartIndex> */', this.x + paddingX, this.y + paddingY + part.y + codeLineHeight / 2)
}
if (part.wrapperPartIndex) {
c.fillText('/* <wrapperPartIndex> */', this.x + paddingX, this.y + paddingY + part.y + codeLineHeight / 2)
}
}
// Border
c.globalAlpha = 0.2
c.strokeStyle = colors.fg
c.strokeRect(this.x, this.y, this.w, this.h)
c.globalAlpha = 1
}
renderHover() {
const colors = lightOrDarkColors()
if (this.hoveredPart === -1) {
c.fillStyle = colors.accent
c.globalAlpha = 0.2
c.fillRect(this.x, this.y + paddingY, this.w, titleLineHeight)
c.globalAlpha = 1
c.fillRect(this.x, this.y + paddingY, 4, titleLineHeight)
c.strokeStyle = colors.fg
c.fillStyle = colors.fg
for (const part of this.data.parts) {
if (part.canBeRemovedIfUnused) continue
drawArrow(
this.x, this.y + paddingY + titleLineHeight / 2, -1,
this.x, this.y + paddingY + part.y + codeLineHeight / 2, -1,
)
}
} else if (this.hoveredPart !== null) {
const part = this.data.parts[this.hoveredPart]
c.fillStyle = colors.accent
c.globalAlpha = 0.2
c.fillRect(this.x, this.y + paddingY + part.y, this.w, part.h)
c.globalAlpha = 1
c.fillRect(this.x, this.y + paddingY + part.y, 4, part.h)
c.strokeStyle = colors.fg
c.fillStyle = colors.fg
drawArrow(
this.x, this.y + paddingY + part.y + codeLineHeight / 2, -1,
this.x, this.y + paddingY + titleLineHeight / 2, -1,
)
for (const dep of part.dependencies) {
if (dep.source === this.source) {
const otherPart = this.data.parts[dep.partIndex]
drawArrow(
this.x, this.y + paddingY + part.y + codeLineHeight / 2, -1,
this.x, this.y + paddingY + otherPart.y + codeLineHeight / 2, -1,
)
continue
}
const otherFile = inputFiles.find(file => file.source === dep.source)
if (!otherFile) continue
const otherPart = otherFile.data.parts[dep.partIndex]
drawArrow(
this.x + this.w, this.y + paddingY + part.y + codeLineHeight / 2, 1,
otherFile.x, otherFile.y + paddingY + otherPart.y + codeLineHeight / 2, -1,
)
}
for (const record of part.importRecords) {
const otherFile = inputFiles.find(file => file.source === record.source)
if (!otherFile) continue
drawArrow(
this.x + this.w, this.y + paddingY + part.y + codeLineHeight / 2, 1,
otherFile.x, otherFile.y + paddingY + titleLineHeight / 2, -1,
)
}
let lines = []
lines.push(`isLive: ${part.isLive}`)
if (part.declaredSymbols.length > 0) {
lines.push(`declaredSymbols:`)
for (const declSym of part.declaredSymbols) {
lines.push(` ${declSym.name}`)
}
}
if (part.symbolUses.length > 0) {
lines.push(`symbolUses:`)
for (const use of part.symbolUses) {
lines.push(` ${use.name} ${use.countEstimate}x`)
}
}
if (part.importRecords.length > 0) {
lines.push(`importRecords:`)
for (const record of part.importRecords) {
lines.push(` ${record.source}`)
}
}
c.font = normalFont
c.textBaseline = 'middle'
c.fillStyle = colors.fg
for (let i = 0; i < lines.length; i++) {
c.fillText(lines[i], this.x + 10, this.y + this.h + 10 + i * normalLineHeight + normalLineHeight / 2)
}
}
}
hoveredPart = null
onHover(mouseX, mouseY) {
this.hoveredPart = null
if (mouseX !== null && mouseY !== null &&
mouseX >= this.x && mouseX < this.x + this.w &&
mouseY >= this.y && mouseY < this.y + this.h) {
let y = mouseY - this.y - paddingY
if (y >= 0 && y < titleLineHeight) {
this.hoveredPart = -1
return true
}
for (let i = 0; i < this.data.parts.length; i++) {
const part = this.data.parts[i]
if (y >= part.y && y < part.y + part.h) {
this.hoveredPart = i
return true
}
}
}
}
onMouseMove(mouseX, mouseY) {
if (mouseX >= this.x && mouseX < this.x + this.w &&
mouseY >= this.y && mouseY < this.y + this.h) {
document.body.style.cursor = 'move'
return true
}
}
oldX = 0
oldY = 0
onMouseDown(mouseX, mouseY) {
if (mouseX >= this.x && mouseX < this.x + this.w &&
mouseY >= this.y && mouseY < this.y + this.h) {
this.oldX = mouseX
this.oldY = mouseY
document.body.style.cursor = 'move'
return true
}
}
onMouseDrag(mouseX, mouseY) {
this.x += mouseX - this.oldX
this.y += mouseY - this.oldY
this.oldX = mouseX
this.oldY = mouseY
document.body.style.cursor = 'move'
}
onMouseUp(e) {
}
}
function drawArrow(ax, ay, adx, bx, by, bdx) {
let dx = bx - ax
let dy = by - ay
let d = Math.sqrt(dx * dx + dy * dy)
let scale = d / 2
c.beginPath()
c.moveTo(ax, ay)
c.bezierCurveTo(
ax + adx * (10 + scale), ay,
bx + bdx * 10 + bdx * scale, by,
bx + bdx * 10, by,
)
c.stroke()
c.beginPath()
c.moveTo(bx, by)
c.lineTo(bx + bdx * 10, by - 5)
c.lineTo(bx + bdx * 10, by + 5)
c.fill()
}
const canvas = document.querySelector('canvas')
const c = canvas.getContext('2d')
const titleFont = '20px sans-serif'
const titleLineHeight = 30
const codeFont = '12px monospace'
const codeLineHeight = 18
const normalFont = '14px sans-serif'
const normalLineHeight = 18
let width = 0, height = 0
let scrollX = 0, scrollY = 0
let metafile
const instructions = document.getElementById('instructions')
try {
if (!location.hash.startsWith('#metafile=')) throw new Error('Expected "#metafile=" in URL')
metafile = await fetch(location.hash.slice('#metafile='.length)).then(r => r.json())
} catch (err) {
const error = document.createElement('div')
error.style.color = 'red'
error.textContent = err
instructions.append(error)
throw err
}
instructions.remove()
const outputSource = Object.keys(metafile.outputs)[0]
const output = metafile.outputs[outputSource]
const inputFiles = Object.entries(output.inputs).map(([source, data]) => new InputFile(source, data)).reverse()
for (let i = 0; i < inputFiles.length; i++) {
const file = inputFiles[i]
file.y = 100
if (i === 0) {
file.x = 100
} else {
const prevFile = inputFiles[i - 1]
file.x = prevFile.x + prevFile.w + 100
}
}
function render() {
const colors = lightOrDarkColors()
width = innerWidth
height = innerHeight
const ratio = devicePixelRatio
canvas.width = Math.round(width * ratio)
canvas.height = Math.round(height * ratio)
canvas.style.background = colors.bg
c.scale(ratio, ratio)
// Title
c.font = titleFont
c.textBaseline = 'top'
c.fillStyle = colors.fg
c.fillText(outputSource, 10, 10)
// Content
c.translate(-scrollX, -scrollY)
// Inputs
for (let i = inputFiles.length - 1; i >= 0; i--) inputFiles[i].render()
for (let i = inputFiles.length - 1; i >= 0; i--) inputFiles[i].renderHover()
}
addEventListener('wheel', e => {
e.preventDefault()
if (e.ctrlKey) return
scrollX += e.deltaX
scrollY += e.deltaY
}, { passive: false })
let draggingFile = null
let isDragging = false
onmousemove = e => {
let mouseX = e.pageX + scrollX
let mouseY = e.pageY + scrollY
document.body.style.cursor = 'default'
if (isDragging) {
if (draggingFile) {
draggingFile.onMouseDrag(mouseX, mouseY)
}
} else {
for (const file of inputFiles) {
if (file.onMouseMove(mouseX, mouseY)) {
break
}
}
onhover(mouseX, mouseY)
}
}
onmousedown = e => {
let mouseX = e.pageX + scrollX
let mouseY = e.pageY + scrollY
if (!isDragging) {
isDragging = true
for (const file of inputFiles) {
if (file.onMouseDown(mouseX, mouseY)) {
draggingFile = file
break
}
}
}
onhover(mouseX, mouseY)
}
onmouseup = e => {
let mouseX = e.pageX + scrollX
let mouseY = e.pageY + scrollY
if (isDragging) {
if (draggingFile) {
draggingFile.onMouseUp(mouseX, mouseY)
draggingFile = null
}
isDragging = false
}
onhover(mouseX, mouseY)
}
function onhover(mouseX, mouseY) {
for (const file of inputFiles) {
if (file.onHover(mouseX, mouseY)) {
mouseX = null
mouseY = null
}
}
}
onblur = () => {
draggingFile = null
isDragging = false
}
function tick() {
requestAnimationFrame(tick)
render()
}
tick()
</script>
</body>
</html>