libcosmos
Linux C++ System Programming Library
|
Wrapper around file descriptors for streaming I/O access. More...
#include <StreamIO.hxx>
Public Types | |
enum class | SeekType : int { SET = SEEK_SET , CUR = SEEK_CUR , END = SEEK_END , DATA = SEEK_DATA , HOLE = SEEK_HOLE } |
Different methods for changing the file read/write position. More... | |
Public Member Functions | |
StreamIO (FileDescriptor &fd) | |
StreamIO (const StreamIO &)=delete | |
StreamIO & | operator= (const StreamIO &)=delete |
StreamIO & | operator= (StreamIO &&) noexcept |
size_t | read (void *buf, size_t length) |
Read up to length bytes from the file into buf . | |
size_t | write (const void *buf, size_t length) |
Write up to length bytes from buf into the underlying file. | |
size_t | write (const std::string_view data) |
string_view wrapper around write(const void*, size_t). | |
void | readAll (void *buf, size_t length) |
Read all length bytes from the underlying file. | |
void | readAll (std::string &s, size_t length) |
Like readAll(void*, size_t) using an STL string. | |
void | writeAll (const void *buf, size_t length) |
Write all length bytes into the underlying file. | |
void | writeAll (const std::string_view data) |
string_view wrapper around writeAll(const void*, size_t). | |
bool | read (ReadIOVector &iovec) |
Read data from file into a vector of data regions. | |
bool | write (WriteIOVector &iovec) |
Write data to file from a vector of data regions. | |
void | readAll (ReadIOVector &iovec) |
Read into all data regions specified in iovec . | |
void | writeAll (WriteIOVector &iovec) |
Write all data regions specified in iovec . | |
off_t | seek (const SeekType type, off_t off) |
Seek to the given offset based on the given offset type . | |
off_t | seekFromStart (off_t off) |
Seek to the given offset relative to the start of the file. | |
off_t | seekFromCurrent (off_t off) |
Seek to the given offset relative to the current file position. | |
off_t | seekFromEnd (off_t off) |
Seek to the given offset relative to the end of the file. | |
Protected Attributes | |
FileDescriptor & | m_stream_fd |
Wrapper around file descriptors for streaming I/O access.
Streaming I/O means that a file's read/write position is maintained by the operating system and data is exchanged by means of read/write operations that transfer data from the current process to the file and vice versa.
This is the most common access mode for files but also somewhat inefficient. In contrast e.g. memory mapped files can be more efficient.
Some special devices or file types may also support streaming I/O access. This type can also be used with them - but be sure to understand the special I/O semantics for the respective file type when using it with this wrapper.
Beyond read and write operations this type also offers seek operations. Not all file types are seekable though and the operation can fail.
This type will not take ownership of the provided file descriptor. It is only meant as an access wrapper, not as a permanent representation of the backed file.
StreamIO has a fixed coupling to the assigned file descriptor. It can be used as a mixin class or as a base class.
Definition at line 40 of file StreamIO.hxx.
|
strong |
Different methods for changing the file read/write position.
Definition at line 44 of file StreamIO.hxx.
|
inlineexplicit |
Definition at line 67 of file StreamIO.hxx.
Definition at line 74 of file StreamIO.hxx.
bool cosmos::StreamIO::read | ( | ReadIOVector & | iovec | ) |
Read data from file into a vector of data regions.
The iovec
specifies memory regions into which data from the file should be written. The data will be filled sequentially starting from the first memory region.
Partial reads can occur, thus on return the length and base fields of each vector entry will be updated to reflect this. The return value is a flag indicating whether the complete vector has been filled, or whether a partial read occurred.
These vector I/O operations are useful when structured binary of fixed size is transferred e.g. in network protocols for the different header layers. This way the individual headers can be kept in distinct places while only a single system call is necessary to transfer them.
Definition at line 75 of file StreamIO.cxx.
size_t cosmos::StreamIO::read | ( | void * | buf, |
size_t | length ) |
Read up to length
bytes from the file into buf
.
An attempt is made to read data from the underlying file object and place it into buf
. buf
needs to be able to hold at least length
bytes. Short reads can occur in which case less bytes will be read. The number of bytes actually read is returned from this function.
A return value of zero indicates that the End-of-File has been reached and no further data can be obtained.
On error conditions an exception is thrown.
Definition at line 26 of file StreamIO.cxx.
|
inline |
Read into all data regions specified in iovec
.
This is just like read(IOVector&) but it takes care of partial reads and continues until all data of the IOVector has been filled or an error occurs. On return the complete vector has been filled.
Definition at line 189 of file StreamIO.hxx.
|
inline |
Like readAll(void*, size_t) using an STL string.
Definition at line 125 of file StreamIO.hxx.
void cosmos::StreamIO::readAll | ( | void * | buf, |
size_t | length ) |
Read all length
bytes from the underlying file.
This behaves just like read() with the exception that on short reads the operation will be continued until all length
bytes have been obtained from the file.
An End-of-File condition is considered an error in this context and results in a RuntimeError exception. If the function returns normally then all length
bytes will have been obtained.
Definition at line 39 of file StreamIO.cxx.
off_t cosmos::StreamIO::seek | ( | const SeekType | type, |
off_t | off ) |
Seek to the given offset based on the given offset type
.
Definition at line 102 of file StreamIO.cxx.
|
inline |
Seek to the given offset relative to the current file position.
Definition at line 214 of file StreamIO.hxx.
|
inline |
Seek to the given offset relative to the end of the file.
Definition at line 216 of file StreamIO.hxx.
|
inline |
Seek to the given offset relative to the start of the file.
Definition at line 212 of file StreamIO.hxx.
|
inline |
string_view wrapper around write(const void*, size_t).
Definition at line 108 of file StreamIO.hxx.
size_t cosmos::StreamIO::write | ( | const void * | buf, |
size_t | length ) |
Write up to length
bytes from buf
into the underlying file.
An attempt is made to write data from the given buf
and pass it to the underlying file object. buf
needs to hold at least length
bytes of data. Short writes can occur in which case less bytes will be written. The number of bytes actually written is returned from this function.
On error conditions an exception is thrown.
Definition at line 52 of file StreamIO.cxx.
bool cosmos::StreamIO::write | ( | WriteIOVector & | iovec | ) |
Write data to file from a vector of data regions.
The iovec
specifies memory regions whose data will be written to the file. The data will be written sequentially starting from the first memory region.
Partial writes can occur, thus on return the length and base fields of each vector entry will be updated to reflect this. The return value is a flag indicating whether the complete vector has been written out, or whether a partial write occurred.
Definition at line 89 of file StreamIO.cxx.
|
inline |
string_view wrapper around writeAll(const void*, size_t).
Definition at line 147 of file StreamIO.hxx.
void cosmos::StreamIO::writeAll | ( | const void * | buf, |
size_t | length ) |
Write all length
bytes into the underlying file.
This behaves just like write() with the exception that on short writes the operation will be continued until all length
bytes have been written to the file.
If the function returns normally then all length
bytes will have been transferred.
Definition at line 65 of file StreamIO.cxx.
|
inline |
Write all data regions specified in iovec
.
This is just like write(const IOVector&) but it takes care of partial writes and continues until all data of the IOVector has been written out or an error occurs. On return the complete vector has been written.
Definition at line 202 of file StreamIO.hxx.
|
protected |
Definition at line 220 of file StreamIO.hxx.