cJSON_Utils.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836
  1. #include <ctype.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <stdio.h>
  5. #include "cJSON_Utils.h"
  6. static char* cJSONUtils_strdup(const char* str)
  7. {
  8. size_t len = 0;
  9. char *copy = NULL;
  10. len = strlen(str) + 1;
  11. if (!(copy = (char*)malloc(len)))
  12. {
  13. return NULL;
  14. }
  15. memcpy(copy, str, len);
  16. return copy;
  17. }
  18. static int cJSONUtils_strcasecmp(const char *s1, const char *s2)
  19. {
  20. if (!s1)
  21. {
  22. return (s1 == s2) ? 0 : 1; /* both NULL? */
  23. }
  24. if (!s2)
  25. {
  26. return 1;
  27. }
  28. for (; tolower(*s1) == tolower(*s2); ++s1, ++s2)
  29. {
  30. if (*s1 == 0)
  31. {
  32. return 0;
  33. }
  34. }
  35. return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
  36. }
  37. /* JSON Pointer implementation: */
  38. static int cJSONUtils_Pstrcasecmp(const char *a, const char *e)
  39. {
  40. if (!a || !e)
  41. {
  42. return (a == e) ? 0 : 1; /* both NULL? */
  43. }
  44. for (; *a && *e && (*e != '/'); a++, e++) /* compare until next '/' */
  45. {
  46. if (*e == '~')
  47. {
  48. /* check for escaped '~' (~0) and '/' (~1) */
  49. if (!((e[1] == '0') && (*a == '~')) && !((e[1] == '1') && (*a == '/')))
  50. {
  51. /* invalid escape sequence or wrong character in *a */
  52. return 1;
  53. }
  54. else
  55. {
  56. e++;
  57. }
  58. }
  59. else if (tolower(*a) != tolower(*e))
  60. {
  61. return 1;
  62. }
  63. }
  64. if (((*e != 0) && (*e != '/')) != (*a != 0))
  65. {
  66. /* one string has ended, the other not */
  67. return 1;
  68. }
  69. return 0;
  70. }
  71. static int cJSONUtils_PointerEncodedstrlen(const char *s)
  72. {
  73. int l = 0;
  74. for (; *s; s++, l++)
  75. {
  76. if ((*s == '~') || (*s == '/'))
  77. {
  78. l++;
  79. }
  80. }
  81. return l;
  82. }
  83. static void cJSONUtils_PointerEncodedstrcpy(char *d, const char *s)
  84. {
  85. for (; *s; s++)
  86. {
  87. if (*s == '/')
  88. {
  89. *d++ = '~';
  90. *d++ = '1';
  91. }
  92. else if (*s == '~')
  93. {
  94. *d++ = '~';
  95. *d++ = '0';
  96. }
  97. else
  98. {
  99. *d++ = *s;
  100. }
  101. }
  102. *d = '\0';
  103. }
  104. char *cJSONUtils_FindPointerFromObjectTo(cJSON *object, cJSON *target)
  105. {
  106. int type = object->type;
  107. int c = 0;
  108. cJSON *obj = 0;
  109. if (object == target)
  110. {
  111. /* found */
  112. return cJSONUtils_strdup("");
  113. }
  114. int nlen = 0;
  115. /* recursively search all children of the object */
  116. for (obj = object->child; obj; obj = obj->next, c++)
  117. {
  118. char *found = cJSONUtils_FindPointerFromObjectTo(obj, target);
  119. if (found)
  120. {
  121. if ((type & 0xFF) == cJSON_Array)
  122. {
  123. /* reserve enough memory for a 64 bit integer + '/' and '\0' */
  124. nlen = strlen(found) + 23;
  125. char *ret = (char*)malloc(nlen);
  126. sprintf_s(ret, nlen, "/%d%s", c, found); /* /<array_index><path> */
  127. free(found);
  128. return ret;
  129. }
  130. else if ((type & 0xFF) == cJSON_Object)
  131. {
  132. nlen = strlen(found) + cJSONUtils_PointerEncodedstrlen(obj->string) + 2;
  133. char *ret = (char*)malloc(nlen);
  134. *ret = '/';
  135. cJSONUtils_PointerEncodedstrcpy(ret + 1, obj->string);
  136. strcat_s(ret, nlen, found);
  137. free(found);
  138. return ret;
  139. }
  140. /* reached leaf of the tree, found nothing */
  141. free(found);
  142. return NULL;
  143. }
  144. }
  145. /* not found */
  146. return NULL;
  147. }
  148. cJSON *cJSONUtils_GetPointer(cJSON *object, const char *pointer)
  149. {
  150. /* follow path of the pointer */
  151. while ((*pointer++ == '/') && object)
  152. {
  153. if ((object->type & 0xFF) == cJSON_Array)
  154. {
  155. int which = 0;
  156. /* parse array index */
  157. while ((*pointer >= '0') && (*pointer <= '9'))
  158. {
  159. which = (10 * which) + (*pointer++ - '0');
  160. }
  161. if (*pointer && (*pointer != '/'))
  162. {
  163. /* not end of string or new path token */
  164. return NULL;
  165. }
  166. object = cJSON_GetArrayItem(object, which);
  167. }
  168. else if ((object->type & 0xFF) == cJSON_Object)
  169. {
  170. object = object->child;
  171. /* GetObjectItem. */
  172. while (object && cJSONUtils_Pstrcasecmp(object->string, pointer))
  173. {
  174. object = object->next;
  175. }
  176. /* skip to the next path token or end of string */
  177. while (*pointer && (*pointer != '/'))
  178. {
  179. pointer++;
  180. }
  181. }
  182. else
  183. {
  184. return NULL;
  185. }
  186. }
  187. return object;
  188. }
  189. /* JSON Patch implementation. */
  190. static void cJSONUtils_InplaceDecodePointerString(char *string)
  191. {
  192. char *s2 = string;
  193. for (; *string; s2++, string++)
  194. {
  195. *s2 = (*string != '~')
  196. ? (*string)
  197. : ((*(++string) == '0')
  198. ? '~'
  199. : '/');
  200. }
  201. *s2 = '\0';
  202. }
  203. static cJSON *cJSONUtils_PatchDetach(cJSON *object, const char *path)
  204. {
  205. char *parentptr = NULL;
  206. char *childptr = NULL;
  207. cJSON *parent = NULL;
  208. cJSON *ret = NULL;
  209. /* copy path and split it in parent and child */
  210. parentptr = cJSONUtils_strdup(path);
  211. childptr = strrchr(parentptr, '/'); /* last '/' */
  212. if (childptr)
  213. {
  214. /* split strings */
  215. *childptr++ = '\0';
  216. }
  217. parent = cJSONUtils_GetPointer(object, parentptr);
  218. cJSONUtils_InplaceDecodePointerString(childptr);
  219. if (!parent)
  220. {
  221. /* Couldn't find object to remove child from. */
  222. ret = NULL;
  223. }
  224. else if ((parent->type & 0xFF) == cJSON_Array)
  225. {
  226. ret = cJSON_DetachItemFromArray(parent, atoi(childptr));
  227. }
  228. else if ((parent->type & 0xFF) == cJSON_Object)
  229. {
  230. ret = cJSON_DetachItemFromObject(parent, childptr);
  231. }
  232. free(parentptr);
  233. /* return the detachted item */
  234. return ret;
  235. }
  236. static int cJSONUtils_Compare(cJSON *a, cJSON *b)
  237. {
  238. if ((a->type & 0xFF) != (b->type & 0xFF))
  239. {
  240. /* mismatched type. */
  241. return -1;
  242. }
  243. switch (a->type & 0xFF)
  244. {
  245. case cJSON_Number:
  246. /* numeric mismatch. */
  247. return ((a->valueint != b->valueint) || (a->valuedouble != b->valuedouble)) ? -2 : 0;
  248. case cJSON_String:
  249. /* string mismatch. */
  250. return (strcmp(a->valuestring, b->valuestring) != 0) ? -3 : 0;
  251. case cJSON_Array:
  252. for (a = a->child, b = b->child; a && b; a = a->next, b = b->next)
  253. {
  254. int err = cJSONUtils_Compare(a, b);
  255. if (err)
  256. {
  257. return err;
  258. }
  259. }
  260. /* array size mismatch? (one of both children is not NULL) */
  261. return (a || b) ? -4 : 0;
  262. case cJSON_Object:
  263. cJSONUtils_SortObject(a);
  264. cJSONUtils_SortObject(b);
  265. a = a->child;
  266. b = b->child;
  267. while (a && b)
  268. {
  269. int err = 0;
  270. /* compare object keys */
  271. if (cJSONUtils_strcasecmp(a->string, b->string))
  272. {
  273. /* missing member */
  274. return -6;
  275. }
  276. err = cJSONUtils_Compare(a, b);
  277. if (err)
  278. {
  279. return err;
  280. }
  281. a = a->next;
  282. b = b->next;
  283. }
  284. /* object length mismatch (one of both children is not null) */
  285. return (a || b) ? -5 : 0;
  286. default:
  287. break;
  288. }
  289. /* null, true or false */
  290. return 0;
  291. }
  292. static int cJSONUtils_ApplyPatch(cJSON *object, cJSON *patch)
  293. {
  294. cJSON *op = NULL;
  295. cJSON *path = NULL;
  296. cJSON *value = NULL;
  297. cJSON *parent = NULL;
  298. int opcode = 0;
  299. char *parentptr = NULL;
  300. char *childptr = NULL;
  301. op = cJSON_GetObjectItem(patch, "op");
  302. path = cJSON_GetObjectItem(patch, "path");
  303. if (!op || !path)
  304. {
  305. /* malformed patch. */
  306. return 2;
  307. }
  308. /* decode operation */
  309. if (!strcmp(op->valuestring, "add"))
  310. {
  311. opcode = 0;
  312. }
  313. else if (!strcmp(op->valuestring, "remove"))
  314. {
  315. opcode = 1;
  316. }
  317. else if (!strcmp(op->valuestring, "replace"))
  318. {
  319. opcode = 2;
  320. }
  321. else if (!strcmp(op->valuestring, "move"))
  322. {
  323. opcode = 3;
  324. }
  325. else if (!strcmp(op->valuestring, "copy"))
  326. {
  327. opcode = 4;
  328. }
  329. else if (!strcmp(op->valuestring, "test"))
  330. {
  331. /* compare value: {...} with the given path */
  332. return cJSONUtils_Compare(cJSONUtils_GetPointer(object, path->valuestring), cJSON_GetObjectItem(patch, "value"));
  333. }
  334. else
  335. {
  336. /* unknown opcode. */
  337. return 3;
  338. }
  339. /* Remove/Replace */
  340. if ((opcode == 1) || (opcode == 2))
  341. {
  342. /* Get rid of old. */
  343. cJSON_Delete(cJSONUtils_PatchDetach(object, path->valuestring));
  344. if (opcode == 1)
  345. {
  346. /* For Remove, this is job done. */
  347. return 0;
  348. }
  349. }
  350. /* Copy/Move uses "from". */
  351. if ((opcode == 3) || (opcode == 4))
  352. {
  353. cJSON *from = cJSON_GetObjectItem(patch, "from");
  354. if (!from)
  355. {
  356. /* missing "from" for copy/move. */
  357. return 4;
  358. }
  359. if (opcode == 3)
  360. {
  361. /* move */
  362. value = cJSONUtils_PatchDetach(object, from->valuestring);
  363. }
  364. if (opcode == 4)
  365. {
  366. /* copy */
  367. value = cJSONUtils_GetPointer(object, from->valuestring);
  368. }
  369. if (!value)
  370. {
  371. /* missing "from" for copy/move. */
  372. return 5;
  373. }
  374. if (opcode == 4)
  375. {
  376. value = cJSON_Duplicate(value, 1);
  377. }
  378. if (!value)
  379. {
  380. /* out of memory for copy/move. */
  381. return 6;
  382. }
  383. }
  384. else /* Add/Replace uses "value". */
  385. {
  386. value = cJSON_GetObjectItem(patch, "value");
  387. if (!value)
  388. {
  389. /* missing "value" for add/replace. */
  390. return 7;
  391. }
  392. value = cJSON_Duplicate(value, 1);
  393. if (!value)
  394. {
  395. /* out of memory for add/replace. */
  396. return 8;
  397. }
  398. }
  399. /* Now, just add "value" to "path". */
  400. /* split pointer in parent and child */
  401. parentptr = cJSONUtils_strdup(path->valuestring);
  402. childptr = strrchr(parentptr, '/');
  403. if (childptr)
  404. {
  405. *childptr++ = '\0';
  406. }
  407. parent = cJSONUtils_GetPointer(object, parentptr);
  408. cJSONUtils_InplaceDecodePointerString(childptr);
  409. /* add, remove, replace, move, copy, test. */
  410. if (!parent)
  411. {
  412. /* Couldn't find object to add to. */
  413. free(parentptr);
  414. cJSON_Delete(value);
  415. return 9;
  416. }
  417. else if ((parent->type & 0xFF) == cJSON_Array)
  418. {
  419. if (!strcmp(childptr, "-"))
  420. {
  421. cJSON_AddItemToArray(parent, value);
  422. }
  423. else
  424. {
  425. cJSON_InsertItemInArray(parent, atoi(childptr), value);
  426. }
  427. }
  428. else if ((parent->type & 0xFF) == cJSON_Object)
  429. {
  430. cJSON_DeleteItemFromObject(parent, childptr);
  431. cJSON_AddItemToObject(parent, childptr, value);
  432. }
  433. else
  434. {
  435. cJSON_Delete(value);
  436. }
  437. free(parentptr);
  438. return 0;
  439. }
  440. int cJSONUtils_ApplyPatches(cJSON *object, cJSON *patches)
  441. {
  442. int err = 0;
  443. if ((patches->type & 0xFF) != cJSON_Array)
  444. {
  445. /* malformed patches. */
  446. return 1;
  447. }
  448. if (patches)
  449. {
  450. patches = patches->child;
  451. }
  452. while (patches)
  453. {
  454. if ((err = cJSONUtils_ApplyPatch(object, patches)))
  455. {
  456. return err;
  457. }
  458. patches = patches->next;
  459. }
  460. return 0;
  461. }
  462. static void cJSONUtils_GeneratePatch(cJSON *patches, const char *op, const char *path, const char *suffix, cJSON *val)
  463. {
  464. int nlen = 0;
  465. cJSON *patch = cJSON_CreateObject();
  466. cJSON_AddItemToObject(patch, "op", cJSON_CreateString(op));
  467. if (suffix)
  468. {
  469. nlen = strlen(path) + cJSONUtils_PointerEncodedstrlen(suffix) + 2;
  470. char *newpath = (char*)malloc(nlen);
  471. cJSONUtils_PointerEncodedstrcpy(newpath + sprintf_s(newpath, nlen, "%s/", path), suffix);
  472. cJSON_AddItemToObject(patch, "path", cJSON_CreateString(newpath));
  473. free(newpath);
  474. }
  475. else
  476. {
  477. cJSON_AddItemToObject(patch, "path", cJSON_CreateString(path));
  478. }
  479. if (val)
  480. {
  481. cJSON_AddItemToObject(patch, "value", cJSON_Duplicate(val, 1));
  482. }
  483. cJSON_AddItemToArray(patches, patch);
  484. }
  485. void cJSONUtils_AddPatchToArray(cJSON *array, const char *op, const char *path, cJSON *val)
  486. {
  487. cJSONUtils_GeneratePatch(array, op, path, 0, val);
  488. }
  489. static void cJSONUtils_CompareToPatch(cJSON *patches, const char *path, cJSON *from, cJSON *to)
  490. {
  491. if ((from->type & 0xFF) != (to->type & 0xFF))
  492. {
  493. cJSONUtils_GeneratePatch(patches, "replace", path, 0, to);
  494. return;
  495. }
  496. int nlen = 0;
  497. switch ((from->type & 0xFF))
  498. {
  499. case cJSON_Number:
  500. if ((from->valueint != to->valueint) || (from->valuedouble != to->valuedouble))
  501. {
  502. cJSONUtils_GeneratePatch(patches, "replace", path, 0, to);
  503. }
  504. return;
  505. case cJSON_String:
  506. if (strcmp(from->valuestring, to->valuestring) != 0)
  507. {
  508. cJSONUtils_GeneratePatch(patches, "replace", path, 0, to);
  509. }
  510. return;
  511. case cJSON_Array:
  512. {
  513. int c = 0;
  514. nlen = strlen(path) + 23;
  515. char *newpath = (char*)malloc(nlen); /* Allow space for 64bit int. */
  516. /* generate patches for all array elements that exist in "from" and "to" */
  517. for (c = 0, from = from->child, to = to->child; from && to; from = from->next, to = to->next, c++)
  518. {
  519. sprintf_s(newpath, nlen, "%s/%d", path, c); /* path of the current array element */
  520. cJSONUtils_CompareToPatch(patches, newpath, from, to);
  521. }
  522. /* remove leftover elements from 'from' that are not in 'to' */
  523. for (; from; from = from->next, c++)
  524. {
  525. sprintf_s(newpath, nlen, "%d", c);
  526. cJSONUtils_GeneratePatch(patches, "remove", path, newpath, 0);
  527. }
  528. /* add new elements in 'to' that were not in 'from' */
  529. for (; to; to = to->next, c++)
  530. {
  531. cJSONUtils_GeneratePatch(patches, "add", path, "-", to);
  532. }
  533. free(newpath);
  534. return;
  535. }
  536. case cJSON_Object:
  537. {
  538. cJSON *a = NULL;
  539. cJSON *b = NULL;
  540. cJSONUtils_SortObject(from);
  541. cJSONUtils_SortObject(to);
  542. a = from->child;
  543. b = to->child;
  544. /* for all object values in the object with more of them */
  545. while (a || b)
  546. {
  547. int diff = (!a) ? 1 : ((!b) ? -1 : cJSONUtils_strcasecmp(a->string, b->string));
  548. if (!diff)
  549. {
  550. /* both object keys are the same */
  551. nlen = strlen(path) + cJSONUtils_PointerEncodedstrlen(a->string) + 2;
  552. char *newpath = (char*)malloc(nlen);
  553. cJSONUtils_PointerEncodedstrcpy(newpath + sprintf_s(newpath, nlen, "%s/", path), a->string);
  554. /* create a patch for the element */
  555. cJSONUtils_CompareToPatch(patches, newpath, a, b);
  556. free(newpath);
  557. a = a->next;
  558. b = b->next;
  559. }
  560. else if (diff < 0)
  561. {
  562. /* object element doesn't exist in 'to' --> remove it */
  563. cJSONUtils_GeneratePatch(patches, "remove", path, a->string, 0);
  564. a = a->next;
  565. }
  566. else
  567. {
  568. /* object element doesn't exist in 'from' --> add it */
  569. cJSONUtils_GeneratePatch(patches, "add", path, b->string, b);
  570. b = b->next;
  571. }
  572. }
  573. return;
  574. }
  575. default:
  576. break;
  577. }
  578. }
  579. cJSON* cJSONUtils_GeneratePatches(cJSON *from, cJSON *to)
  580. {
  581. cJSON *patches = cJSON_CreateArray();
  582. cJSONUtils_CompareToPatch(patches, "", from, to);
  583. return patches;
  584. }
  585. /* sort lists using mergesort */
  586. static cJSON *cJSONUtils_SortList(cJSON *list)
  587. {
  588. cJSON *first = list;
  589. cJSON *second = list;
  590. cJSON *ptr = list;
  591. if (!list || !list->next)
  592. {
  593. /* One entry is sorted already. */
  594. return list;
  595. }
  596. while (ptr && ptr->next && (cJSONUtils_strcasecmp(ptr->string, ptr->next->string) < 0))
  597. {
  598. /* Test for list sorted. */
  599. ptr = ptr->next;
  600. }
  601. if (!ptr || !ptr->next)
  602. {
  603. /* Leave sorted lists unmodified. */
  604. return list;
  605. }
  606. /* reset ptr to the beginning */
  607. ptr = list;
  608. while (ptr)
  609. {
  610. /* Walk two pointers to find the middle. */
  611. second = second->next;
  612. ptr = ptr->next;
  613. /* advances ptr two steps at a time */
  614. if (ptr)
  615. {
  616. ptr = ptr->next;
  617. }
  618. }
  619. if (second && second->prev)
  620. {
  621. /* Split the lists */
  622. second->prev->next = NULL;
  623. }
  624. /* Recursively sort the sub-lists. */
  625. first = cJSONUtils_SortList(first);
  626. second = cJSONUtils_SortList(second);
  627. list = ptr = NULL;
  628. while (first && second) /* Merge the sub-lists */
  629. {
  630. if (cJSONUtils_strcasecmp(first->string, second->string) < 0)
  631. {
  632. if (!list)
  633. {
  634. /* start merged list with the first element of the first list */
  635. list = ptr = first;
  636. }
  637. else
  638. {
  639. /* add first element of first list to merged list */
  640. ptr->next = first;
  641. first->prev = ptr;
  642. ptr = first;
  643. }
  644. first = first->next;
  645. }
  646. else
  647. {
  648. if (!list)
  649. {
  650. /* start merged list with the first element of the second list */
  651. list = ptr = second;
  652. }
  653. else
  654. {
  655. /* add first element of second list to merged list */
  656. ptr->next = second;
  657. second->prev = ptr;
  658. ptr = second;
  659. }
  660. second = second->next;
  661. }
  662. }
  663. if (first)
  664. {
  665. /* Append rest of first list. */
  666. if (!list)
  667. {
  668. return first;
  669. }
  670. ptr->next = first;
  671. first->prev = ptr;
  672. }
  673. if (second)
  674. {
  675. /* Append rest of second list */
  676. if (!list)
  677. {
  678. return second;
  679. }
  680. ptr->next = second;
  681. second->prev = ptr;
  682. }
  683. return list;
  684. }
  685. void cJSONUtils_SortObject(cJSON *object)
  686. {
  687. object->child = cJSONUtils_SortList(object->child);
  688. }
  689. cJSON* cJSONUtils_MergePatch(cJSON *target, cJSON *patch)
  690. {
  691. if (!patch || ((patch->type & 0xFF) != cJSON_Object))
  692. {
  693. /* scalar value, array or NULL, just duplicate */
  694. cJSON_Delete(target);
  695. return cJSON_Duplicate(patch, 1);
  696. }
  697. if (!target || ((target->type & 0xFF) != cJSON_Object))
  698. {
  699. cJSON_Delete(target);
  700. target = cJSON_CreateObject();
  701. }
  702. patch = patch->child;
  703. while (patch)
  704. {
  705. if ((patch->type & 0xFF) == cJSON_NULL)
  706. {
  707. /* NULL is the indicator to remove a value, see RFC7396 */
  708. cJSON_DeleteItemFromObject(target, patch->string);
  709. }
  710. else
  711. {
  712. cJSON *replaceme = cJSON_DetachItemFromObject(target, patch->string);
  713. cJSON_AddItemToObject(target, patch->string, cJSONUtils_MergePatch(replaceme, patch));
  714. }
  715. patch = patch->next;
  716. }
  717. return target;
  718. }
  719. cJSON *cJSONUtils_GenerateMergePatch(cJSON *from, cJSON *to)
  720. {
  721. cJSON *patch = NULL;
  722. if (!to)
  723. {
  724. /* patch to delete everything */
  725. return cJSON_CreateNull();
  726. }
  727. if (((to->type & 0xFF) != cJSON_Object) || !from || ((from->type & 0xFF) != cJSON_Object))
  728. {
  729. return cJSON_Duplicate(to, 1);
  730. }
  731. cJSONUtils_SortObject(from);
  732. cJSONUtils_SortObject(to);
  733. from = from->child;
  734. to = to->child;
  735. patch = cJSON_CreateObject();
  736. while (from || to)
  737. {
  738. int compare = from ? (to ? strcmp(from->string, to->string) : -1) : 1;
  739. if (compare < 0)
  740. {
  741. /* from has a value that to doesn't have -> remove */
  742. cJSON_AddItemToObject(patch, from->string, cJSON_CreateNull());
  743. from = from->next;
  744. }
  745. else if (compare > 0)
  746. {
  747. /* to has a value that from doesn't have -> add to patch */
  748. cJSON_AddItemToObject(patch, to->string, cJSON_Duplicate(to, 1));
  749. to = to->next;
  750. }
  751. else
  752. {
  753. /* object key exists in both objects */
  754. if (cJSONUtils_Compare(from, to))
  755. {
  756. /* not identical --> generate a patch */
  757. cJSON_AddItemToObject(patch, to->string, cJSONUtils_GenerateMergePatch(from, to));
  758. }
  759. /* next key in the object */
  760. from = from->next;
  761. to = to->next;
  762. }
  763. }
  764. if (!patch->child)
  765. {
  766. cJSON_Delete(patch);
  767. return NULL;
  768. }
  769. return patch;
  770. }