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
|
;;; racket-debug.el -*- lexical-binding: t; -*-
;; Copyright (c) 2018-2020 by Greg Hendershott.
;; Author: Greg Hendershott
;; URL: https://github.com/greghendershott/racket-mode
;; License:
;; This is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version. This is distributed in the hope that it will be
;; useful, but without any warranty; without even the implied warranty
;; of merchantability or fitness for a particular purpose. See the GNU
;; General Public License for more details. See
;; http://www.gnu.org/licenses/ for details.
(require 'racket-repl)
(require 'easymenu)
(require 'cl-lib)
(require 'rx)
(defun racket-project-files (file-to-run)
"A suitable value for the variable `racket-debuggable-files'.
When projectile is installed and we're in a project, return all
its Racket files. Else return all Racket files in the same
directory as `file-to-run'. In all cases, include `file-to-run'.
In all cases, return absolute path names."
(cons
file-to-run
(or
(ignore-errors
(require 'projectile)
(when (and (fboundp 'projectile-project-root)
(fboundp 'projectile-dir-files))
(let ((root (projectile-project-root)))
(mapcar (lambda (v)
(expand-file-name v root))
(cl-remove-if-not (lambda (v)
(and (member (file-name-extension v)
'("rkt" "ss" "scm" "scrbl"))
v))
(projectile-dir-files root))))))
(directory-files (file-name-directory file-to-run)
t
(rx "." (or "rkt" "ss" "scm" "scrbl") eos)))))
(defvar racket-debuggable-files #'racket-project-files
"Used to tell `racket-run' what files may be instrumented for debugging.
Must be a list of strings that are pathnames, such as from
`racket--buffer-file-name', -or-, a function that returns such a
list given the pathname of the file being run. If any path
strings are relative, they are made absolute using
`expand-file-name' with the directory of the file being run. The
symbol 'run-file may be supplied in the list; it will be replaced
with the pathname of the file being run. Safe to set as a
file-local variable.")
(defun racket--debuggable-files (file-to-run)
"Do the work described in doc str for variable `racket-debuggable-files'."
(cl-labels ((err (&rest args)
(user-error (concat "racket-debuggable-files: must be "
(apply #'format args)))))
(let* ((print-length nil) ;for %S
(print-level nil) ;for %S
(dir (file-name-directory file-to-run))
(xs (if (functionp racket-debuggable-files)
(funcall racket-debuggable-files file-to-run)
racket-debuggable-files))
(xs (if (listp xs) xs (err "a list but is `%S'" xs)))
(xs (mapcar
(lambda (v)
(pcase v
(`run-file file-to-run)
((pred stringp) (expand-file-name v dir))
(_ (err "string or 'run-file but is `%S' in `%S'"
v xs))))
xs))
(xs (if (eq system-type 'windows-nt)
(mapcar
(lambda (v)
(replace-regexp-in-string (rx "/") "\\" v nil t))
xs)
xs)))
xs)))
(defvar racket--debug-break-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))))
;;;###autoload
(defun racket--debug-send-definition (beg end)
(racket--cmd/async
(racket--repl-session-id)
(save-excursion
(goto-char beg)
(list 'debug-eval
(racket--buffer-file-name)
(line-number-at-pos)
(current-column)
(point)
(buffer-substring-no-properties (point) end)))
(lambda (_)
;; TODO: Also set fringe, and/or set marker on function
;; name to show it's debuggable.
(message "Now you can call the function in the REPL to step debug it."))) )
;;;###autoload
(defun racket--debug-on-break (response)
(pcase response
(`((,src . ,pos) ,positions ,locals ,vals)
(pcase (find-buffer-visiting src)
(`nil (other-window 1) (find-file src))
(buf (pop-to-buffer buf)))
(goto-char pos)
(pcase vals
(`(,_id before) (message "Break before expression"))
(`(,_id after (,_ . ,s)) (message "Break after expression: (values %s"
(substring s 1))))
(setq racket--debug-break-positions positions)
(setq racket--debug-break-locals locals)
(setq racket--debug-break-info vals)
(racket-debug-mode 1))))
(defun racket--debug-resume (next-break value-prompt-p)
(unless racket--debug-break-info (user-error "Not debugging"))
(let ((info (if value-prompt-p
(racket--debug-prompt-for-new-values)
racket--debug-break-info)))
(racket--cmd/async (racket--repl-session-id)
`(debug-resume (,next-break ,info))))
(racket-debug-mode -1)
(setq racket--debug-break-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)
"Resume to next breakable position. With \\[universal-argument] substitute values."
(interactive "P")
(racket--debug-resume 'all prefix))
(defun racket-debug-step-over (&optional prefix)
"Resume over next expression. With \\[universal-argument], substitute values."
(interactive "P")
(racket--debug-resume 'over prefix))
(defun racket-debug-step-out (&optional prefix)
"Resume out. With \\[universal-argument], substitute values."
(interactive "P")
(racket--debug-resume 'out prefix))
(defun racket-debug-continue (&optional prefix)
"Resume; don't break anymore. With \\[universal-argument], substitute values."
(interactive "P")
(racket--debug-resume 'none prefix))
(defun racket-debug-run-to-here (&optional prefix)
"Resume until point (if possible). With \\[universal-argument], substitute values."
(interactive)
(racket--debug-resume (cons (racket--buffer-file-name) (point)) prefix))
(defun racket-debug-next-breakable ()
"Move point to next breakable position."
(interactive)
(racket--debug-goto-breakable t))
(defun racket-debug-prev-breakable ()
"Move point to previous breakable position."
(interactive)
(racket--debug-goto-breakable nil))
(defun racket--debug-goto-breakable (forwardp)
(pcase (assoc (racket--buffer-file-name) racket--debug-break-positions)
(`(,_src . ,ps)
(let ((ps (if forwardp ps (reverse ps)))
(pred (apply-partially (if forwardp #'< #'>) (point))))
(goto-char (pcase (cl-find-if pred ps)
(`nil (car ps))
(v v)))))
(_ (user-error "No breakable positions in this buffer"))))
(defun racket-debug-disable ()
(interactive)
(racket--cmd/async (racket--repl-session-id) `(debug-disable))
(racket-debug-mode -1)
(setq racket--debug-break-positions nil)
(setq racket--debug-break-locals nil)
(setq racket--debug-break-info nil))
(add-hook 'racket--repl-before-run-hook #'racket-debug-disable)
(defun racket-debug-help ()
(interactive)
(describe-function 'racket-debug-mode))
(defvar racket--debug-overlays nil)
(define-minor-mode racket-debug-mode
"Minor mode for debug breaks.
This feature is **EXPERIMENTAL**!!! It is likely to have
significant limitations and bugs. You are welcome to open an
issue to provide feedback. Please understand that this feature
might never be improved -- it might even be removed someday if it
turns out to have too little value and/or too much cost.
How to debug:
1. \"Instrument\" code for step debugging. You can instrument
entire files, and also individual functions.
a. Entire Files
Use two \\[universal-argument] command prefixes for either
`racket-run' or `racket-run-module-at-point'.
The file will be instrumented for step debugging before it
is run. Also instrumented are files determined by the
variable `racket-debuggable-files'.
The run will break at the first breakable position.
Tip: After you run to completion and return to a normal
REPL prompt, the code remains instrumented. You may enter
expressions that evaluate instrumented code and it will
break so you can step debug again.
b. Function Definitions
Move point inside a function definition form and use
\\[universal-argument] \\[racket-send-definition] to
\"instrument\" the function for step debugging. Then in the
REPL, enter an expression that causes the instrumented
function to be run, directly or indirectly.
You can instrument any number of functions.
You can even instrument while stopped at a break. For
example, to instrument a function you are about to call, so
you can \"step into\" it:
- \\[racket-xp-visit-definition] to visit the definition.
- \\[universal-argument] \\[racket-send-definition] to instrument the definition.
- \\[racket-unvisit] to return.
- Continue stepping.
Limitation: Instrumenting a function required from another
module won't redefine that function. Instead, it attempts
to define an instrumented function of the same name, in the
module the REPL is inside. The define will fail if it needs
definitions visible only in that other module. In that case
you'll probably need to use entire-file instrumentation as
described above.
2. When a break occurs, the `racket-repl-mode' prompt changes. In
this debug REPL, local variables are available for you to use
and even to `set!`.
Also, 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}
"
:lighter " RacketDebug"
:keymap (racket--easy-keymap-define
'(("SPC" racket-debug-step)
("o" racket-debug-step-over)
("u" racket-debug-step-out)
("c" racket-debug-continue)
("n" racket-debug-next-breakable)
("p" racket-debug-prev-breakable)
("h" racket-debug-run-to-here)
("?" racket-debug-help)))
(unless (eq major-mode 'racket-mode)
(setq racket-debug-mode nil)
(user-error "racket-debug-mode only works with racket-mode"))
(cond
(racket-debug-mode
(racket--debug-make-overlay
(point) (1+ (point))
'face racket-debug-break-face
'priority 99)
(dolist (local racket--debug-break-locals)
(pcase-let ((`(,_src ,pos ,span ,_name ,val) local))
(racket--debug-make-overlay
pos (+ pos span)
'after-string (propertize val 'face racket-debug-locals-face))))
(pcase racket--debug-break-info
(`(,_id after (,_ . ,str))
(let ((eol (line-end-position)))
(racket--debug-make-overlay
(1- eol) eol
'after-string (propertize (concat "⇒ (values " (substring str 1))
'face racket-debug-result-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
|