(Uniform Arrays): Added a FIXME warning
[bpt/guile.git] / doc / ref / scheme-io.texi
CommitLineData
2da09c3f
MV
1@c -*-texinfo-*-
2@c This is part of the GNU Guile Reference Manual.
3@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004
4@c Free Software Foundation, Inc.
5@c See the file guile.texi for copying conditions.
6
a0e07ba4
NJ
7@page
8@node Input and Output
9@chapter Input and Output
10
11@menu
12* Ports:: The idea of the port abstraction.
13* Reading:: Procedures for reading from a port.
14* Writing:: Procedures for writing to a port.
15* Closing:: Procedures to close a port.
16* Random Access:: Moving around a random access port.
17* Line/Delimited:: Read and write lines or delimited text.
18* Block Reading and Writing:: Reading and writing blocks of text.
19* Default Ports:: Defaults for input, output and errors.
20* Port Types:: Types of port and how to make them.
9401323e 21* I/O Extensions:: Using and extending ports in C.
a0e07ba4
NJ
22@end menu
23
24
25@node Ports
26@section Ports
27
a0e07ba4 28Sequential input/output in Scheme is represented by operations on a
7d5b2929
KR
29@dfn{port}. This chapter explains the operations that Guile provides
30for working with ports.
31
32Ports are created by opening, for instance @code{open-file} for a file
33(@pxref{File Ports}). Characters can be read from an input port and
34written to an output port, or both on an input/output port. A port
35can be closed (@pxref{Closing}) when no longer required, after which
36any attempt to read or write is an error.
a0e07ba4
NJ
37
38The formal definition of a port is very generic: an input port is
7d5b2929
KR
39simply ``an object which can deliver characters on demand,'' and an
40output port is ``an object which can accept characters.'' Because
41this definition is so loose, it is easy to write functions that
42simulate ports in software. @dfn{Soft ports} and @dfn{string ports}
43are two interesting and powerful examples of this technique.
44(@pxref{Soft Ports}, and @ref{String Ports}.)
45
46Ports are garbage collected in the usual way (@pxref{Memory
47Management}), and will be closed at that time if not already closed.
48In this case any errors occuring in the close will not be reported.
49Usually a program will want to explicitly close so as to be sure all
50its operations have been successful. Of course if a program has
51abandoned something due to an error or other condition then closing
52problems are probably not of interest.
53
54It is strongly recommended that file ports be closed explicitly when
55no longer required. Most systems have limits on how many files can be
56open, both on a per-process and a system-wide basis. A program that
57uses many files should take care not to hit those limits. The same
58applies to similar system resources such as pipes and sockets.
59
60Note that automatic garbage collection is triggered only by memory
61consumption, not by file or other resource usage, so a program cannot
62rely on that to keep it away from system limits. An explicit call to
63@code{gc} can of course be relied on to pick up unreferenced ports.
64If program flow makes it hard to be certain when to close then this
65may be an acceptable way to control resource usage.
a0e07ba4
NJ
66
67@rnindex input-port?
8f85c0c6
NJ
68@deffn {Scheme Procedure} input-port? x
69@deffnx {C Function} scm_input_port_p (x)
a0e07ba4
NJ
70Return @code{#t} if @var{x} is an input port, otherwise return
71@code{#f}. Any object satisfying this predicate also satisfies
72@code{port?}.
73@end deffn
74
75@rnindex output-port?
8f85c0c6
NJ
76@deffn {Scheme Procedure} output-port? x
77@deffnx {C Function} scm_output_port_p (x)
a0e07ba4
NJ
78Return @code{#t} if @var{x} is an output port, otherwise return
79@code{#f}. Any object satisfying this predicate also satisfies
80@code{port?}.
81@end deffn
82
8f85c0c6
NJ
83@deffn {Scheme Procedure} port? x
84@deffnx {C Function} scm_port_p (x)
a0e07ba4
NJ
85Return a boolean indicating whether @var{x} is a port.
86Equivalent to @code{(or (input-port? @var{x}) (output-port?
87@var{x}))}.
88@end deffn
89
90
91@node Reading
92@section Reading
93
94[Generic procedures for reading from ports.]
95
96@rnindex eof-object?
8f85c0c6
NJ
97@deffn {Scheme Procedure} eof-object? x
98@deffnx {C Function} scm_eof_object_p (x)
a0e07ba4
NJ
99Return @code{#t} if @var{x} is an end-of-file object; otherwise
100return @code{#f}.
101@end deffn
102
103@rnindex char-ready?
8f85c0c6
NJ
104@deffn {Scheme Procedure} char-ready? [port]
105@deffnx {C Function} scm_char_ready_p (port)
a0e07ba4
NJ
106Return @code{#t} if a character is ready on input @var{port}
107and return @code{#f} otherwise. If @code{char-ready?} returns
108@code{#t} then the next @code{read-char} operation on
109@var{port} is guaranteed not to hang. If @var{port} is a file
110port at end of file then @code{char-ready?} returns @code{#t}.
111@footnote{@code{char-ready?} exists to make it possible for a
112program to accept characters from interactive ports without
113getting stuck waiting for input. Any input editors associated
114with such ports must make sure that characters whose existence
115has been asserted by @code{char-ready?} cannot be rubbed out.
116If @code{char-ready?} were to return @code{#f} at end of file,
117a port at end of file would be indistinguishable from an
118interactive port that has no ready characters.}
119@end deffn
120
5a90a263 121@rnindex read-char
8f85c0c6
NJ
122@deffn {Scheme Procedure} read-char [port]
123@deffnx {C Function} scm_read_char (port)
a0e07ba4
NJ
124Return the next character available from @var{port}, updating
125@var{port} to point to the following character. If no more
126characters are available, the end-of-file object is returned.
127@end deffn
128
eee36f21
KR
129@deftypefn {C Function} size_t scm_c_read (SCM port, void *buffer, size_t size)
130Read up to @var{size} bytes from @var{port} and store them in
131@var{buffer}. The return value is the number of bytes actually read,
132which can be less than @var{size} if end-of-file has been reached.
133
134Note that this function does not update @code{port-line} and
135@code{port-column} below.
136@end deftypefn
137
5a90a263 138@rnindex peek-char
8f85c0c6
NJ
139@deffn {Scheme Procedure} peek-char [port]
140@deffnx {C Function} scm_peek_char (port)
a0e07ba4
NJ
141Return the next character available from @var{port},
142@emph{without} updating @var{port} to point to the following
143character. If no more characters are available, the
144end-of-file object is returned.@footnote{The value returned by
145a call to @code{peek-char} is the same as the value that would
146have been returned by a call to @code{read-char} on the same
147port. The only difference is that the very next call to
148@code{read-char} or @code{peek-char} on that @var{port} will
149return the value returned by the preceding call to
150@code{peek-char}. In particular, a call to @code{peek-char} on
151an interactive port will hang waiting for input whenever a call
152to @code{read-char} would have hung.}
153@end deffn
154
8f85c0c6
NJ
155@deffn {Scheme Procedure} unread-char cobj [port]
156@deffnx {C Function} scm_unread_char (cobj, port)
a0e07ba4
NJ
157Place @var{char} in @var{port} so that it will be read by the
158next read operation. If called multiple times, the unread characters
159will be read again in last-in first-out order. If @var{port} is
160not supplied, the current input port is used.
161@end deffn
162
8f85c0c6
NJ
163@deffn {Scheme Procedure} unread-string str port
164@deffnx {C Function} scm_unread_string (str, port)
fef68e7f
RB
165Place the string @var{str} in @var{port} so that its characters will
166be read from left-to-right as the next characters from @var{port}
167during subsequent read operations. If called multiple times, the
a0e07ba4
NJ
168unread characters will be read again in last-in first-out order. If
169@var{port} is not supplied, the current-input-port is used.
170@end deffn
171
8f85c0c6
NJ
172@deffn {Scheme Procedure} drain-input port
173@deffnx {C Function} scm_drain_input (port)
9401323e
NJ
174This procedure clears a port's input buffers, similar
175to the way that force-output clears the output buffer. The
176contents of the buffers are returned as a single string, e.g.,
177
178@lisp
179(define p (open-input-file ...))
180(drain-input p) => empty string, nothing buffered yet.
181(unread-char (read-char p) p)
182(drain-input p) => initial chars from p, up to the buffer size.
183@end lisp
184
185Draining the buffers may be useful for cleanly finishing
186buffered I/O so that the file descriptor can be used directly
187for further input.
a0e07ba4
NJ
188@end deffn
189
8f85c0c6
NJ
190@deffn {Scheme Procedure} port-column port
191@deffnx {Scheme Procedure} port-line port
192@deffnx {C Function} scm_port_column (port)
193@deffnx {C Function} scm_port_line (port)
eaa032c3
KR
194Return the current column number or line number of @var{port}.
195If the number is
a0e07ba4 196unknown, the result is #f. Otherwise, the result is a 0-origin integer
5a90a263 197- i.e.@: the first character of the first line is line 0, column 0.
a0e07ba4
NJ
198(However, when you display a file position, for example in an error
199message, we recommend you add 1 to get 1-origin integers. This is
200because lines and column numbers traditionally start with 1, and that is
201what non-programmers will find most natural.)
202@end deffn
203
8f85c0c6
NJ
204@deffn {Scheme Procedure} set-port-column! port column
205@deffnx {Scheme Procedure} set-port-line! port line
206@deffnx {C Function} scm_set_port_column_x (port, column)
207@deffnx {C Function} scm_set_port_line_x (port, line)
eaa032c3 208Set the current column or line number of @var{port}.
a0e07ba4
NJ
209@end deffn
210
211@node Writing
212@section Writing
213
214[Generic procedures for writing to ports.]
215
8f85c0c6
NJ
216@deffn {Scheme Procedure} get-print-state port
217@deffnx {C Function} scm_get_print_state (port)
5a90a263 218Return the print state of the port @var{port}. If @var{port}
a0e07ba4
NJ
219has no associated print state, @code{#f} is returned.
220@end deffn
221
bb6847e8
KR
222@rnindex write
223@deffn {Scheme Procedure} write obj [port]
224Send a representation of @var{obj} to @var{port} or to the current
225output port if not given.
226
227The output is designed to be machine readable, and can be read back
228with @code{read} (@pxref{Reading}). Strings are printed in
229doublequotes, with escapes if necessary, and characters are printed in
230@samp{#\} notation.
231@end deffn
232
9eb96786 233@rnindex display
8f85c0c6 234@deffn {Scheme Procedure} display obj [port]
bb6847e8
KR
235Send a representation of @var{obj} to @var{port} or to the current
236output port if not given.
237
238The output is designed for human readability, it differs from
239@code{write} in that strings are printed without doublequotes and
240escapes, and characters are printed as per @code{write-char}, not in
241@samp{#\} form.
9eb96786
TTN
242@end deffn
243
a0e07ba4 244@rnindex newline
8f85c0c6
NJ
245@deffn {Scheme Procedure} newline [port]
246@deffnx {C Function} scm_newline (port)
247Send a newline to @var{port}.
248If @var{port} is omitted, send to the current output port.
a0e07ba4
NJ
249@end deffn
250
8f85c0c6
NJ
251@deffn {Scheme Procedure} port-with-print-state port pstate
252@deffnx {C Function} scm_port_with_print_state (port, pstate)
a0e07ba4
NJ
253Create a new port which behaves like @var{port}, but with an
254included print state @var{pstate}.
255@end deffn
256
8f85c0c6
NJ
257@deffn {Scheme Procedure} print-options-interface [setting]
258@deffnx {C Function} scm_print_options (setting)
a0e07ba4
NJ
259Option interface for the print options. Instead of using
260this procedure directly, use the procedures
261@code{print-enable}, @code{print-disable}, @code{print-set!}
262and @code{print-options}.
263@end deffn
264
8f85c0c6
NJ
265@deffn {Scheme Procedure} simple-format destination message . args
266@deffnx {C Function} scm_simple_format (destination, message, args)
a0e07ba4
NJ
267Write @var{message} to @var{destination}, defaulting to
268the current output port.
269@var{message} can contain @code{~A} (was @code{%s}) and
270@code{~S} (was @code{%S}) escapes. When printed,
271the escapes are replaced with corresponding members of
272@var{ARGS}:
273@code{~A} formats using @code{display} and @code{~S} formats
274using @code{write}.
275If @var{destination} is @code{#t}, then use the current output
276port, if @var{destination} is @code{#f}, then return a string
277containing the formatted text. Does not add a trailing newline.
278@end deffn
279
280@rnindex write-char
8f85c0c6
NJ
281@deffn {Scheme Procedure} write-char chr [port]
282@deffnx {C Function} scm_write_char (chr, port)
a0e07ba4
NJ
283Send character @var{chr} to @var{port}.
284@end deffn
285
eee36f21
KR
286@deftypefn {C Function} void scm_c_write (SCM port, const void *buffer, size_t size)
287Write @var{size} bytes at @var{buffer} to @var{port}.
288
289Note that this function does not update @code{port-line} and
290@code{port-column} (@pxref{Reading}).
291@end deftypefn
292
a0e07ba4 293@findex fflush
8f85c0c6
NJ
294@deffn {Scheme Procedure} force-output [port]
295@deffnx {C Function} scm_force_output (port)
a0e07ba4
NJ
296Flush the specified output port, or the current output port if @var{port}
297is omitted. The current output buffer contents are passed to the
298underlying port implementation (e.g., in the case of fports, the
299data will be written to the file and the output buffer will be cleared.)
300It has no effect on an unbuffered port.
301
302The return value is unspecified.
303@end deffn
304
8f85c0c6
NJ
305@deffn {Scheme Procedure} flush-all-ports
306@deffnx {C Function} scm_flush_all_ports ()
a0e07ba4
NJ
307Equivalent to calling @code{force-output} on
308all open output ports. The return value is unspecified.
309@end deffn
310
311
312@node Closing
313@section Closing
314
8f85c0c6
NJ
315@deffn {Scheme Procedure} close-port port
316@deffnx {C Function} scm_close_port (port)
a0e07ba4
NJ
317Close the specified port object. Return @code{#t} if it
318successfully closes a port or @code{#f} if it was already
319closed. An exception may be raised if an error occurs, for
320example when flushing buffered output. See also @ref{Ports and
321File Descriptors, close}, for a procedure which can close file
322descriptors.
323@end deffn
324
8f85c0c6 325@deffn {Scheme Procedure} close-input-port port
2288712b 326@deffnx {Scheme Procedure} close-output-port port
8f85c0c6 327@deffnx {C Function} scm_close_input_port (port)
8f85c0c6 328@deffnx {C Function} scm_close_output_port (port)
2288712b
KR
329@rnindex close-input-port
330@rnindex close-output-port
331Close the specified input or output @var{port}. An exception may be
332raised if an error occurs while closing. If @var{port} is already
333closed, nothing is done. The return value is unspecified.
a0e07ba4
NJ
334
335See also @ref{Ports and File Descriptors, close}, for a procedure
336which can close file descriptors.
337@end deffn
338
8f85c0c6
NJ
339@deffn {Scheme Procedure} port-closed? port
340@deffnx {C Function} scm_port_closed_p (port)
a0e07ba4
NJ
341Return @code{#t} if @var{port} is closed or @code{#f} if it is
342open.
343@end deffn
344
345
346@node Random Access
347@section Random Access
348
8f85c0c6
NJ
349@deffn {Scheme Procedure} seek fd_port offset whence
350@deffnx {C Function} scm_seek (fd_port, offset, whence)
a0e07ba4
NJ
351Sets the current position of @var{fd/port} to the integer
352@var{offset}, which is interpreted according to the value of
353@var{whence}.
354
355One of the following variables should be supplied for
356@var{whence}:
357@defvar SEEK_SET
358Seek from the beginning of the file.
359@end defvar
360@defvar SEEK_CUR
361Seek from the current position.
362@end defvar
363@defvar SEEK_END
364Seek from the end of the file.
365@end defvar
366If @var{fd/port} is a file descriptor, the underlying system
367call is @code{lseek}. @var{port} may be a string port.
368
369The value returned is the new position in the file. This means
370that the current position of a port can be obtained using:
371@lisp
372(seek port 0 SEEK_CUR)
373@end lisp
374@end deffn
375
8f85c0c6
NJ
376@deffn {Scheme Procedure} ftell fd_port
377@deffnx {C Function} scm_ftell (fd_port)
a0e07ba4
NJ
378Return an integer representing the current position of
379@var{fd/port}, measured from the beginning. Equivalent to:
380
381@lisp
382(seek port 0 SEEK_CUR)
383@end lisp
384@end deffn
385
386@findex truncate
387@findex ftruncate
8f85c0c6
NJ
388@deffn {Scheme Procedure} truncate-file object [length]
389@deffnx {C Function} scm_truncate_file (object, length)
a0e07ba4
NJ
390Truncates the object referred to by @var{object} to at most
391@var{length} bytes. @var{object} can be a string containing a
392file name or an integer file descriptor or a port.
393@var{length} may be omitted if @var{object} is not a file name,
394in which case the truncation occurs at the current port.
395position. The return value is unspecified.
396@end deffn
397
398@node Line/Delimited
399@section Line Oriented and Delimited Text
400
401The delimited-I/O module can be accessed with:
402
403@smalllisp
404(use-modules (ice-9 rdelim))
405@end smalllisp
406
407It can be used to read or write lines of text, or read text delimited by
408a specified set of characters. It's similar to the @code{(scsh rdelim)}
409module from guile-scsh, but does not use multiple values or character
410sets and has an extra procedure @code{write-line}.
411
412@c begin (scm-doc-string "rdelim.scm" "read-line")
8f85c0c6 413@deffn {Scheme Procedure} read-line [port] [handle-delim]
a0e07ba4
NJ
414Return a line of text from @var{port} if specified, otherwise from the
415value returned by @code{(current-input-port)}. Under Unix, a line of text
416is terminated by the first end-of-line character or by end-of-file.
417
418If @var{handle-delim} is specified, it should be one of the following
419symbols:
420@table @code
421@item trim
422Discard the terminating delimiter. This is the default, but it will
423be impossible to tell whether the read terminated with a delimiter or
424end-of-file.
425@item concat
426Append the terminating delimiter (if any) to the returned string.
427@item peek
428Push the terminating delimiter (if any) back on to the port.
429@item split
430Return a pair containing the string read from the port and the
431terminating delimiter or end-of-file object.
432@end table
433@end deffn
434
435@c begin (scm-doc-string "rdelim.scm" "read-line!")
8f85c0c6 436@deffn {Scheme Procedure} read-line! buf [port]
a0e07ba4
NJ
437Read a line of text into the supplied string @var{buf} and return the
438number of characters added to @var{buf}. If @var{buf} is filled, then
439@code{#f} is returned.
440Read from @var{port} if
441specified, otherwise from the value returned by @code{(current-input-port)}.
442@end deffn
443
444@c begin (scm-doc-string "rdelim.scm" "read-delimited")
8f85c0c6 445@deffn {Scheme Procedure} read-delimited delims [port] [handle-delim]
a0e07ba4
NJ
446Read text until one of the characters in the string @var{delims} is found
447or end-of-file is reached. Read from @var{port} if supplied, otherwise
448from the value returned by @code{(current-input-port)}.
449@var{handle-delim} takes the same values as described for @code{read-line}.
450@end deffn
451
452@c begin (scm-doc-string "rdelim.scm" "read-delimited!")
8f85c0c6 453@deffn {Scheme Procedure} read-delimited! delims buf [port] [handle-delim] [start] [end]
a0e07ba4
NJ
454Read text into the supplied string @var{buf} and return the number of
455characters added to @var{buf} (subject to @var{handle-delim}, which takes
456the same values specified for @code{read-line}. If @var{buf} is filled,
457@code{#f} is returned for both the number of characters read and the
458delimiter. Also terminates if one of the characters in the string
459@var{delims} is found
460or end-of-file is reached. Read from @var{port} if supplied, otherwise
461from the value returned by @code{(current-input-port)}.
462@end deffn
463
8f85c0c6
NJ
464@deffn {Scheme Procedure} write-line obj [port]
465@deffnx {C Function} scm_write_line (obj, port)
a0e07ba4
NJ
466Display @var{obj} and a newline character to @var{port}. If
467@var{port} is not specified, @code{(current-output-port)} is
468used. This function is equivalent to:
469@lisp
470(display obj [port])
471(newline [port])
472@end lisp
473@end deffn
474
475Some of the abovementioned I/O functions rely on the following C
476primitives. These will mainly be of interest to people hacking Guile
477internals.
478
8f85c0c6
NJ
479@deffn {Scheme Procedure} %read-delimited! delims str gobble [port [start [end]]]
480@deffnx {C Function} scm_read_delimited_x (delims, str, gobble, port, start, end)
a0e07ba4
NJ
481Read characters from @var{port} into @var{str} until one of the
482characters in the @var{delims} string is encountered. If
483@var{gobble} is true, discard the delimiter character;
484otherwise, leave it in the input stream for the next read. If
485@var{port} is not specified, use the value of
486@code{(current-input-port)}. If @var{start} or @var{end} are
487specified, store data only into the substring of @var{str}
488bounded by @var{start} and @var{end} (which default to the
489beginning and end of the string, respectively).
490
491 Return a pair consisting of the delimiter that terminated the
492string and the number of characters read. If reading stopped
493at the end of file, the delimiter returned is the
494@var{eof-object}; if the string was filled without encountering
495a delimiter, this value is @code{#f}.
496@end deffn
497
8f85c0c6
NJ
498@deffn {Scheme Procedure} %read-line [port]
499@deffnx {C Function} scm_read_line (port)
a0e07ba4
NJ
500Read a newline-terminated line from @var{port}, allocating storage as
501necessary. The newline terminator (if any) is removed from the string,
502and a pair consisting of the line and its delimiter is returned. The
503delimiter may be either a newline or the @var{eof-object}; if
504@code{%read-line} is called at the end of file, it returns the pair
505@code{(#<eof> . #<eof>)}.
506@end deffn
507
508@node Block Reading and Writing
509@section Block reading and writing
510
511The Block-string-I/O module can be accessed with:
512
513@smalllisp
514(use-modules (ice-9 rw))
515@end smalllisp
516
517It currently contains procedures that help to implement the
518@code{(scsh rw)} module in guile-scsh.
519
8f85c0c6
NJ
520@deffn {Scheme Procedure} read-string!/partial str [port_or_fdes [start [end]]]
521@deffnx {C Function} scm_read_string_x_partial (str, port_or_fdes, start, end)
a0e07ba4
NJ
522Read characters from a port or file descriptor into a
523string @var{str}. A port must have an underlying file
524descriptor --- a so-called fport. This procedure is
525scsh-compatible and can efficiently read large strings.
526It will:
527
528@itemize
529@item
530attempt to fill the entire string, unless the @var{start}
531and/or @var{end} arguments are supplied. i.e., @var{start}
532defaults to 0 and @var{end} defaults to
533@code{(string-length str)}
534@item
535use the current input port if @var{port_or_fdes} is not
536supplied.
537@item
538return fewer than the requested number of characters in some
539cases, e.g., on end of file, if interrupted by a signal, or if
540not all the characters are immediately available.
541@item
542wait indefinitely for some input if no characters are
543currently available,
544unless the port is in non-blocking mode.
545@item
546read characters from the port's input buffers if available,
547instead from the underlying file descriptor.
548@item
549return @code{#f} if end-of-file is encountered before reading
550any characters, otherwise return the number of characters
551read.
552@item
553return 0 if the port is in non-blocking mode and no characters
554are immediately available.
555@item
556return 0 if the request is for 0 bytes, with no
557end-of-file check.
558@end itemize
559@end deffn
560
8f85c0c6
NJ
561@deffn {Scheme Procedure} write-string/partial str [port_or_fdes [start [end]]]
562@deffnx {C Function} scm_write_string_partial (str, port_or_fdes, start, end)
a0e07ba4
NJ
563Write characters from a string @var{str} to a port or file
564descriptor. A port must have an underlying file descriptor
565--- a so-called fport. This procedure is
566scsh-compatible and can efficiently write large strings.
567It will:
568
569@itemize
570@item
571attempt to write the entire string, unless the @var{start}
572and/or @var{end} arguments are supplied. i.e., @var{start}
573defaults to 0 and @var{end} defaults to
574@code{(string-length str)}
575@item
576use the current output port if @var{port_of_fdes} is not
577supplied.
578@item
579in the case of a buffered port, store the characters in the
580port's output buffer, if all will fit. If they will not fit
581then any existing buffered characters will be flushed
582before attempting
583to write the new characters directly to the underlying file
584descriptor. If the port is in non-blocking mode and
585buffered characters can not be flushed immediately, then an
586@code{EAGAIN} system-error exception will be raised (Note:
587scsh does not support the use of non-blocking buffered ports.)
588@item
589write fewer than the requested number of
590characters in some cases, e.g., if interrupted by a signal or
591if not all of the output can be accepted immediately.
592@item
593wait indefinitely for at least one character
594from @var{str} to be accepted by the port, unless the port is
595in non-blocking mode.
596@item
597return the number of characters accepted by the port.
598@item
599return 0 if the port is in non-blocking mode and can not accept
600at least one character from @var{str} immediately
601@item
602return 0 immediately if the request size is 0 bytes.
603@end itemize
604@end deffn
605
606@node Default Ports
607@section Default Ports for Input, Output and Errors
608
609@rnindex current-input-port
8f85c0c6
NJ
610@deffn {Scheme Procedure} current-input-port
611@deffnx {C Function} scm_current_input_port ()
a0e07ba4
NJ
612Return the current input port. This is the default port used
613by many input procedures. Initially, @code{current-input-port}
614returns the @dfn{standard input} in Unix and C terminology.
615@end deffn
616
617@rnindex current-output-port
8f85c0c6
NJ
618@deffn {Scheme Procedure} current-output-port
619@deffnx {C Function} scm_current_output_port ()
a0e07ba4
NJ
620Return the current output port. This is the default port used
621by many output procedures. Initially,
622@code{current-output-port} returns the @dfn{standard output} in
623Unix and C terminology.
624@end deffn
625
8f85c0c6
NJ
626@deffn {Scheme Procedure} current-error-port
627@deffnx {C Function} scm_current_error_port ()
a0e07ba4
NJ
628Return the port to which errors and warnings should be sent (the
629@dfn{standard error} in Unix and C terminology).
630@end deffn
631
8f85c0c6
NJ
632@deffn {Scheme Procedure} set-current-input-port port
633@deffnx {Scheme Procedure} set-current-output-port port
634@deffnx {Scheme Procedure} set-current-error-port port
635@deffnx {C Function} scm_set_current_input_port (port)
636@deffnx {C Function} scm_set_current_output_port (port)
637@deffnx {C Function} scm_set_current_error_port (port)
a0e07ba4
NJ
638Change the ports returned by @code{current-input-port},
639@code{current-output-port} and @code{current-error-port}, respectively,
640so that they use the supplied @var{port} for input or output.
641@end deffn
642
6394add1
MV
643@deftypefn {C Function} void scm_frame_current_input_port (SCM port)
644@deftypefnx {C Function} void scm_frame_current_output_port (SCM port)
645@deftypefnx {C Function} void scm_frame_current_error_port (SCM port)
c76ff57b 646These functions must be used inside a pair of calls to
6394add1 647@code{scm_frame_begin} and @code{scm_frame_end} (@pxref{Frames}).
c76ff57b
MV
648During the dynamic extent of the frame, the indicated port is set to
649@var{port}.
650
6394add1
MV
651More precisely, the current port is swapped with a `backup' value
652whenever the frame is entered or left. The backup value is
653initialized with the @var{port} argument.
c76ff57b 654@end deftypefn
a0e07ba4
NJ
655
656@node Port Types
657@section Types of Port
658
659[Types of port; how to make them.]
660
661@menu
662* File Ports:: Ports on an operating system file.
663* String Ports:: Ports on a Scheme string.
664* Soft Ports:: Ports on arbitrary Scheme procedures.
665* Void Ports:: Ports on nothing at all.
666@end menu
667
668
669@node File Ports
670@subsection File Ports
671
672The following procedures are used to open file ports.
673See also @ref{Ports and File Descriptors, open}, for an interface
674to the Unix @code{open} system call.
675
7d5b2929
KR
676Most systems have limits on how many files can be open, so it's
677strongly recommended that file ports be closed explicitly when no
678longer required (@pxref{Ports}).
679
8f85c0c6
NJ
680@deffn {Scheme Procedure} open-file filename mode
681@deffnx {C Function} scm_open_file (filename, mode)
a0e07ba4
NJ
682Open the file whose name is @var{filename}, and return a port
683representing that file. The attributes of the port are
684determined by the @var{mode} string. The way in which this is
685interpreted is similar to C stdio. The first character must be
686one of the following:
687@table @samp
688@item r
689Open an existing file for input.
690@item w
691Open a file for output, creating it if it doesn't already exist
692or removing its contents if it does.
693@item a
694Open a file for output, creating it if it doesn't already
695exist. All writes to the port will go to the end of the file.
696The "append mode" can be turned off while the port is in use
697@pxref{Ports and File Descriptors, fcntl}
698@end table
699The following additional characters can be appended:
700@table @samp
701@item +
702Open the port for both input and output. E.g., @code{r+}: open
703an existing file for both input and output.
704@item 0
705Create an "unbuffered" port. In this case input and output
706operations are passed directly to the underlying port
707implementation without additional buffering. This is likely to
708slow down I/O operations. The buffering mode can be changed
709while a port is in use @pxref{Ports and File Descriptors,
710setvbuf}
711@item l
712Add line-buffering to the port. The port output buffer will be
713automatically flushed whenever a newline character is written.
714@end table
715In theory we could create read/write ports which were buffered
716in one direction only. However this isn't included in the
717current interfaces. If a file cannot be opened with the access
718requested, @code{open-file} throws an exception.
719@end deffn
720
721@rnindex open-input-file
8f85c0c6 722@deffn {Scheme Procedure} open-input-file filename
a0e07ba4
NJ
723Open @var{filename} for input. Equivalent to
724@smalllisp
725(open-file @var{filename} "r")
726@end smalllisp
727@end deffn
728
729@rnindex open-output-file
8f85c0c6 730@deffn {Scheme Procedure} open-output-file filename
a0e07ba4
NJ
731Open @var{filename} for output. Equivalent to
732@smalllisp
733(open-file @var{filename} "w")
734@end smalllisp
735@end deffn
736
2288712b
KR
737@deffn {Scheme Procedure} call-with-input-file filename proc
738@deffnx {Scheme Procedure} call-with-output-file filename proc
a0e07ba4 739@rnindex call-with-input-file
a0e07ba4 740@rnindex call-with-output-file
2288712b
KR
741Open @var{filename} for input or output, and call @code{(@var{proc}
742port)} with the resulting port. Return the value returned by
743@var{proc}. @var{filename} is opened as per @code{open-input-file} or
744@code{open-output-file} respectively, and an error is signalled if it
745cannot be opened.
a0e07ba4 746
2288712b
KR
747When @var{proc} returns, the port is closed. If @var{proc} does not
748return (eg.@: if it throws an error), then the port might not be
749closed automatically, though it will be garbage collected in the usual
750way if not otherwise referenced.
a0e07ba4
NJ
751@end deffn
752
2288712b
KR
753@deffn {Scheme Procedure} with-input-from-file filename thunk
754@deffnx {Scheme Procedure} with-output-to-file filename thunk
755@deffnx {Scheme Procedure} with-error-to-file filename thunk
756@rnindex with-input-from-file
a0e07ba4 757@rnindex with-output-to-file
2288712b
KR
758Open @var{filename} and call @code{(@var{thunk})} with the new port
759setup as respectively the @code{current-input-port},
760@code{current-output-port}, or @code{current-error-port}. Return the
761value returned by @var{thunk}. @var{filename} is opened as per
762@code{open-input-file} or @code{open-output-file} respectively, and an
763error is signalled if it cannot be opened.
764
765When @var{thunk} returns, the port is closed and the previous setting
766of the respective current port is restored.
767
768The current port setting is managed with @code{dynamic-wind}, so the
769previous value is restored no matter how @var{thunk} exits (eg.@: an
770exception), and if @var{thunk} is re-entered (via a captured
771continuation) then it's set again to the @var{FILENAME} port.
772
773The port is closed when @var{thunk} returns normally, but not when
774exited via an exception or new continuation. This ensures it's still
775ready for use if @var{thunk} is re-entered by a captured continuation.
776Of course the port is always garbage collected and closed in the usual
777way when no longer referenced anywhere.
a0e07ba4
NJ
778@end deffn
779
8f85c0c6
NJ
780@deffn {Scheme Procedure} port-mode port
781@deffnx {C Function} scm_port_mode (port)
782Return the port modes associated with the open port @var{port}.
783These will not necessarily be identical to the modes used when
784the port was opened, since modes such as "append" which are
785used only during port creation are not retained.
a0e07ba4
NJ
786@end deffn
787
8f85c0c6
NJ
788@deffn {Scheme Procedure} port-filename port
789@deffnx {C Function} scm_port_filename (port)
a0e07ba4
NJ
790Return the filename associated with @var{port}. This function returns
791the strings "standard input", "standard output" and "standard error"
792when called on the current input, output and error ports respectively.
793@end deffn
794
8f85c0c6
NJ
795@deffn {Scheme Procedure} set-port-filename! port filename
796@deffnx {C Function} scm_set_port_filename_x (port, filename)
a0e07ba4
NJ
797Change the filename associated with @var{port}, using the current input
798port if none is specified. Note that this does not change the port's
799source of data, but only the value that is returned by
800@code{port-filename} and reported in diagnostic output.
801@end deffn
802
8f85c0c6
NJ
803@deffn {Scheme Procedure} file-port? obj
804@deffnx {C Function} scm_file_port_p (obj)
a0e07ba4
NJ
805Determine whether @var{obj} is a port that is related to a file.
806@end deffn
807
808
809@node String Ports
810@subsection String Ports
811
812The following allow string ports to be opened by analogy to R4R*
813file port facilities:
814
8f85c0c6
NJ
815@deffn {Scheme Procedure} call-with-output-string proc
816@deffnx {C Function} scm_call_with_output_string (proc)
a0e07ba4
NJ
817Calls the one-argument procedure @var{proc} with a newly created output
818port. When the function returns, the string composed of the characters
0853a580 819written into the port is returned. @var{proc} should not close the port.
a0e07ba4
NJ
820@end deffn
821
8f85c0c6
NJ
822@deffn {Scheme Procedure} call-with-input-string string proc
823@deffnx {C Function} scm_call_with_input_string (string, proc)
a0e07ba4
NJ
824Calls the one-argument procedure @var{proc} with a newly
825created input port from which @var{string}'s contents may be
826read. The value yielded by the @var{proc} is returned.
827@end deffn
828
8f85c0c6 829@deffn {Scheme Procedure} with-output-to-string thunk
a0e07ba4
NJ
830Calls the zero-argument procedure @var{thunk} with the current output
831port set temporarily to a new string port. It returns a string
832composed of the characters written to the current output.
833@end deffn
834
8f85c0c6 835@deffn {Scheme Procedure} with-input-from-string string thunk
a0e07ba4
NJ
836Calls the zero-argument procedure @var{thunk} with the current input
837port set temporarily to a string port opened on the specified
838@var{string}. The value yielded by @var{thunk} is returned.
839@end deffn
840
8f85c0c6
NJ
841@deffn {Scheme Procedure} open-input-string str
842@deffnx {C Function} scm_open_input_string (str)
a0e07ba4
NJ
843Take a string and return an input port that delivers characters
844from the string. The port can be closed by
845@code{close-input-port}, though its storage will be reclaimed
846by the garbage collector if it becomes inaccessible.
847@end deffn
848
8f85c0c6
NJ
849@deffn {Scheme Procedure} open-output-string
850@deffnx {C Function} scm_open_output_string ()
a0e07ba4
NJ
851Return an output port that will accumulate characters for
852retrieval by @code{get-output-string}. The port can be closed
853by the procedure @code{close-output-port}, though its storage
854will be reclaimed by the garbage collector if it becomes
855inaccessible.
856@end deffn
857
8f85c0c6
NJ
858@deffn {Scheme Procedure} get-output-string port
859@deffnx {C Function} scm_get_output_string (port)
a0e07ba4
NJ
860Given an output port created by @code{open-output-string},
861return a string consisting of the characters that have been
862output to the port so far.
0853a580
KR
863
864@code{get-output-string} must be used before closing @var{port}, once
865closed the string cannot be obtained.
a0e07ba4
NJ
866@end deffn
867
868A string port can be used in many procedures which accept a port
869but which are not dependent on implementation details of fports.
870E.g., seeking and truncating will work on a string port,
871but trying to extract the file descriptor number will fail.
872
873
874@node Soft Ports
875@subsection Soft Ports
876
877A @dfn{soft-port} is a port based on a vector of procedures capable of
878accepting or delivering characters. It allows emulation of I/O ports.
879
8f85c0c6
NJ
880@deffn {Scheme Procedure} make-soft-port pv modes
881@deffnx {C Function} scm_make_soft_port (pv, modes)
a0e07ba4
NJ
882Return a port capable of receiving or delivering characters as
883specified by the @var{modes} string (@pxref{File Ports,
0a50eeaa 884open-file}). @var{pv} must be a vector of length 5 or 6. Its
a0e07ba4
NJ
885components are as follows:
886
887@enumerate 0
888@item
889procedure accepting one character for output
890@item
891procedure accepting a string for output
892@item
893thunk for flushing output
894@item
895thunk for getting one character
896@item
897thunk for closing port (not by garbage collection)
0a50eeaa
NJ
898@item
899(if present and not @code{#f}) thunk for computing the number of
900characters that can be read from the port without blocking.
a0e07ba4
NJ
901@end enumerate
902
903For an output-only port only elements 0, 1, 2, and 4 need be
904procedures. For an input-only port only elements 3 and 4 need
905be procedures. Thunks 2 and 4 can instead be @code{#f} if
906there is no useful operation for them to perform.
907
908If thunk 3 returns @code{#f} or an @code{eof-object}
909(@pxref{Input, eof-object?, ,r5rs, The Revised^5 Report on
910Scheme}) it indicates that the port has reached end-of-file.
911For example:
912
913@lisp
914(define stdout (current-output-port))
915(define p (make-soft-port
916 (vector
917 (lambda (c) (write c stdout))
918 (lambda (s) (display s stdout))
919 (lambda () (display "." stdout))
920 (lambda () (char-upcase (read-char)))
921 (lambda () (display "@@" stdout)))
922 "rw"))
923
924(write p p) @result{} #<input-output: soft 8081e20>
925@end lisp
926@end deffn
927
928
929@node Void Ports
930@subsection Void Ports
931
932This kind of port causes any data to be discarded when written to, and
933always returns the end-of-file object when read from.
934
8f85c0c6
NJ
935@deffn {Scheme Procedure} %make-void-port mode
936@deffnx {C Function} scm_sys_make_void_port (mode)
a0e07ba4 937Create and return a new void port. A void port acts like
198586ed 938@file{/dev/null}. The @var{mode} argument
8f85c0c6
NJ
939specifies the input/output modes for this port: see the
940documentation for @code{open-file} in @ref{File Ports}.
a0e07ba4
NJ
941@end deffn
942
943
9401323e
NJ
944@node I/O Extensions
945@section Using and Extending Ports in C
946
947@menu
948* C Port Interface:: Using ports from C.
949* Port Implementation:: How to implement a new port type in C.
950@end menu
951
952
953@node C Port Interface
954@subsection C Port Interface
955
956This section describes how to use Scheme ports from C.
957
958@subsubsection Port basics
959
960There are two main data structures. A port type object (ptob) is of
961type @code{scm_ptob_descriptor}. A port instance is of type
962@code{scm_port}. Given an @code{SCM} variable which points to a port,
963the corresponding C port object can be obtained using the
964@code{SCM_PTAB_ENTRY} macro. The ptob can be obtained by using
965@code{SCM_PTOBNUM} to give an index into the @code{scm_ptobs}
966global array.
967
968@subsubsection Port buffers
969
970An input port always has a read buffer and an output port always has a
971write buffer. However the size of these buffers is not guaranteed to be
972more than one byte (e.g., the @code{shortbuf} field in @code{scm_port}
973which is used when no other buffer is allocated). The way in which the
974buffers are allocated depends on the implementation of the ptob. For
975example in the case of an fport, buffers may be allocated with malloc
976when the port is created, but in the case of an strport the underlying
977string is used as the buffer.
978
979@subsubsection The @code{rw_random} flag
980
981Special treatment is required for ports which can be seeked at random.
982Before various operations, such as seeking the port or changing from
983input to output on a bidirectional port or vice versa, the port
85a9b4ed 984implementation must be given a chance to update its state. The write
9401323e
NJ
985buffer is updated by calling the @code{flush} ptob procedure and the
986input buffer is updated by calling the @code{end_input} ptob procedure.
987In the case of an fport, @code{flush} causes buffered output to be
988written to the file descriptor, while @code{end_input} causes the
989descriptor position to be adjusted to account for buffered input which
990was never read.
991
992The special treatment must be performed if the @code{rw_random} flag in
993the port is non-zero.
994
995@subsubsection The @code{rw_active} variable
996
997The @code{rw_active} variable in the port is only used if
998@code{rw_random} is set. It's defined as an enum with the following
999values:
1000
1001@table @code
1002@item SCM_PORT_READ
1003the read buffer may have unread data.
1004
1005@item SCM_PORT_WRITE
1006the write buffer may have unwritten data.
1007
1008@item SCM_PORT_NEITHER
1009neither the write nor the read buffer has data.
1010@end table
1011
1012@subsubsection Reading from a port.
1013
1014To read from a port, it's possible to either call existing libguile
1015procedures such as @code{scm_getc} and @code{scm_read_line} or to read
1016data from the read buffer directly. Reading from the buffer involves
1017the following steps:
1018
1019@enumerate
1020@item
1021Flush output on the port, if @code{rw_active} is @code{SCM_PORT_WRITE}.
1022
1023@item
1024Fill the read buffer, if it's empty, using @code{scm_fill_input}.
1025
1026@item Read the data from the buffer and update the read position in
1027the buffer. Steps 2) and 3) may be repeated as many times as required.
1028
1029@item Set rw_active to @code{SCM_PORT_READ} if @code{rw_random} is set.
1030
1031@item update the port's line and column counts.
1032@end enumerate
1033
1034@subsubsection Writing to a port.
1035
1036To write data to a port, calling @code{scm_lfwrite} should be sufficient for
1037most purposes. This takes care of the following steps:
1038
1039@enumerate
1040@item
1041End input on the port, if @code{rw_active} is @code{SCM_PORT_READ}.
1042
1043@item
1044Pass the data to the ptob implementation using the @code{write} ptob
1045procedure. The advantage of using the ptob @code{write} instead of
1046manipulating the write buffer directly is that it allows the data to be
1047written in one operation even if the port is using the single-byte
1048@code{shortbuf}.
1049
1050@item
1051Set @code{rw_active} to @code{SCM_PORT_WRITE} if @code{rw_random}
1052is set.
1053@end enumerate
1054
1055
1056@node Port Implementation
1057@subsection Port Implementation
1058
1059This section describes how to implement a new port type in C.
1060
1061As described in the previous section, a port type object (ptob) is
1062a structure of type @code{scm_ptob_descriptor}. A ptob is created by
1063calling @code{scm_make_port_type}.
1064
1065All of the elements of the ptob, apart from @code{name}, are procedures
1066which collectively implement the port behaviour. Creating a new port
1067type mostly involves writing these procedures.
1068
1069@code{scm_make_port_type} initializes three elements of the structure
1070(@code{name}, @code{fill_input} and @code{write}) from its arguments.
1071The remaining elements are initialized with default values and can be
1072set later if required.
1073
1074@table @code
1075@item name
1076A pointer to a NUL terminated string: the name of the port type. This
1077is the only element of @code{scm_ptob_descriptor} which is not
1078a procedure. Set via the first argument to @code{scm_make_port_type}.
1079
1080@item mark
1081Called during garbage collection to mark any SCM objects that a port
1082object may contain. It doesn't need to be set unless the port has
1083@code{SCM} components. Set using @code{scm_set_port_mark}.
1084
1085@item free
1086Called when the port is collected during gc. It
1087should free any resources used by the port.
1088Set using @code{scm_set_port_free}.
1089
1090@item print
1091Called when @code{write} is called on the port object, to print a
1092port description. e.g., for an fport it may produce something like:
1093@code{#<input: /etc/passwd 3>}. Set using @code{scm_set_port_print}.
1094
1095@item equalp
1096Not used at present. Set using @code{scm_set_port_equalp}.
1097
1098@item close
1099Called when the port is closed, unless it was collected during gc. It
1100should free any resources used by the port.
1101Set using @code{scm_set_port_close}.
1102
1103@item write
1104Accept data which is to be written using the port. The port implementation
1105may choose to buffer the data instead of processing it directly.
1106Set via the third argument to @code{scm_make_port_type}.
1107
1108@item flush
1109Complete the processing of buffered output data. Reset the value of
1110@code{rw_active} to @code{SCM_PORT_NEITHER}.
1111Set using @code{scm_set_port_flush}.
1112
1113@item end_input
85a9b4ed 1114Perform any synchronization required when switching from input to output
9401323e
NJ
1115on the port. Reset the value of @code{rw_active} to @code{SCM_PORT_NEITHER}.
1116Set using @code{scm_set_port_end_input}.
1117
1118@item fill_input
1119Read new data into the read buffer and return the first character. It
1120can be assumed that the read buffer is empty when this procedure is called.
1121Set via the second argument to @code{scm_make_port_type}.
1122
1123@item input_waiting
1124Return a lower bound on the number of bytes that could be read from the
1125port without blocking. It can be assumed that the current state of
1126@code{rw_active} is @code{SCM_PORT_NEITHER}.
1127Set using @code{scm_set_port_input_waiting}.
1128
1129@item seek
1130Set the current position of the port. The procedure can not make
1131any assumptions about the value of @code{rw_active} when it's
1132called. It can reset the buffers first if desired by using something
1133like:
1134
1135@example
1136 if (pt->rw_active == SCM_PORT_READ)
1137 scm_end_input (object);
1138 else if (pt->rw_active == SCM_PORT_WRITE)
1139 ptob->flush (object);
1140@end example
1141
1142However note that this will have the side effect of discarding any data
1143in the unread-char buffer, in addition to any side effects from the
1144@code{end_input} and @code{flush} ptob procedures. This is undesirable
1145when seek is called to measure the current position of the port, i.e.,
1146@code{(seek p 0 SEEK_CUR)}. The libguile fport and string port
1147implementations take care to avoid this problem.
1148
1149The procedure is set using @code{scm_set_port_seek}.
1150
1151@item truncate
1152Truncate the port data to be specified length. It can be assumed that the
1153current state of @code{rw_active} is @code{SCM_PORT_NEITHER}.
1154Set using @code{scm_set_port_truncate}.
1155
1156@end table
1157
1158
a0e07ba4
NJ
1159@c Local Variables:
1160@c TeX-master: "guile.texi"
1161@c End: