libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::IOVector< MEMORY_REGION > Class Template Reference

A sequence of IOMemoryRegion specifications for scatter/gather I/O in the StreamIO API. More...

#include <iovector.hxx>

+ Inheritance diagram for cosmos::IOVector< MEMORY_REGION >:

Public Member Functions

size_t leftBytes () const
 Returns the accumulated number of unprocessed bytes over the complete vector.
 

Protected Member Functions

auto raw ()
 
bool update (size_t processed_bytes)
 Update the vector given the number of bytes processed by a system call.
 

Friends

class StreamIO
 
class SendMessageHeader
 
class ReceiveMessageHeader
 
template<typename MSGHDR >
class MessageHeaderBase
 

Detailed Description

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.

Member Function Documentation

◆ leftBytes()

template<typename MEMORY_REGION >
size_t cosmos::IOVector< MEMORY_REGION >::leftBytes ( ) const
inline

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 >
auto cosmos::IOVector< MEMORY_REGION >::raw ( )
inlineprotected

Definition at line 170 of file iovector.hxx.

170{ return this->data()->asIovec(); };

◆ update()

template<typename MEMORY_REGION >
bool cosmos::IOVector< MEMORY_REGION >::update ( size_t processed_bytes)
protected

Update the vector given the number of bytes processed by a system call.

Definition at line 11 of file iovector.cxx.

11 {
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}

Friends And Related Symbol Documentation

◆ MessageHeaderBase

template<typename MEMORY_REGION >
template<typename MSGHDR >
friend class MessageHeaderBase
friend

Definition at line 154 of file iovector.hxx.

◆ ReceiveMessageHeader

template<typename MEMORY_REGION >
friend class ReceiveMessageHeader
friend

Definition at line 152 of file iovector.hxx.

◆ SendMessageHeader

template<typename MEMORY_REGION >
friend class SendMessageHeader
friend

Definition at line 151 of file iovector.hxx.

◆ StreamIO

template<typename MEMORY_REGION >
friend class StreamIO
friend

Definition at line 150 of file iovector.hxx.


The documentation for this class was generated from the following files: