mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
parse_array: improve variable names + const correctness
This commit is contained in:
parent
15592c50f6
commit
3dc6339025
35
cJSON.c
35
cJSON.c
@ -815,7 +815,7 @@ static unsigned char *print_string(const cJSON *item, printbuffer *p)
|
|||||||
/* Predeclare these prototypes. */
|
/* Predeclare these prototypes. */
|
||||||
static const unsigned char *parse_value(cJSON *item, const unsigned char *value, const unsigned char **ep);
|
static const unsigned char *parse_value(cJSON *item, const unsigned char *value, const unsigned char **ep);
|
||||||
static unsigned char *print_value(const cJSON *item, size_t depth, cjbool fmt, printbuffer *p);
|
static unsigned char *print_value(const cJSON *item, size_t depth, cjbool fmt, printbuffer *p);
|
||||||
static const unsigned char *parse_array(cJSON *item, const unsigned char *value, const unsigned char **ep);
|
static const unsigned char *parse_array(cJSON * const item, const unsigned char *input, const unsigned char ** const ep);
|
||||||
static unsigned char *print_array(const cJSON *item, size_t depth, cjbool fmt, printbuffer *p);
|
static unsigned char *print_array(const cJSON *item, size_t depth, cjbool fmt, printbuffer *p);
|
||||||
static const unsigned char *parse_object(cJSON *item, const unsigned char *value, const unsigned char **ep);
|
static const unsigned char *parse_object(cJSON *item, const unsigned char *value, const unsigned char **ep);
|
||||||
static unsigned char *print_object(const cJSON *item, size_t depth, cjbool fmt, printbuffer *p);
|
static unsigned char *print_object(const cJSON *item, size_t depth, cjbool fmt, printbuffer *p);
|
||||||
@ -1084,27 +1084,27 @@ static unsigned char *print_value(const cJSON *item, size_t depth, cjbool fmt, p
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Build an array from input text. */
|
/* Build an array from input text. */
|
||||||
static const unsigned char *parse_array(cJSON *item, const unsigned char *value, const unsigned char **error_pointer)
|
static const unsigned char *parse_array(cJSON * const item, const unsigned char *input, const unsigned char ** const error_pointer)
|
||||||
{
|
{
|
||||||
cJSON *head = NULL; /* head of the linked list */
|
cJSON *head = NULL; /* head of the linked list */
|
||||||
cJSON *current_item = NULL;
|
cJSON *current_item = NULL;
|
||||||
|
|
||||||
if (*value != '[')
|
if (*input != '[')
|
||||||
{
|
{
|
||||||
/* not an array */
|
/* not an array */
|
||||||
*error_pointer = value;
|
*error_pointer = input;
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
value = skip(value + 1); /* skip whitespace */
|
input = skip(input + 1); /* skip whitespace */
|
||||||
if (*value == ']')
|
if (*input == ']')
|
||||||
{
|
{
|
||||||
/* empty array */
|
/* empty array */
|
||||||
goto success;
|
goto success;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* step back to character in front of the first element */
|
/* step back to character in front of the first element */
|
||||||
value--;
|
input--;
|
||||||
/* loop through the comma separated array elements */
|
/* loop through the comma separated array elements */
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
@ -1130,30 +1130,27 @@ static const unsigned char *parse_array(cJSON *item, const unsigned char *value,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* parse next value */
|
/* parse next value */
|
||||||
value = skip(value + 1); /* skip whitespace before value */
|
input = skip(input + 1); /* skip whitespace before value */
|
||||||
value = parse_value(current_item, value, error_pointer);
|
input = parse_value(current_item, input, error_pointer);
|
||||||
value = skip(value); /* skip whitespace after value */
|
input = skip(input); /* skip whitespace after value */
|
||||||
if (value == NULL)
|
if (input == NULL)
|
||||||
{
|
{
|
||||||
goto fail; /* failed to parse value */
|
goto fail; /* failed to parse value */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while (*value == ',');
|
while (*input == ',');
|
||||||
|
|
||||||
if (*value == ']')
|
if (*input != ']')
|
||||||
{
|
{
|
||||||
goto success; /* end of array */
|
*error_pointer = input;
|
||||||
|
goto fail; /* expected end of array */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* malformed array */
|
|
||||||
*error_pointer = value;
|
|
||||||
goto fail;
|
|
||||||
|
|
||||||
success:
|
success:
|
||||||
item->type = cJSON_Array;
|
item->type = cJSON_Array;
|
||||||
item->child = head;
|
item->child = head;
|
||||||
|
|
||||||
return value + 1;
|
return input + 1;
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
if (head != NULL)
|
if (head != NULL)
|
||||||
|
Loading…
Reference in New Issue
Block a user