-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathracket-debug.el
More file actions
506 lines (434 loc) · 19.5 KB
/
racket-debug.el
File metadata and controls
506 lines (434 loc) · 19.5 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
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
;;; racket-debug.el -*- lexical-binding: t; -*-
;; Copyright (c) 2018-2025 by Greg Hendershott.
;; Author: Greg Hendershott
;; URL: https://github.com/greghendershott/racket-mode
;; SPDX-License-Identifier: GPL-3.0-or-later
(require 'racket-back-end)
(require 'racket-repl)
(require 'easymenu)
(require 'rx)
(require 'seq)
(defun racket-same-directory-files (file)
"A suitable value for the variable `racket-debuggable-files'.
Return FILE plus absolute paths for all Racket files in the same
directory as FILE."
(cons file
(directory-files (file-name-directory file)
t
(rx "." (or "rkt" "ss" "scm" "scrbl") eos)
nil)))
(defun racket--debuggable-files (file-to-run)
"Do the work described in doc str for variable `racket-debuggable-files'."
(seq-map (lambda (file)
(racket-file-name-front-to-back
(expand-file-name file file-to-run)))
(if (functionp racket-debuggable-files)
(funcall racket-debuggable-files file-to-run)
racket-debuggable-files)))
(defvar racket--debug-break-span nil)
(defvar racket--debug-breakable-positions nil)
(defvar racket--debug-break-locals nil)
(defvar racket--debug-break-info nil)
;; (U nil (cons break-id
;; (U (list 'before)
;; (list 'after string-of-racket-write-values))))
(defvar racket--debug-break-expression-overlays nil
"A list of overlays for break expressions set by the user.
We need this variable because we support debugging across
multiple source files so these overlays may exist among various
buffers.")
;;;###autoload
(defun racket--debug-on-break (info)
(pcase info
(`((,src ,pos ,beg ,end) ,breakable-positions ,locals ,vals)
(let ((src (racket-file-name-back-to-front src)))
(if-let (buf (find-buffer-visiting src))
(if (eq major-mode 'racket-repl-mode)
(pop-to-buffer buf) ;other window
(pop-to-buffer-same-window buf))
(if (eq major-mode 'racket-repl-mode)
(find-file-other-window src)
(find-file src)))
(goto-char pos)
(setq racket--debug-break-span (cons beg end))
(pcase vals
(`(,_id before)
(message "Break before expression; press ? for help"))
(`(,_id after (,_ . ,s))
(message "Break after expression: (values %s; press ? for help"
(substring s 1))))
(setq racket--debug-breakable-positions
(seq-map (lambda (path+positions)
(cons (racket-file-name-back-to-front (car path+positions))
(sort (cdr path+positions) #'<)))
breakable-positions))
(setq racket--debug-break-locals locals)
(setq racket--debug-break-info vals)
(racket-debug-mode 1)))
(v (error "racket--debug-on-break: unexpected `info`: %S" v))))
(defun racket--debug-resume (next-break value-prompt-p &optional extra-exprs)
(unless racket--debug-break-info (user-error "Not debugging"))
(racket--debug-validate-break-expressions)
(let* ((info (if value-prompt-p
(racket--debug-prompt-for-new-values)
racket--debug-break-info))
(exprs (seq-map (lambda (o)
(list (with-current-buffer (overlay-buffer o)
(racket-file-name-front-to-back
(racket--buffer-file-name)))
(overlay-start o)
(or (overlay-get o 'racket-break-expression)
"#t")))
racket--debug-break-expression-overlays))
(exprs (append extra-exprs exprs)))
(racket--cmd/async (racket--repl-session-id)
`(debug-resume ((,next-break . ,exprs) ,info))))
(racket-debug-mode -1)
(setq racket--debug-breakable-positions nil)
(setq racket--debug-break-locals nil)
(setq racket--debug-break-info nil))
(defun racket--debug-prompt-for-new-values ()
(pcase racket--debug-break-info
(`(,id before)
(pcase (read-from-minibuffer "Skip step, substituting values: " "()")
((or `nil "" "()") `(,id before))
(str `(,id before ,str))))
(`(,id after (t . ,orig))
(pcase (read-from-minibuffer "Step, replacing result values: " orig)
((or `nil "" "()") `(,id after (t . ,orig)))
(new `(,id after (t . ,new)))))
(v v)))
(defun racket-debug-step (&optional prefix)
"Step to next breakable position.
With \\[universal-argument] substitute values."
(interactive "P")
(racket--debug-resume 'all prefix))
(defun racket-debug-step-over (&optional prefix)
"Step over next expression.
With \\[universal-argument], substitute values."
(interactive "P")
(racket--debug-resume 'over prefix))
(defun racket-debug-step-out (&optional prefix)
"Step out.
With \\[universal-argument], substitute values."
(interactive "P")
(racket--debug-resume 'out prefix))
(defun racket-debug-continue (&optional prefix)
"Continue, utilizing break expressions.
Execution pauses at any position whose break expression evaluates to a
true, non-void value.
With \\[universal-argument], substitute values."
(interactive "P")
(racket--debug-resume 'some prefix))
(defun racket-debug-run-to-here (&optional prefix)
"Run to point.
Equivalent to adding a temporary unconditional break at point,
followed by `racket-debug-continue'.
With \\[universal-argument], substitute values."
(interactive)
(let ((extra (list (list (racket-file-name-front-to-back
(racket--buffer-file-name))
(point)
"#t"))))
(racket--debug-resume 'some prefix extra)))
(defun racket-debug-go (&optional prefix)
"Go unconditionally, ignoring all break expressions.
Similar to continuing the program normally, without stepping or
evaluating any break expressions -- although code annotated for
debugging runs more slowly.
With \\[universal-argument], substitute values."
(interactive "P")
(racket--debug-resume 'none prefix))
(defun racket-debug-forward-breakable ()
"Move to next breakable position in current buffer.
Useful followed by commands like `racket-debug-run-to-here' or
`racket-debug-set-break-expression'."
(interactive)
(racket--debug-goto-breakable t))
(defun racket-debug-backward-breakable ()
"Move to previous breakable position in current buffer.
Useful followed by commands like `racket-debug-run-to-here' or
`racket-debug-set-break-expression'."
(interactive)
(racket--debug-goto-breakable nil))
(defun racket--debug-goto-breakable (forwardp)
(pcase (assoc (racket--buffer-file-name) racket--debug-breakable-positions)
(`(,_src . ,ps)
(let ((ps (if forwardp ps (reverse ps)))
(pred (apply-partially (if forwardp #'< #'>) (point))))
(goto-char (or (seq-find pred ps) (car ps)))))
(_ (user-error "No breakable positions in this buffer"))))
(defun racket-debug-set-local ()
"Set local variable to new value."
(interactive)
(let* ((index 0)
(candidates
(seq-filter
#'identity
(seq-map
(pcase-lambda (`(,src ,pos ,_span ,sym ,val))
(when (equal src (racket-file-name-back-to-front
(racket--buffer-file-name)))
(concat
(propertize (format "%s" sym)
'racket-affix (list val (format "%s::%s" src pos))
'racket-sort (prog1 index (setq index (1+ index))))
;; `completing-read' strips props so return this via
;; appended invisible text
(propertize (format "\t%S" pos)
'display ""))))
racket--debug-break-locals)))
(affix (racket--make-affix [[8 font-lock-variable-name]
[8 racket-debug-locals-face]
0]))
(display-sort (lambda (strs)
(seq-sort (lambda (a b)
(< (get-text-property 0 'racket-sort a)
(get-text-property 0 'racket-sort b)))
strs)))
(metadata `((category . racket-debug-local)
(affixation-function . ,affix)
(display-sort-function . ,display-sort)))
(collection (racket--completion-table candidates metadata))
(str (completing-read "Local binding to change: " collection nil t))
(pos (progn
(string-match (rx bos (+? any) "\t" (group-n 1 (+? any)) eos)
str)
(read (match-string 1 str))))
(o (seq-find (lambda (o)
(eq (overlay-get o 'name) 'racket-debug-local))
(overlays-at pos))))
(unless o
(error "No local variable found"))
(let ((val (read-from-minibuffer "New value: "
(overlay-get o 'racket-debug-local-value))))
(when (and val (not (equal val "")))
(overlay-put o
'after-string
(propertize val 'face racket-debug-locals-face))
(overlay-put o
'racket-debug-local-value
val)
(let* ((break-id (car racket--debug-break-info))
(source (racket-file-name-front-to-back (racket--buffer-file-name)))
(pos (overlay-start o))
(info (list break-id source pos val)))
(racket--cmd/async (racket--repl-session-id)
`(debug-set-local ,info)))))))
(defun racket-debug-disable ()
"Disable `racket-debug-mode' and reset related variables."
(interactive)
(when (racket--cmd-open-p) ;otherwise no need
(racket--cmd/async (racket--repl-session-id) `(debug-disable)))
(racket-debug-mode -1)
(setq racket--debug-breakable-positions nil)
(setq racket--debug-break-locals nil)
(setq racket--debug-break-info nil))
(add-hook 'racket--repl-before-run-hook #'racket-debug-disable)
;;; break expression overlays
(defun racket--debug-validate-break-expressions ()
"Remove invalid overlays from the list."
(setq racket--debug-break-expression-overlays
(seq-filter (lambda (o)
(if (bufferp (overlay-buffer o))
t
(delete-overlay o)
nil))
racket--debug-break-expression-overlays)))
(defun racket-debug-clear-break-expression ()
"When a break expression exists at point, clear it and return true."
;; Note: Actually this defensively deletes multiple overlays at
;; point, in case we somehow mistakenly created more than one there.
;; But that detail is N/A for user doc string.
(interactive)
(let ((anyp nil)
(os (overlays-at (point))))
(dolist (o os)
(when (eq (overlay-get o 'name) 'racket-break-expression)
(delete-overlay o)
(setq racket--debug-break-expression-overlays
(remove o racket--debug-break-expression-overlays))
(setq anyp t)))
anyp))
(defun racket-debug-set-break-expression (expression)
"Set a break expression at a breakable position.
Break expressions encapsulate a range of traditional debugger features
like conditional breakpoints and watchpoints.
Each break expression consists of a Racket expression, which will be
evaluated in a context where local variables exist.
Unless the expression evaluates to Racket false or void, execution will
break there. In other words, this is a \"conditional breakpoint\".
In addition, the expression may invoke `#%dump`, which displays
information about all locals (and for after-breaks, the result values)
to both the REPL and the racket-mode-debugger logger topic. In other
words, this is a \"watchpoint\". Although `racket-debug-mode' already
shows these values /in situ/ when at a break, this may be useful if you
want a history.
For example, if the code around the point is something like
`(for ([n 100]) ___)`, then:
- `#t` means break always.
- `(zero? (modulo n 10))` breaks every 10 times through the loop.
- `(when (even? n) (#%dump))` dumps watch information every other time
through the loop, but never breaks.
The expression may consist of any Racket sub-expressions that evaluate
without error in that local context.
Each break expression is displayed using the customization variables
`racket-debug-break-expression-string' and
`racket-debug-break-expression-face'.
Note: If you're warned that point isn't known to be a breakable
position, that might be because it truly isn't, or, just because
`racket-debug-mode' is inactive therefore the breakable positions aren
uknown. Worst case, if you set a break expression someplace that is not
breakable, it is ignored. With a few exceptions -- such as close paren
positions that are tail calls -- most open parens and close parens are
breakble positions in s-expression languages. See the commands
`racket-debug-forward-breakable' and `racket-debug-backward-breakable'."
(interactive
(progn
(unless (or (pcase (assoc (racket--buffer-file-name)
racket--debug-breakable-positions)
(`(,_src . ,ps) (memq (point) ps)))
(y-or-n-p "Point not known to be a breakable position; set anyway "))
(keyboard-quit))
(list
(read-string "Expression [RET for \"#t\"]: "
nil
'racket-debug-break-expressions
"#t"))))
(racket-debug-clear-break-expression)
(let ((o (make-overlay (point) (1+ (point)) (current-buffer) t nil)))
(overlay-put o 'name 'racket-break-expression)
(overlay-put o 'before-string (propertize
racket-debug-break-expression-string
'face 'racket-debug-break-expression-face
'help-echo expression))
(overlay-put o 'evaporate t)
(overlay-put o 'racket-break-expression expression)
(push o racket--debug-break-expression-overlays)))
(defun racket-debug-toggle-break-expression ()
"Set or clear a break expression.
See `racket-debug-clear-break-expression' or
`racket-debug-set-break-expression'."
(interactive)
(unless (racket-debug-clear-break-expression)
(call-interactively #'racket-debug-set-break-expression)))
(defun racket-debug-forward-break-expression ()
"Move to next `racket-debug-set-break-expression' location."
(interactive)
(racket--debug-goto-break-expression 'forward))
(defun racket-debug-backward-break-expression ()
"Move to previous `racket-debug-set-break-expression' location."
(interactive)
(racket--debug-goto-break-expression 'backward))
(defun racket--debug-goto-break-expression (dir)
"Move among break expression overlays, in `buffer-list' order."
(let ((by-buffer (seq-group-by #'overlay-buffer
racket--debug-break-expression-overlays)))
(pcase (seq-some (lambda (buffer)
(when-let (overlays (cdr (assoc buffer by-buffer)))
(let* ((old-pos (if (equal buffer (current-buffer))
(point)
(with-current-buffer buffer
(if (eq dir 'forward)
(point-min)
(point-max)))))
(new-pos (racket--debug-find-point old-pos
overlays
dir)))
(and new-pos
(cons buffer new-pos)))))
(buffer-list))
(`(,buffer . ,pos)
(pop-to-buffer buffer)
(goto-char pos))
(_ (user-error "No break expression found %s" dir)))))
(defun racket--debug-find-point (orig-pos overlays dir)
(let ((cmp (if (eq dir 'forward) #'< #'>)))
(seq-reduce (lambda (pos ov)
(let ((beg (overlay-start ov)))
(if (and (funcall cmp orig-pos beg)
(or (not pos)
(funcall cmp beg pos)))
beg
pos)))
overlays
nil)))
(defun racket-debug-help ()
(interactive)
(describe-function 'racket-debug-mode))
(defvar racket--debug-overlays nil)
(define-minor-mode racket-debug-mode
"Minor mode enabled during step debugging breaks.
How to step debug:
1. \"Instrument\" code for step debugging.
Use two \\[universal-argument] command prefixes -- for either
`racket-run' or `racket-run-module-at-point' -- to instrument
and run the file with step debugging.
Imported files are also instrumented if they are in the
variable `racket-debuggable-files'.
Execution will pause at the first breakable position.
2. Whenever a break occurs:
In the `racket-mode' buffer where the break is located,
`racket-debug-mode' is enabled. This minor mode makes the buffer
read-only, provides visual feedback -- about the break position,
local variable values, and result values -- and provides shortcut
keys:
\\{racket-debug-mode-map}
Tip: After your program runs to completion and returns to a REPL prompt,
the code remains instrumented. As a result, in the REPL if you enter
expressions that evaluate instrumented code, you can debug those, too."
:lighter " RacketDebug"
:keymap (racket--easy-keymap-define
'(("SPC" racket-debug-step)
("o" racket-debug-step-over)
("u" racket-debug-step-out)
("n" racket-debug-forward-breakable)
("p" racket-debug-backward-breakable)
("h" racket-debug-run-to-here)
("!" racket-debug-toggle-break-expression)
("N" racket-debug-forward-break-expression)
("P" racket-debug-backward-break-expression)
("=" racket-debug-set-local)
("c" racket-debug-continue)
("g" racket-debug-go)
("?" racket-debug-help)))
(racket--assert-edit-mode (lambda () (setq racket-debug-mode nil)))
(cond
(racket-debug-mode
(racket--debug-make-overlay
(car racket--debug-break-span) (cdr racket--debug-break-span)
'name 'racket-debug-break-span
'priority 90
'face racket-debug-break-span-face)
(racket--debug-make-overlay
(point) (1+ (point))
'name 'racket-debug-break
'priority 99
'face racket-debug-break-face
'after-string
(when-let (str (cdr (nth 2 racket--debug-break-info)))
(propertize (substring str 1 -1)
'face racket-debug-locals-face)))
(dolist (local racket--debug-break-locals)
(pcase-let ((`(,_src ,pos ,span ,_name ,val) local))
(racket--debug-make-overlay
pos (+ pos span)
'name 'racket-debug-local
'racket-debug-local-value val
'after-string (propertize val 'face racket-debug-locals-face))))
(read-only-mode 1))
(t
(read-only-mode -1)
(dolist (o racket--debug-overlays)
(delete-overlay o))
(setq racket--debug-overlays nil))))
(defun racket--debug-make-overlay (beg end &rest props)
(let ((o (make-overlay beg end)))
(push o racket--debug-overlays)
(overlay-put o 'name 'racket-debug-overlay)
(overlay-put o 'priority 100)
(while props
(overlay-put o (pop props) (pop props)))
o))
(provide 'racket-debug)
;; racket-debug.el ends here