libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
iovector.cxx
1// Cosmos
2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/io/iovector.hxx>
4
5namespace cosmos {
6
7static_assert(sizeof(struct iovec_const) == sizeof(struct iovec),
8 "size mismatch between iovec_const vs. struct iovec in system headers");
9
10template <typename MEMORY_REGION>
11bool IOVector<MEMORY_REGION>::update(size_t processed_bytes) {
12 // there's two approaches to update an io vector after partial
13 // read/write operations:
14 // a) removing completely processed entry from the begin of the
15 // vector and update partially processed ones
16 // b) only updating pointer and length information but keeping
17 // the entry in the vector.
18 // For b) the erase operation on the front of the vector is
19 // somewhat expensive. For a) the re-entry into the kernel is
20 // somewhat expensive, since the first entries processed will
21 // potentially be finished already. For b) the advantage is that even
22 // a fixed size std::array would be possible to use. Currently we
23 // follow b).
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}
41
42template class IOVector<InputMemoryRegion>;
43template class IOVector<OutputMemoryRegion>;
44
45} // 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
Exception type for generic runtime errors.