IO
structure
signature IO
structure IO
:> IO
The IO
structure contains types and values common to all the input/output structures and functors. In particular, it defines the Io
exception, which is used to provide structured information for any errors occurring during I/O.
exception Io of {
name : string,
function : string,
cause : exn
}
exception BlockingNotSupported
exception NonblockingNotSupported
exception RandomAccessNotSupported
exception ClosedStream
datatype buffer_mode = NO_BUF | LINE_BUF | BLOCK_BUF
exception Io of {
name : string,
function : string,
cause : exn
}
Io
are:
name
name
component of the reader or writer.
function
cause
Some of the standard causes are:
OS.SysErr
if an actual system call was done and failed.
Subscript
if ill-formed arguments are given.
BlockingNotSupported
NonblockingNotSupported
ClosedStream
cause
field of Io
is not limited to these particular exceptions. Users who create their own readers or writers may raise any exception they like, which will be reported as the cause
field of the resulting Io
exception.
exception BlockingNotSupported
output
, outputSubstr
, output1
, and flushOut
I/O operations if the underlying writer does not support blocking writes; or in the input
, inputN
, and input1
I/O operations if the underlying reader does not support blocking reads. It should never be raised within the I/O system; it should only be used in the cause
field of an Io
exception.
exception NonblockingNotSupported
canInput
I/O operation if the underlying stream does not support non-blocking input. It should never be raised within the I/O system; it should only be used in the cause
field of an Io
exception.
exception RandomAccessNotSupported
STREAM_IO
position operations to indicate that random access operations are not supported by the underlying device. It should never be raised within the I/O system; it should only be used in the cause
field of an Io
exception.
exception ClosedStream
cause
field of an Io
exception.
datatype buffer_mode = NO_BUF | LINE_BUF | BLOCK_BUF
BLOCK_BUF
, the implementation should store output in a buffer, actually writing the buffer's content to the device only when the buffer is full. If an output stream has mode NO_BUF
, the implementation should write the argument bytes of any output function directly to the corresponding device. If an output stream has mode LINE_BUF
, output bytes should be buffered until a newline character (#"\n"
) is seen, at which point the buffer should be flushed, including the newline character. For binary streams, LINE_BUF
mode should be treated as a synonym for BLOCK_BUF
.
Implementation note:
Output buffering is provided for efficiency, to reduce the number of writes to the underlying device, which may be an expensive operation. The I/O subsystem should select the initial buffer mode based on the output device. By default, output should be buffered. The optimum buffer size is specified by the
chunkSize
field in the underlyingwriter
value. Output toTextIO.stdErr
should be unbuffered. Output to a terminal-like device should be line-buffered. A simple test for this isOS.IO.kind iod = OS.IO.Kind.ttywhereiod
is the I/O descriptor associated with the open stream.
BinIO
,IMPERATIVE_IO
,PRIM_IO
,STREAM_IO
,TextIO
The imperative, stream, and primitive I/O modules will never raise a bare BlockingNotSupported
, NonblockingNotSupported
, or ClosedStream
exception; these exceptions are only used in the cause
field of the Io
exception. Any module, however, may raise Subscript
directly if given ill-formed arguments, or may raise Io
with Subscript
as the cause
.
It is possible that multiple error conditions hold when an I/O function is called. For example, a random access call may be made on a closed stream corresponding to a device that does not support random access. The cause
reported in the generated Io
exception is implementation-dependent.
Generated April 12, 2004
Last Modified January 21, 1997
Comments to John Reppy.
This document may be distributed freely over the internet as long as the copyright notice and license terms below are prominently displayed within every machine-readable copy.
Copyright © 2004 AT&T and Lucent Technologies. All rights reserved.
Permission is granted for internet users to make one paper copy for their
own personal use. Further hardcopy reproduction is strictly prohibited.
Permission to distribute the HTML document electronically on any medium
other than the internet must be requested from the copyright holders by
contacting the editors.
Printed versions of the SML Basis Manual are available from Cambridge
University Press.
To order, please visit
www.cup.org (North America) or
www.cup.cam.ac.uk (outside North America). |