4#include <cosmos/compiler.hxx>
5#include <cosmos/error/UsageError.hxx>
6#include <cosmos/fs/FileDescriptor.hxx>
7#include <cosmos/io/Pipe.hxx>
8#include <cosmos/utils.hxx>
12#ifdef COSMOS_GNU_CXXLIB
13# include <ext/stdio_filebuf.h>
20# error "Only GNU libstdc++ is supported right now"
26using StdioFileBuf = __gnu_cxx::stdio_filebuf<char>;
40template <
typename STREAM_TYPE>
54 StreamAdaptor(FileDescriptor fd, std::ios_base::openmode mode) :
55 m_buffer{to_integral(fd.raw()), mode} {
57 cosmos_throw (UsageError(
"Attempt to construct StreamAdaptor for invalid FD"));
60 this->rdbuf(&m_buffer);
64 StdioFileBuf m_buffer;
Thin Wrapper around OS file descriptors.
Wraps a file descriptor in a std::ostream interface.
OutputStreamAdaptor(Pipe &p)
Wrap the write end of a Pipe object.
void close() override
Close the underlying file descriptor.
Creates a unidirectional pipe communication channel.
Generic template base class for wrapping existing file descriptors in C++ streams.
virtual void close()
Close the underlying file descriptor.
FileNum
Primitive file descriptor.