2006-11-23 19:33:45 -05:00
|
|
|
(let ()
|
|
|
|
(define with-error-handler
|
|
|
|
(lambda (p thunk)
|
2006-12-02 06:26:05 -05:00
|
|
|
(let ([old-error-handler (error-handler)])
|
2006-11-23 19:33:45 -05:00
|
|
|
(dynamic-wind
|
|
|
|
(lambda ()
|
2006-12-02 06:26:05 -05:00
|
|
|
(error-handler
|
2006-11-23 19:33:45 -05:00
|
|
|
(lambda args
|
2006-12-02 06:26:05 -05:00
|
|
|
(error-handler old-error-handler)
|
2006-11-23 19:33:45 -05:00
|
|
|
(apply p args)
|
|
|
|
(apply error args))))
|
|
|
|
thunk
|
|
|
|
(lambda ()
|
2006-12-02 06:26:05 -05:00
|
|
|
(error-handler old-error-handler))))))
|
2006-11-23 19:33:45 -05:00
|
|
|
|
|
|
|
(define eval-depth 0)
|
|
|
|
|
|
|
|
(define display-prompt
|
|
|
|
(lambda (i)
|
|
|
|
(if (fx= i eval-depth)
|
|
|
|
(display " " (console-output-port))
|
|
|
|
(begin
|
|
|
|
(display ">" (console-output-port))
|
|
|
|
(display-prompt (fx+ i 1))))))
|
|
|
|
|
|
|
|
(define wait
|
|
|
|
(lambda (eval escape-k)
|
|
|
|
(call/cc
|
|
|
|
(lambda (k)
|
|
|
|
(with-error-handler
|
|
|
|
(lambda args
|
|
|
|
(reset-input-port! (console-input-port))
|
|
|
|
(apply print-error args)
|
|
|
|
(k (void)))
|
|
|
|
(lambda ()
|
|
|
|
(display-prompt 0)
|
|
|
|
(let ([x (read (console-input-port))])
|
|
|
|
(cond
|
|
|
|
[(eof-object? x)
|
|
|
|
(newline (console-output-port))
|
|
|
|
(escape-k (void))]
|
|
|
|
[else
|
|
|
|
(call-with-values
|
|
|
|
(lambda () (eval x))
|
|
|
|
(lambda v*
|
|
|
|
(unless (andmap (lambda (v) (eq? v (void))) v*)
|
|
|
|
(for-each
|
|
|
|
(lambda (v)
|
|
|
|
(write v (console-output-port))
|
|
|
|
(newline (console-output-port)))
|
|
|
|
v*))))]))))))
|
|
|
|
(wait eval escape-k)))
|
|
|
|
|
2006-11-23 19:40:06 -05:00
|
|
|
(define new-cafe
|
|
|
|
(lambda (eval)
|
|
|
|
(dynamic-wind
|
|
|
|
(lambda () (set! eval-depth (fxadd1 eval-depth)))
|
|
|
|
(lambda ()
|
|
|
|
(call/cc
|
|
|
|
(lambda (k)
|
|
|
|
(wait eval k))))
|
|
|
|
(lambda () (set! eval-depth (fxsub1 eval-depth))))))
|
|
|
|
|
|
|
|
(primitive-set! 'new-cafe
|
|
|
|
(case-lambda
|
2006-11-23 19:44:29 -05:00
|
|
|
[() (new-cafe eval)]
|
2006-11-23 19:40:06 -05:00
|
|
|
[(p)
|
|
|
|
(unless (procedure? p)
|
|
|
|
(error 'new-cafe "~s is not a procedure" p))
|
|
|
|
(new-cafe p)]))
|
|
|
|
)
|
2006-11-23 19:33:45 -05:00
|
|
|
|