2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/error/RuntimeError.hxx>
4#include <cosmos/error/WouldBlock.hxx>
5#include <cosmos/io/StreamIO.hxx>
6#include <cosmos/private/cosmos.hxx>
7#include <cosmos/utils.hxx>
13void handleIOError(
const std::string_view operation) {
15 if (
const auto error =
get_errno(); auto_restart_syscalls && error == Errno::INTERRUPTED)
17 else if (
in_list(error, {Errno::AGAIN, Errno::WOULD_BLOCK}))
18 cosmos_throw (WouldBlock(operation));
20 cosmos_throw (ApiError(operation));
28 auto res =
::read(to_integral(m_stream_fd.
raw()), buf, length);
31 handleIOError(
"reading from file");
35 return static_cast<size_t>(res);
42 res =
read(buf, length);
43 buf =
reinterpret_cast<char*
>(buf) + res;
54 auto res =
::write(to_integral(m_stream_fd.
raw()), buf, length);
57 handleIOError(
"writing to file");
61 return static_cast<size_t>(res);
69 res =
write(buf, length);
70 buf =
reinterpret_cast<const char*
>(buf) + res;
77 const auto res = ::readv(
78 to_integral(m_stream_fd.
raw()), iovec.raw(), iovec.size());
81 handleIOError(
"reading to vector from file");
85 return iovec.
update(
static_cast<size_t>(res));
91 auto res = ::writev(to_integral(m_stream_fd.
raw()), iovec.raw(), iovec.size());
94 handleIOError(
"writing vector to file");
98 return iovec.
update(
static_cast<size_t>(res));
103 const auto res = ::lseek(to_integral(m_stream_fd.
raw()), off, to_integral(type));
105 if (res ==
static_cast<off_t
>(-1)) {
Specialized exception type used when system APIs fail.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
bool update(size_t processed_bytes)
Update the vector given the number of bytes processed by a system call.
Exception type for generic runtime errors.
size_t read(void *buf, size_t length)
Read up to length bytes from the file into buf.
void readAll(void *buf, size_t length)
Read all length bytes from the underlying file.
void writeAll(const void *buf, size_t length)
Write all length bytes into the underlying file.
size_t write(const void *buf, size_t length)
Write up to length bytes from buf into the underlying file.
SeekType
Different methods for changing the file read/write position.
off_t seek(const SeekType type, off_t off)
Seek to the given offset based on the given offset type.
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
bool in_list(const T &v, const std::initializer_list< T > &l)
Checks whether the value v is found in the given list of values l.