Copyright | (c) The University of Glasgow 2002 |
---|---|
License | BSD-style (see the file libraries/base/LICENSE) |
Maintainer | [email protected] |
Stability | provisional |
Portability | non-portable (requires POSIX) |
Safe Haskell | Safe |
Language | Haskell2010 |
POSIX IO support. These types and functions correspond to the unix functions open(2), close(2), etc. For more portable functions which are more like fopen(3) and friends from stdio.h, see System.IO.
data OpenFileFlags Source
Correspond to some of the int flags from C's fcntl.h.
OpenFileFlags | |
defaultFileFlags :: OpenFileFlags Source
Default values for the OpenFileFlags
type. False for each of append, exclusive, noctty, nonBlock, and trunc.
:: RawFilePath | |
-> OpenMode | |
-> Maybe FileMode | Just x => creates the file with the given modes, Nothing => the file must exist. |
-> OpenFileFlags | |
-> IO Fd |
Open and optionally create this file. See Files
for information on how to use the FileMode
type.
createFile :: RawFilePath -> FileMode -> IO Fd Source
Create and open this file in WriteOnly mode. A special case of openFd
. See Files
for information on how to use the FileMode
type.
Close this file descriptor. May throw an exception if this is an invalid descriptor.
Programmers using the fdRead
and fdWrite
API should be aware that EAGAIN exceptions may occur for non-blocking IO!
:: Fd | |
-> ByteCount | How many bytes to read |
-> IO (String, ByteCount) | The bytes read, how many bytes were read. |
Read data from an Fd
and convert it to a String
using the locale encoding. Throws an exception if this is an invalid descriptor, or EOF has been reached.
fdWrite :: Fd -> String -> IO ByteCount Source
Write a String
to an Fd
using the locale encoding.
:: Fd | |
-> Ptr Word8 | Memory in which to put the data |
-> ByteCount | Maximum number of bytes to read |
-> IO ByteCount | Number of bytes read (zero for EOF) |
Read data from an Fd
into memory. This is exactly equivalent to the POSIX read
function.
:: Fd | |
-> Ptr Word8 | Memory containing the data to write |
-> ByteCount | Maximum number of bytes to write |
-> IO ByteCount | Number of bytes written |
Write data from memory to an Fd
. This is exactly equivalent to the POSIX write
function.
fdSeek :: Fd -> SeekMode -> FileOffset -> IO FileOffset Source
May throw an exception if this is an invalid descriptor.
AppendOnWrite | O_APPEND |
CloseOnExec | FD_CLOEXEC |
NonBlockingRead | O_NONBLOCK |
SynchronousWrites | O_SYNC |
queryFdOption :: Fd -> FdOption -> IO Bool Source
May throw an exception if this is an invalid descriptor.
setFdOption :: Fd -> FdOption -> Bool -> IO () Source
May throw an exception if this is an invalid descriptor.
type FileLock = (LockRequest, SeekMode, FileOffset, FileOffset) Source
data LockRequest Source
getLock :: Fd -> FileLock -> IO (Maybe (ProcessID, FileLock)) Source
May throw an exception if this is an invalid descriptor.
setLock :: Fd -> FileLock -> IO () Source
May throw an exception if this is an invalid descriptor.
waitToSetLock :: Fd -> FileLock -> IO () Source
May throw an exception if this is an invalid descriptor.
createPipe :: IO (Fd, Fd) Source
The createPipe
function creates a pair of connected file descriptors. The first component is the fd to read from, the second is the write end. Although pipes may be bidirectional, this behaviour is not portable and programmers should use two separate pipes for this purpose. May throw an exception if this is an invalid descriptor.
May throw an exception if this is an invalid descriptor.
dupTo :: Fd -> Fd -> IO Fd Source
May throw an exception if this is an invalid descriptor.
handleToFd :: Handle -> IO Fd Source
Extracts the Fd
from a Handle
. This function has the side effect of closing the Handle
and flushing its write buffer, if necessary.
fdToHandle :: Fd -> IO Handle Source
Converts an Fd
into a Handle
that can be used with the standard Haskell IO library (see System.IO).
© The University of Glasgow and others
Licensed under a BSD-style license (see top of the page).
https://downloads.haskell.org/~ghc/7.10.3/docs/html/libraries/unix-2.7.1.0/System-Posix-IO-ByteString.html