cJSON_Utils.c 17 KB

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