2007-05-05 19:39:02 -04:00
|
|
|
|
2007-05-11 23:39:22 -04:00
|
|
|
(library (ikarus io input-strings)
|
|
|
|
(export open-input-string)
|
|
|
|
(import
|
|
|
|
(ikarus system $strings)
|
|
|
|
(ikarus system $fx)
|
|
|
|
(ikarus system $pairs)
|
|
|
|
(ikarus system $ports)
|
|
|
|
(ikarus system $io)
|
|
|
|
(except (ikarus) open-input-string))
|
|
|
|
|
|
|
|
(define-syntax message-case
|
|
|
|
(syntax-rules (else)
|
|
|
|
[(_ msg args
|
|
|
|
[(msg-name msg-arg* ...) b b* ...] ...
|
|
|
|
[else else1 else2 ...])
|
|
|
|
(let ([tmsg msg] [targs args])
|
|
|
|
(define-syntax match-and-bind
|
|
|
|
(syntax-rules ()
|
|
|
|
[(__ y () body)
|
|
|
|
(if (null? y)
|
|
|
|
body
|
|
|
|
(error 'message-case "unmatched ~s" (cons tmsg targs)))]
|
|
|
|
[(__ y (a a* (... ...)) body)
|
|
|
|
(if (pair? y)
|
|
|
|
(let ([a (car y)] [d (cdr y)])
|
|
|
|
(match-and-bind d (a* (... ...)) body))
|
|
|
|
(error 'message-case "unmatched ~s" (cons tmsg targs)))]))
|
|
|
|
(case tmsg
|
|
|
|
[(msg-name)
|
|
|
|
(match-and-bind targs (msg-arg* ...) (begin b b* ...))] ...
|
|
|
|
[else else1 else2 ...]))]))
|
2007-05-05 19:39:02 -04:00
|
|
|
|
|
|
|
(define make-input-string-handler
|
|
|
|
(lambda (str)
|
2007-05-17 05:50:01 -04:00
|
|
|
(let ((open? #t) (idx 0) (n (string-length str)))
|
2007-05-05 19:39:02 -04:00
|
|
|
(lambda (msg . args)
|
|
|
|
(message-case msg args
|
|
|
|
[(read-char p)
|
2007-05-17 05:50:01 -04:00
|
|
|
(if ($fx< idx n)
|
|
|
|
(let ([c ($string-ref str idx)])
|
|
|
|
(set! idx ($fxadd1 idx))
|
|
|
|
c)
|
|
|
|
(if open?
|
|
|
|
(eof-object)
|
|
|
|
(error 'read-char "port ~s is closed" p)))]
|
2007-05-05 19:39:02 -04:00
|
|
|
[(peek-char p)
|
2007-05-17 05:50:01 -04:00
|
|
|
(if ($fx< idx n)
|
|
|
|
($string-ref str idx)
|
|
|
|
(if open?
|
|
|
|
(eof-object)
|
|
|
|
(error 'peek-char "port ~s is closed" p)))]
|
2007-05-05 19:39:02 -04:00
|
|
|
[(unread-char c p)
|
2007-05-17 05:50:01 -04:00
|
|
|
(let ([i ($fxsub1 idx)])
|
|
|
|
(if (and ($fx>= i 0)
|
|
|
|
($fx< i n))
|
|
|
|
(set! idx i)
|
2007-05-05 19:39:02 -04:00
|
|
|
(if open?
|
|
|
|
(error 'unread-char "port ~s is closed" p)
|
|
|
|
(error 'unread-char "too many unread-chars"))))]
|
|
|
|
[(port-name p) '*string-port*]
|
|
|
|
[(close-port p)
|
|
|
|
(when open?
|
|
|
|
(set! open? #f))]
|
|
|
|
[else
|
|
|
|
(error 'input-string-handler
|
|
|
|
"message not handled ~s" (cons msg args))])))))
|
|
|
|
|
|
|
|
(define open-input-string
|
|
|
|
(lambda (str)
|
|
|
|
(unless (string? str)
|
|
|
|
(error 'open-input-string "~s is not a string" str))
|
|
|
|
(let ([port (make-input-port
|
|
|
|
(make-input-string-handler str)
|
2007-05-17 05:50:01 -04:00
|
|
|
"")])
|
2007-05-05 19:39:02 -04:00
|
|
|
port)))
|
2007-05-11 23:39:22 -04:00
|
|
|
)
|
2007-05-05 19:39:02 -04:00
|
|
|
|