Cthulhu  0.2.10
Cthulhu compiler collection
compile.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "interop/compile.h"
4 
5 static parse_result_t parse_error(parse_error_t result, int error)
6 {
7  parse_result_t res = {
8  .result = result,
9  .error = error,
10  };
11 
12  return res;
13 }
14 
15 static parse_result_t parse_value(void *tree)
16 {
17  parse_result_t res = {
18  .result = eParseOk,
19  .tree = tree,
20  };
21 
22  return res;
23 }
24 
27 {
28  CTASSERT(scan != NULL);
29  CTASSERT(callbacks != NULL);
30 
31  int err = 0;
32  void *scanner = NULL;
33  void *state = NULL;
34 
35  err = callbacks->init(scan, &scanner);
36  if (err != 0)
37  {
38  return parse_error(eParseInitError, err);
39  }
40 
41  text_view_t text = scan_source(scan);
42  state = callbacks->scan(text.text, text.length, scanner);
43  if (state == NULL)
44  {
45  return parse_error(eParseScanError, err);
46  }
47 
48  err = callbacks->parse(scanner, scan);
49  if (err != 0)
50  {
51  return parse_error(eParseReject, err);
52  }
53 
54  callbacks->destroy_buffer(state, scanner);
55  callbacks->destroy(scanner);
56 
57  void *tree = scan_get(scan);
58  return parse_value(tree);
59 }
CT_NODISCARD CT_PUREFN CT_SCAN_API void * scan_get(scan_t *scan)
get the compiled object from a scanner
Definition: scan.c:72
CT_NODISCARD CT_PUREFN CT_SCAN_API text_view_t scan_source(const scan_t *scan)
get a text span of the scanners contents
Definition: scan.c:96
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
STA_DECL parse_result_t scan_buffer(scan_t *scan, const scan_callbacks_t *callbacks)
parse the contents of a scanner into a language specific ast
Definition: compile.c:26
parse_error_t
Definition: compile.h:74
@ eParseInitError
error initializing the scanner internals (our fault)
Definition: compile.h:79
@ eParseOk
parse was successful
Definition: compile.h:76
@ eParseScanError
entered invalid state during scanning (our fault)
Definition: compile.h:82
@ eParseReject
failed due to invalid input (users fault)
Definition: compile.h:85
#define CTASSERT(expr)
assert a condition, prints the condition as a message
Definition: panic.h:130
parse_error_t result
Definition: compile.h:92
scanner function callbacks for flex and bison
Definition: compile.h:26
void(* destroy_buffer)(void *buffer, void *scanner)
yy_delete_buffer
Definition: compile.h:30
int(* parse)(void *scanner, scan_t *extra)
yyparse
Definition: compile.h:28
void *(* scan)(const char *text, size_t size, void *scanner)
yy_scan_bytes
Definition: compile.h:29
void(* destroy)(void *scanner)
yylex_destroy
Definition: compile.h:31
int(* init)(scan_t *extra, void *scanner)
yylex_init_extra
Definition: compile.h:27
a source file scanner
Definition: scan.h:24
a non-owning view of text
Definition: text.h:24
size_t length
the number of characters in the text
Definition: text.h:30