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
|
#lang racket/base
(require (for-syntax racket/base)
gui-debugger/marks
racket/contract
racket/format
racket/list
racket/match
(only-in racket/path path-only)
racket/set
syntax/modread
"debug-annotator.rkt"
"elisp.rkt"
"interactions.rkt"
"repl-session.rkt"
"util.rkt")
(module+ test
(require rackunit))
(provide (rename-out [on-break-channel debug-notify-channel])
debug-eval
debug-resume
debug-disable
make-debug-eval-handler
next-break)
;; 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)
(-> syntax? syntax?)
(define source (syntax-source stx))
(display-commented (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)
;; The first contract is suitable for "edge" with Emacs Lisp. Second
;; is important for actual `next-break` value so that `break?` compare
;; of source works; see #425.
(define break-when/c (or/c 'all 'none (cons/c path-string? pos/c)))
(define break-when-strict/c (or/c 'all 'none (cons/c path? pos/c)))
(define/contract next-break
(case-> (-> break-when-strict/c)
(-> break-when-strict/c void))
(let ([v 'none])
(case-lambda [() v]
[(v!) (set! v v!)])))
;; If this returns #t, either break-before or break-after will be
;; called next.
(define ((break? src) pos)
(match (next-break)
['none #f]
['all #t]
[(cons (== src) (== pos)) #t]
[_ #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)]))
(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!)))))
;; 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)))
;; 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))
;; 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)))))
(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 ()
(begin0
(match (channel-get on-resume-channel)
[(list break-when (list (== this-break-id) 'before))
(next-break (calc-next-break before/after break-when top-mark ccm))
#f]
[(list break-when (list (== this-break-id) 'before new-vals-str))
(next-break (calc-next-break before/after break-when top-mark ccm))
(read-str/default new-vals-str vals)]
[(list break-when (list (== this-break-id) 'after new-vals-pair))
(next-break (calc-next-break before/after break-when top-mark ccm))
(match new-vals-pair
[(cons #t new-vals-str) (read-str/default new-vals-str vals)]
[(cons '() _) vals])]
[_ (wait)])
(kill-thread repl-thread)
(newline))))
(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 before/after break-when top-mark ccm)
(-> (or/c 'before 'after) (or/c break-when/c 'over 'out) mark/c continuation-mark-set?
break-when-strict/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)
(cons src right))))
'all))
(match* [break-when before/after]
[['none _] 'none]
[['all _] 'all]
[['out _] (big-step (debug-marks ccm))]
[['over 'before] (big-step (cons top-mark (debug-marks ccm)))]
[['over 'after] 'all]
[[(cons (? path? path) pos) _]
(cons path pos)]
[[(cons (? path-string? path-str) pos) _]
(cons (string->path path-str) pos)]))
(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-values (_base name _dir) (split-path src))
(define stx (get-interaction (format "[~a:~a]" name pos)))
(call-with-session-context (current-session-id)
with-locals stx (mark-bindings top-mark)))
(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
;; Intended use is for `code` to be a function definition form. It
;; will be re-defined annotated for single stepping: When executed it
;; will call our break?, break-before, and break-after functions.
(define/contract (debug-eval source-str line col pos code)
(-> path-string? pos/c nat/c pos/c string? #t)
(define source (string->path source-str))
(define in (open-input-string code))
(port-count-lines! in)
(set-port-next-location! in line col pos)
(eval (annotate (expand (read-syntax source in))))
(next-break 'all)
#t)
(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
break-when/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/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)
(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)
(display-commented (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)))))))))
|