cjson_utils.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. #include <ctype.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <stdio.h>
  5. #include "cjson_utils.h"
  6. static int cJSONUtils_strcasecmp(const char *s1,const char *s2)
  7. {
  8. if (!s1) return (s1==s2)?0:1;if (!s2) return 1;
  9. for(; tolower(*s1) == tolower(*s2); ++s1, ++s2) if(*s1 == 0) return 0;
  10. return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
  11. }
  12. /* JSON Pointer implementation: */
  13. static int cJSONUtils_Pstrcasecmp(const char *a,const char *e)
  14. {
  15. if (!a || !e) return (a==e)?0:1;
  16. for (;*a && *e && *e!='/';a++,e++) {
  17. if (*e=='~') {if (!(e[1]=='0' && *a=='~') && !(e[1]=='1' && *a=='/')) return 1; else e++;}
  18. else if (tolower(*a)!=tolower(*e)) return 1;
  19. }
  20. if ((*e!=0 && *e!='/') != (*a!=0)) return 1;
  21. return 0;
  22. }
  23. static int cJSONUtils_PointerEncodedstrlen(const char *s) {int l=0;for (;*s;s++,l++) if (*s=='~' || *s=='/') l++;return l;}
  24. static void cJSONUtils_PointerEncodedstrcpy(char *d,const char *s)
  25. {
  26. for (;*s;s++)
  27. {
  28. if (*s=='/') {*d++='~';*d++='1';}
  29. else if (*s=='~') {*d++='~';*d++='0';}
  30. else *d++=*s;
  31. }
  32. *d=0;
  33. }
  34. char *cJSONUtils_FindPointerFromObjectTo(cJSON *object,cJSON *target)
  35. {
  36. int type=object->type,c=0;cJSON *obj=0;
  37. if (object==target) return strdup("");
  38. for (obj=object->child;obj;obj=obj->next,c++)
  39. {
  40. char *found=cJSONUtils_FindPointerFromObjectTo(obj,target);
  41. if (found)
  42. {
  43. if (type==cJSON_Array)
  44. {
  45. char *ret=(char*)malloc(strlen(found)+23);
  46. sprintf(ret,"/%d%s",c,found);
  47. free(found);
  48. return ret;
  49. }
  50. else if (type==cJSON_Object)
  51. {
  52. char *ret=(char*)malloc(strlen(found)+cJSONUtils_PointerEncodedstrlen(obj->string)+2);
  53. *ret='/';cJSONUtils_PointerEncodedstrcpy(ret+1,obj->string);
  54. strcat(ret,found);
  55. free(found);
  56. return ret;
  57. }
  58. free(found);
  59. return 0;
  60. }
  61. }
  62. return 0;
  63. }
  64. cJSON *cJSONUtils_GetPointer(cJSON *object,const char *pointer)
  65. {
  66. while (*pointer++=='/' && object)
  67. {
  68. if (object->type==cJSON_Array)
  69. {
  70. int which=0; while (*pointer>='0' && *pointer<='9') which=(10*which) + *pointer++ - '0';
  71. if (*pointer && *pointer!='/') return 0;
  72. object=cJSON_GetArrayItem(object,which);
  73. }
  74. else if (object->type==cJSON_Object)
  75. {
  76. object=object->child; while (object && cJSONUtils_Pstrcasecmp(object->string,pointer)) object=object->next; /* GetObjectItem. */
  77. while (*pointer && *pointer!='/') pointer++;
  78. }
  79. else return 0;
  80. }
  81. return object;
  82. }
  83. /* JSON Patch implementation. */
  84. static void cJSONUtils_InplaceDecodePointerString(char *string)
  85. {
  86. char *s2=string;
  87. for (;*string;s2++,string++) *s2=(*string!='~')?(*string):((*(++string)=='0')?'~':'/');
  88. *s2=0;
  89. }
  90. static cJSON *cJSONUtils_PatchDetach(cJSON *object,const char *path)
  91. {
  92. char *parentptr=0,*childptr=0;cJSON *parent=0,*ret=0;
  93. parentptr=strdup(path); childptr=strrchr(parentptr,'/'); if (childptr) *childptr++=0;
  94. parent=cJSONUtils_GetPointer(object,parentptr);
  95. cJSONUtils_InplaceDecodePointerString(childptr);
  96. if (!parent) ret=0; /* Couldn't find object to remove child from. */
  97. else if (parent->type==cJSON_Array) ret=cJSON_DetachItemFromArray(parent,atoi(childptr));
  98. else if (parent->type==cJSON_Object) ret=cJSON_DetachItemFromObject(parent,childptr);
  99. free(parentptr);
  100. return ret;
  101. }
  102. static int cJSONUtils_Compare(cJSON *a,cJSON *b)
  103. {
  104. if (a->type!=b->type) return -1; /* mismatched type. */
  105. switch (a->type)
  106. {
  107. case cJSON_Number: return (a->valueint!=b->valueint || a->valuedouble!=b->valuedouble)?-2:0; /* numeric mismatch. */
  108. case cJSON_String: return (strcmp(a->valuestring,b->valuestring)!=0)?-3:0; /* string mismatch. */
  109. case cJSON_Array: for (a=a->child,b=b->child;a && b;a=a->next,b=b->next) {int err=cJSONUtils_Compare(a,b);if (err) return err;}
  110. return (a || b)?-4:0; /* array size mismatch. */
  111. case cJSON_Object:
  112. cJSONUtils_SortObject(a);
  113. cJSONUtils_SortObject(b);
  114. a=a->child,b=b->child;
  115. while (a && b)
  116. {
  117. int err;
  118. if (cJSONUtils_strcasecmp(a->string,b->string)) return -6; /* missing member */
  119. err=cJSONUtils_Compare(a,b);if (err) return err;
  120. a=a->next,b=b->next;
  121. }
  122. return (a || b)?-5:0; /* object length mismatch */
  123. default: break;
  124. }
  125. return 0;
  126. }
  127. static int cJSONUtils_ApplyPatch(cJSON *object,cJSON *patch)
  128. {
  129. cJSON *op=0,*path=0,*value=0,*parent=0;int opcode=0;char *parentptr=0,*childptr=0;
  130. op=cJSON_GetObjectItem(patch,"op");
  131. path=cJSON_GetObjectItem(patch,"path");
  132. if (!op || !path) return 2; /* malformed patch. */
  133. if (!strcmp(op->valuestring,"add")) opcode=0;
  134. else if (!strcmp(op->valuestring,"remove")) opcode=1;
  135. else if (!strcmp(op->valuestring,"replace"))opcode=2;
  136. else if (!strcmp(op->valuestring,"move")) opcode=3;
  137. else if (!strcmp(op->valuestring,"copy")) opcode=4;
  138. else if (!strcmp(op->valuestring,"test")) return cJSONUtils_Compare(cJSONUtils_GetPointer(object,path->valuestring),cJSON_GetObjectItem(patch,"value"));
  139. else return 3; /* unknown opcode. */
  140. if (opcode==1 || opcode==2) /* Remove/Replace */
  141. {
  142. cJSON_Delete(cJSONUtils_PatchDetach(object,path->valuestring)); /* Get rid of old. */
  143. if (opcode==1) return 0; /* For Remove, this is job done. */
  144. }
  145. if (opcode==3 || opcode==4) /* Copy/Move uses "from". */
  146. {
  147. cJSON *from=cJSON_GetObjectItem(patch,"from"); if (!from) return 4; /* missing "from" for copy/move. */
  148. if (opcode==3) value=cJSONUtils_PatchDetach(object,from->valuestring);
  149. if (opcode==4) value=cJSONUtils_GetPointer(object,from->valuestring);
  150. if (!value) return 5; /* missing "from" for copy/move. */
  151. if (opcode==4) value=cJSON_Duplicate(value,1);
  152. if (!value) return 6; /* out of memory for copy/move. */
  153. }
  154. else /* Add/Replace uses "value". */
  155. {
  156. value=cJSON_GetObjectItem(patch,"value");
  157. if (!value) return 7; /* missing "value" for add/replace. */
  158. value=cJSON_Duplicate(value,1);
  159. if (!value) return 8; /* out of memory for add/replace. */
  160. }
  161. /* Now, just add "value" to "path". */
  162. parentptr=strdup(path->valuestring); childptr=strrchr(parentptr,'/'); if (childptr) *childptr++=0;
  163. parent=cJSONUtils_GetPointer(object,parentptr);
  164. cJSONUtils_InplaceDecodePointerString(childptr);
  165. /* add, remove, replace, move, copy, test. */
  166. if (!parent) {free(parentptr); cJSON_Delete(value); return 9;} /* Couldn't find object to add to. */
  167. else if (parent->type==cJSON_Array)
  168. {
  169. if (!strcmp(childptr,"-")) cJSON_AddItemToArray(parent,value);
  170. else cJSON_InsertItemInArray(parent,atoi(childptr),value);
  171. }
  172. else if (parent->type==cJSON_Object)
  173. {
  174. cJSON_DeleteItemFromObject(parent,childptr);
  175. cJSON_AddItemToObject(parent,childptr,value);
  176. }
  177. else
  178. {
  179. cJSON_Delete(value);
  180. }
  181. free(parentptr);
  182. return 0;
  183. }
  184. int cJSONUtils_ApplyPatches(cJSON *object,cJSON *patches)
  185. {
  186. int err;
  187. if (patches->type!=cJSON_Array) return 1; /* malformed patches. */
  188. if (patches) patches=patches->child;
  189. while (patches)
  190. {
  191. if ((err=cJSONUtils_ApplyPatch(object,patches))) return err;
  192. patches=patches->next;
  193. }
  194. return 0;
  195. }
  196. static void cJSONUtils_GeneratePatch(cJSON *patches,const char *op,const char *path,const char *suffix,cJSON *val)
  197. {
  198. cJSON *patch=cJSON_CreateObject();
  199. cJSON_AddItemToObject(patch,"op",cJSON_CreateString(op));
  200. if (suffix)
  201. {
  202. char *newpath=(char*)malloc(strlen(path)+cJSONUtils_PointerEncodedstrlen(suffix)+2);
  203. cJSONUtils_PointerEncodedstrcpy(newpath+sprintf(newpath,"%s/",path),suffix);
  204. cJSON_AddItemToObject(patch,"path",cJSON_CreateString(newpath));
  205. free(newpath);
  206. }
  207. else cJSON_AddItemToObject(patch,"path",cJSON_CreateString(path));
  208. if (val) cJSON_AddItemToObject(patch,"value",cJSON_Duplicate(val,1));
  209. cJSON_AddItemToArray(patches,patch);
  210. }
  211. void cJSONUtils_AddPatchToArray(cJSON *array,const char *op,const char *path,cJSON *val) {cJSONUtils_GeneratePatch(array,op,path,0,val);}
  212. static void cJSONUtils_CompareToPatch(cJSON *patches,const char *path,cJSON *from,cJSON *to)
  213. {
  214. if (from->type!=to->type) {cJSONUtils_GeneratePatch(patches,"replace",path,0,to); return; }
  215. switch (from->type)
  216. {
  217. case cJSON_Number:
  218. if (from->valueint!=to->valueint || from->valuedouble!=to->valuedouble)
  219. cJSONUtils_GeneratePatch(patches,"replace",path,0,to);
  220. return;
  221. case cJSON_String:
  222. if (strcmp(from->valuestring,to->valuestring)!=0)
  223. cJSONUtils_GeneratePatch(patches,"replace",path,0,to);
  224. return;
  225. case cJSON_Array:
  226. {
  227. int c;char *newpath=(char*)malloc(strlen(path)+23); /* Allow space for 64bit int. */
  228. for (c=0,from=from->child,to=to->child;from && to;from=from->next,to=to->next,c++){
  229. sprintf(newpath,"%s/%d",path,c); cJSONUtils_CompareToPatch(patches,newpath,from,to);
  230. }
  231. for (;from;from=from->next,c++) {sprintf(newpath,"%d",c); cJSONUtils_GeneratePatch(patches,"remove",path,newpath,0); }
  232. for (;to;to=to->next,c++) cJSONUtils_GeneratePatch(patches,"add",path,"-",to);
  233. free(newpath);
  234. return;
  235. }
  236. case cJSON_Object:
  237. {
  238. cJSON *a,*b;
  239. cJSONUtils_SortObject(from);
  240. cJSONUtils_SortObject(to);
  241. a=from->child,b=to->child;
  242. while (a || b)
  243. {
  244. int diff=(!a)?1:(!b)?-1:cJSONUtils_strcasecmp(a->string,b->string);
  245. if (!diff)
  246. {
  247. char *newpath=(char*)malloc(strlen(path)+cJSONUtils_PointerEncodedstrlen(a->string)+2);
  248. cJSONUtils_PointerEncodedstrcpy(newpath+sprintf(newpath,"%s/",path),a->string);
  249. cJSONUtils_CompareToPatch(patches,newpath,a,b);
  250. free(newpath);
  251. a=a->next;
  252. b=b->next;
  253. }
  254. else if (diff<0) {cJSONUtils_GeneratePatch(patches,"remove",path,a->string,0); a=a->next;}
  255. else {cJSONUtils_GeneratePatch(patches,"add",path,b->string,b); b=b->next;}
  256. }
  257. return;
  258. }
  259. default: break;
  260. }
  261. }
  262. cJSON* cJSONUtils_GeneratePatches(cJSON *from,cJSON *to)
  263. {
  264. cJSON *patches=cJSON_CreateArray();
  265. cJSONUtils_CompareToPatch(patches,"",from,to);
  266. return patches;
  267. }
  268. static cJSON *cJSONUtils_SortList(cJSON *list)
  269. {
  270. cJSON *first=list,*second=list,*ptr=list;
  271. if (!list || !list->next) return list; /* One entry is sorted already. */
  272. while (ptr && ptr->next && cJSONUtils_strcasecmp(ptr->string,ptr->next->string)<0) ptr=ptr->next; /* Test for list sorted. */
  273. if (!ptr || !ptr->next) return list; /* Leave sorted lists unmodified. */
  274. ptr=list;
  275. while (ptr) {second=second->next;ptr=ptr->next;if (ptr) ptr=ptr->next;} /* Walk two pointers to find the middle. */
  276. if (second && second->prev) second->prev->next=0; /* Split the lists */
  277. first=cJSONUtils_SortList(first); /* Recursively sort the sub-lists. */
  278. second=cJSONUtils_SortList(second);
  279. list=ptr=0;
  280. while (first && second) /* Merge the sub-lists */
  281. {
  282. if (cJSONUtils_strcasecmp(first->string,second->string)<0)
  283. {
  284. if (!list) list=ptr=first;
  285. else {ptr->next=first;first->prev=ptr;ptr=first;}
  286. first=first->next;
  287. }
  288. else
  289. {
  290. if (!list) list=ptr=second;
  291. else {ptr->next=second;second->prev=ptr;ptr=second;}
  292. second=second->next;
  293. }
  294. }
  295. if (first) { if (!list) return first; ptr->next=first; first->prev=ptr; } /* Append any tails. */
  296. if (second) { if (!list) return second; ptr->next=second; second->prev=ptr; }
  297. return list;
  298. }
  299. void cJSONUtils_SortObject(cJSON *object) {object->child=cJSONUtils_SortList(object->child);}
  300. cJSON* cJSONUtils_MergePatch(cJSON *target, cJSON *patch)
  301. {
  302. if (!patch || patch->type != cJSON_Object) {cJSON_Delete(target);return cJSON_Duplicate(patch,1);}
  303. if (!target || target->type != cJSON_Object) {cJSON_Delete(target);target=cJSON_CreateObject();}
  304. patch=patch->child;
  305. while (patch)
  306. {
  307. if (patch->type == cJSON_NULL) cJSON_DeleteItemFromObject(target,patch->string);
  308. else
  309. {
  310. cJSON *replaceme=cJSON_DetachItemFromObject(target,patch->string);
  311. cJSON_AddItemToObject(target,patch->string,cJSONUtils_MergePatch(replaceme,patch));
  312. }
  313. patch=patch->next;
  314. }
  315. return target;
  316. }
  317. cJSON *cJSONUtils_GenerateMergePatch(cJSON *from,cJSON *to)
  318. {
  319. cJSON *patch=0;
  320. if (!to) return cJSON_CreateNull();
  321. if (to->type!=cJSON_Object || !from || from->type!=cJSON_Object) return cJSON_Duplicate(to,1);
  322. cJSONUtils_SortObject(from);
  323. cJSONUtils_SortObject(to);
  324. from=from->child;to=to->child;
  325. patch=cJSON_CreateObject();
  326. while (from || to)
  327. {
  328. int compare=from?(to?strcmp(from->string,to->string):-1):1;
  329. if (compare<0)
  330. {
  331. cJSON_AddItemToObject(patch,from->string,cJSON_CreateNull());
  332. from=from->next;
  333. }
  334. else if (compare>0)
  335. {
  336. cJSON_AddItemToObject(patch,to->string,cJSON_Duplicate(to,1));
  337. to=to->next;
  338. }
  339. else
  340. {
  341. if (cJSONUtils_Compare(from,to)) cJSON_AddItemToObject(patch,to->string,cJSONUtils_GenerateMergePatch(from,to));
  342. from=from->next;to=to->next;
  343. }
  344. }
  345. if (!patch->child) {cJSON_Delete(patch);return 0;}
  346. return patch;
  347. }