C语言的JSON解析库:cJSON 1.7.15函数说明
cJSON
Ultralightweight JSON parser in ANSI C
项目地址:https://gitcode.com/gh_mirrors/cj/cJSON
免费下载资源
·
提示:以下提供的源码函数说明是基于 cJSON 1.7.15 版本的
C语言的JSON解析库:cJSON 1.7.15函数说明
前言
提示:这里可以添加本文要记录的大概内容:
最近在搞JSON数据的解析和封装,特地到找了一下开源的 json 库,在 json官网 提供了不同编程语言的JSON解析和封装方法。如下图所示:
为了可以后期移植到MCU当中,这里我选择了C语言的JSON解析和封装方法,比较出名的是cJSON,用的人也多,这里我采用的就是cJSON,这里我也了解了一下jsmn,主要是看到介绍说它占用资源少,不像cJSON一样需要比较大的RAM,但是我看了源码才发现,封装的函数接口太少,功能并不全面,如果不是应用在通用的JSON解析和封装环境下,可以使用这个函数库。
提示:下面函数接口为cJSON 1.7.15 版本下的头文件
话不多说,直接上函数说明!!!
/*
版权所有 (c) 2009-2017 Dave Gamble 和 cJSON 贡献者
特此免费授予任何人获得本软件和相关文档文件(以下简称“软件”)的副本,以不受限制地处理本软件,
包括但不限于使用、复制、修改、合并的权利、发布、分发、再许可和/或出售本软件的副本,
并允许向其提供本软件的人这样做,但须符合以下条件:
上述版权声明和本许可声明应包含在本软件的所有副本或大部分内容中。
本软件按“原样”提供,不提供任何形式的明示或默示保证,包括但不限于适销性、特定用途适用性和不侵权的保证。
在任何情况下,作者或版权持有人均不对任何索赔、损害或其他责任承担任何责任,
无论是在合同、侵权或其他方面,由本软件或本软件的使用或其他交易引起或与之相关的软件。
*/
#ifndef cJSON__h
#define cJSON__h
#ifdef __cplusplus
extern "C"
{
#endif
#if !defined(__WINDOWS__) && (defined(WIN32) || defined(WIN64) || defined(_MSC_VER) || defined(_WIN32))
#define __WINDOWS__
#endif
#ifdef __WINDOWS__
/* 在为 windows 编译时,我们指定了一个特定的调用约定,以避免从具有不同默认调用约定的项目中调用我们的问题。对于 Windows,您有 3 个定义选项:
CJSON_HIDE_SYMBOLS - 在您不想 dllexport 符号的情况下定义它
CJSON_EXPORT_SYMBOLS - 当您想要 dllexport 符号时在库构建中定义它(默认)
CJSON_IMPORT_SYMBOLS - 如果你想 dllimport 符号定义这个
对于支持可见性属性的 *nix 构建,您可以通过以下方式定义类似的行为对于支持可见性属性的 *nix 构建,您可以通过以下方式定义类似的行为
通过添加将默认可见性设置为隐藏
-fvisibility=hidden (对于 gcc)
或者
-xldscope=hidden(对于 sun cc)
到 CFLAGS
then using the CJSON_API_VISIBILITY flag to "export" the same symbols the way CJSON_EXPORT_SYMBOLS does
*/
#define CJSON_CDECL __cdecl
#define CJSON_STDCALL __stdcall
/* 默认导出符号,这是复制粘贴 C 和头文件所必需的 */
#if !defined(CJSON_HIDE_SYMBOLS) && !defined(CJSON_IMPORT_SYMBOLS) && !defined(CJSON_EXPORT_SYMBOLS)
#define CJSON_EXPORT_SYMBOLS
#endif
#if defined(CJSON_HIDE_SYMBOLS)
#define CJSON_PUBLIC(type) type CJSON_STDCALL
#elif defined(CJSON_EXPORT_SYMBOLS)
#define CJSON_PUBLIC(type) __declspec(dllexport) type CJSON_STDCALL
#elif defined(CJSON_IMPORT_SYMBOLS)
#define CJSON_PUBLIC(type) __declspec(dllimport) type CJSON_STDCALL
#endif
#else /* !__WINDOWS__ */
#define CJSON_CDECL
#define CJSON_STDCALL
#if (defined(__GNUC__) || defined(__SUNPRO_CC) || defined (__SUNPRO_C)) && defined(CJSON_API_VISIBILITY)
#define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type
#else
#define CJSON_PUBLIC(type) type
#endif
#endif
/* 项目版本 */
#define CJSON_VERSION_MAJOR 1
#define CJSON_VERSION_MINOR 7
#define CJSON_VERSION_PATCH 15
#include <stddef.h>
/* cJSON 类型: */
#define cJSON_Invalid (0)
#define cJSON_False (1 << 0)
#define cJSON_True (1 << 1)
#define cJSON_NULL (1 << 2)
#define cJSON_Number (1 << 3)
#define cJSON_String (1 << 4)
#define cJSON_Array (1 << 5)
#define cJSON_Object (1 << 6)
#define cJSON_Raw (1 << 7) /* 原始json */
#define cJSON_IsReference 256
#define cJSON_StringIsConst 512
/* cJSON 结构: */
typedef struct cJSON
{
/* next/prev 允许您遍历数组/对象链。或者,使用 GetArraySize/GetArrayItem/GetObjectItem */
struct cJSON *next;
struct cJSON *prev;
/* 数组或对象项将有一个子指针指向数组/对象中的项链。 */
struct cJSON *child;
/* 项目的类型,如上。 */
int type;
/* 项目的字符串,如果 type==cJSON_String 和 type == cJSON_Raw */
char *valuestring;
/* 写入 valueint 已弃用,请改用 cJSON_SetNumberValue */
int valueint;
/* 项目的number,如果 type==cJSON_Number */
double valuedouble;
/* 项的名称字符串,如果该项是对象的子项,或者在对象的子项列表中。 */
char *string;
} cJSON;
typedef struct cJSON_Hooks
{
/* malloc/free 在 Windows 上是 CDECL,无论编译器的默认调用约定如何,因此请确保挂钩允许直接传递这些函数。 */
void *(CJSON_CDECL *malloc_fn)(size_t sz);
void (CJSON_CDECL *free_fn)(void *ptr);
} cJSON_Hooks;
typedef int cJSON_bool;
/* 在 cJSON 拒绝解析它们之前限制嵌套数组/对象的深度。
* 这是为了防止堆栈溢出。 */
#ifndef CJSON_NESTING_LIMIT
#define CJSON_NESTING_LIMIT 1000
#endif
/* 以字符串形式返回 cJSON 的版本 */
CJSON_PUBLIC(const char*) cJSON_Version(void);
/* 为 cJSON 提供 malloc、realloc 和 free 函数 */
CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks);
/* 内存管理:调用者始终负责从 cJSON_Parse(使用 cJSON_Delete)和 cJSON_Print(使用 stdlib free、cJSON_Hooks.free_fn 或 cJSON_free 视情况而定)的所有变体中释放结果。例外是 cJSON_PrintPreallocated,调用者对缓冲区负有全部责任。 */
/* 提供一个 JSON 块,这将返回一个您可以查询的 cJSON 对象。 */
CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
/* ParseWithOpts 允许您要求(并检查)JSON 是否为空终止,并检索指向最终解析字节的指针。 */
/* 如果你在 return_parse_end 中提供了一个 ptr 并且解析失败,那么 return_parse_end 将包含一个指向错误的指针,因此将匹配 cJSON_GetErrorPtr()。 */
CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated);
CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char **return_parse_end, cJSON_bool require_null_terminated);
/* 将 cJSON 实体渲染为文本以进行传输/存储。 */
CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);
/* 将 cJSON 实体渲染为文本以进行传输/存储,无需任何格式化。 */
CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item);
/* 使用缓冲策略将 cJSON 实体渲染为文本。 prebuffer 是对最终大小的猜测。猜测得好可以减少重新分配。 fmt=0 表示未格式化,=1 表示已格式化 */
CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt);
/* 使用已在内存中分配给定长度的缓冲区将 cJSON 实体渲染为文本。成功返回 1,失败返回 0。 */
/* 注意:cJSON 在估计它将使用多少内存时并不总是 100% 准确,因此为了安全起见,分配比实际需要多 5 个字节 */
CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const cJSON_bool format);
/* 删除一个 cJSON 实体和所有子实体。 */
CJSON_PUBLIC(void) cJSON_Delete(cJSON *item);
/* 返回数组(或对象)中的项目数。 */
CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array);
/* 从数组“array”中检索项目编号“index”。如果不成功,则返回 NULL。 */
CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index);
/* 从对象中获取项目“字符串”。不区分大小写。 */
CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string);
CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string);
CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
/* 用于分析失败的解析。这将返回指向解析错误的指针。您可能需要回头看几个字符才能理解它。当 cJSON_Parse() 返回 0 时定义。 0 当 cJSON_Parse() 成功时。 */
CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void);
/* 检查项目类型并返回其值 */
CJSON_PUBLIC(char *) cJSON_GetStringValue(const cJSON * const item);
CJSON_PUBLIC(double) cJSON_GetNumberValue(const cJSON * const item);
/* 这些函数检查项目的类型 */
CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item);
CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item);
/* 这些调用创建一个适当类型的 cJSON 项。 */
CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void);
CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void);
CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void);
CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num);
CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string);
/* 原始 json */
CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw);
CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void);
CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void);
/* 创建一个字符串,其中 valuestring 引用一个字符串
* 它不会被 cJSON_Delete 释放 */
CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string);
/* 创建一个只引用它的元素的对象/数组
* 它们不会被 cJSON_Delete 释放 */
CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child);
CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child);
/* 这些实用程序创建一个计数项目数组。
* 参数count不能大于number数组的元素个数,否则数组访问会越界*/
CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count);
CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count);
CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count);
CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char *const *strings, int count);
/* 将项目附加到指定的数组/对象。 */
CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToArray(cJSON *array, cJSON *item);
CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item);
/* 当 string 绝对是 const 时使用它(即文字,或一样好),并且肯定会在 cJSON 对象中存活。
* 警告:使用此函数时,请务必检查 (item->type & cJSON_StringIsConst) 之前是否为零
* 写入`item->string` */
CJSON_PUBLIC(cJSON_bool) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item);
/* 将对项目的引用附加到指定的数组/对象。当您想将现有的 cJSON 添加到新的 cJSON,但又不想破坏现有的 cJSON 时,请使用此选项。 */
CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item);
CJSON_PUBLIC(cJSON_bool) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item);
/* 从数组/对象中删除/分离项目。 */
CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item);
CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which);
CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which);
CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string);
CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string);
CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string);
CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string);
/* 更新数组项。 */
CJSON_PUBLIC(cJSON_bool) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shifts pre-existing items to the right. */
CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement);
CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem);
CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem);
CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object,const char *string,cJSON *newitem);
/* 复制一个 cJSON 项 */
CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse);
/* Duplicate 将在新内存中创建一个与您传递的相同的新 cJSON 项
* 需要释放。使用 recurse!=0,它将复制连接到该项目的所有子项。
* 从 Duplicate 返回时,item->next 和 ->prev 指针始终为零。 */
/* 递归比较两个 cJSON 项是否相等。如果 a 或 b 为 NULL 或无效,则它们将被视为不相等。
* case_sensitive 确定对象键是区分大小写 (1) 还是不区分大小写 (0) */
CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive);
/* 缩小一个字符串,从字符串中删除空白字符(例如' '、'\t'、'\r'、'\n')。
* 输入指针json不能指向只读地址区,比如字符串常量,
* 但应该指向一个可读写的地址区域。 */
CJSON_PUBLIC(void) cJSON_Minify(char *json);
/* 用于同时创建和添加项目到对象的辅助函数。
* 他们返回添加的项目或失败时返回 NULL。 */
CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name);
CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name);
CJSON_PUBLIC(cJSON*) cJSON_AddFalseToObject(cJSON * const object, const char * const name);
CJSON_PUBLIC(cJSON*) cJSON_AddBoolToObject(cJSON * const object, const char * const name, const cJSON_bool boolean);
CJSON_PUBLIC(cJSON*) cJSON_AddNumberToObject(cJSON * const object, const char * const name, const double number);
CJSON_PUBLIC(cJSON*) cJSON_AddStringToObject(cJSON * const object, const char * const name, const char * const string);
CJSON_PUBLIC(cJSON*) cJSON_AddRawToObject(cJSON * const object, const char * const name, const char * const raw);
CJSON_PUBLIC(cJSON*) cJSON_AddObjectToObject(cJSON * const object, const char * const name);
CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name);
/* 当分配一个整数值时,它也需要传播到 valuedouble。 */
#define cJSON_SetIntValue(object, number) ((object) ? (object)->valueint = (object)->valuedouble = (number) : (number))
/* cJSON_SetNumberValue 宏的助手 */
CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number);
#define cJSON_SetNumberValue(object, number) ((object != NULL) ? cJSON_SetNumberHelper(object, (double)number) : (number))
/* 改变cJSON_String对象的valuestring,只在对象类型为cJSON_String时生效 */
CJSON_PUBLIC(char*) cJSON_SetValuestring(cJSON *object, const char *valuestring);
/* 如果对象不是布尔类型,则不执行任何操作并返回 cJSON_Invalid,否则返回新类型*/
#define cJSON_SetBoolValue(object, boolValue) ( \
(object != NULL && ((object)->type & (cJSON_False|cJSON_True))) ? \
(object)->type=((object)->type &(~(cJSON_False|cJSON_True)))|((boolValue)?cJSON_True:cJSON_False) : \
cJSON_Invalid\
)
/* 用于遍历数组或对象的宏 */
#define cJSON_ArrayForEach(element, array) for(element = (array != NULL) ? (array)->child : NULL; element != NULL; element = element->next)
/* 使用通过 cJSON_InitHooks 设置的 malloc/free 函数的 malloc/free 对象 */
CJSON_PUBLIC(void *) cJSON_malloc(size_t size);
CJSON_PUBLIC(void) cJSON_free(void *object);
#ifdef __cplusplus
}
#endif
#endif
GitHub 加速计划 / cj / cJSON
10.45 K
3.16 K
下载
Ultralightweight JSON parser in ANSI C
最近提交(Master分支:3 个月前 )
424ce4ce
This reverts commit 5b502cdbfb21fbe5f6cf9ffbd2b96e4281a741e6.
Related to #860
5 个月前
32497300 - 6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)