Cthulhu  0.2.10
Cthulhu compiler collection
json.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "json/json.h"
4 
5 #include "base/util.h"
6 #include "interop/compile.h"
7 
8 #include "std/map.h"
9 #include "std/vector.h"
10 
11 #include "json_bison.h" // IWYU pragma: keep
12 #include "json_flex.h" // IWYU pragma: keep
13 
14 CT_CALLBACKS(kCallbacks, json);
15 
17 json_t *json_map_get(const json_t *json, const char *key)
18 {
19  CTASSERT(json != NULL);
20  CTASSERT(key != NULL);
21 
22  // TODO: this isnt very good
23  text_view_t view = text_view_from(key);
24  return map_get(json->object, &view);
25 }
26 
28 json_t *json_array_get(const json_t *json, size_t index)
29 {
30  CTASSERT(json != NULL);
31 
32  return typevec_offset(&json->array, index);
33 }
34 
36 json_t *json_scan(io_t *io, logger_t *logger, arena_t *arena)
37 {
38  json_parse_t parse = json_parse(io, logger, arena);
39  return parse.root;
40 }
41 
44 {
45  CTASSERT(io != NULL);
46  CTASSERT(logger != NULL);
47 
48  json_scan_t ctx = {
49  .reports = logger,
50  };
51 
52  scan_t *scan = scan_io("json", io, arena);
53  scan_set_context(scan, &ctx);
54 
55  parse_result_t result = scan_buffer(scan, &kCallbacks);
56 
57  json_t *root = (result.result == eParseOk) ? result.tree : NULL;
58 
59  json_parse_t parse = {
60  .scanner = scan,
61  .root = root,
62  };
63 
64  return parse;
65 }
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
Definition: scan.c:121
CT_SCAN_API void scan_set_context(scan_t *scan, void *value)
get the context of a scanner
Definition: scan.c:80
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
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_PUREFN CT_STD_API void * map_get(const map_t *map, const void *key)
get a value from a map
Definition: map.c:324
CT_INTEROP_API 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
@ eParseOk
parse was successful
Definition: compile.h:76
STA_DECL json_t * json_array_get(const json_t *json, size_t index)
get an array element by index
Definition: json.c:28
STA_DECL json_t * json_map_get(const json_t *json, const char *key)
get a json value from an object by key
Definition: json.c:17
STA_DECL json_parse_t json_parse(io_t *io, logger_t *logger, arena_t *arena)
parse an io into a json value parse the contents of an io object into a json value
Definition: json.c:43
STA_DECL json_t * json_scan(io_t *io, logger_t *logger, arena_t *arena)
scan an io into a json value scan the contents of an io object into a json value
Definition: json.c:36
#define CTASSERT(expr)
assert a condition, prints the condition as a message
Definition: panic.h:130
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_CALLBACKS(kCallbacks, json)
an allocator object
Definition: arena.h:86
io object implementation
Definition: impl.h:122
json_t * root
Definition: json.h:85
scan_t * scanner
Definition: json.h:84
logger_t * reports
Definition: json_scan.h:25
a json value
Definition: json.h:43
typevec_t array
the array value of this node
Definition: json.h:71
const map_t * object
the object value of this node
Definition: json.h:75
a logging sink
Definition: notify.c:14
parse_error_t result
Definition: compile.h:92
void * tree
Definition: compile.h:95
a source file scanner
Definition: scan.h:24
a non-owning view of text
Definition: text.h:24