libcosmos
Linux C++ System Programming Library
|
I/O memory region specification used with scatter/gather I/O in StreamIO API. More...
#include <iovector.hxx>
Public Types | |
using | PtrType = decltype(IOVEC::iov_base) |
Public Member Functions | |
auto | getBase () |
auto | getBase () const |
void | setBase (PtrType base) |
size_t | getLength () const |
void | setLength (size_t length) |
bool | finished () const |
size_t | update (const size_t processed_bytes) |
Update the current memory region to accommodate the given number of processed bytes. | |
Friends | |
template<typename ENTRY_TYPE > | |
class | IOVector |
I/O memory region specification used with scatter/gather I/O in StreamIO API.
This structure defines a single memory region to be used for vector read/write on file descriptors. It is used a base class for read/write specializations due to different constness requirements of the underlying data structure.
IOVEC is either the system defined struct iovec
or our remodelled struct iovec_const
.
Definition at line 49 of file iovector.hxx.
using cosmos::IOMemoryRegion< IOVEC >::PtrType = decltype(IOVEC::iov_base) |
Definition at line 57 of file iovector.hxx.
|
inline |
Definition at line 67 of file iovector.hxx.
|
inline |
Definition at line 60 of file iovector.hxx.
|
inline |
Definition at line 61 of file iovector.hxx.
|
inline |
Definition at line 64 of file iovector.hxx.
|
inline |
Definition at line 62 of file iovector.hxx.
|
inline |
Definition at line 65 of file iovector.hxx.
|
inline |
Update the current memory region to accommodate the given number of processed bytes.
Once a system call processes part or all of an IOVector, use this function to adjust the remaining length and advance the base pointer.
This function returns the number of bytes that account to this IOVector entry. If more bytes have been processed than this entry holds then the next IOVector entry needs to be updated, too.
Definition at line 79 of file iovector.hxx.
Definition at line 55 of file iovector.hxx.