5 #include <ctu_scan_api.h>
51 #define CT_SCAN_BUILTIN_NAME "<builtin>"
CT_NODISCARD CT_PUREFN CT_SCAN_API const char * scan_path(const scan_t *scan)
get the path of a scanner
CT_NODISCARD CT_PUREFN CT_SCAN_API void * scan_get(scan_t *scan)
get the compiled object from a scanner
CT_SCAN_API void scan_set(scan_t *scan, void *value)
set the compiled object of a scanner
CT_NODISCARD CT_PUREFN CT_SCAN_API arena_t * scan_get_arena(const scan_t *scan)
get the arena of a scanner
CT_NODISCARD CT_SCAN_API scan_t * scan_io(const char *language, io_t *io, arena_t *arena)
create a scanner from an io source
CT_NODISCARD STA_RET_RANGE(0, size) CT_NOALIAS CT_SCAN_API size_t scan_read(scan_t *scan
read data from a scanner
CT_NODISCARD CT_PUREFN CT_SCAN_API const char * scan_language(const scan_t *scan)
get the source language of a scanner
CT_SCAN_API void scan_set_context(scan_t *scan, void *value)
get the context of a scanner
CT_NODISCARD CT_SCAN_API scan_t * scan_builtin(const char *language, arena_t *arena)
create a builtin scanner
CT_NODISCARD CT_PUREFN CT_SCAN_API void * scan_get_context(const scan_t *scan)
get the context of a scanner
CT_NODISCARD CT_PUREFN CT_SCAN_API text_view_t scan_source(const scan_t *scan)
get a text span of the scanners contents
CT_NODISCARD STA_WRITES(size) void *dst
CT_NODISCARD CT_PUREFN CT_SCAN_API bool scan_is_builtin(const scan_t *scan)
check if a scanner is the builtin scanner
STA_DECL CT_NOALIAS size_t scan_read(scan_t *scan, void *dst, size_t size)
#define CT_PUREFN
mark a function as pure, always returns the same value for the same arguments
#define STA_FIELD_STRING
annotate a field as being a null terminated string
#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 IN_STRING
annotate a parameter as being a null terminated string
#define CT_NOALIAS
mark a function as only modifying pointers passed to it the same as CT_CONSTFN but allowed to modify/...
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
arena_t * nodes
arena to use when allocating nodes
text_view_t mapped
the text of the file
a non-owning view of text