26 static const char *get_absolute(
fs_t *fs,
const fs_inode_t *node,
const char *path)
51 static const char *get_relative(
const fs_inode_t *node,
const char *path,
arena_t *arena)
77 const char *name = id;
95 const char *name = id;
108 const char *absolute = get_absolute(fs,
self, name);
110 CTASSERTF(dirent != eOsNodeError,
"failed to query node %s", absolute);
112 const char *relative = get_relative(
self, name, fs->
arena);
117 return physical_file(fs, relative);
119 return physical_dir(fs, relative);
127 const char *absolute = get_absolute(fs,
self, NULL);
133 const char *absolute = get_absolute(fs,
self, name);
141 fs_inode_t *inode = physical_file(fs, get_relative(
self, name, fs->
arena));
148 const char *absolute = get_absolute(fs,
self, name);
156 fs_inode_t *inode = physical_dir(fs, get_relative(
self, name, fs->
arena));
161 static os_error_t pfs_dir_delete(
fs_t *fs,
fs_inode_t *
self,
const char *name)
163 const char *absolute = get_absolute(fs,
self, name);
167 static os_error_t pfs_file_delete(
fs_t *fs,
fs_inode_t *
self,
const char *name)
169 const char *absolute = get_absolute(fs,
self, name);
175 const char *absolute = get_absolute(fs,
dir, NULL);
180 static os_error_t pfs_iter_next(
fs_iter_t *iter)
191 static os_error_t pfs_iter_end(
fs_iter_t *iter)
198 .pfn_query_file = pfs_query_file,
200 .pfn_create_dir = pfs_dir_create,
201 .pfn_delete_dir = pfs_dir_delete,
203 .pfn_create_file = pfs_file_create,
204 .pfn_delete_file = pfs_file_delete,
206 .pfn_iter_begin = pfs_iter_begin,
207 .pfn_iter_next = pfs_iter_next,
208 .pfn_iter_end = pfs_iter_end,
237 return fs_new(&inode, &kPhysicalInterface, &
self,
sizeof(
physical_t), arena);
fs_inode_t gInvalidFileNode
void * inode_data(fs_inode_t *inode)
os_error_t mkdir_recursive(const char *path, arena_t *arena)
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)
CT_NODISCARD STA_RET_STRING CT_PUREFN CT_OS_API const char * os_inode_name(const os_inode_t *node)
get the name of an inode
os_dirent_t
directory entry type
os_access_t
file access mode
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_BEGIN_API CT_NODISCARD CT_PUREFN CT_BASE_API bool is_path_special(const char *path)
check if a path is special special paths are paths such as "." and ".." that are not valid for most o...
#define CT_NATIVE_PATH_SEPARATOR
STA_DECL fs_t * fs_physical(const char *root, arena_t *arena)
create a filesystem interface to a physical location on disk
CT_NODISCARD CT_IO_API io_t * io_file(const char *path, os_access_t mode, arena_t *arena)
create an IO object from a file
CT_NODISCARD CT_ARENA_API char * arena_strdup(const char *str, arena_t *arena)
allocate a copy of a string 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_PUREFN CT_STD_API size_t str_rfind(const char *str, const char *sub)
find the last instance of a substring in a string
STA_DECL bool os_iter_next(os_iter_t *iter, os_inode_t *dir)
CT_OS_API os_error_t os_file_create(const char *path)
create a file
CT_NODISCARD CT_OS_API os_dirent_t os_dirent_type(const char *path)
get the type of a paths inode entry
CT_OS_API os_error_t os_dir_delete(const char *path)
delete a directory
CT_OS_API os_error_t os_file_delete(const char *path)
delete a file
CT_OS_API os_error_t os_iter_end(STA_RELEASE os_iter_t *iter)
close a directory iterator
CT_NODISCARD OUT_NOTNULL os_inode_t * dir
CT_OS_API bool os_dir_exists(const char *path)
check if a directory exists
CT_OS_API os_error_t os_iter_begin(const char *path, OUT_NOTNULL os_iter_t *iter)
directory iteration
STA_DECL char * str_format(arena_t *arena, const char *fmt,...)
fs_query_node_t pfn_query_node
const char * path
path to file or directory relative to root
const char * root
absolute path to root directory