Cthulhu  0.2.10
Cthulhu compiler collection
core.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_os_api.h>
6 
7 #include "core/analyze.h"
8 
9 #if STA_PRESENT
10 # include "os/impl/impl.h"
11 #endif
12 
13 #include <stddef.h>
14 
15 typedef struct path_t path_t;
16 typedef struct arena_t arena_t;
17 typedef struct text_t text_t;
18 
20 
23 
25 typedef struct os_file_t os_file_t;
26 
28 typedef struct os_mapping_t os_mapping_t;
29 
31 typedef struct os_inode_t os_inode_t;
32 
34 typedef struct os_iter_t os_iter_t;
35 
37 typedef enum os_access_t
38 {
39 #define OS_ACCESS(ID, STR, BIT) ID = (BIT),
40 #include "os.inc"
41 
42  eOsAccessMask = eOsAccessRead | eOsAccessWrite | eOsAccessTruncate,
43 } os_access_t;
44 
46 typedef enum os_protect_t
47 {
48 #define OS_PROTECT(ID, STR, BIT) ID = (BIT),
49 #include "os.inc"
50 
51  eOsProtectMask = eOsProtectRead | eOsProtectWrite | eOsProtectExecute,
52 } os_protect_t;
53 
55 typedef enum os_dirent_t
56 {
57 #define OS_DIRENT(ID, STR) ID,
58 #include "os.inc"
59 
62 
64 typedef STA_SUCCESS_TYPE(return == eOsSuccess) size_t os_error_t;
65 
67 typedef int os_exitcode_t;
68 
71 typedef unsigned os_status_t;
72 
75 typedef size_t os_thread_id_t;
76 
80 typedef void (*os_symbol_t)(void);
81 
84 CT_OS_API void os_init(void);
85 
89 CT_NORETURN CT_OS_API os_exit(os_exitcode_t code);
90 
95 CT_NORETURN CT_OS_API os_thread_exit(os_status_t status);
96 
101 CT_OS_API os_thread_id_t os_get_thread_id(void);
102 
104 CT_NORETURN CT_OS_API os_abort(void);
105 
118 CT_OS_API size_t os_error_get_string(os_error_t error, STA_WRITES(size) char *buffer, size_t size);
119 
129 CT_OS_API size_t os_cwd_get_string(STA_WRITES(size) char *buffer, size_t size);
130 
138 CT_OS_API char *os_error_string(os_error_t error, IN_NOTNULL arena_t *arena);
139 
146 CT_OS_API char *os_cwd_string(IN_NOTNULL arena_t *arena);
147 
155 CT_OS_API os_error_t os_getcwd(OUT_NOTNULL text_t *text, IN_NOTNULL arena_t *arena);
156 
163 CT_OS_API os_dirent_t os_inode_type(IN_NOTNULL const os_inode_t *node);
164 
172 CT_OS_API const char *os_inode_name(IN_NOTNULL const os_inode_t *node);
173 
180 CT_OS_API const char *os_dirent_string(os_dirent_t type);
181 
188 CT_OS_API const char *os_access_string(os_access_t access);
189 
196 CT_OS_API const char *os_protect_string(os_protect_t protect);
197 
199 
201 
CT_NODISCARD STA_WRITES(size) void *dst
CT_NODISCARD size_t size
Definition: scan.h:128
CT_OS_API char * os_cwd_string(arena_t *arena)
get the current working directory
Definition: os.c:72
CT_NODISCARD CT_PUREFN CT_OS_API os_dirent_t os_inode_type(const os_inode_t *node)
get the type of an inode
Definition: os.c:449
void(* os_symbol_t)(void)
function pointer used for shared library symbols rather than void* because casting a function pointer...
Definition: core.h:80
CT_NODISCARD STA_RET_STRING CT_OS_API char * os_error_string(os_error_t error, arena_t *arena)
convert an os error code to a string
Definition: os.c:56
CT_NODISCARD CT_CONSTFN STA_RET_STRING CT_OS_API const char * os_dirent_string(os_dirent_t type)
get the string representation of a directory entry type
Definition: os_common.c:13
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
Definition: os.c:457
int os_exitcode_t
program exit code
Definition: core.h:67
CT_NODISCARD CT_OS_API size_t os_error_get_string(os_error_t error, STA_WRITES(size) char *buffer, size_t size)
convert an os error code to a string writes to a buffer rather than allocating. if size is 0,...
CT_NODISCARD CT_CONSTFN STA_RET_STRING CT_OS_API const char * os_protect_string(os_protect_t protect)
get the string representation of a file mapping memory protection
Definition: os_common.c:50
CT_NODISCARD CT_OS_API size_t os_cwd_get_string(STA_WRITES(size) char *buffer, size_t size)
get the current working directory
os_dirent_t
directory entry type
Definition: core.h:56
@ eOsNodeCount
Definition: core.h:60
os_protect_t
file mapping memory protection
Definition: core.h:47
@ eOsProtectMask
Definition: core.h:51
CT_OS_API os_error_t os_getcwd(OUT_NOTNULL text_t *text, arena_t *arena)
get the current working directory
CT_NODISCARD CT_CONSTFN STA_RET_STRING CT_OS_API const char * os_access_string(os_access_t access)
get the string representation of a file access mode
Definition: os_common.c:32
CT_NORETURN CT_OS_API os_exit(os_exitcode_t code)
exit the program
Definition: os.c:20
struct path_t path_t
Definition: core.h:15
CT_NORETURN CT_OS_API os_abort(void)
abort the program
Definition: os.c:32
typedef STA_SUCCESS_TYPE(return==eOsSuccess) size_t os_error_t
error code
os_access_t
file access mode
Definition: core.h:38
@ eOsAccessMask
Definition: core.h:42
CT_OS_API void os_init(void)
initialize the os api
Definition: os.c:15
#define CT_PUREFN
mark a function as pure, always returns the same value for the same arguments
Definition: analyze.h:228
#define CT_NORETURN
Definition: analyze.h:150
#define CT_NODISCARD
mark a function as returning a value that must be used
#define IN_NOTNULL
annotate a parameter as not being null
#define STA_RET_STRING
annotate the return value as a null terminated string
#define RET_INSPECT
annotate the return value as needing to be inspected this is the same as CT_NODISCARD but implies tha...
#define CT_CONSTFN
mark a function as const, has no side effects and always returns the same value for the same argument...
Definition: analyze.h:227
#define OUT_NOTNULL
Definition: analyze.h:99
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
#define CT_ENUM_FLAGS(X, T)
Definition: compiler.h:179
CT_OS_API os_thread_id_t os_get_thread_id(void)
get the current thread id
Definition: thread.c:56
CT_NORETURN CT_OS_API os_thread_exit(os_status_t status)
exit the current thread of execution
Definition: os.c:26
unsigned os_status_t
thread return code
Definition: core.h:71
size_t os_thread_id_t
thread id
Definition: core.h:75
@ eOsSuccess
Definition: posix.h:24
an allocator object
Definition: arena.h:86
a file handle
Definition: os.h:40
an inode entry
Definition: os.h:52
a directory iterator
Definition: os.h:62
os_error_t error
Definition: os.h:64
memory mapping handle
Definition: posix.h:18
a range of text
Definition: text.h:14