libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
iovector.hxx
Go to the documentation of this file.
1#pragma once
2
3// Linux
4#include <sys/uio.h>
5
6// C++
7#include <string>
8#include <string_view>
9#include <type_traits>
10#include <vector>
11
12// Cosmos
13#include <cosmos/dso_export.h>
14
21namespace cosmos {
22
24
34 const void *iov_base = nullptr;
35 size_t iov_len = 0;
36};
37
39
48template <typename IOVEC>
50 protected IOVEC {
51public: // types
52
53 // only allow the specialized IOVector to access the raw data fields.
54 template <typename ENTRY_TYPE>
55 friend class IOVector;
56
57 using PtrType = decltype(IOVEC::iov_base);
58
59public: // functions
60 auto getBase() { return this->iov_base; }
61 auto getBase() const { return this->iov_base; }
62 void setBase(PtrType base) { this->iov_base = base; }
63
64 size_t getLength() const { return this->iov_len; }
65 void setLength(size_t length) { this->iov_len = length; }
66
67 bool finished() const { return getLength() == 0; }
68
70
79 size_t update(const size_t processed_bytes) {
80 auto to_reduce = std::min(processed_bytes, getLength());
81
82 if constexpr (std::is_same_v<IOVEC, struct iovec_const>) {
83 auto data = reinterpret_cast<const char*>(getBase());
84 setBase(reinterpret_cast<PtrType>(data + to_reduce));
85 } else {
86 auto data = reinterpret_cast<char*>(getBase());
87 setBase(reinterpret_cast<PtrType>(data + to_reduce));
88 }
89
90 setLength(getLength() - to_reduce);
91 return to_reduce;
92 }
93};
94
96
101 public IOMemoryRegion<struct ::iovec> {
102
103 InputMemoryRegion() : InputMemoryRegion{nullptr, 0} {}
104
105 InputMemoryRegion(void *base, size_t length) {
106 setBase(base);
107 setLength(length);
108 }
109
110 explicit InputMemoryRegion(std::string &s) {
111 setBase(s.data());
112 setLength(s.size());
113 }
114
115 auto asIovec() {
116 return static_cast<struct iovec*>(this);
117 }
118};
119
121
126 public IOMemoryRegion<struct iovec_const> {
127
128 OutputMemoryRegion() : OutputMemoryRegion{nullptr, 0} {}
129
130 OutputMemoryRegion(const void *base, size_t length) {
131 setBase(base);
132 setLength(length);
133 }
134
135 explicit OutputMemoryRegion(const std::string_view sv) {
136 setBase(sv.data());
137 setLength(sv.size());
138 }
139
140 auto asIovec() {
141 return reinterpret_cast<struct iovec*>(this);
142 }
143};
144
146template <typename MEMORY_REGION>
147class IOVector :
148 public std::vector<MEMORY_REGION> {
149 // only let these classes access the raw data
150 friend class StreamIO;
151 friend class SendMessageHeader;
152 friend class ReceiveMessageHeader;
153 template <typename MSGHDR>
154 friend class MessageHeaderBase;
155
156public: // functions
157
159 size_t leftBytes() const {
160 size_t ret = 0;
161 for (const auto &entry: *this) {
162 ret += entry.getLength();
163 }
164
165 return ret;
166 }
167
168protected: // functions
169
170 auto raw() { return this->data()->asIovec(); };
171
173 bool update(size_t processed_bytes);
174};
175
176using ReadIOVector = IOVector<InputMemoryRegion>;
177using WriteIOVector = IOVector<OutputMemoryRegion>;
178
179extern template class COSMOS_API IOVector<InputMemoryRegion>;
180extern template class COSMOS_API IOVector<OutputMemoryRegion>;
181
182} // end ns
A sequence of IOMemoryRegion specifications for scatter/gather I/O in the StreamIO API.
Definition iovector.hxx:148
bool update(size_t processed_bytes)
Update the vector given the number of bytes processed by a system call.
Definition iovector.cxx:11
size_t leftBytes() const
Returns the accumulated number of unprocessed bytes over the complete vector.
Definition iovector.hxx:159
Base class for SendMessageHeader and ReceiveMessageHeader.
Wrapper for struct msghdr for receiving message via Socket::receiveMessage().
Wrapper for struct msghdr for sending messages via Socket::sendMessage().
Wrapper around file descriptors for streaming I/O access.
Definition StreamIO.hxx:40
I/O memory region specification used with scatter/gather I/O in StreamIO API.
Definition iovector.hxx:50
size_t update(const size_t processed_bytes)
Update the current memory region to accommodate the given number of processed bytes.
Definition iovector.hxx:79
IOMemoryRegion for input (read) operations.
Definition iovector.hxx:101
IOMemoryRegion for output (write) operations.
Definition iovector.hxx:126
const variant of the struct iovec from system headers.
Definition iovector.hxx:33