pikapython/package/pika_cjson/pika_cjson_cJSON.c

230 lines
6.2 KiB
C
Raw Normal View History

2022-06-06 09:13:27 +08:00
#include "pika_cjson_cJSON.h"
2022-06-06 10:25:57 +08:00
#include "cJSON.h"
2022-06-02 12:07:24 +08:00
2022-06-02 17:47:53 +08:00
void pika_cjson_cJSON_parse(PikaObj* self, char* value) {
2022-06-02 16:50:31 +08:00
cJSON* item = cJSON_Parse(value);
2022-06-06 11:17:57 +08:00
if (NULL == item) {
obj_setErrorCode(self, 3);
__platform_printf("Error: cJSON parse faild.\r\n");
return;
}
2022-06-02 16:50:31 +08:00
obj_setPtr(self, "item", item);
2022-06-02 17:22:14 +08:00
obj_setInt(self, "needfree", 1);
2022-06-02 14:26:57 +08:00
}
2022-06-02 16:50:31 +08:00
2022-06-02 17:47:53 +08:00
char* pika_cjson_cJSON_print(PikaObj* self) {
2022-06-02 16:50:31 +08:00
cJSON* item = obj_getPtr(self, "item");
char* res = cJSON_Print(item);
obj_setStr(self, "_buf", res);
cJSON_free(res);
return obj_getStr(self, "_buf");
}
2022-06-02 17:47:53 +08:00
void pika_cjson_cJSON___del__(PikaObj* self) {
2022-06-02 16:50:31 +08:00
cJSON* item = obj_getPtr(self, "item");
2022-06-02 17:22:14 +08:00
if (obj_getInt(self, "needfree") == 1) {
2022-06-02 16:50:31 +08:00
cJSON_Delete(item);
}
2022-06-02 17:22:14 +08:00
}
2022-06-06 09:13:27 +08:00
PikaObj* pika_cjson_cJSON_getObjectItem(PikaObj* self, char* string) {
2022-06-02 17:22:14 +08:00
cJSON* item = obj_getPtr(self, "item");
cJSON* subItem = cJSON_GetObjectItem(item, string);
2022-06-02 17:24:11 +08:00
/* create subCJSON */
2022-06-06 09:13:27 +08:00
PikaObj* subCJSON = newNormalObj(New_pika_cjson_cJSON);
2022-06-02 17:24:11 +08:00
/* init the subCJSON */
2022-06-02 17:22:14 +08:00
obj_setPtr(subCJSON, "item", subItem);
obj_setInt(subCJSON, "needfree", 0);
2022-06-02 17:24:11 +08:00
2022-06-06 09:13:27 +08:00
return subCJSON;
2022-06-02 17:22:14 +08:00
}
2022-06-06 10:25:57 +08:00
void pika_cjson_cJSON___init__(PikaObj* self) {
2022-06-06 11:56:29 +08:00
/* const value */
obj_setInt(self, "cJSON_Invalid", cJSON_Invalid);
obj_setInt(self, "cJSON_False", cJSON_False);
obj_setInt(self, "cJSON_True", cJSON_True);
obj_setInt(self, "cJSON_NULL", cJSON_NULL);
obj_setInt(self, "cJSON_Number", cJSON_Number);
obj_setInt(self, "cJSON_String", cJSON_String);
obj_setInt(self, "cJSON_Array", cJSON_Array);
obj_setInt(self, "cJSON_Object", cJSON_Object);
obj_setInt(self, "cJSON_Raw", cJSON_Raw);
2022-06-06 10:25:57 +08:00
}
PikaObj* pika_cjson_cJSON_getChild(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
cJSON* resItem = item->child;
/* create subCJSON */
PikaObj* resCJSON = newNormalObj(New_pika_cjson_cJSON);
/* init the subCJSON */
obj_setPtr(resCJSON, "item", resItem);
obj_setInt(resCJSON, "needfree", 0);
return resCJSON;
}
PikaObj* pika_cjson_cJSON_getNext(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
cJSON* resItem = item->next;
/* create subCJSON */
PikaObj* resCJSON = newNormalObj(New_pika_cjson_cJSON);
/* init the subCJSON */
obj_setPtr(resCJSON, "item", resItem);
obj_setInt(resCJSON, "needfree", 0);
return resCJSON;
}
PikaObj* pika_cjson_cJSON_getPrev(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
cJSON* resItem = item->prev;
/* create subCJSON */
PikaObj* resCJSON = newNormalObj(New_pika_cjson_cJSON);
/* init the subCJSON */
obj_setPtr(resCJSON, "item", resItem);
obj_setInt(resCJSON, "needfree", 0);
return resCJSON;
}
char* pika_cjson_cJSON_getString(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return item->string;
}
int pika_cjson_cJSON_getType(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return item->type;
}
float pika_cjson_cJSON_getValueDouble(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return item->valuedouble;
}
int pika_cjson_cJSON_getValueInt(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return item->valueint;
}
char* pika_cjson_cJSON_getValueString(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return item->valuestring;
}
2022-06-06 10:34:49 +08:00
Arg* pika_cjson_cJSON_getValue(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
int type = item->type;
if (type == cJSON_Invalid) {
return arg_setNull(NULL);
}
if (type == cJSON_False) {
return arg_setInt(NULL, "", 0);
}
if (type == cJSON_True) {
return arg_setInt(NULL, "", 1);
}
if (type == cJSON_NULL) {
return arg_setNull(NULL);
}
if (type == cJSON_Number) {
return arg_setFloat(NULL, "", item->valuedouble);
}
if (type == cJSON_String) {
return arg_setStr(NULL, "", item->valuestring);
}
return arg_setNull(NULL);
}
2022-06-06 11:53:09 +08:00
PikaObj* pika_cjson_cJSON_getArrayItem(PikaObj* self, int index) {
cJSON* item = obj_getPtr(self, "item");
cJSON* subItem = cJSON_GetArrayItem(item, index);
/* create subCJSON */
PikaObj* subCJSON = newNormalObj(New_pika_cjson_cJSON);
/* init the subCJSON */
obj_setPtr(subCJSON, "item", subItem);
obj_setInt(subCJSON, "needfree", 0);
return subCJSON;
}
int pika_cjson_cJSON_getArraySize(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_GetArraySize(item);
}
int pika_cjson_cJSON_isArray(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsArray(item);
}
int pika_cjson_cJSON_isBool(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsBool(item);
}
int pika_cjson_cJSON_isFalse(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsFalse(item);
}
int pika_cjson_cJSON_isInvalid(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsInvalid(item);
}
int pika_cjson_cJSON_isNull(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsNull(item);
}
int pika_cjson_cJSON_isNumber(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsNumber(item);
}
int pika_cjson_cJSON_isObject(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsObject(item);
}
int pika_cjson_cJSON_isRaw(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsRaw(item);
}
int pika_cjson_cJSON_isString(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsString(item);
}
int pika_cjson_cJSON_isTrue(PikaObj* self) {
cJSON* item = obj_getPtr(self, "item");
return cJSON_IsTrue(item);
}
2022-06-06 13:46:25 +08:00
void pika_cjson_cJSON_addItemToArray(PikaObj* self, PikaObj* item) {
cJSON* self_item = obj_getPtr(self, "item");
cJSON* item_item = obj_getPtr(item, "item");
cJSON_AddItemToArray(self_item, item_item);
}
void pika_cjson_cJSON_addItemToObject(PikaObj* self,
PikaObj* item,
char* string) {
cJSON* self_item = obj_getPtr(self, "item");
cJSON* item_item = obj_getPtr(item, "item");
cJSON_AddItemToObject(self_item, string, item_item);
}