libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
StreamIO.cxx
1// cosmos
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>
8
9namespace cosmos {
10
11namespace {
12
13void handleIOError(const std::string_view operation) {
14 // transparent restart, if configured
15 if (const auto error = get_errno(); auto_restart_syscalls && error == Errno::INTERRUPTED)
16 return;
17 else if (in_list(error, {Errno::AGAIN, Errno::WOULD_BLOCK}))
18 cosmos_throw (WouldBlock(operation));
19
20 cosmos_throw (ApiError(operation));
21
22}
23
24} // end anons ns
25
26size_t StreamIO::read(void *buf, size_t length) {
27 while (true) {
28 auto res = ::read(to_integral(m_stream_fd.raw()), buf, length);
29
30 if (res < 0) {
31 handleIOError("reading from file");
32 continue;
33 }
34
35 return static_cast<size_t>(res);
36 }
37}
38
39void StreamIO::readAll(void *buf, size_t length) {
40 size_t res;
41 while (length != 0) {
42 res = read(buf, length);
43 buf = reinterpret_cast<char*>(buf) + res;
44 length -= res;
45
46 if (res == 0) {
47 cosmos_throw (RuntimeError("unexpected EOF"));
48 }
49 }
50}
51
52size_t StreamIO::write(const void *buf, size_t length) {
53 while (true) {
54 auto res = ::write(to_integral(m_stream_fd.raw()), buf, length);
55
56 if (res < 0) {
57 handleIOError("writing to file");
58 continue;
59 }
60
61 return static_cast<size_t>(res);
62 }
63}
64
65void StreamIO::writeAll(const void *buf, size_t length) {
66 size_t res;
67
68 while (length != 0) {
69 res = write(buf, length);
70 buf = reinterpret_cast<const char*>(buf) + res;
71 length -= res;
72 }
73}
74
76 while (true) {
77 const auto res = ::readv(
78 to_integral(m_stream_fd.raw()), iovec.raw(), iovec.size());
79
80 if (res < 0) {
81 handleIOError("reading to vector from file");
82 continue;
83 }
84
85 return iovec.update(static_cast<size_t>(res));
86 }
87}
88
90 while (true) {
91 auto res = ::writev(to_integral(m_stream_fd.raw()), iovec.raw(), iovec.size());
92
93 if (res < 0) {
94 handleIOError("writing vector to file");
95 continue;
96 }
97
98 return iovec.update(static_cast<size_t>(res));
99 }
100}
101
102off_t StreamIO::seek(const SeekType type, off_t off) {
103 const auto res = ::lseek(to_integral(m_stream_fd.raw()), off, to_integral(type));
104
105 if (res == static_cast<off_t>(-1)) {
106 cosmos_throw (ApiError("lseek()"));
107 }
108
109 return res;
110}
111
112} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
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.
Definition iovector.cxx:11
Exception type for generic runtime errors.
size_t read(void *buf, size_t length)
Read up to length bytes from the file into buf.
Definition StreamIO.cxx:26
void readAll(void *buf, size_t length)
Read all length bytes from the underlying file.
Definition StreamIO.cxx:39
void writeAll(const void *buf, size_t length)
Write all length bytes into the underlying file.
Definition StreamIO.cxx:65
size_t write(const void *buf, size_t length)
Write up to length bytes from buf into the underlying file.
Definition StreamIO.cxx:52
SeekType
Different methods for changing the file read/write position.
Definition StreamIO.hxx:44
off_t seek(const SeekType type, off_t off)
Seek to the given offset based on the given offset type.
Definition StreamIO.cxx:102
Errno get_errno()
Wrapper that returns the Errno strongly typed representation of the current errno
Definition errno.hxx:111
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.
Definition utils.hxx:117