cueOS  2.4
cueOS - Universal Show Control OS for ARM
JSON Parser
Collaboration diagram for JSON Parser:

Data Structures

struct  json_parser_json_param_s
 JSON parameter structure object. More...
 
struct  json_parser_json_object_s
 JSON Objects structure object. More...
 
struct  json_parser_json_string_s
 JSON String structure object. More...
 

Macros

#define JSON_ARRAY_DELIMITOR   "["
 
#define JSON_ARRAY_TERMINATOR   "]"
 
#define JSON_STRING_DELIMITOR   "{"
 
#define JSON_STRING_TERMINATOR   "}"
 
#define JSON_STRING_ENTRY_DELIMITOR   "\""
 
#define JSON_STRING_ENTRY_SEPARATOR   ":"
 
#define JSON_STRING_PAIR_SEPARATOR   ","
 

Functions

void json_parser_json_string_put_int_pair (json_parser_json_string_s *json_string, char *key, uint16_t val, uint8_t is_initial, uint8_t is_final)
 Puts a JSON key/(integer)value pair into a provided json string object;. More...
 
void json_parser_json_string_put_str_pair (json_parser_json_string_s *json_string, char *key, char *val, uint8_t is_final, uint8_t is_initial)
 Puts a JSON key/(string)value pair into a provided json string object;. More...
 
void json_parser_json_string_nest (json_parser_json_string_s *json_string, char *key, json_parser_json_string_s *nested_json_string, uint8_t is_initial, uint8_t is_final)
 Nests a child JSON string into a parent JSON string. More...
 
void json_parser_json_string_put_array_object (json_parser_json_string_s *json_string, json_parser_json_string_s *json_object, uint8_t is_initial, uint8_t is_final)
 Nests a child JSON string into a parent JSON array. More...
 
void json_parser_json_string_put_array_int (json_parser_json_string_s *json_string, uint16_t val, uint8_t is_initial, uint8_t is_final)
 Nests a child JSON string into a parent JSON array. More...
 
json_parser_json_object_sjson_parser_parse (char *json_string, uint16_t json_string_len)
 Retrieves key/value pairs from a JSON encoded string. More...
 
json_parser_json_string_sjson_parser_json_string_new (void)
 Creates and initialises a new json string instance. More...
 
void json_parser_free_json_object (json_parser_json_object_s *json_object)
 Frees a parsed json object. More...
 
void json_parser_free_json_string (json_parser_json_string_s *json_string)
 Frees a json string instance. More...
 

Detailed Description

Module dedicated to JSON parsing and JSON string formating.

Macro Definition Documentation

◆ JSON_ARRAY_DELIMITOR

#define JSON_ARRAY_DELIMITOR   "["

JSON string array delimitor

Definition at line 11 of file json_parser.h.

◆ JSON_ARRAY_TERMINATOR

#define JSON_ARRAY_TERMINATOR   "]"

JSON string array terminator

Definition at line 12 of file json_parser.h.

◆ JSON_STRING_DELIMITOR

#define JSON_STRING_DELIMITOR   "{"

JSON string object delimitor

Definition at line 13 of file json_parser.h.

◆ JSON_STRING_ENTRY_DELIMITOR

#define JSON_STRING_ENTRY_DELIMITOR   "\""

JSON string entry delimitor

Definition at line 15 of file json_parser.h.

◆ JSON_STRING_ENTRY_SEPARATOR

#define JSON_STRING_ENTRY_SEPARATOR   ":"

JSON string entry delimitor

Definition at line 16 of file json_parser.h.

◆ JSON_STRING_PAIR_SEPARATOR

#define JSON_STRING_PAIR_SEPARATOR   ","

JSON string pair delimitor

Definition at line 17 of file json_parser.h.

◆ JSON_STRING_TERMINATOR

#define JSON_STRING_TERMINATOR   "}"

JSON string object delimitor

Definition at line 14 of file json_parser.h.

Function Documentation

◆ json_parser_free_json_object()

void json_parser_free_json_object ( json_parser_json_object_s json_object)

Frees a parsed json object.

Parameters
*json_objectpointer to json object instance to be freed

Definition at line 263 of file json_parser.c.

◆ json_parser_free_json_string()

void json_parser_free_json_string ( json_parser_json_string_s json_string)

Frees a json string instance.

