2014-07-27 22:37:46 -04:00
|
|
|
(define-library (picrin repl)
|
|
|
|
(import (scheme base)
|
|
|
|
(scheme read)
|
|
|
|
(scheme write)
|
2015-06-16 09:51:49 -04:00
|
|
|
(scheme eval)
|
|
|
|
(picrin base))
|
2014-08-30 12:41:12 -04:00
|
|
|
|
2014-09-19 04:14:08 -04:00
|
|
|
(cond-expand
|
|
|
|
((library (picrin readline))
|
|
|
|
(import (picrin readline)
|
|
|
|
(picrin readline history)))
|
|
|
|
(else
|
|
|
|
(begin
|
|
|
|
(define (readline str)
|
2015-05-29 07:43:05 -04:00
|
|
|
(when (tty?)
|
|
|
|
(display str)
|
|
|
|
(flush-output-port))
|
2014-09-19 04:14:08 -04:00
|
|
|
(read-line))
|
|
|
|
(define (add-history str)
|
|
|
|
#f))))
|
2014-07-27 22:37:46 -04:00
|
|
|
|
2015-06-16 13:58:37 -04:00
|
|
|
(define user-env (library-environment (find-library '(picrin user))))
|
|
|
|
|
2015-07-20 06:26:33 -04:00
|
|
|
(define (init-env)
|
2015-06-19 13:34:46 -04:00
|
|
|
(current-library (find-library '(picrin user)))
|
|
|
|
(eval
|
|
|
|
'(import (scheme base)
|
|
|
|
(scheme load)
|
|
|
|
(scheme process-context)
|
|
|
|
(scheme read)
|
|
|
|
(scheme write)
|
|
|
|
(scheme file)
|
|
|
|
(scheme inexact)
|
|
|
|
(scheme cxr)
|
|
|
|
(scheme lazy)
|
|
|
|
(scheme time)
|
|
|
|
(picrin macro))
|
|
|
|
user-env)
|
|
|
|
(current-library (find-library '(picrin repl))))
|
2014-09-19 23:23:52 -04:00
|
|
|
|
2014-08-30 11:36:20 -04:00
|
|
|
(define (repl)
|
2015-07-20 06:26:33 -04:00
|
|
|
(init-env)
|
2014-08-31 12:00:30 -04:00
|
|
|
(let loop ((buf ""))
|
2015-01-07 23:09:09 -05:00
|
|
|
(let ((line (readline (if (equal? buf "") "> " ""))))
|
2014-08-31 12:00:30 -04:00
|
|
|
(if (eof-object? line)
|
|
|
|
(newline) ; exit
|
|
|
|
(let ((str (string-append buf line "\n")))
|
|
|
|
(add-history line)
|
|
|
|
(call/cc
|
|
|
|
(lambda (exit)
|
|
|
|
(with-exception-handler
|
|
|
|
(lambda (condition)
|
2014-09-19 04:14:08 -04:00
|
|
|
(if (error-object? condition)
|
|
|
|
(unless (equal? (error-object-message condition) "unexpected EOF")
|
|
|
|
(display "error: ")
|
|
|
|
(display (error-object-message condition))
|
|
|
|
(newline)
|
|
|
|
(set! str ""))
|
|
|
|
(begin
|
|
|
|
(display "raised: ")
|
|
|
|
(write condition)
|
|
|
|
(newline)
|
|
|
|
(set! str "")))
|
2014-08-31 12:00:30 -04:00
|
|
|
(exit))
|
|
|
|
(lambda ()
|
2014-09-19 04:14:08 -04:00
|
|
|
(call-with-port (open-input-string str)
|
|
|
|
(lambda (port)
|
|
|
|
(let next ((expr (read port)))
|
|
|
|
(unless (eof-object? expr)
|
2015-06-16 13:58:37 -04:00
|
|
|
(write (eval expr user-env))
|
2014-09-19 04:14:08 -04:00
|
|
|
(newline)
|
|
|
|
(set! str "")
|
|
|
|
(next (read port))))))))))
|
2014-08-31 12:00:30 -04:00
|
|
|
(loop str))))))
|
2014-07-27 22:37:46 -04:00
|
|
|
|
|
|
|
(export repl))
|
2014-08-30 10:30:04 -04:00
|
|
|
|