11#include <cosmos/fs/FileDescriptor.hxx>
12#include <cosmos/io/iovector.hxx>
71 StreamIO(
const StreamIO&) =
delete;
72 StreamIO& operator=(
const StreamIO&) =
delete;
74 StreamIO& operator=(StreamIO &&) noexcept {
93 size_t read(
void *buf,
size_t length);
105 size_t write(
const void *buf,
size_t length);
108 size_t write(
const std::string_view data) {
109 return write(data.data(), data.size());
122 void readAll(
void *buf,
size_t length);
128 readAll(s.data(), length);
144 void writeAll(
const void *buf,
size_t length);
148 return writeAll(data.data(), data.size());
190 while (!read(iovec)) {
203 while (!write(iovec)) {
209 off_t seek(
const SeekType type, off_t off);
Thin Wrapper around OS file descriptors.
Wrapper around file descriptors for streaming I/O access.
void writeAll(WriteIOVector &iovec)
Write all data regions specified in iovec.
size_t write(const std::string_view data)
string_view wrapper around write(const void*, size_t).
off_t seekFromCurrent(off_t off)
Seek to the given offset relative to the current file position.
void writeAll(const std::string_view data)
string_view wrapper around writeAll(const void*, size_t).
void readAll(ReadIOVector &iovec)
Read into all data regions specified in iovec.
off_t seekFromEnd(off_t off)
Seek to the given offset relative to the end of the file.
SeekType
Different methods for changing the file read/write position.
off_t seekFromStart(off_t off)
Seek to the given offset relative to the start of the file.
void readAll(std::string &s, size_t length)
Like readAll(void*, size_t) using an STL string.