libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
Pipe.hxx
1#pragma once
2
3// Linux
4#include <unistd.h>
5
6// cosmos
7#include <cosmos/fs/FileDescriptor.hxx>
8
9namespace cosmos {
10
12
27class COSMOS_API Pipe {
28 // disallow copy/assignment
29 Pipe(const Pipe&) = delete;
30 Pipe& operator=(const Pipe&) = delete;
31
32public: // functions
33
35 explicit Pipe();
36
37 ~Pipe() { closeReadEnd(); closeWriteEnd(); }
38
39 void closeReadEnd() { if (haveReadEnd()) m_read_end.close(); }
40 void closeWriteEnd() { if (haveWriteEnd()) m_write_end.close(); }
41
42 FileDescriptor readEnd() { return m_read_end; }
43 FileDescriptor writeEnd() { return m_write_end; }
44
45 bool haveReadEnd() const { return m_read_end.valid(); }
46 bool haveWriteEnd() const { return m_write_end.valid(); }
47
49
54 auto ret = readEnd();
55 invalidateReadEnd();
56 return ret;
57 }
58
60
64 auto ret = writeEnd();
65 invalidateWriteEnd();
66 return ret;
67 }
68
70
75 static size_t maxAtomicWriteSize() {
76 return MAX_ATOMIC_WRITE;
77 }
78
79protected: // functions
80
81 void invalidateReadEnd() { m_read_end.reset(); }
82 void invalidateWriteEnd() { m_write_end.reset(); }
83
84protected: // data
85
86 FileDescriptor m_read_end;
87 FileDescriptor m_write_end;
88 static const size_t MAX_ATOMIC_WRITE;
89};
90
91} // end ns
Thin Wrapper around OS file descriptors.
bool valid() const
Returns whether currently a valid file descriptor number is assigned.
Creates a unidirectional pipe communication channel.
Definition Pipe.hxx:27
FileDescriptor takeWriteEndOwnership()
Return the write end, passing ownership to the caller.
Definition Pipe.hxx:63
static size_t maxAtomicWriteSize()
Maximum number of bytes that can be transmitted over a Pipe as a single message.
Definition Pipe.hxx:75
FileDescriptor takeReadEndOwnership()
Return the read end, passing ownership to the caller.
Definition Pipe.hxx:53