add `define-read-functions`
parent
d75d82149e
commit
6d1ae97db4
@ -0,0 +1,6 @@
|
||||
#lang racket
|
||||
|
||||
(read-accept-reader #t)
|
||||
(call-with-input-file "bf-hash.rkt" read)
|
||||
|
||||
(syntax->datum (call-with-input-file "bf-hash.rkt" (curry read-syntax #f)))
|
@ -0,0 +1,34 @@
|
||||
#lang racket/base
|
||||
(require (for-syntax racket/base) syntax/strip-context)
|
||||
(provide define-read-functions)
|
||||
|
||||
;; `define-read-functions` simplifies support for the standard reading API,
|
||||
;; which asks for `read` and `read-syntax`.
|
||||
;; in general, `read` is just the datum from the result of `read-syntax`.
|
||||
|
||||
(define-syntax-rule (define-read-functions (PATH PORT) BODY ...)
|
||||
(begin
|
||||
|
||||
(provide read read-syntax)
|
||||
|
||||
(define (use-site-read-function PATH PORT)
|
||||
BODY ...) ; don't care whether this produces datum or syntax
|
||||
|
||||
(define (read-syntax path port)
|
||||
;; because `read-syntax` must produce syntax
|
||||
;; coerce a datum result to syntax if needed (à la `with-syntax`)
|
||||
(define result-syntax (let ([output (use-site-read-function path port)])
|
||||
(if (syntax? output)
|
||||
output
|
||||
(datum->syntax #f output))))
|
||||
;; because `read-syntax` must produce syntax without context
|
||||
;; see http://docs.racket-lang.org/guide/hash-lang_reader.html
|
||||
;; "a `read-syntax` function should return a syntax object with no lexical context"
|
||||
(strip-context result-syntax))
|
||||
|
||||
(define (read port)
|
||||
; because `read` must produce a datum
|
||||
(let ([output (use-site-read-function #f port)])
|
||||
(if (syntax? output)
|
||||
(syntax->datum output)
|
||||
output)))))
|
Loading…
Reference in New Issue