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
|
;; Copyright (c) 2013-2022 by Greg Hendershott.
;; SPDX-License-Identifier: GPL-3.0-or-later
#lang racket/base
(require racket/contract
(only-in racket/function curry)
racket/list
racket/match
"identifier.rkt"
"syntax.rkt")
(provide find-definition
find-definition/drracket-jump
find-signature)
(module+ test
(require rackunit
racket/format))
;; Note: Unfortunately identifier-binding can't report the definition
;; id in the case of a contract-out and a rename-out, both. For
;; `(provide (contract-out [rename orig new contract]))`
;; identifier-binding reports (1) the contract wrapper as the id, and
;; (2) `new` as the nominal-id -- but NOT (3) `orig`. We handle such
;; cases; see `find-def-in-file` and its use of `$renaming-provde`,
;; below.
;;
;; Another tricky case: "foo" is defined in def.rkt. repro.rkt
;; requires def.rkt and re-provides "foo" using contract-out. When
;; user.rkt requires repro.rkt, identifier-binding will report "foo"
;; the id (yay!) but report the defining file is repro.rkt -- not
;; def.rkt (boo!). We handle such cases.
(define location/c (list/c path-string? natural-number/c natural-number/c))
;; Try to find a definition, using as a head start information
;; supplied by drracket/check-syntax. It did the "fast" work for all
;; uses (calling identifier-binding) and we recorded that answer to
;; give the front end. If the user wants to visit any of those, the
;; front end gives us that info, and we do the "slow" work.
(define/contract (find-definition/drracket-jump how-path src-path submods id-strs)
(-> (and/c how/c (not/c 'namespace)) path-string? (listof symbol?) (listof string?)
(or/c #f 'kernel location/c))
(or (for/or ([id-str (in-list id-strs)])
(match (find-def-in-file (string->symbol id-str) how-path src-path submods)
[(list stx path _submods)
(list (->path-string (or (syntax-source stx) path))
(or (syntax-line stx) 1)
(or (syntax-column stx) 0))]
[v v]))
;; Handle possible re-provide with a contract: Try again
;; starting with that other src-path. i.e. Do automatically what
;; the user could: Open that file, and try visit-definition
;; again, there. from that.
(and (not (path-string-equal? how-path src-path))
(for/or ([id-str (in-list id-strs)])
(find-definition src-path id-str)))
;; As a final fallback, return the reported file:1:0. At least
;; give user a head start.
(list src-path 1 0)))
;; Try to find a definition.
(define/contract (find-definition how str)
(-> how/c string?
(or/c #f 'kernel location/c))
(match (find-def how str)
[(list stx path _submods)
(list (->path-string (or (syntax-source stx) path))
(or (syntax-line stx) 1)
(or (syntax-column stx) 0))]
[v v]))
;; Try to find the definition of `str`, returning its signature or #f.
;; When defined in 'kernel, returns a form saying so, not #f.
(define/contract (find-signature how str)
(-> how/c string?
(or/c #f pair?))
(match (find-def how str)
['kernel '("defined in #%kernel, signature unavailable")]
[(list id-stx path submods)
(get-syntax how path
(λ (mod-stx)
(match ($signature (syntax-e id-stx)
(submodule-syntax submods mod-stx))
[(? syntax? stx) (syntax->datum stx)]
[_ #f])))]
[v v]))
(define stx+path+mods/c (list/c syntax? path-string? (listof symbol?)))
(define/contract (find-def how str)
(-> how/c string?
(or/c #f 'kernel stx+path+mods/c))
(->identifier-resolved-binding-info
how str
(λ (results)
(match results
[(? list? bindings)
(or (for/or ([x (in-list (remove-duplicates bindings))])
(match x
[(cons _id 'kernel) 'kernel]
[(list* id path submods) (find-def-in-file id how path submods)]))
;; Handle possible re-provide with a contract: Try again
;; starting with that other src-path. i.e. Automatically
;; do what the user could: Open that file, and try
;; visit-definition again, there.
(match results
[(list (list* src-id src-path src-subs)
(list* nom-id _))
(or (and (or (equal? how 'namespace)
(not (path-string-equal? how src-path)))
(for/or ([id (in-list (list src-id nom-id))])
(find-def (path->string src-path) (symbol->string id))))
;; As a final fallback, return the reported
;; file:1:0. At least give user a head start.
(list (datum->syntax #f src-id (list src-path 1 0 #f #f))
src-path
'()))]
[_ #f]))]
[_ #f]))))
(define/contract (find-def-in-file id-sym how path submods)
(-> symbol? how/c path-string? (listof symbol?)
(or/c #f stx+path+mods/c))
(define subs (curry submodule-syntax submods))
(match (or (get-expanded-syntax
how path
(λ (stx)
($definition id-sym (subs stx))))
(get-syntax
how path
(λ (stx)
(match ($renaming-provide id-sym (subs stx))
[(? identifier? id)
(define id-sym (syntax-e id))
(get-expanded-syntax
how path
(λ (stx)
($definition id-sym (subs stx))))]
[_ #f]))))
[(? syntax? stx) (list stx path submods)]
[_ #f]))
;; Given a submodule path as a list of symbols, and the syntax for a
;; file's entire module form: Return the (sub)module contents as
;; #'(begin . contents).
(define/contract (submodule-syntax sub-mod-syms stx)
(-> (listof symbol?) syntax? (or/c #f syntax?))
;; Prepend #f as the outermost module name to match, meaning "any".
(sub-stx (cons #f sub-mod-syms) stx))
(define (sub-stx mods stx)
(match-define (cons this more) mods)
(define (subs stxs)
(if (empty? more)
#`(begin . #,stxs)
(ormap (λ (stx) (sub-stx more stx))
(syntax->list stxs))))
(syntax-case* stx (module #%module-begin) syntax-e-eq?
[(module name _ (#%module-begin . stxs))
(or (not this) (eq? this (syntax-e #'name)))
(subs #'stxs)]
[(module name _ . stxs)
(or (not this) (eq? this (syntax-e #'name)))
(subs #'stxs)]
[_ #f]))
(module+ test
(check-equal? (syntax->datum
(submodule-syntax '(a b c)
#'(module file racket
(module a racket
(module not-b racket #f)
(module b racket
(module not-c racket #f)
(module c racket "bingo")
(module not-c racket #f))
(module not-b racket #f)))))
'(begin "bingo")))
;; Given a symbol and syntax, return syntax corresponding to the
;; definition. Intentionally does NOT walk into module forms, so, give
;; us the module bodies wrapped in begin.
;;
;; If `stx` is expanded we can find things defined via definer
;; macros.
;;
;; If `stx` is not expanded, we will miss some things, however the
;; syntax will be closer to what a human expects -- e.g. `(define (f
;; x) x)` instead of `(define-values (f) (lambda (x) x))`.
(define ($definition sym stx) ;;symbol? syntax? -> syntax?
(define eq-sym? (make-eq-sym? sym))
;; This is a hack to handle definer macros that neglect to set
;; srcloc properly using syntax/loc or (format-id ___ #:source __):
;; If the stx lacks srcloc and its parent stx has srcloc, return the
;; parent stx instead. Caveats: 1. Assumes caller only cares about
;; the srcloc. 2. We only check immediate parent. 3. We only use
;; this for define-values and define-syntaxes, below, on the
;; assumption that this only matters for fully-expanded syntax.
(define (loc s)
(if (and (not (syntax-line s))
(syntax-line stx))
stx
s))
(syntax-case* stx
(begin define-values define-syntaxes
define define/contract
define-syntax struct define-struct)
syntax-e-eq?
[(begin . stxs) (ormap (λ (stx) ($definition sym stx))
(syntax->list #'stxs))]
[(define (s . _) . _) (eq-sym? #'s) stx]
[(define/contract (s . _) . _) (eq-sym? #'s) stx]
[(define s . _) (eq-sym? #'s) stx]
[(define-values (ss ...) . _) (ormap eq-sym? (syntax->list #'(ss ...)))
(loc (ormap eq-sym? (syntax->list #'(ss ...))))]
[(define-syntax (s . _) . _) (eq-sym? #'s) stx]
[(define-syntax s . _) (eq-sym? #'s) stx]
[(define-syntaxes (ss ...) . _) (ormap eq-sym? (syntax->list #'(ss ...)))
(loc (ormap eq-sym? (syntax->list #'(ss ...))))]
[(define-struct s . _) (eq-sym? #'s) stx]
[(define-struct (s _) . _) (eq-sym? #'s) stx]
[(struct s . _) (eq-sym? #'s) stx]
[(struct (s _) . _) (eq-sym? #'s) stx]
[_ #f]))
;; Given a symbol and syntax, return syntax corresponding to the
;; function definition signature. The input syntax should NOT be
;; `expand`ed. This intentionally does NOT walk into module forms, so,
;; give us the module bodies wrapped in begin.
(define ($signature sym stx) ;;symbol? syntax? -> (or/c #f list?)
(define eq-sym? (make-eq-sym? sym))
(syntax-case* stx (begin define define/contract case-lambda) syntax-e-eq?
[(begin . stxs) (ormap (λ (stx) ($signature sym stx))
(syntax->list #'stxs))]
[(define (s . as) . _) (eq-sym? #'s) #'(s . as)]
[(define/contract (s . as) . _) (eq-sym? #'s) #'(s . as)]
[(define s (case-lambda [(ass ...) . _] ...)) (eq-sym? #'s) #'((s ass ...) ...)]
[_ #f]))
;; Find sym in a contracting and/or renaming provide, and return the
;; syntax for the ORIGINAL identifier (before being contracted and/or
;; renamed). The input syntax should NOT be expanded.
(define ($renaming-provide sym stx) ;;symbol? syntax? -> syntax?
(define eq-sym? (make-eq-sym? sym))
(syntax-case* stx (begin provide provide/contract) syntax-e-eq?
[(begin . stxs)
(ormap (λ (stx) ($renaming-provide sym stx))
(syntax->list #'stxs))]
[(provide/contract . stxs)
(for/or ([stx (syntax->list #'stxs)])
(syntax-case stx ()
[(s _) (eq-sym? #'s)]
[_ #f]))]
[(provide . stxs)
(for/or ([stx (syntax->list #'stxs)])
(syntax-case* stx (contract-out rename-out) syntax-e-eq?
[(contract-out . stxs)
(for/or ([stx (syntax->list #'stxs)])
(syntax-case* stx (rename) syntax-e-eq?
[(rename orig s _) (eq-sym? #'s) #'orig]
[(s _) (eq-sym? #'s) #'s]
[_ #f]))]
[(rename-out . stxs)
(for/or ([stx (syntax->list #'stxs)])
(syntax-case* stx () syntax-e-eq?
[(orig s) (eq-sym? #'s) #'orig]
[_ #f]))]
[_ #f]))]
[_ #f]))
(module+ test
;; Just a quick smoke test. See test/find.rkt for many more tests.
;;
;; Exercise where the "how" is a path-string, meaning look up that
;; path from our cache, not on disk.
(let ([path-str (path->string (build-path (find-system-path 'temp-dir) "x.rkt"))]
[code-str (~a `(module x racket/base
(define (module-function-binding x y z) (+ 1 x))
(define module-variable-binding 42)))])
(string->expanded-syntax path-str code-str void)
(check-equal? (find-signature path-str "module-function-binding")
'(module-function-binding x y z))
(check-equal? (find-definition path-str "module-function-binding")
`(,path-str 1 31))
(check-equal? (find-definition path-str "module-variable-binding")
`(,path-str 1 79)))
;; Exercise the "make-traversal" scenario described in comments
;; above.
(let ([path-str (path->string (build-path (find-system-path 'temp-dir) "x.rkt"))]
[code-str (~a `(module x racket/base
(require drracket/check-syntax)
"make-traversal"))])
(string->expanded-syntax path-str code-str void)
(check-match (find-definition path-str "make-traversal")
(list (? (path-ends-in? "drracket" "private" "syncheck" "traversals.rkt"))
_ _))))
(define ((path-ends-in? . xs) ps)
(list-prefix? (reverse (map string->path xs))
(reverse (explode-path ps))))
;; These `get-syntax` and `get-expanded-syntax` functions handle where
;; we get the syntax.
;;
;; The special case is when `how` is a path-string. That path doesn't
;; necessarily exist as a file, or the file may be outdated. The path
;; may simply be the syntax-source for a string from an unsaved Emacs
;; buffer. So when we need to get syntax for such a path, we need to
;; get it from our cache -- NOT from a file. (How it got in the cache
;; previously was from some check-syntax.)
;;
;; Things like identifier-binding may tell us to look at such a path,
;; or at a path for a real existing/updated file. This helps sort out
;; the various cases.
(define (get-syntax how path-str k)
(match how
['namespace (file->syntax path-str k)]
[(? path-string? how-path) (if (path-string-equal? path-str how-path)
(path->existing-syntax path-str k)
(file->syntax path-str k))]))
;; For when we use syntax-case* simply for syntax-e equality.
(define (syntax-e-eq? a b)
(eq? (syntax-e a) (syntax-e b)))
(define ((make-eq-sym? sym) stx)
(and (eq? sym (syntax-e stx)) stx))
(define (get-expanded-syntax how path-str k)
(match how
['namespace (file->expanded-syntax path-str k)]
[(? path-string? how-path) (if (path-string-equal? path-str how-path)
(path->existing-expanded-syntax path-str k)
(file->expanded-syntax path-str k))]))
(define (path-string-equal? a b)
(equal? (->path-string a)
(->path-string b)))
(define (->path-string v)
(cond [(path? v) (path->string v)]
[(path-string? v) v]
[else (error 'path-string-equal? "not a path or path-string?" v)]))
|