13#include <cosmos/dso_export.h>
34 const void *iov_base =
nullptr;
48template <
typename IOVEC>
54 template <
typename ENTRY_TYPE>
57 using PtrType =
decltype(IOVEC::iov_base);
60 auto getBase() {
return this->iov_base; }
61 auto getBase()
const {
return this->iov_base; }
62 void setBase(PtrType base) { this->iov_base = base; }
64 size_t getLength()
const {
return this->iov_len; }
65 void setLength(
size_t length) { this->iov_len = length; }
67 bool finished()
const {
return getLength() == 0; }
79 size_t update(
const size_t processed_bytes) {
80 auto to_reduce = std::min(processed_bytes, getLength());
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));
86 auto data =
reinterpret_cast<char*
>(getBase());
87 setBase(
reinterpret_cast<PtrType
>(data + to_reduce));
90 setLength(getLength() - to_reduce);
116 return static_cast<struct iovec*
>(
this);
137 setLength(sv.size());
141 return reinterpret_cast<struct iovec*
>(
this);
146template <
typename MEMORY_REGION>
148 public std::vector<MEMORY_REGION> {
153 template <
typename MSGHDR>
161 for (
const auto &entry: *
this) {
162 ret += entry.getLength();
170 auto raw() {
return this->data()->asIovec(); };
173 bool update(
size_t processed_bytes);
176using ReadIOVector = IOVector<InputMemoryRegion>;
177using WriteIOVector = IOVector<OutputMemoryRegion>;
179extern template class COSMOS_API IOVector<InputMemoryRegion>;
180extern template class COSMOS_API IOVector<OutputMemoryRegion>;
A sequence of IOMemoryRegion specifications for scatter/gather I/O in the StreamIO API.
bool update(size_t processed_bytes)
Update the vector given the number of bytes processed by a system call.
size_t leftBytes() const
Returns the accumulated number of unprocessed bytes over the complete vector.
Wrapper around file descriptors for streaming I/O access.
I/O memory region specification used with scatter/gather I/O in StreamIO API.
size_t update(const size_t processed_bytes)
Update the current memory region to accommodate the given number of processed bytes.
IOMemoryRegion for output (write) operations.
const variant of the struct iovec from system headers.