cJSON_Utils.h 1.8 KB

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