15 virtual void read(
void *output, u32 size) = 0;
16 virtual void write(
void *input, u32 size) = 0;
17 virtual bool eof()
const = 0;
18 virtual bool safe(u32 size)
const = 0;
19 virtual bool bad()
const = 0;
24 void setEndian(std::endian endian) {
28 [[nodiscard]] u32 index()
const {
32 [[nodiscard]] u8 read_u8();
33 [[nodiscard]]
u16 read_u16();
34 [[nodiscard]] u32 read_u32();
35 [[nodiscard]] u64 read_u64();
36 [[nodiscard]] s8 read_s8();
37 [[nodiscard]] s16 read_s16();
38 [[nodiscard]] s32 read_s32();
39 [[nodiscard]] s64 read_s64();
40 [[nodiscard]] f32 read_f32();
41 [[nodiscard]] f64 read_f64();
48 template <ParseableType T>
49 [[nodiscard]] T read() {
50 ASSERT(safe(
sizeof(T)));
52 read(&val,
sizeof(val));
53 m_index +=
sizeof(val);
55 return parse<T>(val, m_endian);