12 static scan_t *scan_new(
const char *language,
const char *path,
io_t *io,
arena_t *arena)
19 self->language = language;
44 return scan->
io == NULL;
126 const char *path =
io_name(io);
129 CTASSERTF(err == 0,
"constructing scanner from an io object (%s) thats in an error state: %s", path,
os_error_string(err, arena));
131 const void *region =
io_map(io, eOsProtectRead);
136 scan_t *
self = scan_new(language, path, io, arena);
#define CT_SCAN_BUILTIN_NAME
the name of all builtin scanners builtin scanners are distinguished by their source language which ma...
STA_DECL const char * scan_language(const scan_t *scan)
get the source language of a scanner
STA_DECL void scan_set_context(scan_t *scan, void *value)
get the context of a scanner
STA_DECL CT_NOALIAS size_t scan_read(scan_t *scan, void *dst, size_t size)
STA_DECL scan_t * scan_builtin(const char *language, arena_t *arena)
create a builtin scanner
STA_DECL void * scan_get(scan_t *scan)
get the compiled object from a scanner
STA_DECL void scan_set(scan_t *scan, void *value)
set the compiled object of a scanner
STA_DECL void * scan_get_context(const scan_t *scan)
get the context of a scanner
STA_DECL scan_t * scan_io(const char *language, io_t *io, arena_t *arena)
create a scanner from an io source
STA_DECL bool scan_is_builtin(const scan_t *scan)
check if a scanner is the builtin scanner
STA_DECL const char * scan_path(const scan_t *scan)
get the path of a scanner
STA_DECL text_view_t scan_source(const scan_t *scan)
get a text span of the scanners contents
STA_DECL arena_t * scan_get_arena(const scan_t *scan)
get the arena of a scanner
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
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
#define CT_NOALIAS
mark a function as only modifying pointers passed to it the same as CT_CONSTFN but allowed to modify/...
CT_CONSTFN CT_BASE_API text_view_t text_view_make(STA_READS(length) const char *text, size_t length)
create a new non-owning text array text must be at least length bytes long
CT_PUREFN CT_BASE_API text_view_t text_view_from(const char *text)
create a new non-owning text array this is a shortcut for
CT_NODISCARD CT_IO_API os_error_t io_error(const io_t *io)
get the last error from the io object
CT_NODISCARD CT_IO_API size_t io_size(io_t *io)
get the total size of an io objects contents
CT_NODISCARD CT_IO_API const char * io_name(const io_t *io)
get the name of an io object
CT_IO_API size_t io_read(io_t *io, STA_WRITES(size) void *dst, size_t size)
read from an io object
CT_NODISCARD CT_IO_API void * io_map(io_t *io, os_protect_t protect)
map an io object into memory maps an io objects entire contents into memory.
#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
void * tree
the tree generated by a language parser
void * context
the parser data to use
io_t * io
the backing io object
STA_FIELD_STRING const char * language
the name of the language this file contains
STA_FIELD_STRING const char * path
the path to this file
arena_t * arena
the allocator to use
text_view_t mapped
the text of the file
a non-owning view of text