libcosmos
Linux C++ System Programming Library
|
Creates a unidirectional pipe communication channel. More...
#include <Pipe.hxx>
Public Member Functions | |
Pipe () | |
Creates a pipe with both ends stored in the object. | |
void | closeReadEnd () |
void | closeWriteEnd () |
FileDescriptor | readEnd () |
FileDescriptor | writeEnd () |
bool | haveReadEnd () const |
bool | haveWriteEnd () const |
FileDescriptor | takeReadEndOwnership () |
Return the read end, passing ownership to the caller. | |
FileDescriptor | takeWriteEndOwnership () |
Return the write end, passing ownership to the caller. | |
Static Public Member Functions | |
static size_t | maxAtomicWriteSize () |
Maximum number of bytes that can be transmitted over a Pipe as a single message. | |
Protected Member Functions | |
void | invalidateReadEnd () |
void | invalidateWriteEnd () |
Protected Attributes | |
FileDescriptor | m_read_end |
FileDescriptor | m_write_end |
Static Protected Attributes | |
static const size_t | MAX_ATOMIC_WRITE = PIPE_BUF |
Creates a unidirectional pipe communication channel.
A pipe consists of two file descriptors, one for reading and one for writing to. To make use of it, one end needs to be inherited to a child process or otherwise be used e.g. as a wakeup mechanism for select() calls etc.
When using a pipe to communicate between processes an important aspect is that all write ends need to be closed before an end-of-file is reported on the read end. Therefore you need to make sure that only the necessary part of the pipe is inherited to the child process to communicate with.
The pipe file descriptors created by this class have the close-on-exec flag set by default, so you need to explicitly re-enable that flag to inherit the necessary end to a child process.
|
explicit |
Creates a pipe with both ends stored in the object.
Definition at line 13 of file Pipe.cxx.
|
inline |
|
inline |
Definition at line 39 of file Pipe.hxx.
|
inline |
|
inline |
Definition at line 45 of file Pipe.hxx.
|
inline |
|
inlineprotected |
Definition at line 81 of file Pipe.hxx.
|
inlineprotected |
|
inlinestatic |
Maximum number of bytes that can be transmitted over a Pipe as a single message.
A pipe can maintain messages boundaries i.e. each write is returned in the same length on the read end. This is only possible up to a maximum size, however. This function returns this size.
Definition at line 75 of file Pipe.hxx.
|
inline |
|
inline |
|
inline |
Return the write end, passing ownership to the caller.
Definition at line 63 of file Pipe.hxx.
|
inline |
|
protected |
|
protected |
|
staticprotected |