Copyright | (c) 2019 Harendra Kumar |
---|---|
License | BSD3 |
Maintainer | streamly@composewell.com |
Stability | experimental |
Portability | GHC |
Safe Haskell | None |
Language | Haskell2010 |
Read and write streams and arrays to and from files specified by their paths in the file system. Unlike the handle based APIs which can have a read/write session consisting of multiple reads and writes to the handle, these APIs are one shot read or write APIs. These APIs open the file handle, perform the requested operation and close the handle. Thease are safer compared to the handle based APIs as there is no possibility of a file descriptor leakage.
import qualified Streamly.Internal.FileSystem.File as File
Synopsis
- withFile :: (IsStream t, MonadCatch m, MonadIO m) => FilePath -> IOMode -> (Handle -> t m a) -> t m a
- read :: (MonadCatch m, MonadIO m) => Unfold m FilePath Word8
- toBytes :: (IsStream t, MonadCatch m, MonadIO m) => FilePath -> t m Word8
- toChunksWithBufferOf :: (IsStream t, MonadCatch m, MonadIO m) => Int -> FilePath -> t m (Array Word8)
- toChunks :: (IsStream t, MonadCatch m, MonadIO m) => FilePath -> t m (Array Word8)
- write :: (MonadIO m, MonadCatch m) => FilePath -> Fold m Word8 ()
- writeWithBufferOf :: (MonadIO m, MonadCatch m) => Int -> FilePath -> Fold m Word8 ()
- fromBytes :: (MonadAsync m, MonadCatch m) => FilePath -> SerialT m Word8 -> m ()
- fromBytesWithBufferOf :: (MonadAsync m, MonadCatch m) => Int -> FilePath -> SerialT m Word8 -> m ()
- writeArray :: Storable a => FilePath -> Array a -> IO ()
- writeChunks :: (MonadIO m, MonadCatch m, Storable a) => FilePath -> Fold m (Array a) ()
- fromChunks :: (MonadAsync m, MonadCatch m, Storable a) => FilePath -> SerialT m (Array a) -> m ()
- append :: (MonadAsync m, MonadCatch m) => FilePath -> SerialT m Word8 -> m ()
- appendWithBufferOf :: (MonadAsync m, MonadCatch m) => Int -> FilePath -> SerialT m Word8 -> m ()
- appendArray :: Storable a => FilePath -> Array a -> IO ()
- appendChunks :: (MonadAsync m, MonadCatch m, Storable a) => FilePath -> SerialT m (Array a) -> m ()
Streaming IO
Stream data to or from a file or device sequentially. When reading,
the stream is lazy and generated on-demand as the consumer consumes it.
Read IO requests to the IO device are performed in chunks limited to a
maximum size of 32KiB, this is referred to as defaultChunkSize
in the
documentation. One IO request may or may not read the full
chunk. If the whole stream is not consumed, it is possible that we may
read slightly more from the IO device than what the consumer needed.
Unless specified otherwise in the API, writes are collected into chunks
of defaultChunkSize
before they are written to the IO device.
File IO Using Handle
withFile :: (IsStream t, MonadCatch m, MonadIO m) => FilePath -> IOMode -> (Handle -> t m a) -> t m a Source #
opens a file using withFile
name mode actopenFile
and passes
the resulting handle to the computation act
. The handle will be
closed on exit from withFile
, whether by normal termination or by
raising an exception. If closing the handle raises an exception, then
this exception will be raised by withFile
rather than any exception
raised by act
.
Internal
Read From File
read :: (MonadCatch m, MonadIO m) => Unfold m FilePath Word8 Source #
Unfolds a file path into a byte stream. IO requests to the device are
performed in sizes of
defaultChunkSize
.
Since: 0.7.0
toBytes :: (IsStream t, MonadCatch m, MonadIO m) => FilePath -> t m Word8 Source #
Generate a stream of bytes from a file specified by path. The stream ends when EOF is encountered. File is locked using multiple reader and single writer locking mode.
Internal
toChunksWithBufferOf :: (IsStream t, MonadCatch m, MonadIO m) => Int -> FilePath -> t m (Array Word8) Source #
toChunksWithBufferOf size file
reads a stream of arrays from file file
.
The maximum size of a single array is specified by size
. The actual size
read may be less than or equal to size
.
toChunks :: (IsStream t, MonadCatch m, MonadIO m) => FilePath -> t m (Array Word8) Source #
toChunks file
reads a stream of arrays from file file
.
The maximum size of a single array is limited to defaultChunkSize
. The
actual size read may be less than defaultChunkSize
.
toChunks = toChunksWithBufferOf defaultChunkSize
Since: 0.7.0
Write To File
write :: (MonadIO m, MonadCatch m) => FilePath -> Fold m Word8 () Source #
Write a byte stream to a file. Accumulates the input in chunks of up to
defaultChunkSize
before writing to
the IO device.
Internal
writeWithBufferOf :: (MonadIO m, MonadCatch m) => Int -> FilePath -> Fold m Word8 () Source #
writeWithBufferOf chunkSize handle
writes the input stream to handle
.
Bytes in the input stream are collected into a buffer until we have a chunk
of size chunkSize
and then written to the IO device.
Internal
fromBytes :: (MonadAsync m, MonadCatch m) => FilePath -> SerialT m Word8 -> m () Source #
Write a byte stream to a file. Combines the bytes in chunks of size
up to defaultChunkSize
before writing. If the file exists it is
truncated to zero size before writing. If the file does not exist it is
created. File is locked using single writer locking mode.
Internal
fromBytesWithBufferOf :: (MonadAsync m, MonadCatch m) => Int -> FilePath -> SerialT m Word8 -> m () Source #
Like write
but provides control over the write buffer. Output will
be written to the IO device as soon as we collect the specified number of
input elements.
Since: 0.7.0
writeArray :: Storable a => FilePath -> Array a -> IO () Source #
Write an array to a file. Overwrites the file if it exists.
Since: 0.7.0
writeChunks :: (MonadIO m, MonadCatch m, Storable a) => FilePath -> Fold m (Array a) () Source #
Write a stream of chunks to a handle. Each chunk in the stream is written to the device as a separate IO request.
Internal
fromChunks :: (MonadAsync m, MonadCatch m, Storable a) => FilePath -> SerialT m (Array a) -> m () Source #
Write a stream of arrays to a file. Overwrites the file if it exists.
Since: 0.7.0
Append To File
append :: (MonadAsync m, MonadCatch m) => FilePath -> SerialT m Word8 -> m () Source #
Append a byte stream to a file. Combines the bytes in chunks of size up to
defaultChunkSize
before writing. If the file exists then the new data
is appended to the file. If the file does not exist it is created. File is
locked using single writer locking mode.
Since: 0.7.0
appendWithBufferOf :: (MonadAsync m, MonadCatch m) => Int -> FilePath -> SerialT m Word8 -> m () Source #
Like append
but provides control over the write buffer. Output will
be written to the IO device as soon as we collect the specified number of
input elements.
Since: 0.7.0
appendArray :: Storable a => FilePath -> Array a -> IO () Source #
append an array to a file.
Since: 0.7.0
appendChunks :: (MonadAsync m, MonadCatch m, Storable a) => FilePath -> SerialT m (Array a) -> m () Source #
Append a stream of arrays to a file.
Since: 0.7.0