2006-12-03 09:17:28 -05:00
|
|
|
#|procedure:new-cafe
|
|
|
|
synopsis:
|
|
|
|
(new-cafe [eval])
|
|
|
|
description:
|
|
|
|
The procedure new-cafe starts a new read-eval-print loop inside
|
|
|
|
the current cafe (if one exists). It prompts the user for an
|
|
|
|
expression, evaluates it, prints the result back, and repeats the
|
|
|
|
process. If new-cafe is called with an argument, eval, then that
|
|
|
|
argument must be a procedure that takes a single argument. The
|
|
|
|
eval procedure will be used to evaluate the expressions.
|
|
|
|
|
|
|
|
Every time a new cafe is started, the prompt is changed to reflect
|
|
|
|
the depth of the current cafe (i.e. how many eof objects is takes
|
|
|
|
to exit the outermost cafe).
|
|
|
|
|
|
|
|
Input and output performed by the cafe can be changed by the
|
|
|
|
console-input-port and console-output-port parameters.
|
|
|
|
|
|
|
|
If an error occurs during reading, evaluating, or printing an
|
|
|
|
expression, then the error is printed to the error-port and the
|
|
|
|
operations of the cafe resume as normal.|#
|
|
|
|
#|FIXME:new-cafe
|
|
|
|
Be specific about what the error-port is |#
|
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
|
|
|
|