mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
reformatting: cJSONUtils_FindPointerFromObjectTo
This commit is contained in:
parent
c6cb991e3f
commit
158ddceab3
@ -98,36 +98,51 @@ static void cJSONUtils_PointerEncodedstrcpy(char *d, const char *s)
|
||||
*d = '\0';
|
||||
}
|
||||
|
||||
char *cJSONUtils_FindPointerFromObjectTo(cJSON *object,cJSON *target)
|
||||
char *cJSONUtils_FindPointerFromObjectTo(cJSON *object, cJSON *target)
|
||||
{
|
||||
int type=object->type,c=0;cJSON *obj=0;
|
||||
int type = object->type;
|
||||
int c = 0;
|
||||
cJSON *obj = 0;
|
||||
|
||||
if (object==target) return strdup("");
|
||||
|
||||
for (obj=object->child;obj;obj=obj->next,c++)
|
||||
if (object == target)
|
||||
{
|
||||
char *found=cJSONUtils_FindPointerFromObjectTo(obj,target);
|
||||
/* found */
|
||||
return strdup("");
|
||||
}
|
||||
|
||||
/* recursively search all children of the object */
|
||||
for (obj = object->child; obj; obj = obj->next, c++)
|
||||
{
|
||||
char *found = cJSONUtils_FindPointerFromObjectTo(obj, target);
|
||||
if (found)
|
||||
{
|
||||
if (type==cJSON_Array)
|
||||
if (type == cJSON_Array)
|
||||
{
|
||||
char *ret=(char*)malloc(strlen(found)+23);
|
||||
sprintf(ret,"/%d%s",c,found);
|
||||
/* reserve enough memory for a 64 bit integer + '/' and '\0' */
|
||||
char *ret = (char*)malloc(strlen(found) + 23);
|
||||
sprintf(ret, "/%d%s", c, found); /* /<array_index><path> */
|
||||
free(found);
|
||||
|
||||
return ret;
|
||||
}
|
||||
else if (type==cJSON_Object)
|
||||
else if (type == cJSON_Object)
|
||||
{
|
||||
char *ret=(char*)malloc(strlen(found)+cJSONUtils_PointerEncodedstrlen(obj->string)+2);
|
||||
*ret='/';cJSONUtils_PointerEncodedstrcpy(ret+1,obj->string);
|
||||
strcat(ret,found);
|
||||
char *ret = (char*)malloc(strlen(found) + cJSONUtils_PointerEncodedstrlen(obj->string) + 2);
|
||||
*ret = '/';
|
||||
cJSONUtils_PointerEncodedstrcpy(ret + 1, obj->string);
|
||||
strcat(ret, found);
|
||||
free(found);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* reached leaf of the tree, found nothing */
|
||||
free(found);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* not found */
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user