define-module for elisp special modules
[bpt/guile.git] / module / ice-9 / buffered-input.scm
CommitLineData
9155e458
NJ
1;;;; buffered-input.scm --- construct a port from a buffered input reader
2;;;;
fe78af41 3;;;; Copyright (C) 2001, 2006, 2010 Free Software Foundation, Inc.
9155e458 4;;;;
73be1d9e
MV
5;;;; This library is free software; you can redistribute it and/or
6;;;; modify it under the terms of the GNU Lesser General Public
7;;;; License as published by the Free Software Foundation; either
53befeb7 8;;;; version 3 of the License, or (at your option) any later version.
9155e458 9;;;;
73be1d9e 10;;;; This library is distributed in the hope that it will be useful,
9155e458 11;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
12;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13;;;; Lesser General Public License for more details.
9155e458 14;;;;
73be1d9e
MV
15;;;; You should have received a copy of the GNU Lesser General Public
16;;;; License along with this library; if not, write to the Free Software
92205699 17;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
9155e458
NJ
18
19(define-module (ice-9 buffered-input)
451d273a
NJ
20 #:export (make-buffered-input-port
21 make-line-buffered-input-port
9155e458
NJ
22 set-buffered-input-continuation?!))
23
24;; @code{buffered-input-continuation?} is a property of the ports
25;; created by @code{make-line-buffered-input-port} that stores the
26;; read continuation flag for each such port.
27(define buffered-input-continuation? (make-object-property))
28
29(define (set-buffered-input-continuation?! port val)
30 "Set the read continuation flag for @var{port} to @var{val}.
31
451d273a
NJ
32See @code{make-buffered-input-port} for the meaning and use of this
33flag."
9155e458
NJ
34 (set! (buffered-input-continuation? port) val))
35
451d273a 36(define (make-buffered-input-port reader)
9155e458
NJ
37 "Construct a line-buffered input port from the specified @var{reader}.
38@var{reader} should be a procedure of one argument that somehow reads
451d273a 39a chunk of input and returns it as a string.
9155e458 40
451d273a
NJ
41The port created by @code{make-buffered-input-port} does @emph{not}
42interpolate any additional characters between the strings returned by
43@var{reader}.
9155e458
NJ
44
45@var{reader} should take a boolean @var{continuation?} argument.
46@var{continuation?} indicates whether @var{reader} is being called to
47start a logically new read operation (in which case
48@var{continuation?} is @code{#f}) or to continue a read operation for
49which some input has already been read (in which case
50@var{continuation?} is @code{#t}). Some @var{reader} implementations
51use the @var{continuation?} argument to determine what prompt to
52display to the user.
53
54The new/continuation distinction is largely an application-level
451d273a
NJ
55concept: @code{set-buffered-input-continuation?!} allows an
56application to specify when a read operation is considered to be new.
57But note that if there is non-whitespace data already buffered in the
58port when a new read operation starts, this data will be read before
59the first call to @var{reader}, and so @var{reader} will be called
60with @var{continuation?} set to @code{#t}."
9155e458 61 (let ((read-string "")
fe78af41 62 (string-index 0))
9155e458
NJ
63 (letrec ((get-character
64 (lambda ()
fe78af41
AW
65 (if (< string-index (string-length read-string))
66 ;; Read a char.
67 (let ((res (string-ref read-string string-index)))
68 (set! string-index (+ 1 string-index))
69 (if (not (char-whitespace? res))
70 (set! (buffered-input-continuation? port) #t))
71 res)
72 ;; Fill the buffer.
73 (let ((x (reader (buffered-input-continuation? port))))
74 (cond
75 ((eof-object? x)
76 ;; Don't buffer the EOF object.
77 x)
78 (else
79 (set! read-string x)
80 (set! string-index 0)
81 (get-character)))))))
34010f56
NJ
82 (input-waiting
83 (lambda ()
fe78af41 84 (- (string-length read-string) string-index)))
9155e458 85 (port #f))
34010f56 86 (set! port (make-soft-port (vector #f #f #f get-character #f input-waiting) "r"))
9155e458
NJ
87 (set! (buffered-input-continuation? port) #f)
88 port)))
89
451d273a
NJ
90(define (make-line-buffered-input-port reader)
91 "Construct a line-buffered input port from the specified @var{reader}.
92@var{reader} should be a procedure of one argument that somehow reads
93a line of input and returns it as a string @emph{without} the
94terminating newline character.
95
96The port created by @code{make-line-buffered-input-port} automatically
97interpolates a newline character after each string returned by
98@var{reader}.
99
100@var{reader} should take a boolean @var{continuation?} argument. For
101the meaning and use of this argument, see
102@code{make-buffered-input-port}."
103 (make-buffered-input-port (lambda (continuation?)
104 (let ((str (reader continuation?)))
105 (if (eof-object? str)
106 str
107 (string-append str "\n"))))))
108
9155e458 109;;; buffered-input.scm ends here