Cthulhu  0.2.10
Cthulhu compiler collection
scan.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "scan/scan.h"
4 
5 #include "core/text.h"
6 #include "base/panic.h"
7 #include "base/util.h"
8 
9 #include "arena/arena.h"
10 #include "io/io.h"
11 
12 static scan_t *scan_new(const char *language, const char *path, io_t *io, arena_t *arena)
13 {
14  CTASSERT(language != NULL);
15  CTASSERT(path != NULL);
16  CTASSERT(arena != NULL);
17 
18  scan_t *self = ARENA_MALLOC(sizeof(scan_t), path, NULL, arena);
19  self->language = language;
20  self->path = path;
21  self->arena = arena;
22  self->nodes = arena;
23 
24  self->tree = NULL;
25  self->context = NULL;
26 
27  self->io = io;
28 
29  return self;
30 }
31 
33 scan_t *scan_builtin(const char *language, arena_t *arena)
34 {
35  scan_t *scan = scan_new(language, CT_SCAN_BUILTIN_NAME, NULL, arena);
36  scan->mapped = text_view_from("");
37  return scan;
38 }
39 
41 bool scan_is_builtin(const scan_t *scan)
42 {
43  CTASSERT(scan != NULL);
44  return scan->io == NULL;
45 }
46 
48 const char *scan_language(const scan_t *scan)
49 {
50  CTASSERT(scan != NULL);
51 
52  return scan->language;
53 }
54 
56 const char *scan_path(const scan_t *scan)
57 {
58  CTASSERT(scan != NULL);
59 
60  return scan->path;
61 }
62 
64 void scan_set(scan_t *scan, void *value)
65 {
66  CTASSERT(scan != NULL);
67 
68  scan->tree = value;
69 }
70 
72 void *scan_get(scan_t *scan)
73 {
74  CTASSERT(scan != NULL);
75 
76  return scan->tree;
77 }
78 
80 void scan_set_context(scan_t *scan, void *value)
81 {
82  CTASSERT(scan != NULL);
83 
84  scan->context = value;
85 }
86 
88 void *scan_get_context(const scan_t *scan)
89 {
90  CTASSERT(scan != NULL);
91 
92  return scan->context;
93 }
94 
97 {
98  CTASSERT(scan != NULL);
99 
100  return scan->mapped;
101 }
102 
104 size_t scan_read(scan_t *scan, void *dst, size_t size)
105 {
106  CTASSERT(scan != NULL);
107  CTASSERT(dst != NULL);
108 
109  return io_read(scan->io, dst, size);
110 }
111 
112 STA_DECL
114 {
115  CTASSERT(scan != NULL);
116 
117  return scan->arena;
118 }
119 
120 STA_DECL
121 scan_t *scan_io(const char *language, io_t *io, arena_t *arena)
122 {
123  CTASSERT(io != NULL);
124 
125  os_error_t err = io_error(io);
126  const char *path = io_name(io);
127 
128  CTASSERT(arena != NULL);
129  CTASSERTF(err == 0, "constructing scanner from an io object (%s) thats in an error state: %s", path, os_error_string(err, arena));
130 
131  const void *region = io_map(io, eOsProtectRead);
132  size_t size = io_size(io);
133 
134  CTASSERTF(region != NULL, "failed to map %s of size %zu (%s)", path, size, os_error_string(io_error(io), arena));
135 
136  scan_t *self = scan_new(language, path, io, arena);
137 
138  self->mapped = text_view_make(region, size);
139 
140  return self;
141 }
CT_NODISCARD size_t size
Definition: scan.h:128
#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
Definition: scan.c:48
STA_DECL void scan_set_context(scan_t *scan, void *value)
get the context of a scanner
Definition: scan.c:80
STA_DECL CT_NOALIAS size_t scan_read(scan_t *scan, void *dst, size_t size)
Definition: scan.c:104
STA_DECL scan_t * scan_builtin(const char *language, arena_t *arena)
create a builtin scanner
Definition: scan.c:33
STA_DECL void * scan_get(scan_t *scan)
get the compiled object from a scanner
Definition: scan.c:72
STA_DECL void scan_set(scan_t *scan, void *value)
set the compiled object of a scanner
Definition: scan.c:64
STA_DECL void * scan_get_context(const scan_t *scan)
get the context of a scanner
Definition: scan.c:88
STA_DECL scan_t * scan_io(const char *language, io_t *io, arena_t *arena)
create a scanner from an io source
Definition: scan.c:121
STA_DECL bool scan_is_builtin(const scan_t *scan)
check if a scanner is the builtin scanner
Definition: scan.c:41
STA_DECL const char * scan_path(const scan_t *scan)
get the path of a scanner
Definition: scan.c:56
STA_DECL text_view_t scan_source(const scan_t *scan)
get a text span of the scanners contents
Definition: scan.c:96
STA_DECL arena_t * scan_get_arena(const scan_t *scan)
get the arena of a scanner
Definition: scan.c:113
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
#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/...
Definition: analyze.h:226
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
Definition: util.c:191
CT_NODISCARD CT_IO_API os_error_t io_error(const io_t *io)
get the last error from the io object
Definition: io.c:144
CT_NODISCARD CT_IO_API size_t io_size(io_t *io)
get the total size of an io objects contents
Definition: io.c:94
CT_NODISCARD CT_IO_API const char * io_name(const io_t *io)
get the name of an io object
Definition: io.c:112
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.
Definition: io.c:120
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
Definition: arena.h:392
#define CTASSERT(expr)
assert a condition, prints the condition as a message
Definition: panic.h:130
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
Definition: panic.h:116
an allocator object
Definition: arena.h:86
io object implementation
Definition: impl.h:122
a source file scanner
Definition: scan.h:24
void * tree
the tree generated by a language parser
Definition: scan.h:42
void * context
the parser data to use
Definition: scan.h:45
io_t * io
the backing io object
Definition: scan.h:27
STA_FIELD_STRING const char * language
the name of the language this file contains
Definition: scan.h:36
STA_FIELD_STRING const char * path
the path to this file
Definition: scan.h:39
arena_t * arena
the allocator to use
Definition: scan.h:30
text_view_t mapped
the text of the file
Definition: scan.h:48
a non-owning view of text
Definition: text.h:24