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
|
;; Copyright (c) 2013-2022 by Greg Hendershott.
;; SPDX-License-Identifier: GPL-3.0-or-later
#lang racket/base
(require (for-syntax racket/base)
racket/contract
racket/format
racket/list
racket/match
(only-in racket/path path-only)
racket/set
syntax/modread
"debug-annotator.rkt"
"elisp.rkt"
"interaction.rkt"
"repl-output.rkt"
"repl-session.rkt"
"util.rkt")
(module+ test
(require rackunit))
(provide (rename-out [on-break-channel debug-notify-channel])
debug-resume
debug-disable
make-debug-eval-handler
next-break)
(define-logger racket-mode-debugger)
;; A gui-debugger/marks "mark" is a thunk that returns a
;; full-mark-struct -- although gui-debugger/marks doesn't provide
;; that struct. Instead the thunk can be passed to various accessor
;; functions.
(define mark/c (-> any/c))
;; A "mark-binding" is a list whose first element is syntax of the
;; identifier, and whose second element is a get/set! procedure.
(define get/set!/c (case-> (-> any/c)
(-> any/c void)))
(define breakable-positions/c (hash/c path? (set/c #:cmp 'eq pos/c)))
(define/contract breakable-positions breakable-positions/c (make-hash))
(define/contract (breakable-position? src pos)
(-> path? pos/c boolean?)
(set-member? (hash-ref breakable-positions src (seteq)) pos))
(define/contract (annotate stx #:source [source (syntax-source stx)])
(->* (syntax?) (#:source path?) syntax?)
(repl-output-message (format "Debug annotate ~v" source))
(define-values (annotated breakables)
(annotate-for-single-stepping stx break? break-before break-after))
(hash-update! breakable-positions
source
(λ (s) (set-union s (list->seteq breakables)))
(seteq))
annotated)
;; These contracts are suitable for "edge" with ELisp.
(define break-point-elisp/c (list/c path-string? pos/c string? string?))
(define break-when-elisp/c (or/c 'all 'none (listof break-point-elisp/c)))
;; These contracts are for actual `next-break` value.
(define break-point/c (list/c path? pos/c any/c (listof symbol?)))
(define break-when/c (or/c 'all 'none (listof break-point/c)))
(define (from-elisp-break-when v)
(if (list? v)
(map from-elisp-break-point v)
v))
(define/contract from-elisp-break-point
(-> break-point-elisp/c break-point/c)
(match-lambda
[(list path-str pos condition actions)
(list (string->path path-str)
pos
(read (open-input-string condition))
(read (open-input-string actions)))]))
(define/contract next-break
(case-> (-> break-when/c)
(-> break-when/c void))
(let ([v 'none])
(case-lambda [() v]
[(v!) (set! v v!)])))
;; Following are the functions we give `annotate-for-single-stepping`,
;; calls to which it "weaves into" the annotated code. When it calls
;; `break?` and we return true, next it calls either `break-before` or
;; `break-after`.
(define ((break? src) pos)
(match (next-break)
['none #f]
['all #t]
[(? list? xs) (for/or ([x (in-list xs)])
(match x
[(list (== src) (== pos) _condition _actions) x]
[_ #f]))]
[_ #f]))
(define/contract (break-before top-mark ccm)
(-> mark/c continuation-mark-set? (or/c #f (listof any/c)))
(break 'before top-mark ccm #f))
(define/contract (break-after top-mark ccm . vals)
(->* (mark/c continuation-mark-set?) #:rest (listof any/c)
any)
(apply values (break 'after top-mark ccm vals)))
(define/contract (break before/after top-mark ccm vals)
(-> (or/c 'before 'after) mark/c continuation-mark-set? (or/c #f (listof any/c))
(or/c #f (listof any/c)))
(define stx (mark-source top-mark))
(define src (syntax-source stx))
(define pos (case before/after
[(before) (syntax-position stx)]
[(after) (+ (syntax-position stx) (syntax-span stx) -1)]))
;; What to do depends on whether the break is due to a user
;; breakpoint, and if so, what condition and actions it specifies.
(define actions
(match ((break? src) pos)
[(list _src _pos condition actions)
(if (or (equal? condition #t) ;short-cut
(with-handlers ([values
(λ (e)
(repl-output-message
(format "~a\nin debugger condition expression:\n ~v"
(exn-message e)
condition))
#t)]) ;break anyway
(eval
(call-with-session-context (current-session-id)
with-locals
condition
(mark-bindings top-mark)))))
actions
null)]
;; Otherwise, e.g. for a simple step, the default and only
;; action is to break.
[_ '(break)]))
(when (memq 'print actions)
(unless (null? (mark-bindings top-mark))
(repl-output-message "Debugger watchpoint; locals:")
(for* ([binding (in-list (reverse (mark-bindings top-mark)))]
[stx (in-value (first binding))]
[get/set! (in-value (second binding))]
#:when (and (syntax-original? stx) (syntax-source stx)))
(repl-output-message (format " ~a = ~a" stx (~v (get/set!)))))))
(when (memq 'log actions)
(log-racket-mode-debugger-info
"watch ~a ~v~a"
before/after
stx
(for*/fold ([str ""])
([binding (in-list (reverse (mark-bindings top-mark)))]
[stx (in-value (first binding))]
[get/set! (in-value (second binding))]
#:when (and (syntax-original? stx) (syntax-source stx)))
(string-append str (format "\n ~a = ~a" stx (~v (get/set!)))))))
(cond
[(memq 'break actions)
;; Start a debug repl on its own thread, because below we're going to
;; block indefinitely with (channel-get on-resume-channel), waiting for
;; the Emacs front end to issue a debug-resume command.
(define repl-thread (thread (repl src pos top-mark)))
;; If it is not possible to round-trip serialize/deserialize the
;; values, use the original values when stepping (don't attempt to
;; substitute user-supplied values).
(define (maybe-serialized-vals)
(let ([str (~s vals)])
(if (and (serializable? vals)
(<= (string-length str) max-width))
(cons #t str)
(cons #f (~s #:max-width max-width
#:limit-marker limit-marker
vals)))))
;; The on-break-channel is how we notify the Emacs front-end. This
;; is a synchronous channel-put but it should return fairly quickly,
;; as soon as the command server gets and writes it. In other words,
;; this is sent as a notification, unlike a command response as a
;; result of a request.
(define this-break-id (new-break-id))
(define max-width 128)
(define limit-marker "⋯")
(define locals
(for*/list ([binding (in-list (mark-bindings top-mark))]
[stx (in-value (first binding))]
[get/set! (in-value (second binding))]
#:when (and (syntax-original? stx) (syntax-source stx)))
(list (syntax-source stx)
(syntax-position stx)
(syntax-span stx)
(syntax->datum stx)
(~v #:max-width max-width
#:limit-marker limit-marker
(get/set!)))))
(channel-put on-break-channel
(list 'debug-break
(cons src pos)
breakable-positions
locals
(cons this-break-id
(case before/after
[(before) (list 'before)]
[(after) (list 'after (maybe-serialized-vals))]))))
;; Wait for debug-resume command to put to on-resume-channel. If
;; wrong break ID, ignore and wait again.
(let wait ()
(match (channel-get on-resume-channel)
[(list (app from-elisp-break-when break-when)
(list* (== this-break-id) before/after more))
(next-break (calc-next-break break-when before/after top-mark ccm))
(begin0
;; The step annotator needs us to return the values to
;; be used when resuming from before or after step --
;; either the original values, or those the user asked
;; to be substituted.
(match* [before/after more]
[['before (list)]
#f]
[['before (list new-vals-str)]
(read-str/default new-vals-str vals)]
[['after (list new-vals-pair)]
(match new-vals-pair
[(cons #t new-vals-str) (read-str/default new-vals-str vals)]
[(cons '() _) vals]) ])
(kill-thread repl-thread))]
[_ (wait)]))]
;; Otherwise, if we didn't break, we simply need to (a) calculate
;; next-break and (b) tell the annotator to use the original
;; values (no user substitution).
[else
(next-break (calc-next-break (next-break) before/after top-mark ccm))
(case before/after
[(before) #f]
[(after) vals])]))
(define (serializable? v)
(with-handlers ([exn:fail:read? (λ _ #f)])
(equal? v (write/read v))))
(module+ test
(check-true (serializable? 42))
(check-true (serializable? 'foo))
(check-false (serializable? (open-output-string))))
(define (write/read v)
(define out (open-output-string))
(write v out)
(define in (open-input-string (get-output-string out)))
(read in))
(module+ test
(check-equal? (write/read 42) 42)
(check-equal? (write/read 'foo) 'foo))
(define (read-str/default str default)
(with-handlers ([exn:fail:read? (λ _ default)])
(read (open-input-string str))))
(define/contract (calc-next-break break-when before/after top-mark ccm)
(-> (or/c break-when/c 'over 'out) (or/c 'before 'after) mark/c continuation-mark-set?
break-when/c)
(define (big-step frames)
(define num-marks (length (debug-marks (current-continuation-marks))))
(or (for/or ([frame (in-list frames)]
[depth (in-range (length frames) -1 -1)]
#:when (<= num-marks depth))
(let* ([stx (mark-source frame)]
[src (syntax-source stx)]
[left (syntax-position stx)]
[right (and left (+ left (syntax-span stx) -1))])
(and right
(breakable-position? src right)
(list (list src right #t '(break))))))
'all))
(case break-when
[(out) (big-step (debug-marks ccm))]
[(over) (case before/after
[(before) (big-step (cons top-mark (debug-marks ccm)))]
[(after) 'all])]
[else break-when])) ;'all, 'none, or user breakpoints
(define break-id/c nat/c)
(define/contract new-break-id
(-> break-id/c)
(let ([n 0]) (λ () (begin0 n (set! n (add1 n))))))
(define/contract (debug-marks ccm)
(-> continuation-mark-set? (listof mark/c))
(continuation-mark-set->list ccm debug-key))
;;; Debug REPL
(define ((repl src pos top-mark))
(parameterize ([current-prompt-read (make-prompt-read src pos top-mark)])
(read-eval-print-loop)))
(define (make-prompt-read src pos top-mark)
(define (racket-mode-debug-prompt-read)
(define-values (_base name _dir) (split-path src))
(define prompt (format "[~a:~a]" name pos))
(define stx (get-interaction prompt))
(call-with-session-context (current-session-id)
with-locals stx (mark-bindings top-mark)))
racket-mode-debug-prompt-read)
(define (with-locals stx bindings)
;; Before or during module->namespace -- i.e. during a racket-run --
;; current-namespace won't (can't) yet be a namespace with module
;; body bindings. Indeed it might be from make-base-empty-namespace,
;; and not even include racket/base bindings such as #%app. In that
;; case make them available. That way the debug REPL at least can
;; handle expressions involving local bindings.
(unless (member '#%app (namespace-mapped-symbols))
(log-racket-mode-debug "debug prompt-read namespace-require racket/base")
(namespace-require 'racket/base))
;; Note that mark-bindings is ordered from inner to outer scopes --
;; and can include outer variables shadowed by inner ones. So use
;; only the first occurence of each identifier symbol we encounter.
;; e.g. in (let ([x _]) (let ([x _]) ___)) we want only the inner x.
(define ht (make-hasheq))
(for* ([binding (in-list bindings)]
[sym (in-value (syntax->datum (first binding)))]
#:unless (hash-has-key? ht sym)
[get/set! (in-value (second binding))])
(hash-set! ht sym get/set!))
(syntax-case stx ()
;; I couldn't figure out how to get a set! transformer to work for
;; Typed Racket -- how to annotate or cast a get/set! as (-> Any
;; Void). So instead, just intercept (set! id e) as a datum and
;; effectively (get/set! (eval e debug-repl-ns)) here. In other
;; words treat the stx like a REPL "command". Of course this
;; totally bypasses type-checking, but this is a debugger. YOLO!
[(set! id e)
(and (module-declared? 'typed/racket/base)
(eq? 'set! (syntax->datum #'set!))
(identifier? #'id)
(hash-has-key? ht (syntax->datum #'id)))
(let ([set (hash-ref ht (syntax->datum #'id))]
[v (eval #'e)])
(set v)
#`(void))]
;; Wrap stx in a let-syntax form with a make-set!-transformer for
;; every local variable in the mark-bindings results.
[_
(let ([syntax-bindings
(for/list ([(sym get/set!) (in-hash ht)])
(define id (datum->syntax #f sym))
(define xform
(make-set!-transformer
(λ (stx)
(syntax-case stx (set!)
[(set! id v) (identifier? #'id) #`(#%plain-app #,get/set! v)]
[id (identifier? #'id) #`'#,(get/set!)]))))
#`(#,id #,xform))])
#`(let-syntax #,syntax-bindings
#,stx))]))
;;; Command interface
(define locals/c (listof (list/c path-string? pos/c pos/c symbol? string?)))
(define break-vals/c (cons/c break-id/c
(or/c (list/c 'before)
(list/c 'after (cons/c boolean? string?)))))
(define on-break/c (list/c 'debug-break
(cons/c path? pos/c)
breakable-positions/c
locals/c
break-vals/c))
(define/contract on-break-channel (channel/c on-break/c) (make-channel))
(define resume-vals/c (cons/c break-id/c
(or/c (list/c 'before)
(list/c 'before string?)
(list/c 'after (cons/c elisp-bool/c string?)))))
(define on-resume/c (list/c (or/c break-when-elisp/c 'out 'over) resume-vals/c))
(define/contract on-resume-channel (channel/c on-resume/c) (make-channel))
(define/contract (debug-resume resume-info)
(-> on-resume/c #t)
(channel-put on-resume-channel resume-info)
#t)
(define (debug-disable)
(next-break 'none)
(for ([k (in-hash-keys breakable-positions)])
(hash-remove! breakable-positions k)))
;;; Make eval handler to instrument entire files
(define eval-handler/c (-> any/c any))
(define/contract ((make-debug-eval-handler files [orig-eval (current-eval)]) v)
(->* ((set/c path?)) (eval-handler/c) eval-handler/c)
(cond [(compiled-expression? (syntax-or-sexpr->sexpr v))
(orig-eval v)]
[else
(define stx (syntax-or-sexpr->syntax v))
(define top-stx (expand-syntax-to-top-form stx))
(cond [(set-member? files (syntax-source stx))
(next-break 'all)
(parameterize* ([current-eval orig-eval]
[current-load/use-compiled
(let ([orig (current-load/use-compiled)])
(λ (file mod)
(cond [(set-member? files file)
(unless (and (pair? mod)
(pair? (cdr mod))
(module-declared? file #f))
(load-module/annotate file mod))]
[else
(orig file mod)])))])
(eval-syntax (annotate (expand-syntax top-stx))))]
[else (orig-eval top-stx)])]))
(define (load-module/annotate file m)
(repl-output-message (format "~v" `(load-module/annotate ,file ,m)))
(call-with-input-file* file
(λ (in)
(port-count-lines! in)
(parameterize ([read-accept-compiled #f]
[current-load-relative-directory (path-only file)])
(with-module-reading-parameterization
(λ ()
(define e (parameterize ([current-namespace (make-base-namespace)])
(expand (read-syntax file in))))
(eval (annotate (check-module-form e m file)))))))))
|