Node.Stream.Aff
- Package
- purescript-node-streams-aff
- Repository
- jamesdbrock/purescript-node-streams-aff
Asynchronous I/O with the Node.js Stream API.
Open file streams with Node.FS.Stream.
Open process streams with Node.Process.
Read and write String
s with the toString
and fromString
functions in
Node.Buffer.
All I/O errors will be thrown through the Aff
MonadError
class
instance.
Aff
cancellation will clean up all Node.js event listeners.
All of these Aff
functions will prevent the Node.js event loop from
exiting until the Aff
function completes.
Reading
Implementation
The reading functions in this module all operate on a Readable
stream
in
“paused mode”.
Internally the reading functions use the
readable.read([size])
function and are subject to the caveats of that function.
Result Buffers
The result of a reading function may be chunked into more than one Buffer
.
The fst
element of the result Tuple
is an Array Buffer
of what
was read.
To concatenate the result into a single Buffer
, use
Node.Buffer.concat :: Array Buffer -> Buffer
.
input :: Buffer <- liftEffect <<< concat <<< fst =<< readSome stdin
To calculate the number of bytes read, use
Node.Buffer.size :: Buffer -> m Int
.
Tuple inputs _ :: Array Buffer <- readSome stdin
bytesRead :: Int
<- liftEffect $ Array.foldM (\a b -> (a+_) <$> size b) 0 inputs
Result readagain
flag
The snd
element of the result Tuple
is a Boolean
flag which
is true
if the stream has not reached End-Of-File (and also if the stream
has not errored or been destroyed), so we know we can read again.
If the flag is false
then
no more bytes will ever be produced by the stream.
Reading from an ended, closed, errored, or destroyed stream
will complete immediately with Tuple [] false
.
The readagain
flag will give the same answer as a call to Internal.readable
.
Writing
Implementation
The writing functions in this module all operate on a Writeable
stream.
Internally the writing functions will call the
writable.write(chunk[, encoding][, callback])
function on each of the Buffer
s,
and will asychronously wait if there is “backpressure” from the stream.
The writing functions will complete after all the data is flushed to the stream.
#readN Source
readN :: forall m r. MonadAff m => Readable r -> Int -> m (Tuple (Array Buffer) Boolean)
Wait for N bytes to become available from the stream.
If more than N bytes are available on the stream, then completes with N bytes and leaves the rest in the stream’s internal buffer.
If the end of the stream is reached before N bytes are available, then completes with less than N bytes.