Parameters
*json_stringpointer to json string instance to be freed

Definition at line 294 of file json_parser.c.

◆ json_parser_json_string_nest()

void json_parser_json_string_nest ( json_parser_json_string_s json_string,
char *  key,
json_parser_json_string_s nested_json_string,
uint8_t  is_initial,
uint8_t  is_final 
)

Nests a child JSON string into a parent JSON string.

Parameters
*json_stringpointer to a json string instance
*keypointer to the JSON key string
*nested_json_stringpointer to the json string value to be nested and associated to the provided JSON key
is_initialdetermines if a JSON string delimitor "{" should be prefixing the key/value pair. (the json string starts)
is_finaldetermines if a JSON string terminator "}\0" should be suffixing the key/value pair. (the json string stops)

Definition at line 121 of file json_parser.c.

◆ json_parser_json_string_new()

json_parser_json_string_s * json_parser_json_string_new ( void  )

Creates and initialises a new json string instance.

Returns
json_parser_json_string_s* pointer to the created json string instance

Definition at line 282 of file json_parser.c.

◆ json_parser_json_string_put_array_int()

void json_parser_json_string_put_array_int ( json_parser_json_string_s json_string,
uint16_t  val,
uint8_t  is_initial,
uint8_t  is_final 
)

Nests a child JSON string into a parent JSON array.

Parameters
*json_stringpointer to a json string instance (array)
valinteger value to put into the array
is_initialdetermines if a JSON array delimitor "[" should be prefixing the key/value pair. (the json string starts)
is_finaldetermines if a JSON array terminator "]\0" should be suffixing the key/value pair. (the json string stops)

Definition at line 177 of file json_parser.c.

◆ json_parser_json_string_put_array_object()

void json_parser_json_string_put_array_object ( json_parser_json_string_s json_string,
json_parser_json_string_s json_object,
uint8_t  is_initial,
uint8_t  is_final 
)

Nests a child JSON string into a parent JSON array.

Parameters
*json_stringpointer to a json string instance (array)
*json_objectpointer to the json string value to be nested into the json array
is_initialdetermines if a JSON array delimitor "[" should be prefixing the key/value pair. (the json string starts)
is_finaldetermines if a JSON array terminator "]\0" should be suffixing the key/value pair. (the json string stops)

Definition at line 150 of file json_parser.c.

◆ json_parser_json_string_put_int_pair()

void json_parser_json_string_put_int_pair ( json_parser_json_string_s json_string,
char *  key,
uint16_t  val,
uint8_t  is_initial,
uint8_t  is_final 
)

Puts a JSON key/(integer)value pair into a provided json string object;.

Parameters
*json_stringpointer to a json string instance
*keypointer to the JSON key string
valinteger value to be associated to the provided JSON key
is_initialdetermines if a JSON string delimitor "{" should be prefixing the key/value pair. (the json string starts)
is_finaldetermines if a JSON string terminator "}\0" should be suffixing the key/value pair. (the json string stops)

Definition at line 56 of file json_parser.c.

◆ json_parser_json_string_put_str_pair()

void json_parser_json_string_put_str_pair ( json_parser_json_string_s json_string,
char *  key,
char *  val,
uint8_t  is_initial,
uint8_t  is_final 
)

Puts a JSON key/(string)value pair into a provided json string object;.

Parameters
*json_stringpointer to a json string instance
*keypointer to the JSON key string
*valpointer to the string value to be associated to the provided JSON key
is_initialdetermines if a JSON string delimitor "{" should be prefixing the key/value pair. (the json string starts)
is_finaldetermines if a JSON string terminator "}\0" should be suffixing the key/value pair. (the json string stops)

Definition at line 89 of file json_parser.c.

◆ json_parser_parse()

json_parser_json_object_s * json_parser_parse ( char *  json_string,
uint16_t  json_string_len 
)

Retrieves key/value pairs from a JSON encoded string.

Parameters
*json_stringpointer to the JSON string to be parsed
json_string_lenlength (in bytes) of the provided JSON string (HTTP content_length header value)
Returns
json_parser_json_object_s* pointer to the parsed JSON object instance
Warning
this is parser cannot (yet ?) parse JSON arrays. When provided with a JSON array, it will simply chain the array values to the parser pairs as if the array did not exist

Definition at line 207 of file json_parser.c.