267 lines
7.7 KiB
Scheme
267 lines
7.7 KiB
Scheme
|
; -*- Mode: Scheme; Syntax: Scheme; Package: Scheme; -*-
|
|||
|
; Copyright (c) 1993, 1994 Richard Kelsey and Jonathan Rees. See file COPYING.
|
|||
|
|
|||
|
|
|||
|
; A little Scheme reader.
|
|||
|
|
|||
|
; Nonstandard things used:
|
|||
|
; Ascii stuff: char->ascii, ascii->char, ascii-whitespaces, ascii-limit
|
|||
|
; (for dispatch table; portable definitions in alt/ascii.scm)
|
|||
|
; reverse-list->string -- ok to define as follows:
|
|||
|
; (define (reverse-list->string l n)
|
|||
|
; (list->string (reverse l)))
|
|||
|
; make-immutable! -- ok to define as follows:
|
|||
|
; (define (make-immutable! x) x)
|
|||
|
; signal (only for use by reading-error; easily excised)
|
|||
|
|
|||
|
|
|||
|
(define (read . port-option)
|
|||
|
(let ((port (input-port-option port-option)))
|
|||
|
(let loop ()
|
|||
|
(let ((form (sub-read port)))
|
|||
|
(cond ((not (reader-token? form)) form)
|
|||
|
((eq? form close-paren)
|
|||
|
;; Too many right parens.
|
|||
|
(warn "discarding extraneous right parenthesis")
|
|||
|
(loop))
|
|||
|
(else
|
|||
|
(reading-error port (cdr form))))))))
|
|||
|
|
|||
|
(define (sub-read-carefully port)
|
|||
|
(let ((form (sub-read port)))
|
|||
|
(cond ((eof-object? form)
|
|||
|
(reading-error port "unexpected end of file"))
|
|||
|
((reader-token? form) (reading-error port (cdr form)))
|
|||
|
(else form))))
|
|||
|
|
|||
|
(define reader-token-marker (list 'reader-token))
|
|||
|
(define (make-reader-token message) (cons reader-token-marker message))
|
|||
|
(define (reader-token? form)
|
|||
|
(and (pair? form) (eq? (car form) reader-token-marker)))
|
|||
|
|
|||
|
(define close-paren (make-reader-token "unexpected right parenthesis"))
|
|||
|
(define dot (make-reader-token "unexpected \" . \""))
|
|||
|
|
|||
|
|
|||
|
; Main dispatch
|
|||
|
|
|||
|
(define (sub-read port)
|
|||
|
(let ((c (read-char port)))
|
|||
|
(if (eof-object? c)
|
|||
|
c
|
|||
|
((vector-ref read-dispatch-vector (char->ascii c))
|
|||
|
c port))))
|
|||
|
|
|||
|
(define read-dispatch-vector
|
|||
|
(make-vector ascii-limit
|
|||
|
(lambda (c port)
|
|||
|
(reading-error port "illegal character read" c))))
|
|||
|
|
|||
|
(define read-terminating?-vector
|
|||
|
(make-vector ascii-limit #t))
|
|||
|
|
|||
|
(define (set-standard-syntax! char terminating? reader)
|
|||
|
(vector-set! read-dispatch-vector (char->ascii char) reader)
|
|||
|
(vector-set! read-terminating?-vector (char->ascii char) terminating?))
|
|||
|
|
|||
|
(let ((sub-read-whitespace
|
|||
|
(lambda (c port)
|
|||
|
c ;ignored
|
|||
|
(sub-read port))))
|
|||
|
(for-each (lambda (c)
|
|||
|
(vector-set! read-dispatch-vector c sub-read-whitespace))
|
|||
|
ascii-whitespaces))
|
|||
|
|
|||
|
(let ((sub-read-constituent
|
|||
|
(lambda (c port)
|
|||
|
(parse-token (sub-read-token c port) port))))
|
|||
|
(for-each (lambda (c)
|
|||
|
(set-standard-syntax! c #f sub-read-constituent))
|
|||
|
(string->list
|
|||
|
(string-append "!$%&*+-./0123456789:<=>?@^_~ABCDEFGHIJKLM"
|
|||
|
"NOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"))))
|
|||
|
|
|||
|
; Usual read macros
|
|||
|
|
|||
|
(define (set-standard-read-macro! c terminating? proc)
|
|||
|
(set-standard-syntax! c terminating? proc))
|
|||
|
|
|||
|
(define (sub-read-list c port)
|
|||
|
(let ((form (sub-read port)))
|
|||
|
(cond ((eof-object? form)
|
|||
|
(reading-error port
|
|||
|
"end of file inside list -- unbalanced parentheses"))
|
|||
|
((eq? form close-paren) '())
|
|||
|
((eq? form dot)
|
|||
|
(let* ((last-form (sub-read-carefully port))
|
|||
|
(another-form (sub-read port)))
|
|||
|
(cond ((eq? another-form close-paren) last-form)
|
|||
|
(else
|
|||
|
(reading-error port
|
|||
|
"randomness after form after dot"
|
|||
|
another-form)))))
|
|||
|
(else (cons form (sub-read-list c port))))))
|
|||
|
|
|||
|
(set-standard-read-macro! #\( #t sub-read-list)
|
|||
|
|
|||
|
(set-standard-read-macro! #\) #t
|
|||
|
(lambda (c port)
|
|||
|
c port
|
|||
|
close-paren))
|
|||
|
|
|||
|
(set-standard-read-macro! #\' #t
|
|||
|
(lambda (c port)
|
|||
|
c
|
|||
|
(list 'quote (sub-read-carefully port))))
|
|||
|
|
|||
|
(set-standard-read-macro! #\` #t
|
|||
|
(lambda (c port)
|
|||
|
c
|
|||
|
(list 'quasiquote (sub-read-carefully port))))
|
|||
|
|
|||
|
(set-standard-read-macro! #\, #t
|
|||
|
(lambda (c port)
|
|||
|
c
|
|||
|
(let* ((next (peek-char port))
|
|||
|
;; DO NOT beta-reduce!
|
|||
|
(keyword (cond ((eof-object? next)
|
|||
|
(reading-error port "end of file after ,"))
|
|||
|
((char=? next #\@)
|
|||
|
(read-char port)
|
|||
|
'unquote-splicing)
|
|||
|
(else 'unquote))))
|
|||
|
(list keyword
|
|||
|
(sub-read-carefully port)))))
|
|||
|
|
|||
|
(set-standard-read-macro! #\" #t
|
|||
|
(lambda (c port)
|
|||
|
c ;ignored
|
|||
|
(let loop ((l '()) (i 0))
|
|||
|
(let ((c (read-char port)))
|
|||
|
(cond ((eof-object? c)
|
|||
|
(reading-error port "end of file within a string"))
|
|||
|
((char=? c #\\)
|
|||
|
(let ((c (read-char port)))
|
|||
|
(cond ((eof-object? c)
|
|||
|
(reading-error port "end of file within a string"))
|
|||
|
((or (char=? c #\\) (char=? c #\"))
|
|||
|
(loop (cons c l) (+ i 1)))
|
|||
|
(else
|
|||
|
(reading-error port
|
|||
|
"invalid escaped character in string"
|
|||
|
c)))))
|
|||
|
((char=? c #\")
|
|||
|
(reverse-list->string l i))
|
|||
|
(else
|
|||
|
(loop (cons c l) (+ i 1))))))))
|
|||
|
|
|||
|
(set-standard-read-macro! #\; #t
|
|||
|
(lambda (c port)
|
|||
|
c ;ignored
|
|||
|
(gobble-line port)
|
|||
|
(sub-read port)))
|
|||
|
|
|||
|
(define (gobble-line port)
|
|||
|
(let loop ()
|
|||
|
(let ((c (read-char port)))
|
|||
|
(cond ((eof-object? c) c)
|
|||
|
((char=? c #\newline) #f)
|
|||
|
(else (loop))))))
|
|||
|
|
|||
|
(define *sharp-macros* '())
|
|||
|
|
|||
|
(define (define-sharp-macro c proc)
|
|||
|
(set! *sharp-macros* (cons (cons c proc) *sharp-macros*)))
|
|||
|
|
|||
|
(set-standard-read-macro! #\# #f
|
|||
|
(lambda (c port)
|
|||
|
c ;ignored
|
|||
|
(let* ((c (peek-char port))
|
|||
|
(c (if (eof-object? c)
|
|||
|
(reading-error port "end of file after #")
|
|||
|
(char-downcase c)))
|
|||
|
(probe (assq c *sharp-macros*)))
|
|||
|
(if probe
|
|||
|
((cdr probe) c port)
|
|||
|
(reading-error port "unknown # syntax" c)))))
|
|||
|
|
|||
|
(define-sharp-macro #\f
|
|||
|
(lambda (c port) (read-char port) #f))
|
|||
|
|
|||
|
(define-sharp-macro #\t
|
|||
|
(lambda (c port) (read-char port) #t))
|
|||
|
|
|||
|
(define-sharp-macro #\\
|
|||
|
(lambda (c port)
|
|||
|
(read-char port)
|
|||
|
(let ((c (peek-char port)))
|
|||
|
(cond ((eof-object? c)
|
|||
|
(reading-error port "end of file after #\\"))
|
|||
|
((char-alphabetic? c)
|
|||
|
(let ((name (sub-read-carefully port)))
|
|||
|
(cond ((= (string-length (symbol->string name)) 1)
|
|||
|
c)
|
|||
|
((assq name '((space #\space)
|
|||
|
(newline #\newline)))
|
|||
|
=> cadr)
|
|||
|
(else
|
|||
|
(reading-error port "unknown #\\ name" name)))))
|
|||
|
(else
|
|||
|
(read-char port))))))
|
|||
|
|
|||
|
(define-sharp-macro #\(
|
|||
|
(lambda (c port)
|
|||
|
(read-char port)
|
|||
|
(list->vector (sub-read-list c port))))
|
|||
|
|
|||
|
(let ((number-sharp-macro
|
|||
|
(lambda (c port)
|
|||
|
(let ((string (sub-read-token #\# port)))
|
|||
|
(or (string->number string)
|
|||
|
(reading-error port "unsupported number syntax" string))))))
|
|||
|
(for-each (lambda (c)
|
|||
|
(define-sharp-macro c number-sharp-macro))
|
|||
|
'(#\b #\o #\d #\x #\i #\e)))
|
|||
|
|
|||
|
; Tokens
|
|||
|
|
|||
|
(define (sub-read-token c port)
|
|||
|
(let loop ((l (list (preferred-case c))) (n 1))
|
|||
|
(let ((c (peek-char port)))
|
|||
|
(cond ((or (eof-object? c)
|
|||
|
(vector-ref read-terminating?-vector (char->ascii c)))
|
|||
|
(reverse-list->string l n))
|
|||
|
(else
|
|||
|
(loop (cons (preferred-case (read-char port)) l)
|
|||
|
(+ n 1)))))))
|
|||
|
|
|||
|
(define (parse-token string port)
|
|||
|
(if (let ((c (string-ref string 0)))
|
|||
|
(or (char-numeric? c) (char=? c #\+) (char=? c #\-) (char=? c #\.)))
|
|||
|
(cond ((string->number string))
|
|||
|
((member string strange-symbol-names)
|
|||
|
(string->symbol (make-immutable! string)))
|
|||
|
((string=? string ".")
|
|||
|
dot)
|
|||
|
(else
|
|||
|
(reading-error port "unsupported number syntax" string)))
|
|||
|
(string->symbol (make-immutable! string))))
|
|||
|
|
|||
|
(define strange-symbol-names
|
|||
|
'("+" "-" "..."
|
|||
|
"1+" "-1+" ;Only for S&ICP support
|
|||
|
"->" ;Only for JAR's thesis
|
|||
|
))
|
|||
|
|
|||
|
(define preferred-case
|
|||
|
(if (char=? (string-ref (symbol->string 't) 0) #\T)
|
|||
|
char-upcase
|
|||
|
char-downcase))
|
|||
|
|
|||
|
|
|||
|
; Reader errors
|
|||
|
|
|||
|
(define (reading-error port message . irritants)
|
|||
|
(apply signal 'read-error message
|
|||
|
(append irritants (list port))))
|