cjson_utils.h 1.5 KB

123456789101112131415161718192021222324252627282930
  1. #include "cjson.h"
  2. /* Implement RFC6901 (https://tools.ietf.org/html/rfc6901) JSON Pointer spec. */
  3. cJSON *cJSONUtils_GetPointer(cJSON *object,const char *pointer);
  4. /* Implement RFC6902 (https://tools.ietf.org/html/rfc6902) JSON Patch spec. */
  5. cJSON* cJSONUtils_GeneratePatches(cJSON *from,cJSON *to);
  6. void cJSONUtils_AddPatchToArray(cJSON *array,const char *op,const char *path,cJSON *val); /* Utility for generating patch array entries. */
  7. int cJSONUtils_ApplyPatches(cJSON *object,cJSON *patches); /* Returns 0 for success. */
  8. /*
  9. // Note that ApplyPatches is NOT atomic on failure. To implement an atomic ApplyPatches, use:
  10. //int cJSONUtils_AtomicApplyPatches(cJSON **object, cJSON *patches)
  11. //{
  12. // cJSON *modme=cJSON_Duplicate(*object,1);
  13. // int error=cJSONUtils_ApplyPatches(modme,patches);
  14. // if (!error) {cJSON_Delete(*object);*object=modme;}
  15. // else cJSON_Delete(modme);
  16. // return error;
  17. //}
  18. // Code not added to library since this strategy is a LOT slower.
  19. */
  20. /* Implement RFC7386 (https://tools.ietf.org/html/rfc7396) JSON Merge Patch spec. */
  21. cJSON* cJSONUtils_MergePatch(cJSON *target, cJSON *patch); /* target will be modified by patch. return value is new ptr for target. */
  22. cJSON *cJSONUtils_GenerateMergePatch(cJSON *from,cJSON *to); /* generates a patch to move from -> to */
  23. char *cJSONUtils_FindPointerFromObjectTo(cJSON *object,cJSON *target); /* Given a root object and a target object, construct a pointer from one to the other. */
  24. void cJSONUtils_SortObject(cJSON *object); /* Sorts the members of the object into alphabetical order. */