A sequence of IOMemoryRegion specifications for scatter/gather I/O in the StreamIO API.
More...
#include <iovector.hxx>
|
size_t | leftBytes () const |
| Returns the accumulated number of unprocessed bytes over the complete vector.
|
|
|
auto | raw () |
|
bool | update (size_t processed_bytes) |
| Update the vector given the number of bytes processed by a system call.
|
|
template<typename MEMORY_REGION>
class cosmos::IOVector< MEMORY_REGION >
A sequence of IOMemoryRegion specifications for scatter/gather I/O in the StreamIO API.
Definition at line 147 of file iovector.hxx.
◆ leftBytes()
template<typename MEMORY_REGION >
Returns the accumulated number of unprocessed bytes over the complete vector.
Definition at line 159 of file iovector.hxx.
159 {
160 size_t ret = 0;
161 for (const auto &entry: *this) {
162 ret += entry.getLength();
163 }
164
165 return ret;
166 }
◆ raw()
template<typename MEMORY_REGION >
Definition at line 170 of file iovector.hxx.
170{ return this->data()->asIovec(); };
◆ update()
template<typename MEMORY_REGION >
Update the vector given the number of bytes processed by a system call.
Definition at line 11 of file iovector.cxx.
11 {
12
13
14
15
16
17
18
19
20
21
22
23
24 bool vec_finished = true;
25
26 for (auto &entry: *this) {
27 processed_bytes -= entry.update(processed_bytes);
28
29 if (!entry.finished()) {
30 vec_finished = false;
31 break;
32 }
33 }
34
35 if (processed_bytes != 0) {
36 cosmos_throw (RuntimeError("inconsistency while updating IOVector"));
37 }
38
39 return vec_finished;
40}
◆ MessageHeaderBase
template<typename MEMORY_REGION >
template<typename MSGHDR >
◆ ReceiveMessageHeader
template<typename MEMORY_REGION >
◆ SendMessageHeader
template<typename MEMORY_REGION >
◆ StreamIO
template<typename MEMORY_REGION >
The documentation for this class was generated from the following files: