17 static size_t view_read(
io_t *
self,
void *dst,
size_t size)
26 static size_t view_size(
io_t *
self)
32 static size_t view_seek(
io_t *
self,
size_t offset)
41 CTASSERTF(protect == eOsProtectRead,
"cannot map view with protection %d", protect);
44 return (
void*)mem->
data;
50 .fn_get_size = view_size,
58 static io_t *impl_view_init(
void *buffer,
const char *name,
const void *data,
size_t size,
arena_t *arena)
68 return io_init(buffer, &kViewCallbacks, eOsAccessRead, name, &impl, arena);
71 static io_t *impl_string_init(
void *buffer,
const char *name,
const char *
string,
arena_t *arena)
75 return impl_view_init(buffer, name,
string,
ctu_strlen(
string), arena);
86 return impl_view_init(buffer, name, data,
size, arena);
93 return impl_string_init(buffer, name,
string, arena);
103 return impl_view_init(buffer, name, data,
size, NULL);
109 return impl_string_init(buffer, name,
string, NULL);
os_protect_t
file mapping memory protection
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_NOALIAS CT_BASE_API void * ctu_memcpy(STA_WRITES(size) void *CT_RESTRICT dst, STA_READS(size) const void *CT_RESTRICT src, size_t size)
copy memory from one location to another equivalent to memcpy but with safety checks
CT_NODISCARD CT_PUREFN CT_BASE_API size_t ctu_strlen(const char *str)
get the length of a string not including the null terminator equivalent to strlen but with safety che...
CT_PUREFN CT_IO_API void * io_data(io_t *io)
get the user data from an io object
CT_IO_API io_t * io_init(STA_WRITES(sizeof(io_t)+cb->size) void *buffer, const io_callbacks_t *cb, os_access_t flags, const char *name, STA_READS(cb->size) const void *data, arena_t *arena)
initialize an IO object for a given interface
#define ARENA_MALLOC(size, name, parent, arena)
allocate 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
io_read_t fn_read
read callback may be NULL on non-readable objects
a non-owning, readonly view of a buffer
size_t offset
current offset in data
const char * data
pointer to data
STA_DECL io_t * io_view(const char *name, const void *data, size_t size, arena_t *arena)
create a readonly IO object for a given view of memory
STA_DECL io_t * io_string_init(void *buffer, const char *name, const char *string)
STA_DECL io_t * io_view_init(void *buffer, const char *name, const void *data, size_t size)
STA_DECL io_t * io_string(const char *name, const char *string, arena_t *arena)
create an IO view of a string create a readonly IO view of a string