11 static os_error_t impl_close(
io_t *io)
28 os_error_t err = impl_close(io);
40 return impl_close(io);
47 CTASSERTF(io->
flags & eOsAccessRead,
"cannot io_read(%s). flags did not include eOsAccessRead",
io_name(io));
57 CTASSERTF(io->
flags & eOsAccessWrite,
"cannot io_write(%s). flags did not include eOsAccessWrite",
io_name(io));
125 CTASSERTF(protect != eOsProtectNone,
"cannot io_map(%s). protect is eOsProtectNone",
io_name(io));
128 if (protect & eOsProtectRead)
133 if (protect & eOsProtectWrite)
138 if (
io_size(io) == 0) {
return ""; }
os_protect_t
file mapping memory protection
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_ARENA_API void arena_free(STA_RELEASE void *ptr, size_t size, arena_t *arena)
release memory from a custom allocator
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
CT_NODISCARD STA_FORMAT_STRING const char CT_NODISCARD CT_STD_API text_t text_vformat(arena_t *arena, const char *fmt, va_list args)
format a string
CT_NODISCARD STA_FORMAT_STRING const char * fmt
STA_DECL size_t io_seek(io_t *io, size_t offset)
seek to an absolute offset in a file
STA_DECL size_t io_vprintf(io_t *io, const char *fmt, va_list args)
vprintf to an io object
STA_DECL size_t io_read(io_t *io, void *dst, size_t size)
STA_DECL const char * io_name(const io_t *io)
get the name of an io object
STA_DECL os_error_t io_error(const io_t *io)
get the last error from the io object
STA_DECL os_error_t io_free(io_t *io)
STA_DECL size_t io_size(io_t *io)
get the total size of an io objects contents
STA_DECL void * io_map(io_t *io, os_protect_t protect)
map an io object into memory maps an io objects entire contents into memory.
STA_DECL os_error_t io_close(io_t *io)
STA_DECL size_t io_printf(io_t *io, const char *fmt,...)
STA_DECL size_t io_write(io_t *io, const void *src, size_t size)
io_seek_t fn_seek
absolute seek callback must always be provided
io_map_t fn_map
file map callback must always be provided
io_close_t fn_close
close callback optional if backing data does not require lifetime management
io_read_t fn_read
read callback may be NULL on non-readable objects
io_size_t fn_get_size
total size callback must always be provided
size_t size
the size of the io objects private data
io_write_t fn_write
write callback may be NULL on non-writable objects
io_fwrite_t fn_fwrite
write format callback may be NULL on non-writable objects
arena_t * arena
the arena this object was allocated from
const char * name
the name of this object
os_error_t error
the last error set on this object
const io_callbacks_t * cb
callback struct
os_access_t flags
the access flags for this object
size_t length
the number of characters in the text