ports - Port I/O

LIBRARY

(import (rnrs))                     ;R6RS
(import (rnrs io simple))           ;R6RS
(import (rnrs io ports))            ;R6RS
(import (scheme file))              ;R7RS
(import (scheme read))              ;R7RS
(import (scheme write))             ;R7RS

DESCRIPTION

Ports are the conventional way to get data in and out of a program. Files, terminals and many other devices are usually accessible as ports. Ports can also be completely internal to the program. Ports act as objects that consume and produce bytes or characters.

Pre-R6RS ports

Port I/O in the Scheme reports that came before R6RS provide a current input port, a current output port, file input ports, and file output ports. There are procedures for reading and writing S-expressions, reading characters, peeking for the next character and for writing characters.

Standards before R6RS did not specify the encoding of characters. There are no binary I/O ports; everything goes through the ports as characters in an unspecified encoding, which is commonly ISO-8859-1, but that could be anything, even some variant of EBCDIC.

There is nothing to help the programmer write a portable program to manipulate binary files. In practice, programs that need to work with binary data assume the implementation uses a single byte encoding scheme with a one-to-one correspondence between character numbers and bytes.

The process ports can be fetched by calling current-input-port(3scm) and current-output-port(3scm). Implementations can optionally provide with-input-from-file(3scm) and with-output-to-file(3scm), which dynamically rebind the input and output ports while a procedure is running. The procedures open-input-file(3scm) and open-output-file(3scm) open files for reading and for writing. They should be closed with close-input-port(3scm) and close-output-port(3scm) when the program is done with them, or there could be a resource leak.

R6RS ports

The (rnrs io ports) library defines an I/O layer for conventional, imperative buffered input and output. A port represents a buffered access object for a data sink or source or both simultaneously. The library allows ports to be created from arbitrary data sources and sinks.

The (rnrs io ports) library distinguishes between input ports and output ports. An input port is a source for data, whereas an output port is a sink for data. A port may be both an input port and an output port; such a port typically provides simultaneous read and write access to a file or other data.

The (rnrs io ports) library also distinguishes between binary ports, which are sources or sinks for uninterpreted bytes, and textual ports, which are sources or sinks for characters and strings.

Files can be opened using a specified transcoder or binary ports can be turned into textual ports by using a transcoder. Transcoders specify a character encoding, an end of line convention and an error handling mode. ISO-8859-1, UTF-8 and UTF-16 are supported along with all Unicode characters. It is straightforward for portable code to work with binary files and textual files with a known encoding like UTF-8.

Custom binary and textual ports can be used to implement things like network ports, transparent compression, other encodings and arbitrary processing. Custom ports are created with make-custom-binary-input-port(3scm), make-custom-textual-input-port(3scm), make-custom-binary-output-port(3scm), make-custom-textual-output-port(3scm), make-custom-binary-input/output-port(3scm) and make-custom-textual-input/output-port(3scm).

R7RS ports

The I/O port system is derived from the pre-R6RS system, with the addition of binary ports and specialized procedures for these ports. There are also bytevector and string ports based on the SRFI 6 interface.

Portable R7RS code that attempts to use ports should be aware of these possible restrictions:

UTF-8 files can be read and written using binary ports together with utf8->string and string->utf8. It is an error to give invalid UTF-8 bytes to utf8->string, so this must be checked first.

IMPLEMENTATION NOTES

GNU Guile
There is no distinction between binary and textual ports. The reader does not handle the #!/ ("shebang") syntax at the start of scripts. It is however interpreted as a comment, so you can put !# in a comment on the second line to "terminate" the first line. The #!r6rs directive does not enable R6RS lexical syntax.
Racket
The reader does not handle the #!/ ("shebang") syntax at the start of scripts.
Ikarus
There is no support for input/output ports.

APPLICATION USAGE

Ports are often the only way to access files and other file-like objects provided by the operating system.

In the 1990s it was still very common to have files in various local encodings, but Unicode has since then grown to become standard. Textual files created since the 2010s are usually encoded in UTF-8. A notable exception is files that come from Microsoft's Windows, which are sometimes encoded in UTF-16. But this is also becoming more rare with newer versions of that system.

SEE ALSO

stdio(3)

STANDARDS

R4RS, IEEE Scheme, R5RS, R6RS, R7RS

AUTHORS

This page is part of the scheme-manpages project. It includes materials from the RnRS documents. More information can be found at https://github.com/schemedoc/manpages/.


Markup created by unroff 1.0sc,    March 04, 2023.