54 static size_t vfs_read(
io_t *
self,
void *dst,
size_t size)
63 static size_t vfs_write(
io_t *
self,
const void *src,
size_t size)
73 data->
size = new_size;
82 static size_t vfs_size(
io_t *
self)
88 static size_t vfs_seek(
io_t *
self,
size_t offset)
97 CTASSERTF(!(protect & eOsProtectExecute),
"cannot map vfs io object as executable `%s`",
io_name(
self));
103 static os_error_t vfs_close(
io_t *
self)
111 .fn_write = vfs_write,
113 .fn_get_size = vfs_size,
117 .fn_close = vfs_close,
132 if (flags & eOsAccessTruncate)
137 return io_new(&kVirtualCallbacks, flags, name, &data, arena);
172 return vfs_io(
self, flags, fs->
arena);
185 static os_error_t vfs_delete_dir(
fs_t *fs,
fs_inode_t *
self,
const char *name)
216 static os_error_t vfs_delete_file(
fs_t *fs,
fs_inode_t *
self,
const char *name)
236 static os_error_t vfs_iter_next(
fs_iter_t *iter)
248 static os_error_t vfs_iter_end(
fs_iter_t *iter)
256 .pfn_query_file = vfs_query_file,
258 .pfn_create_dir = vfs_create_dir,
259 .pfn_delete_dir = vfs_delete_dir,
261 .pfn_create_file = vfs_create_file,
262 .pfn_delete_file = vfs_delete_file,
264 .pfn_iter_begin = vfs_iter_begin,
265 .pfn_iter_next = vfs_iter_next,
266 .pfn_iter_end = vfs_iter_end,
289 return fs_new(&inode, &kVirtualInterface, &
self,
sizeof(
virtual_t), arena);
fs_inode_t gInvalidFileNode
const char * inode_name(const fs_inode_t *inode)
void * inode_data(fs_inode_t *inode)
fs_inode_t * inode_file(fs_t *fs, const char *name, const void *data)
fs_inode_t * inode_dir(fs_t *fs, const char *name, const void *data)
fs_t * fs_new(void *root, const fs_callbacks_t *cb, const void *data, size_t size, arena_t *arena)
void * iter_data(fs_iter_t *iter)
os_protect_t
file mapping memory protection
os_access_t
file access mode
#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...
STA_DECL fs_t * fs_virtual(const char *name, arena_t *arena)
create a virtual filesystem interface
CT_NODISCARD CT_PUREFN CT_STD_API void * map_get_default(const map_t *map, const void *key, void *other)
get a value from a map or a default value
CT_NODISCARD CT_STD_API map_t * map_optimal(size_t size, hash_info_t info, arena_t *arena)
create a new map with an optimal size
CT_NODISCARD CT_PUREFN CT_STD_API bool map_has_next(const map_iter_t *iter)
check if a map iterator has more elements
CT_STD_API bool map_delete(map_t *map, const void *key)
delete a key-value pair from a map
CT_NODISCARD CT_PUREFN CT_STD_API map_iter_t map_iter(const map_t *map)
create a new map iterator
CT_STD_API void map_set(map_t *map, const void *key, void *value)
set a key-value pair in a map
CT_NODISCARD CT_NOALIAS CT_STD_API map_entry_t map_next(map_iter_t *iter)
get the next key-value pair from a map iterator
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_new(const io_callbacks_t *cb, os_access_t flags, const char *name, STA_READS(cb->size) const void *data, arena_t *arena)
create a new IO object for a given interface
CT_NODISCARD CT_IO_API const char * io_name(const io_t *io)
get the name of an io object
#define CT_UNUSED(x)
mark a variable as unused
#define ARENA_REPARENT(arena, ptr, parent)
reparent a pointer in a custom allocator
CT_NODISCARD CT_ARENA_API void * arena_realloc(STA_RELEASE void *ptr, size_t new_size, size_t old_size, arena_t *arena)
resize a memory allocation from a custom allocator
#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
CT_STD_API const hash_info_t kTypeInfoString
type information for a c style string
CT_NODISCARD OUT_NOTNULL os_inode_t * dir
fs_query_node_t pfn_query_node
io_read_t fn_read
read callback may be NULL on non-readable objects
a key-value pair in a map
void * value
the value of this entry
map_t * dirents
map<const char *, fs_inode_t *>