Cthulhu  0.2.10
Cthulhu compiler collection
json.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_json_api.h>
6 
7 #include "core/analyze.h"
8 #include "core/text.h"
9 #include "core/where.h"
10 #include "std/typed/vector.h"
11 
12 #include <gmp.h>
13 
14 #include <stdbool.h>
15 
16 typedef struct io_t io_t;
17 typedef struct logger_t logger_t;
18 typedef struct arena_t arena_t;
19 typedef struct json_t json_t;
20 typedef struct node_t node_t;
21 typedef struct scan_t scan_t;
22 typedef struct map_t map_t;
23 typedef struct vector_t vector_t;
24 
26 
31 
33 typedef enum json_kind_t
34 {
35 #define JSON_TYPE(id, str) id,
36 #include "json/json.inc"
37 
40 
42 typedef struct json_t
43 {
46 
51 
52  union {
56 
59  mpz_t integer;
60 
63  float real;
64 
67  bool boolean;
68 
72 
75  const map_t *object;
76 
77  /* eJsonNull */
78  /* empty */
79  };
80 } json_t;
81 
82 typedef struct json_parse_t
83 {
86 } json_parse_t;
87 
95 CT_JSON_API json_t *json_map_get(IN_NOTNULL const json_t *json, IN_NOTNULL const char *key);
96 
104 CT_JSON_API json_t *json_array_get(IN_NOTNULL const json_t *json, size_t index);
105 
117 CT_JSON_API json_t *json_scan(IN_NOTNULL io_t *io, IN_NOTNULL logger_t *logger, IN_NOTNULL arena_t *arena);
118 
129 CT_JSON_API json_parse_t json_parse(IN_NOTNULL io_t *io, IN_NOTNULL logger_t *logger, IN_NOTNULL arena_t *arena);
130 
137 CT_JSON_API void json_print(IN_NOTNULL const json_t *json, IN_NOTNULL io_t *io, size_t indent, bool tabs);
138 
145 CT_JSON_API const char *json_kind_name(IN_DOMAIN(<, eJsonCount) json_kind_t kind);
146 
147 
149 
#define RET_NOTNULL
annotate the return value as not being null
#define IN_NOTNULL
annotate a parameter as not being null
#define IN_DOMAIN(cmp, it)
annotate a parameter as being bounded by the expression of cmp and it
#define RET_INSPECT
annotate the return value as needing to be inspected this is the same as CT_NODISCARD but implies tha...
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
CT_JSON_API const char * json_kind_name(json_kind_t kind)
get the name of a json kind
Definition: ast.c:16
CT_JSON_API void json_print(const json_t *json, io_t *io, size_t indent, bool tabs)
pretty print a json value to an io
CT_JSON_API json_t * json_array_get(const json_t *json, size_t index)
get an array element by index
Definition: json.c:28
json_kind_t
the kind of json value
Definition: json.h:34
CT_JSON_API 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
CT_JSON_API 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
CT_JSON_API 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
@ eJsonCount
Definition: json.h:38
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
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
where_t where
the source location of the json value
Definition: json.h:50
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 position in a source file
Definition: node.h:23
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 generic vector of pointers
Definition: vector.c:16
a location inside a scanner locations are inclusive and 0-based
Definition: where.h:23
typedefCT_BEGIN_API struct json_t json_t
Definition: query.h:12