libcosmos
Linux C++ System Programming Library
|
Generic template base class for wrapping existing file descriptors in C++ streams. More...
#include <StreamAdaptor.hxx>
Public Member Functions | |
virtual void | close () |
Close the underlying file descriptor. | |
FileDescriptor | fileDesc () |
Protected Member Functions | |
StreamAdaptor (FileDescriptor fd, std::ios_base::openmode mode) | |
Protected Attributes | |
StdioFileBuf | m_buffer |
Generic template base class for wrapping existing file descriptors in C++ streams.
The standardized stream library does not offer an option to wrap an existing file descriptor in a stream object. One would need to implement a complete custom stream buffer type for this which is quite overkill.
Most standard libraries already offer some proprietary interface since they need to do the same thing anyways for the std::cout, std::cerr objects.
This is a base class for implementing a wrapper of an existing file descriptor offering an std::istream or std::ostream interface on top of it.
Definition at line 41 of file StreamAdaptor.hxx.
|
inlineprotected |
Definition at line 54 of file StreamAdaptor.hxx.
|
inlinevirtual |
Close the underlying file descriptor.
Reimplemented in cosmos::InputOutputStreamAdaptor, and cosmos::OutputStreamAdaptor.
Definition at line 46 of file StreamAdaptor.hxx.
|
inline |
Definition at line 50 of file StreamAdaptor.hxx.
|
protected |
Definition at line 64 of file StreamAdaptor.hxx.