357 lines
11 KiB
Scheme
357 lines
11 KiB
Scheme
|
|
||
|
;;; WRITER provides display and write.
|
||
|
|
||
|
(let ()
|
||
|
(define char-table ; first nonprintable chars
|
||
|
'#("nul" "soh" "stx" "etx" "eot" "enq" "ack" "bel" "bs" "tab" "newline"
|
||
|
"vt" "ff" "return" "so" "si" "dle" "dc1" "dc2" "dc3" "dc4" "nak"
|
||
|
"syn" "etb" "can" "em" "sub" "esc" "fs" "gs" "rs" "us" "space"))
|
||
|
(define write-character
|
||
|
(lambda (x p m)
|
||
|
(if m
|
||
|
(let ([i ($char->fixnum x)])
|
||
|
(write-char #\# p)
|
||
|
(write-char #\\ p)
|
||
|
(cond
|
||
|
[(fx< i (vector-length char-table))
|
||
|
(write-char* (vector-ref char-table i) p)]
|
||
|
[(fx< i 127)
|
||
|
(write-char x p)]
|
||
|
[(fx= i 127)
|
||
|
(write-char* "del" p)]
|
||
|
[else
|
||
|
(error 'writer "invalid character index ~s" i)]))
|
||
|
(write-char x p))))
|
||
|
(define write-list
|
||
|
(lambda (x p m)
|
||
|
(cond
|
||
|
[(pair? x)
|
||
|
(write-char #\space p)
|
||
|
(writer (car x) p m)
|
||
|
(write-list (cdr x) p m)]
|
||
|
[(not (null? x))
|
||
|
(write-char #\space p)
|
||
|
(write-char #\. p)
|
||
|
(write-char #\space p)
|
||
|
(writer x p m)])))
|
||
|
(define write-vector
|
||
|
(lambda (x p m)
|
||
|
(write-char #\# p)
|
||
|
(write-char #\( p)
|
||
|
(let ([n (vector-length x)])
|
||
|
(when (fx> n 0)
|
||
|
(writer (vector-ref x 0) p m)
|
||
|
(letrec ([f
|
||
|
(lambda (i)
|
||
|
(unless (fx= i n)
|
||
|
(write-char #\space p)
|
||
|
(writer (vector-ref x i) p m)
|
||
|
(f (fxadd1 i))))])
|
||
|
(f 1))))
|
||
|
(write-char #\) p)))
|
||
|
(define write-record
|
||
|
(lambda (x p m)
|
||
|
(write-char #\# p)
|
||
|
(write-char #\[ p)
|
||
|
(writer (record-name x) p m)
|
||
|
(let ([n (record-length x)])
|
||
|
(letrec ([f
|
||
|
(lambda (i)
|
||
|
(unless (fx= i n)
|
||
|
(write-char #\space p)
|
||
|
(writer (record-ref x i) p m)
|
||
|
(f (fxadd1 i))))])
|
||
|
(f 0)))
|
||
|
(write-char #\] p)))
|
||
|
(define initial?
|
||
|
(lambda (c)
|
||
|
(or (letter? c) (special-initial? c))))
|
||
|
(define letter?
|
||
|
(lambda (c)
|
||
|
(or (and ($char<= #\a c) ($char<= c #\z))
|
||
|
(and ($char<= #\A c) ($char<= c #\Z)))))
|
||
|
(define digit?
|
||
|
(lambda (c)
|
||
|
(and ($char<= #\0 c) ($char<= c #\9))))
|
||
|
(define special-initial?
|
||
|
(lambda (x)
|
||
|
(memq x '(#\! #\$ #\% #\& #\* #\/ #\: #\< #\= #\> #\? #\^ #\_ #\~))))
|
||
|
(define subsequent?
|
||
|
(lambda (x)
|
||
|
(or (initial? x)
|
||
|
(digit? x)
|
||
|
(special-subsequent? x))))
|
||
|
(define special-subsequent?
|
||
|
(lambda (x)
|
||
|
(memq x '(#\+ #\- #\. #\@))))
|
||
|
(define subsequent*?
|
||
|
(lambda (str i n)
|
||
|
(or ($fx= i n)
|
||
|
(and (subsequent? ($string-ref str i))
|
||
|
(subsequent*? str ($fxadd1 i) n)))))
|
||
|
(define valid-symbol-string?
|
||
|
(lambda (str)
|
||
|
(or (let ([n ($string-length str)])
|
||
|
(and ($fx>= n 1)
|
||
|
(initial? ($string-ref str 0))
|
||
|
(subsequent*? str 1 n)))
|
||
|
(string=? str "+")
|
||
|
(string=? str "-")
|
||
|
(string=? str "..."))))
|
||
|
(define write-symbol-esc-loop
|
||
|
(lambda (x i n p)
|
||
|
(unless ($fx= i n)
|
||
|
(let ([c ($string-ref x i)])
|
||
|
(when (memq c '(#\\ #\|))
|
||
|
(write-char #\\ p))
|
||
|
(write-char c p))
|
||
|
(write-symbol-esc-loop x ($fxadd1 i) n p))))
|
||
|
(define write-symbol-esc
|
||
|
(lambda (x p)
|
||
|
(write-char #\| p)
|
||
|
(write-symbol-esc-loop x 0 ($string-length x) p)
|
||
|
(write-char #\| p)))
|
||
|
(define write-symbol
|
||
|
(lambda (x p m)
|
||
|
(let ([str (symbol->string x)])
|
||
|
(if m
|
||
|
(if (valid-symbol-string? str)
|
||
|
(write-char* str p)
|
||
|
(write-symbol-esc str p))
|
||
|
(write-char* str p)))))
|
||
|
(define write-gensym
|
||
|
(lambda (x p m)
|
||
|
(cond
|
||
|
[(and m (print-gensym))
|
||
|
(let ([str (symbol->string x)])
|
||
|
(write-char #\# p)
|
||
|
(write-char #\{ p)
|
||
|
(if (valid-symbol-string? str)
|
||
|
(write-char* str p)
|
||
|
(write-symbol-esc str p))
|
||
|
(write-char #\space p)
|
||
|
(write-symbol-esc (gensym->unique-string x) p)
|
||
|
(write-char #\} p))]
|
||
|
[else (write-symbol x p m)])))
|
||
|
(define write-string-escape
|
||
|
(lambda (x p)
|
||
|
(define loop
|
||
|
(lambda (x i n p)
|
||
|
(unless (fx= i n)
|
||
|
(let ([c (string-ref x i)])
|
||
|
(cond
|
||
|
[(or (char= #\" c) (char= #\\ c))
|
||
|
(write-char #\\ p)
|
||
|
(write-char c p)]
|
||
|
[(char= #\tab c)
|
||
|
(write-char #\\ p)
|
||
|
(write-char #\t p)]
|
||
|
[else
|
||
|
(write-char c p)]))
|
||
|
(loop x (fxadd1 i) n p))))
|
||
|
(write-char #\" p)
|
||
|
(loop x 0 (string-length x) p)
|
||
|
(write-char #\" p)))
|
||
|
(define write-string
|
||
|
(lambda (x p m)
|
||
|
(if m
|
||
|
(write-string-escape x p)
|
||
|
(write-char* x p))))
|
||
|
(define write-fixnum
|
||
|
(lambda (x p)
|
||
|
(define loop
|
||
|
(lambda (x p)
|
||
|
(unless (fxzero? x)
|
||
|
(loop (fxquotient x 10) p)
|
||
|
(write-char
|
||
|
($fixnum->char
|
||
|
($fx+ (fxremainder x 10)
|
||
|
($char->fixnum #\0)))
|
||
|
p))))
|
||
|
(cond
|
||
|
[(fxzero? x) (write-char #\0 p)]
|
||
|
[(fx< x 0)
|
||
|
(write-char #\- p)
|
||
|
(if (fx= x -536870912)
|
||
|
(write-char* "536870912" p)
|
||
|
(loop (fx- 0 x) p))]
|
||
|
[else (loop x p)])))
|
||
|
(define write-char*
|
||
|
(lambda (x p)
|
||
|
(define loop
|
||
|
(lambda (x i n p)
|
||
|
(unless (fx= i n)
|
||
|
(write-char (string-ref x i) p)
|
||
|
(loop x (fxadd1 i) n p))))
|
||
|
(loop x 0 (string-length x) p)))
|
||
|
(define macro
|
||
|
(lambda (x)
|
||
|
(define macro-forms
|
||
|
'([quote . "'"]
|
||
|
[quasiquote . "`"]
|
||
|
[unquote . ","]
|
||
|
[unquote-splicing . ",@"]
|
||
|
[syntax . "#'"]
|
||
|
[|#primitive| . "#%"]))
|
||
|
(and (pair? x)
|
||
|
(let ([d ($cdr x)])
|
||
|
(and (pair? d)
|
||
|
(null? ($cdr d))))
|
||
|
(assq ($car x) macro-forms))))
|
||
|
(define writer
|
||
|
(lambda (x p m)
|
||
|
(cond
|
||
|
[(macro x) =>
|
||
|
(lambda (y)
|
||
|
(write-char* (cdr y) p)
|
||
|
(writer (cadr x) p m))]
|
||
|
[(pair? x)
|
||
|
(write-char #\( p)
|
||
|
(writer (car x) p m)
|
||
|
(write-list (cdr x) p m)
|
||
|
(write-char #\) p)]
|
||
|
[(symbol? x)
|
||
|
(if (gensym? x)
|
||
|
(write-gensym x p m)
|
||
|
(write-symbol x p m))]
|
||
|
[(fixnum? x)
|
||
|
(write-fixnum x p)]
|
||
|
[(string? x)
|
||
|
(write-string x p m)]
|
||
|
[(boolean? x)
|
||
|
(write-char* (if x "#t" "#f") p)]
|
||
|
[(char? x)
|
||
|
(write-character x p m)]
|
||
|
[(procedure? x)
|
||
|
(write-char* "#<procedure>" p)]
|
||
|
[(output-port? x)
|
||
|
(write-char* "#<output-port " p)
|
||
|
(writer (output-port-name x) p #t)
|
||
|
(write-char #\> p)]
|
||
|
[(input-port? x)
|
||
|
(write-char* "#<input-port " p)
|
||
|
(writer (input-port-name x) p #t)
|
||
|
(write-char #\> p)]
|
||
|
[(vector? x)
|
||
|
(write-vector x p m)]
|
||
|
[(null? x)
|
||
|
(write-char #\( p)
|
||
|
(write-char #\) p)]
|
||
|
[(eq? x (void))
|
||
|
(write-char* "#<void>" p)]
|
||
|
[(eof-object? x)
|
||
|
(write-char* "#!eof" p)]
|
||
|
[(record? x)
|
||
|
(let ([printer (record-printer x)])
|
||
|
(if (procedure? printer)
|
||
|
(printer x p)
|
||
|
(write-record x p m)))]
|
||
|
[(code? x)
|
||
|
(write-char* "#<code>" p)]
|
||
|
[else
|
||
|
(write-char* "#<unknown>" p)])))
|
||
|
(define generic-writer
|
||
|
(lambda (who)
|
||
|
(lambda (x . p)
|
||
|
(let ([port
|
||
|
(if (null? p)
|
||
|
(current-output-port)
|
||
|
(if (null? (cdr p))
|
||
|
(let ([p (car p)])
|
||
|
(if (output-port? p)
|
||
|
p
|
||
|
(error who "not an output port ~s" p)))
|
||
|
(error who "too many arguments")))])
|
||
|
(writer x port (eq? who 'write))
|
||
|
(flush-output-port port)))))
|
||
|
;;;
|
||
|
(define formatter
|
||
|
(lambda (who p fmt args)
|
||
|
(let f ([i 0] [args args])
|
||
|
(unless (fx= i (string-length fmt))
|
||
|
(let ([c (string-ref fmt i)])
|
||
|
(cond
|
||
|
[(char= c #\~)
|
||
|
(let ([i (fxadd1 i)])
|
||
|
(when (fx= i (string-length fmt))
|
||
|
(error who "invalid ~~ at end of format string ~s" fmt))
|
||
|
(let ([c (string-ref fmt i)])
|
||
|
(cond
|
||
|
[(char= c #\~)
|
||
|
(write-char #\~ p)
|
||
|
(f (fxadd1 i) args)]
|
||
|
[(char= c #\a)
|
||
|
(when (null? args)
|
||
|
(error who "insufficient arguments"))
|
||
|
(display (car args) p)
|
||
|
(f (fxadd1 i) (cdr args))]
|
||
|
[(char= c #\s)
|
||
|
(when (null? args)
|
||
|
(error who "insufficient arguments"))
|
||
|
(write (car args) p)
|
||
|
(f (fxadd1 i) (cdr args))]
|
||
|
[else
|
||
|
(error who "invalid sequence ~~~a" c)])))]
|
||
|
[else
|
||
|
(write-char c p)
|
||
|
(f (fxadd1 i) args)]))))))
|
||
|
|
||
|
(define fprintf
|
||
|
(lambda (port fmt . args)
|
||
|
(unless (output-port? port)
|
||
|
(error 'fprintf "~s is not an output port" port))
|
||
|
(unless (string? fmt)
|
||
|
(error 'fprintf "~s is not a string" fmt))
|
||
|
(formatter 'fprintf port fmt args)))
|
||
|
|
||
|
(define printf
|
||
|
(lambda (fmt . args)
|
||
|
(unless (string? fmt)
|
||
|
(error 'printf "~s is not a string" fmt))
|
||
|
(formatter 'printf (current-output-port) fmt args)))
|
||
|
|
||
|
(define format
|
||
|
(lambda (fmt . args)
|
||
|
(unless (string? fmt)
|
||
|
(error 'format "~s is not a string" fmt))
|
||
|
(let ([p (open-output-string)])
|
||
|
(formatter 'format p fmt args)
|
||
|
(get-output-string p))))
|
||
|
|
||
|
|
||
|
(define print-error
|
||
|
(lambda (who fmt . args)
|
||
|
(unless (string? fmt)
|
||
|
(error 'print-error "~s is not a string" fmt))
|
||
|
(let ([p (standard-error-port)])
|
||
|
(if who
|
||
|
(fprintf p "Error in ~a: " who)
|
||
|
(fprintf p "Error: "))
|
||
|
(formatter 'print-error p fmt args)
|
||
|
(write-char #\. p)
|
||
|
(newline p))))
|
||
|
|
||
|
|
||
|
;;;
|
||
|
($pcb-set! format format)
|
||
|
($pcb-set! printf printf)
|
||
|
($pcb-set! fprintf fprintf)
|
||
|
($pcb-set! display (generic-writer 'display))
|
||
|
($pcb-set! write (generic-writer 'write))
|
||
|
($pcb-set! print-error print-error)
|
||
|
($pcb-set! current-error-handler
|
||
|
(make-parameter
|
||
|
(lambda args
|
||
|
(apply print-error args)
|
||
|
(display "exiting\n")
|
||
|
(flush-output-port)
|
||
|
(exit -100))
|
||
|
(lambda (x)
|
||
|
(if (procedure? x)
|
||
|
x
|
||
|
(error 'current-error-handler "~s is not a procedure" x)))))
|
||
|
($pcb-set! error
|
||
|
(lambda args
|
||
|
(apply (current-error-handler) args))))
|
||
|
|