Cthulhu  0.2.10
Cthulhu compiler collection
ast.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "json_ast.h"
4 #include "json_scan.h"
5 
6 #include "base/panic.h"
7 #include "notify/notify.h"
8 #include "std/map.h"
9 #include "std/typed/vector.h"
10 
11 static const char *const kJsonNames[eJsonCount] = {
12 #define JSON_TYPE(id, str) [id] = (str),
13 #include "json/json.inc"
14 };
15 
16 const char *json_kind_name(json_kind_t kind)
17 {
18  CTASSERTF(kind < eJsonCount, "kind=%d", kind);
19  return kJsonNames[kind];
20 }
21 
22 static json_t json_ast_new(where_t where, json_kind_t kind)
23 {
24  json_t ast = {
25  .kind = kind,
26  .where = where,
27  };
28 
29  return ast;
30 }
31 
33 {
34  json_member_t member = {
35  .key = key,
36  .value = value,
37  };
38 
39  return member;
40 }
41 
43 {
44  json_t ast = json_ast_new(where, eJsonString);
45  ast.string = string;
46  return ast;
47 }
48 
49 json_t json_ast_integer(where_t where, mpz_t integer)
50 {
51  json_t ast = json_ast_new(where, eJsonInteger);
52  mpz_init_set(ast.integer, integer);
53  return ast;
54 }
55 
56 json_t json_ast_float(where_t where, float real)
57 {
58  json_t ast = json_ast_new(where, eJsonFloat);
59  ast.real = real;
60  return ast;
61 }
62 
63 json_t json_ast_boolean(where_t where, bool boolean)
64 {
65  json_t ast = json_ast_new(where, eJsonBoolean);
66  ast.boolean = boolean;
67  return ast;
68 }
69 
71 {
72  json_t ast = json_ast_new(where, eJsonArray);
73  ast.array = array;
74  return ast;
75 }
76 
77 json_t json_ast_object(scan_t *scan, where_t where, const typevec_t *members)
78 {
79  json_scan_t *context = json_scan_context(scan);
80  logger_t *logger = context->reports;
81  size_t len = typevec_len(members);
82  map_t *result = map_optimal(len, kTypeInfoText, scan_get_arena(scan));
83 
84  for (size_t i = 0; i < len; i++)
85  {
86  json_member_t *member = typevec_offset(members, i);
87  text_view_t *key = &member->key;
88  json_t *prev = map_get(result, key);
89 
90  if (prev != NULL)
91  {
92  // TODO: Report error
93  (void)logger;
94  (void)prev;
95  }
96 
97  map_set(result, key, &member->value);
98  }
99 
100  json_t ast = json_ast_new(where, eJsonObject);
101  ast.object = result;
102  return ast;
103 }
104 
106 {
107  json_t ast = json_ast_new(where, eJsonObject);
108  ast.object = &kEmptyMap;
109  return ast;
110 }
111 
113 {
114  return json_ast_new(where, eJsonNull);
115 }
CT_NODISCARD CT_PUREFN CT_SCAN_API arena_t * scan_get_arena(const scan_t *scan)
get the arena of a scanner
Definition: scan.c:113
CT_STD_API const map_t kEmptyMap
an empty map
Definition: map.c:34
CT_NODISCARD CT_STD_API map_t * map_optimal(size_t size, hash_info_t info, arena_t *arena)
create a new map with an optimal size
Definition: optimal.c:85
CT_STD_API void map_set(map_t *map, const void *key, void *value)
set a key-value pair in a map
Definition: map.c:294
CT_NODISCARD CT_PUREFN CT_STD_API void * map_get(const map_t *map, const void *key)
get a value from a map
Definition: map.c:324
const char * json_kind_name(json_kind_t kind)
get the name of a json kind
Definition: ast.c:16
json_kind_t
the kind of json value
Definition: json.h:34
@ eJsonCount
Definition: json.h:38
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
Definition: panic.h:116
CT_STD_API const hash_info_t kTypeInfoText
type information for a text_view_t
Definition: typeinfo.c:47
CT_NODISCARD CT_PUREFN CT_STD_API size_t typevec_len(const typevec_t *vec)
get the length of a vector
Definition: vector.c:120
CT_NODISCARD CT_PUREFN CT_STD_API void * typevec_offset(const typevec_t *vec, size_t index)
get a pointer to the value at the given index
Definition: vector.c:191
CT_LOCAL json_scan_t * json_scan_context(scan_t *scan)
Definition: scan.c:15
text_view_t key
Definition: json_ast.h:16
json_t value
Definition: json_ast.h:17
logger_t * reports
Definition: json_scan.h:25
a json value
Definition: json.h:43
mpz_t integer
the integer value of this node
Definition: json.h:59
text_view_t string
the string value of this node
Definition: json.h:55
typevec_t array
the array value of this node
Definition: json.h:71
bool boolean
the boolean value of this node
Definition: json.h:67
json_kind_t kind
the kind of json value
Definition: json.h:45
const map_t * object
the object value of this node
Definition: json.h:75
float real
the float value of this node
Definition: json.h:63
a logging sink
Definition: notify.c:14
an unordered hash map
Definition: map.h:38
a source file scanner
Definition: scan.h:24
a non-owning view of text
Definition: text.h:24
A vector with a fixed type size.
Definition: vector.h:24
a location inside a scanner locations are inclusive and 0-based
Definition: where.h:23
json_t json_ast_null(where_t where)
Definition: ast.c:112
json_t json_ast_integer(where_t where, mpz_t integer)
Definition: ast.c:49
json_t json_ast_string(where_t where, text_view_t string)
Definition: ast.c:42
json_member_t json_member(text_view_t key, json_t value)
Definition: ast.c:32
json_t json_ast_object(scan_t *scan, where_t where, const typevec_t *members)
Definition: ast.c:77
json_t json_ast_array(where_t where, typevec_t array)
Definition: ast.c:70
json_t json_ast_empty_object(where_t where)
Definition: ast.c:105
json_t json_ast_float(where_t where, float real)
Definition: ast.c:56
json_t json_ast_boolean(where_t where, bool boolean)
Definition: ast.c:63