Cthulhu  0.2.10
Cthulhu compiler collection

simple JSON parsing More...

Collaboration diagram for JSON parsing:

Data Structures

struct  json_t
 a json value More...
 
struct  json_parse_t
 

Enumerations

enum  json_kind_t { eJsonCount }
 the kind of json value More...
 

Functions

CT_JSON_API json_tjson_map_get (const json_t *json, const char *key)
 get a json value from an object by key More...
 
CT_JSON_API json_tjson_array_get (const json_t *json, size_t index)
 get an array element by index More...
 
CT_JSON_API json_tjson_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 More...
 
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 More...
 
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 More...
 
CT_JSON_API const char * json_kind_name (json_kind_t kind)
 get the name of a json kind More...
 

Detailed Description

simple JSON parsing

Enumeration Type Documentation

◆ json_kind_t

the kind of json value

Enumerator
eJsonCount 

Definition at line 33 of file json.h.

Function Documentation

◆ json_array_get()

CT_JSON_API json_t* json_array_get ( const json_t json,
size_t  index 
)

get an array element by index

Parameters
jsonthe array to get the element from
indexthe index of the element to get
Returns
the element at the index

Definition at line 28 of file json.c.

◆ json_kind_name()

CT_JSON_API const char* json_kind_name ( json_kind_t  kind)

get the name of a json kind

Parameters
kindthe kind to get the name of
Returns
the name of the kind

Definition at line 16 of file ast.c.

◆ json_map_get()

CT_JSON_API json_t* json_map_get ( const json_t json,
const char *  key 
)

get a json value from an object by key

Parameters
jsonthe object to get the value from
keythe key to get the value of
Returns
the value of the key

Definition at line 17 of file json.c.

◆ json_parse()

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

Note
if the parse fails, the logger will contain error information
Parameters
iothe io to parse
loggerthe logger to report errors to
arenathe arena to use
Returns
the parse result

Definition at line 43 of file json.c.

◆ json_print()

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

Parameters
jsonthe json value to print
iothe io to print to
indentthe number of spaces to indent, or 0 for compact printing
tabsif true, use tabs instead of spaces

◆ json_scan()

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

Note
if the scan fails, the logger will contain error information
Parameters
iothe io to scan
loggerthe logger to report errors to
arenathe arena to use
Return values
NULLif the scan failed
json_t*the scanned json value

Definition at line 36 of file json.c.