libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
StreamIO.hxx
1#pragma once
2
3// Linux
4#include <unistd.h>
5
6// C++
7#include <string>
8#include <string_view>
9
10// cosmos
11#include <cosmos/fs/FileDescriptor.hxx>
12#include <cosmos/io/iovector.hxx>
13
14namespace cosmos {
15
17
40class COSMOS_API StreamIO {
41public: // types
42
44 enum class SeekType : int {
45 SET = SEEK_SET,
46 CUR = SEEK_CUR,
47 END = SEEK_END,
49
54 DATA = SEEK_DATA,
56
62 HOLE = SEEK_HOLE
63 };
64
65public: // functions
66
67 explicit StreamIO(FileDescriptor &fd) :
68 m_stream_fd{fd}
69 {}
70
71 StreamIO(const StreamIO&) = delete;
72 StreamIO& operator=(const StreamIO&) = delete;
73
74 StreamIO& operator=(StreamIO &&) noexcept {
75 // simply do nothing, the fixed coupling to the FD remains and
76 // should reflect the new object state.
77 return *this;
78 }
79
81
93 size_t read(void *buf, size_t length);
94
96
105 size_t write(const void *buf, size_t length);
106
108 size_t write(const std::string_view data) {
109 return write(data.data(), data.size());
110 }
111
113
122 void readAll(void *buf, size_t length);
123
125 void readAll(std::string &s, size_t length) {
126 s.resize(length);
127 try {
128 readAll(s.data(), length);
129 } catch(...) {
130 s.clear();
131 throw;
132 }
133 }
134
136
144 void writeAll(const void *buf, size_t length);
145
147 void writeAll(const std::string_view data) {
148 return writeAll(data.data(), data.size());
149 }
150
152
168 bool read(ReadIOVector &iovec);
169
171
181 bool write(WriteIOVector &iovec);
182
184
189 void readAll(ReadIOVector &iovec) {
190 while (!read(iovec)) {
191 ;
192 }
193 }
194
196
202 void writeAll(WriteIOVector &iovec) {
203 while (!write(iovec)) {
204 ;
205 }
206 }
207
209 off_t seek(const SeekType type, off_t off);
210
212 off_t seekFromStart(off_t off) { return seek(SeekType::SET, off); }
214 off_t seekFromCurrent(off_t off) { return seek(SeekType::CUR, off); }
216 off_t seekFromEnd(off_t off) { return seek(SeekType::END, off); }
217
218protected: // data
219
220 FileDescriptor &m_stream_fd;
221};
222
223} // end ns
Thin Wrapper around OS file descriptors.
Wrapper around file descriptors for streaming I/O access.
Definition StreamIO.hxx:40
void writeAll(WriteIOVector &iovec)
Write all data regions specified in iovec.
Definition StreamIO.hxx:202
size_t write(const std::string_view data)
string_view wrapper around write(const void*, size_t).
Definition StreamIO.hxx:108
off_t seekFromCurrent(off_t off)
Seek to the given offset relative to the current file position.
Definition StreamIO.hxx:214
void writeAll(const std::string_view data)
string_view wrapper around writeAll(const void*, size_t).
Definition StreamIO.hxx:147
void readAll(ReadIOVector &iovec)
Read into all data regions specified in iovec.
Definition StreamIO.hxx:189
off_t seekFromEnd(off_t off)
Seek to the given offset relative to the end of the file.
Definition StreamIO.hxx:216
SeekType
Different methods for changing the file read/write position.
Definition StreamIO.hxx:44
off_t seekFromStart(off_t off)
Seek to the given offset relative to the start of the file.
Definition StreamIO.hxx:212
void readAll(std::string &s, size_t length)
Like readAll(void*, size_t) using an STL string.
Definition StreamIO.hxx:125