11 static const char *
const kJsonNames[
eJsonCount] = {
12 #define JSON_TYPE(id, str) [id] = (str),
19 return kJsonNames[kind];
44 json_t ast = json_ast_new(where, eJsonString);
51 json_t ast = json_ast_new(where, eJsonInteger);
52 mpz_init_set(ast.
integer, integer);
58 json_t ast = json_ast_new(where, eJsonFloat);
65 json_t ast = json_ast_new(where, eJsonBoolean);
72 json_t ast = json_ast_new(where, eJsonArray);
84 for (
size_t i = 0; i < len; i++)
100 json_t ast = json_ast_new(where, eJsonObject);
107 json_t ast = json_ast_new(where, eJsonObject);
114 return json_ast_new(where, eJsonNull);
CT_NODISCARD CT_PUREFN CT_SCAN_API arena_t * scan_get_arena(const scan_t *scan)
get the arena of a scanner
CT_STD_API const map_t kEmptyMap
an empty map
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
CT_STD_API void map_set(map_t *map, const void *key, void *value)
set a key-value pair in a map
CT_NODISCARD CT_PUREFN CT_STD_API void * map_get(const map_t *map, const void *key)
get a value from a map
const char * json_kind_name(json_kind_t kind)
get the name of a json kind
json_kind_t
the kind of json value
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
CT_STD_API const hash_info_t kTypeInfoText
type information for a text_view_t
CT_NODISCARD CT_PUREFN CT_STD_API size_t typevec_len(const typevec_t *vec)
get the length of a vector
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
CT_LOCAL json_scan_t * json_scan_context(scan_t *scan)
mpz_t integer
the integer value of this node
text_view_t string
the string value of this node
typevec_t array
the array value of this node
bool boolean
the boolean value of this node
json_kind_t kind
the kind of json value
const map_t * object
the object value of this node
float real
the float value of this node
a non-owning view of text
A vector with a fixed type size.
a location inside a scanner locations are inclusive and 0-based
json_t json_ast_null(where_t where)
json_t json_ast_integer(where_t where, mpz_t integer)
json_t json_ast_string(where_t where, text_view_t string)
json_member_t json_member(text_view_t key, json_t value)
json_t json_ast_object(scan_t *scan, where_t where, const typevec_t *members)
json_t json_ast_array(where_t where, typevec_t array)
json_t json_ast_empty_object(where_t where)
json_t json_ast_float(where_t where, float real)
json_t json_ast_boolean(where_t where, bool boolean)