28 _Success_(
return)
bool read_id(_In_ std::istream& stream, _Out_ T_id &
id, _In_opt_ std::streamoff end = (std::streamoff)-1)
30 if (end == (std::streamoff)-1 || stream.tellg() < end) {
31 stream.read((
char*)&
id,
sizeof(
id));
49 _Success_(
return)
bool read_id(_In_
stdex::stream::basic_file& stream, _Out_ T_id &
id, _In_opt_ stdex::stream::fpos_t end = stdex::stream::fpos_max)
51 if (end == stdex::stream::fpos_max || stream.tell() < end) {
65 template <
class T_size, T_size N_align>
66 T_size padding(_In_ T_size size)
68 return (N_align - (size % N_align)) % N_align;
80 template <
class T_size, T_size N_align>
81 bool ignore(_In_ std::istream& stream)
85 stream.read((
char*)&size,
sizeof(size));
86 if (!stream.good()) _Unlikely_
return false;
89 size += padding<T_size, N_align>(size);
91 if (!stream.good()) _Unlikely_
return false;
105 template <
class T_size, T_size N_align>
111 if (!stream.ok()) _Unlikely_
return false;
114 size += padding<T_size, N_align>(size);
116 if (!stream.ok()) _Unlikely_
return false;
132 template <
class T_
id,
class T_size, T_size N_align>
133 bool find(_In_ std::istream& stream, _In_ T_id
id, _In_opt_ std::streamoff end = (std::streamoff)-1)
136 while (end == (std::streamoff)-1 || stream.tellg() < end) {
137 stream.read((
char*)&_id,
sizeof(_id));
138 if (!stream.good()) _Unlikely_
return false;
143 ignore<T_size, N_align>(stream);
159 template <
class T_
id,
class T_size, T_size N_align>
160 bool find(_In_
stdex::stream::basic_file& stream, _In_ T_id
id, _In_opt_ stdex::stream::fpos_t end = stdex::stream::fpos_max)
163 while (end == stdex::stream::fpos_max || stream.tell() < end) {
165 if (!stream.ok()) _Unlikely_
return false;
170 ignore<T_size, N_align>(stream);
183 template <
class T_
id,
class T_size>
184 std::streamoff open(_In_ std::ostream& stream, _In_ T_id
id)
186 std::streamoff start = stream.tellp();
189 if (stream.fail()) _Unlikely_
return (std::streamoff)-1;
190 stream.write((
const char*)&
id,
sizeof(
id));
193 if (stream.fail()) _Unlikely_
return (std::streamoff)-1;
195 stream.write((
const char*)&size,
sizeof(size));
208 template <
class T_
id,
class T_size>
211 auto start = stream.tell();
217 stream << static_cast<T_size>(0);
230 template <
class T_
id,
class T_size, T_size N_align>
231 std::streamoff close(_In_ std::ostream& stream, _In_ std::streamoff start)
233 std::streamoff end = stream.tellp();
235 size =
static_cast<T_size
>(end - start -
sizeof(T_id) -
sizeof(T_size)),
236 remainder = padding<T_size, N_align>(size);
240 static const char padding[N_align] = {};
241 stream.write(padding, remainder);
246 if (stream.fail()) _Unlikely_
return (std::streamoff)-1;
247 stream.seekp(start +
sizeof(T_id));
248 stream.write(
reinterpret_cast<const char*
>(&size),
sizeof(size));
262 template <
class T_
id,
class T_size, T_size N_align>
265 auto end = stream.tell();
267 size =
static_cast<T_size
>(end - start -
sizeof(T_id) -
sizeof(T_size)),
268 remainder = padding<T_size, N_align>(size);
272 static const char padding[N_align] = {};
273 stream.write_array(padding,
sizeof(
char), remainder);
278 if (!stream.ok()) _Unlikely_
return stdex::stream::fpos_max;
279 stream.seekbeg(start +
sizeof(T_id));
289 template <
class T,
class T_
id, const T_
id ID,
class T_size, T_size N_align>
310 static constexpr T_id
id()
335 static std::streamoff
open(_In_ std::ostream& stream)
337 return stdex::idrec::open<T_id, T_size>(stream, ID);
349 return stdex::idrec::open<T_id, T_size>(stream, ID);
360 static std::streamoff
close(_In_ std::ostream& stream, _In_ std::streamoff start)
362 return stdex::idrec::close<T_id, T_size, N_align>(stream, start);
375 return stdex::idrec::close<T_id, T_size, N_align>(stream, start);
388 static bool find(_In_ std::istream& stream, _In_opt_ std::streamoff end = (std::streamoff)-1)
390 return stdex::idrec::find<T_id, T_size, N_align>(stream, ID, end);
405 return stdex::idrec::find<T_id, T_size, N_align>(stream, ID, end);
422 auto start = r.open(stream);
423 if (stream.fail()) _Unlikely_
return stream;
425 r.close(stream, start);
442 auto start = r.open(stream);
443 if (!stream.ok()) _Unlikely_
return stream;
445 r.close(stream, start);
463 auto start = r.open(temp);
464 if (!temp.
ok()) _Unlikely_
return stream;
466 r.close(temp, start);
468 stream.write_stream(temp);
487 stream.read((
char*)&size,
sizeof(size));
488 if (!stream.good()) _Unlikely_
return stream;
491 std::streamoff start = stream.tellg();
493 if (!stream.good()) _Unlikely_
return stream;
495 size += padding<T_size, N_align>(size);
496 stream.seekg(start + size);
516 if (!stream.ok()) _Unlikely_
return stream;
519 auto start = stream.tell();
523 if (limiter.
state() == stdex::stream::state_t::fail) _Unlikely_
return stream;
526 size += padding<T_size, N_align>(size);
527 stream.seekbeg(start +
static_cast<stdex::stream::fpos_t
>(size));
547 if (!stream.ok()) _Unlikely_
return stream;
552 if (limiter.
state() == stdex::stream::state_t::fail) _Unlikely_
return stream;
555 stream.skip(padding<T_size, N_align>(size));
Helper class for read/write of records to/from memory.
Definition idrec.hpp:291
const record< T, T_id, ID, T_size, N_align > & operator=(const record< T, T_id, ID, T_size, N_align > &r)
Assignment operator.
Definition idrec.hpp:322
static stdex::stream::fpos_t open(stdex::stream::basic_file &stream)
Writes record header.
Definition idrec.hpp:347
static stdex::stream::fpos_t close(stdex::stream::basic_file &stream, stdex::stream::fpos_t start)
Updates record header.
Definition idrec.hpp:373
T & data
Record data reference.
Definition idrec.hpp:408
friend std::istream & operator>>(std::istream &stream, record< T, T_id, ID, T_size, N_align > r)
Reads record from a stream.
Definition idrec.hpp:481
static bool find(stdex::stream::basic_file &stream, stdex::stream::fpos_t end=stdex::stream::fpos_max)
Finds record data.
Definition idrec.hpp:403
static std::streamoff close(std::ostream &stream, std::streamoff start)
Updates record header.
Definition idrec.hpp:360
static bool find(std::istream &stream, std::streamoff end=(std::streamoff) -1)
Finds record data.
Definition idrec.hpp:388
record(T &d)
Constructs the class.
Definition idrec.hpp:298
record(const T &d)
Constructs the class.
Definition idrec.hpp:305
static constexpr T_id id()
Returns record id.
Definition idrec.hpp:310
friend std::ostream & operator<<(std::ostream &stream, const record< T, T_id, ID, T_size, N_align > r)
Writes record to a stream.
Definition idrec.hpp:418
static std::streamoff open(std::ostream &stream)
Writes record header.
Definition idrec.hpp:335
Basic seekable stream operations.
Definition stream.hpp:815
fpos_t seekbeg(fpos_t offset)
Seeks to absolute file position.
Definition stream.hpp:842
Basic stream operations.
Definition stream.hpp:85
bool ok() const
Returns true if the stream state is clean i.e. previous operation was successful.
Definition stream.hpp:181
state_t state() const
Returns stream state after last operation.
Definition stream.hpp:176
virtual void skip(fsize_t amount)
Skips given amount of bytes of data on the stream.
Definition stream.hpp:148
Limits reading from/writing to stream to a predefined number of bytes.
Definition stream.hpp:1549
fsize_t read_limit
Number of bytes left that may be read from the stream.
Definition stream.hpp:1601
In-memory file.
Definition stream.hpp:3219
const void * data() const
Returns pointer to data.
Definition stream.hpp:3549