libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
StreamAdaptor.hxx
1#pragma once
2
3// Cosmos
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>
9
10// C++
11#include <iostream>
12#ifdef COSMOS_GNU_CXXLIB
13# include <ext/stdio_filebuf.h>
14#else
15/*
16 * this currently only works with libstdc++, since the StdioFileBuf is
17 * libstdc++ specific. For other standard libraries other hacks may exist
18 * which aren't covered yet.
19 */
20# error "Only GNU libstdc++ is supported right now"
21#endif
22
23namespace cosmos {
24
26using StdioFileBuf = __gnu_cxx::stdio_filebuf<char>;
27
29
40template <typename STREAM_TYPE>
42 public STREAM_TYPE {
43public: // functions
44
46 virtual void close() {
47 m_buffer.close();
48 }
49
50 FileDescriptor fileDesc() { return FileDescriptor{FileNum{m_buffer.fd()}}; }
51
52protected: // functions
53
54 StreamAdaptor(FileDescriptor fd, std::ios_base::openmode mode) :
55 m_buffer{to_integral(fd.raw()), mode} {
56 if (fd.invalid()) {
57 cosmos_throw (UsageError("Attempt to construct StreamAdaptor for invalid FD"));
58 }
59
60 this->rdbuf(&m_buffer);
61 }
62
63protected: // data
64 StdioFileBuf m_buffer;
65};
66
69 public StreamAdaptor<std::istream> {
70public: // functions
71
73 StreamAdaptor<std::istream>{fd, std::ios_base::in}
74 {}
75
77 explicit InputStreamAdaptor(Pipe &p) :
78 InputStreamAdaptor{p.takeReadEndOwnership()}
79 {}
80};
81
84 public StreamAdaptor<std::ostream> {
85public: // functions
86
88 StreamAdaptor<std::ostream>{fd, std::ios_base::out}
89 {}
90
93 OutputStreamAdaptor{p.takeWriteEndOwnership()}
94 {}
95
96 void close() override {
97 *this << std::flush;
99 }
100};
101
104 public StreamAdaptor<std::iostream> {
105public: // functions
106
108 StreamAdaptor<std::iostream>{fd, std::ios_base::in | std::ios_base::out}
109 {}
110
111 void close() override {
112 *this << std::flush;
114 }
115};
116
117} // end ns
Thin Wrapper around OS file descriptors.
Wraps a file descriptor in a std::iostream interface.
void close() override
Close the underlying file descriptor.
Wraps a file descriptor in a std::istream interface.
InputStreamAdaptor(Pipe &p)
Wrap the read end of a Pipe object.
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.
Definition Pipe.hxx:27
Generic template base class for wrapping existing file descriptors in C++ streams.
virtual void close()
Close the underlying file descriptor.
FileNum
Primitive file descriptor.
Definition types.hxx:32