|
@@ -898,7 +898,7 @@ static cJSON_bool print_string(const cJSON * const item, printbuffer * const p,
|
|
/* Predeclare these prototypes. */
|
|
/* Predeclare these prototypes. */
|
|
static const unsigned char *parse_value(cJSON * const item, parse_buffer * const input_buffer, const unsigned char ** const ep, const internal_hooks * const hooks);
|
|
static const unsigned char *parse_value(cJSON * const item, parse_buffer * const input_buffer, const unsigned char ** const ep, const internal_hooks * const hooks);
|
|
static cJSON_bool print_value(const cJSON * const item, const size_t depth, const cJSON_bool format, printbuffer * const output_buffer, const internal_hooks * const hooks);
|
|
static cJSON_bool print_value(const cJSON * const item, const size_t depth, const cJSON_bool format, printbuffer * const output_buffer, const internal_hooks * const hooks);
|
|
-static const unsigned char *parse_array(cJSON * const item, const unsigned char *input, const unsigned char ** const ep, const internal_hooks * const hooks);
|
|
|
|
|
|
+static const unsigned char *parse_array(cJSON * const item, parse_buffer * const input_buffer, const unsigned char ** const ep, const internal_hooks * const hooks);
|
|
static cJSON_bool print_array(const cJSON * const item, const size_t depth, const cJSON_bool format, printbuffer * const output_buffer, const internal_hooks * const hooks);
|
|
static cJSON_bool print_array(const cJSON * const item, const size_t depth, const cJSON_bool format, printbuffer * const output_buffer, const internal_hooks * const hooks);
|
|
static const unsigned char *parse_object(cJSON * const item, const unsigned char *input, const unsigned char ** const ep, const internal_hooks * const hooks);
|
|
static const unsigned char *parse_object(cJSON * const item, const unsigned char *input, const unsigned char ** const ep, const internal_hooks * const hooks);
|
|
static cJSON_bool print_object(const cJSON * const item, const size_t depth, const cJSON_bool format, printbuffer * const output_buffer, const internal_hooks * const hooks);
|
|
static cJSON_bool print_object(const cJSON * const item, const size_t depth, const cJSON_bool format, printbuffer * const output_buffer, const internal_hooks * const hooks);
|
|
@@ -916,15 +916,20 @@ static const unsigned char *skip_whitespace(const unsigned char *in)
|
|
|
|
|
|
static parse_buffer *buffer_skip_whitespace(parse_buffer * const buffer)
|
|
static parse_buffer *buffer_skip_whitespace(parse_buffer * const buffer)
|
|
{
|
|
{
|
|
- const unsigned char *skipped_pointer = NULL;
|
|
|
|
-
|
|
|
|
if ((buffer == NULL) || (buffer->content == NULL))
|
|
if ((buffer == NULL) || (buffer->content == NULL))
|
|
{
|
|
{
|
|
return NULL;
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
|
|
- skipped_pointer = skip_whitespace(buffer_at_offset(buffer));
|
|
|
|
- buffer->offset = (size_t)(skipped_pointer - buffer->content);
|
|
|
|
|
|
+ while (can_access_at_index(buffer, 0) && (buffer_at_offset(buffer)[0] <= 32))
|
|
|
|
+ {
|
|
|
|
+ buffer->offset++;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (buffer->offset == buffer->length)
|
|
|
|
+ {
|
|
|
|
+ buffer->offset--;
|
|
|
|
+ }
|
|
|
|
|
|
return buffer;
|
|
return buffer;
|
|
}
|
|
}
|
|
@@ -1102,6 +1107,7 @@ CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const i
|
|
/* Parser core - when encountering text, process appropriately. */
|
|
/* Parser core - when encountering text, process appropriately. */
|
|
static const unsigned char *parse_value(cJSON * const item, parse_buffer * const input_buffer, const unsigned char ** const error_pointer, const internal_hooks * const hooks)
|
|
static const unsigned char *parse_value(cJSON * const item, parse_buffer * const input_buffer, const unsigned char ** const error_pointer, const internal_hooks * const hooks)
|
|
{
|
|
{
|
|
|
|
+ const unsigned char *content_pointer = NULL;
|
|
if ((input_buffer == NULL) || (input_buffer->content == NULL))
|
|
if ((input_buffer == NULL) || (input_buffer->content == NULL))
|
|
{
|
|
{
|
|
return NULL; /* no input */
|
|
return NULL; /* no input */
|
|
@@ -1133,22 +1139,43 @@ static const unsigned char *parse_value(cJSON * const item, parse_buffer * cons
|
|
/* string */
|
|
/* string */
|
|
if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '\"'))
|
|
if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '\"'))
|
|
{
|
|
{
|
|
- return parse_string(item, buffer_at_offset(input_buffer), error_pointer, hooks);
|
|
|
|
|
|
+ content_pointer = parse_string(item, buffer_at_offset(input_buffer), error_pointer, hooks);
|
|
|
|
+ if (content_pointer == NULL)
|
|
|
|
+ {
|
|
|
|
+ return NULL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ input_buffer->offset = (size_t)(content_pointer - input_buffer->content);
|
|
|
|
+ return buffer_at_offset(input_buffer);
|
|
}
|
|
}
|
|
/* number */
|
|
/* number */
|
|
if (can_access_at_index(input_buffer, 0) && ((buffer_at_offset(input_buffer)[0] == '-') || ((buffer_at_offset(input_buffer)[0] >= '0') && (buffer_at_offset(input_buffer)[0] <= '9'))))
|
|
if (can_access_at_index(input_buffer, 0) && ((buffer_at_offset(input_buffer)[0] == '-') || ((buffer_at_offset(input_buffer)[0] >= '0') && (buffer_at_offset(input_buffer)[0] <= '9'))))
|
|
{
|
|
{
|
|
- return parse_number(item, buffer_at_offset(input_buffer));
|
|
|
|
|
|
+ content_pointer = parse_number(item, buffer_at_offset(input_buffer));
|
|
|
|
+ if (content_pointer == NULL)
|
|
|
|
+ {
|
|
|
|
+ return NULL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ input_buffer->offset = (size_t)(content_pointer - input_buffer->content);
|
|
|
|
+ return buffer_at_offset(input_buffer);
|
|
}
|
|
}
|
|
/* array */
|
|
/* array */
|
|
if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '['))
|
|
if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '['))
|
|
{
|
|
{
|
|
- return parse_array(item, buffer_at_offset(input_buffer), error_pointer, hooks);
|
|
|
|
|
|
+ return parse_array(item, input_buffer, error_pointer, hooks);
|
|
}
|
|
}
|
|
/* object */
|
|
/* object */
|
|
if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '{'))
|
|
if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '{'))
|
|
{
|
|
{
|
|
- return parse_object(item, buffer_at_offset(input_buffer), error_pointer, hooks);
|
|
|
|
|
|
+ content_pointer = parse_object(item, buffer_at_offset(input_buffer), error_pointer, hooks);
|
|
|
|
+ if (content_pointer == NULL)
|
|
|
|
+ {
|
|
|
|
+ return NULL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ input_buffer->offset = (size_t)(content_pointer - input_buffer->content);
|
|
|
|
+ return buffer_at_offset(input_buffer);
|
|
}
|
|
}
|
|
|
|
|
|
/* failure. */
|
|
/* failure. */
|
|
@@ -1247,28 +1274,36 @@ static cJSON_bool print_value(const cJSON * const item, const size_t depth, cons
|
|
}
|
|
}
|
|
|
|
|
|
/* Build an array from input text. */
|
|
/* Build an array from input text. */
|
|
-static const unsigned char *parse_array(cJSON * const item, const unsigned char *input, const unsigned char ** const error_pointer, const internal_hooks * const hooks)
|
|
|
|
|
|
+static const unsigned char *parse_array(cJSON * const item, parse_buffer * const input_buffer, const unsigned char ** const error_pointer, const internal_hooks * const hooks)
|
|
{
|
|
{
|
|
cJSON *head = NULL; /* head of the linked list */
|
|
cJSON *head = NULL; /* head of the linked list */
|
|
cJSON *current_item = NULL;
|
|
cJSON *current_item = NULL;
|
|
- parse_buffer input_buffer;
|
|
|
|
|
|
|
|
- if (*input != '[')
|
|
|
|
|
|
+ if (buffer_at_offset(input_buffer)[0] != '[')
|
|
{
|
|
{
|
|
/* not an array */
|
|
/* not an array */
|
|
- *error_pointer = input;
|
|
|
|
|
|
+ *error_pointer = buffer_at_offset(input_buffer);
|
|
goto fail;
|
|
goto fail;
|
|
}
|
|
}
|
|
|
|
|
|
- input = skip_whitespace(input + 1);
|
|
|
|
- if (*input == ']')
|
|
|
|
|
|
+ input_buffer->offset++;
|
|
|
|
+ buffer_skip_whitespace(input_buffer);
|
|
|
|
+ if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == ']'))
|
|
{
|
|
{
|
|
/* empty array */
|
|
/* empty array */
|
|
goto success;
|
|
goto success;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /* check if we skipped to the end of the buffer */
|
|
|
|
+ if (cannot_access_at_index(input_buffer, 0))
|
|
|
|
+ {
|
|
|
|
+ input_buffer->offset--;
|
|
|
|
+ *error_pointer = buffer_at_offset(input_buffer);
|
|
|
|
+ goto fail;
|
|
|
|
+ }
|
|
|
|
+
|
|
/* step back to character in front of the first element */
|
|
/* step back to character in front of the first element */
|
|
- input--;
|
|
|
|
|
|
+ input_buffer->offset--;
|
|
/* loop through the comma separated array elements */
|
|
/* loop through the comma separated array elements */
|
|
do
|
|
do
|
|
{
|
|
{
|
|
@@ -1294,22 +1329,19 @@ static const unsigned char *parse_array(cJSON * const item, const unsigned char
|
|
}
|
|
}
|
|
|
|
|
|
/* parse next value */
|
|
/* parse next value */
|
|
- input = skip_whitespace(input + 1);
|
|
|
|
- input_buffer.content = (const unsigned char*)input;
|
|
|
|
- input_buffer.offset = 0;
|
|
|
|
- input_buffer.length = strlen((const char*)input) + sizeof("");
|
|
|
|
- input = parse_value(current_item, &input_buffer, error_pointer, hooks);
|
|
|
|
- input = skip_whitespace(input);
|
|
|
|
- if (input == NULL)
|
|
|
|
|
|
+ input_buffer->offset++;
|
|
|
|
+ buffer_skip_whitespace(input_buffer);
|
|
|
|
+ if (parse_value(current_item, input_buffer, error_pointer, hooks) == NULL)
|
|
{
|
|
{
|
|
goto fail; /* failed to parse value */
|
|
goto fail; /* failed to parse value */
|
|
}
|
|
}
|
|
|
|
+ buffer_skip_whitespace(input_buffer);
|
|
}
|
|
}
|
|
- while (*input == ',');
|
|
|
|
|
|
+ while (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == ','));
|
|
|
|
|
|
- if (*input != ']')
|
|
|
|
|
|
+ if (cannot_access_at_index(input_buffer, 0) || buffer_at_offset(input_buffer)[0] != ']')
|
|
{
|
|
{
|
|
- *error_pointer = input;
|
|
|
|
|
|
+ *error_pointer = buffer_at_offset(input_buffer);
|
|
goto fail; /* expected end of array */
|
|
goto fail; /* expected end of array */
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1317,7 +1349,9 @@ success:
|
|
item->type = cJSON_Array;
|
|
item->type = cJSON_Array;
|
|
item->child = head;
|
|
item->child = head;
|
|
|
|
|
|
- return input + 1;
|
|
|
|
|
|
+ input_buffer->offset++;
|
|
|
|
+
|
|
|
|
+ return buffer_at_offset(input_buffer);
|
|
|
|
|
|
fail:
|
|
fail:
|
|
if (head != NULL)
|
|
if (head != NULL)
|