mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
reformatting: test.c
This commit is contained in:
parent
1822521a14
commit
fcbeb1c36b
194
test.c
194
test.c
@ -27,10 +27,14 @@
|
|||||||
/* Parse text to JSON, then render back to text, and print! */
|
/* Parse text to JSON, then render back to text, and print! */
|
||||||
void doit(char *text)
|
void doit(char *text)
|
||||||
{
|
{
|
||||||
char *out;cJSON *json;
|
char *out;
|
||||||
|
cJSON *json;
|
||||||
|
|
||||||
json = cJSON_Parse(text);
|
json = cJSON_Parse(text);
|
||||||
if (!json) {printf("Error before: [%s]\n",cJSON_GetErrorPtr());}
|
if (!json)
|
||||||
|
{
|
||||||
|
printf("Error before: [%s]\n", cJSON_GetErrorPtr());
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
out = cJSON_Print(json);
|
out = cJSON_Print(json);
|
||||||
@ -43,31 +47,96 @@ void doit(char *text)
|
|||||||
/* Read a file, parse, render back, etc. */
|
/* Read a file, parse, render back, etc. */
|
||||||
void dofile(char *filename)
|
void dofile(char *filename)
|
||||||
{
|
{
|
||||||
FILE *f;long len;char *data;
|
FILE *f;
|
||||||
|
long len;
|
||||||
|
char *data;
|
||||||
|
|
||||||
|
/* open in read binary mode */
|
||||||
|
f = fopen(filename,"rb");
|
||||||
|
/* get the length */
|
||||||
|
fseek(f, 0, SEEK_END);
|
||||||
|
len = ftell(f);
|
||||||
|
fseek(f, 0, SEEK_SET);
|
||||||
|
|
||||||
|
data = (char*)malloc(len + 1);
|
||||||
|
|
||||||
|
fread(data, 1, len, f);
|
||||||
|
data[len] = '\0';
|
||||||
|
fclose(f);
|
||||||
|
|
||||||
f=fopen(filename,"rb");fseek(f,0,SEEK_END);len=ftell(f);fseek(f,0,SEEK_SET);
|
|
||||||
data=(char*)malloc(len+1);fread(data,1,len,f);data[len]='\0';fclose(f);
|
|
||||||
doit(data);
|
doit(data);
|
||||||
free(data);
|
free(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Used by some code below as an example datatype. */
|
/* Used by some code below as an example datatype. */
|
||||||
struct record {const char *precision;double lat,lon;const char *address,*city,*state,*zip,*country; };
|
struct record
|
||||||
|
{
|
||||||
|
const char *precision;
|
||||||
|
double lat;
|
||||||
|
double lon;
|
||||||
|
const char *address;
|
||||||
|
const char *city;
|
||||||
|
const char *state;
|
||||||
|
const char *zip;
|
||||||
|
const char *country;
|
||||||
|
};
|
||||||
|
|
||||||
/* Create a bunch of objects as demonstration. */
|
/* Create a bunch of objects as demonstration. */
|
||||||
void create_objects()
|
void create_objects()
|
||||||
{
|
{
|
||||||
cJSON *root,*fmt,*img,*thm,*fld;char *out;int i; /* declare a few. */
|
/* declare a few. */
|
||||||
|
cJSON *root;
|
||||||
|
cJSON *fmt;
|
||||||
|
cJSON *img;
|
||||||
|
cJSON *thm;
|
||||||
|
cJSON *fld;
|
||||||
|
char *out;
|
||||||
|
int i;
|
||||||
|
|
||||||
/* Our "days of the week" array: */
|
/* Our "days of the week" array: */
|
||||||
const char *strings[7]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
|
const char *strings[7] =
|
||||||
|
{
|
||||||
|
"Sunday",
|
||||||
|
"Monday",
|
||||||
|
"Tuesday",
|
||||||
|
"Wednesday",
|
||||||
|
"Thursday",
|
||||||
|
"Friday",
|
||||||
|
"Saturday"
|
||||||
|
};
|
||||||
/* Our matrix: */
|
/* Our matrix: */
|
||||||
int numbers[3][3]={{0,-1,0},{1,0,0},{0,0,1}};
|
int numbers[3][3] =
|
||||||
|
{
|
||||||
|
{0, -1, 0},
|
||||||
|
{1, 0, 0},
|
||||||
|
{0 ,0, 1}
|
||||||
|
};
|
||||||
/* Our "gallery" item: */
|
/* Our "gallery" item: */
|
||||||
int ids[4] = { 116, 943, 234, 38793 };
|
int ids[4] = { 116, 943, 234, 38793 };
|
||||||
/* Our array of "records": */
|
/* Our array of "records": */
|
||||||
struct record fields[2]={
|
struct record fields[2] =
|
||||||
{"zip",37.7668,-1.223959e+2,"","SAN FRANCISCO","CA","94107","US"},
|
{
|
||||||
{"zip",37.371991,-1.22026e+2,"","SUNNYVALE","CA","94085","US"}};
|
{
|
||||||
|
"zip",
|
||||||
|
37.7668,
|
||||||
|
-1.223959e+2,
|
||||||
|
"",
|
||||||
|
"SAN FRANCISCO",
|
||||||
|
"CA",
|
||||||
|
"94107",
|
||||||
|
"US"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"zip",
|
||||||
|
37.371991,
|
||||||
|
-1.22026e+2,
|
||||||
|
"",
|
||||||
|
"SUNNYVALE",
|
||||||
|
"CA",
|
||||||
|
"94085",
|
||||||
|
"US"
|
||||||
|
}
|
||||||
|
};
|
||||||
volatile double zero = 0.0;
|
volatile double zero = 0.0;
|
||||||
|
|
||||||
/* Here we construct some JSON standards, from the JSON site. */
|
/* Here we construct some JSON standards, from the JSON site. */
|
||||||
@ -82,20 +151,36 @@ void create_objects()
|
|||||||
cJSON_AddFalseToObject (fmt, "interlace");
|
cJSON_AddFalseToObject (fmt, "interlace");
|
||||||
cJSON_AddNumberToObject(fmt, "frame rate", 24);
|
cJSON_AddNumberToObject(fmt, "frame rate", 24);
|
||||||
|
|
||||||
out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out); /* Print to text, Delete the cJSON, print it, release the string. */
|
/* Print to text */
|
||||||
|
out = cJSON_Print(root);
|
||||||
|
/* Delete the cJSON */
|
||||||
|
cJSON_Delete(root);
|
||||||
|
/* print it */
|
||||||
|
printf("%s\n",out);
|
||||||
|
/* release the string */
|
||||||
|
free(out);
|
||||||
|
|
||||||
/* Our "days of the week" array: */
|
/* Our "days of the week" array: */
|
||||||
root = cJSON_CreateStringArray(strings, 7);
|
root = cJSON_CreateStringArray(strings, 7);
|
||||||
|
|
||||||
out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
|
out = cJSON_Print(root);
|
||||||
|
cJSON_Delete(root);
|
||||||
|
printf("%s\n", out);
|
||||||
|
free(out);
|
||||||
|
|
||||||
/* Our matrix: */
|
/* Our matrix: */
|
||||||
root = cJSON_CreateArray();
|
root = cJSON_CreateArray();
|
||||||
for (i=0;i<3;i++) cJSON_AddItemToArray(root,cJSON_CreateIntArray(numbers[i],3));
|
for (i = 0; i < 3; i++)
|
||||||
|
{
|
||||||
|
cJSON_AddItemToArray(root, cJSON_CreateIntArray(numbers[i], 3));
|
||||||
|
}
|
||||||
|
|
||||||
/* cJSON_ReplaceItemInArray(root, 1, cJSON_CreateString("Replacement")); */
|
/* cJSON_ReplaceItemInArray(root, 1, cJSON_CreateString("Replacement")); */
|
||||||
|
|
||||||
out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
|
out = cJSON_Print(root);
|
||||||
|
cJSON_Delete(root);
|
||||||
|
printf("%s\n", out);
|
||||||
|
free(out);
|
||||||
|
|
||||||
|
|
||||||
/* Our "gallery" item: */
|
/* Our "gallery" item: */
|
||||||
@ -110,7 +195,10 @@ void create_objects()
|
|||||||
cJSON_AddStringToObject(thm, "Width", "100");
|
cJSON_AddStringToObject(thm, "Width", "100");
|
||||||
cJSON_AddItemToObject(img, "IDs", cJSON_CreateIntArray(ids, 4));
|
cJSON_AddItemToObject(img, "IDs", cJSON_CreateIntArray(ids, 4));
|
||||||
|
|
||||||
out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
|
out = cJSON_Print(root);
|
||||||
|
cJSON_Delete(root);
|
||||||
|
printf("%s\n", out);
|
||||||
|
free(out);
|
||||||
|
|
||||||
/* Our array of "records": */
|
/* Our array of "records": */
|
||||||
|
|
||||||
@ -130,22 +218,78 @@ void create_objects()
|
|||||||
|
|
||||||
/* cJSON_ReplaceItemInObject(cJSON_GetArrayItem(root, 1), "City", cJSON_CreateIntArray(ids, 4)); */
|
/* cJSON_ReplaceItemInObject(cJSON_GetArrayItem(root, 1), "City", cJSON_CreateIntArray(ids, 4)); */
|
||||||
|
|
||||||
out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
|
out = cJSON_Print(root);
|
||||||
|
cJSON_Delete(root);
|
||||||
|
printf("%s\n", out);
|
||||||
|
free(out);
|
||||||
|
|
||||||
root = cJSON_CreateObject();
|
root = cJSON_CreateObject();
|
||||||
cJSON_AddNumberToObject(root, "number", 1.0 / zero);
|
cJSON_AddNumberToObject(root, "number", 1.0 / zero);
|
||||||
out=cJSON_Print(root); cJSON_Delete(root); printf("%s\n",out); free(out);
|
out = cJSON_Print(root);
|
||||||
|
cJSON_Delete(root);
|
||||||
|
printf("%s\n", out);
|
||||||
|
free(out);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main (int argc, const char * argv[]) {
|
int main (int argc, const char *argv[])
|
||||||
|
{
|
||||||
/* a bunch of json: */
|
/* a bunch of json: */
|
||||||
char text1[]="{\n\"name\": \"Jack (\\\"Bee\\\") Nimble\", \n\"format\": {\"type\": \"rect\", \n\"width\": 1920, \n\"height\": 1080, \n\"interlace\": false,\"frame rate\": 24\n}\n}";
|
char text1[] =
|
||||||
|
"{\n"
|
||||||
|
"\"name\": \"Jack (\\\"Bee\\\") Nimble\", \n"
|
||||||
|
"\"format\": {\"type\": \"rect\", \n"
|
||||||
|
"\"width\": 1920, \n"
|
||||||
|
"\"height\": 1080, \n"
|
||||||
|
"\"interlace\": false,\"frame rate\": 24\n"
|
||||||
|
"}\n"
|
||||||
|
"}";
|
||||||
char text2[] = "[\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]";
|
char text2[] = "[\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]";
|
||||||
char text3[]="[\n [0, -1, 0],\n [1, 0, 0],\n [0, 0, 1]\n ]\n";
|
char text3[] =
|
||||||
char text4[]="{\n \"Image\": {\n \"Width\": 800,\n \"Height\": 600,\n \"Title\": \"View from 15th Floor\",\n \"Thumbnail\": {\n \"Url\": \"http:/*www.example.com/image/481989943\",\n \"Height\": 125,\n \"Width\": \"100\"\n },\n \"IDs\": [116, 943, 234, 38793]\n }\n }";
|
"[\n"
|
||||||
char text5[]="[\n {\n \"precision\": \"zip\",\n \"Latitude\": 37.7668,\n \"Longitude\": -122.3959,\n \"Address\": \"\",\n \"City\": \"SAN FRANCISCO\",\n \"State\": \"CA\",\n \"Zip\": \"94107\",\n \"Country\": \"US\"\n },\n {\n \"precision\": \"zip\",\n \"Latitude\": 37.371991,\n \"Longitude\": -122.026020,\n \"Address\": \"\",\n \"City\": \"SUNNYVALE\",\n \"State\": \"CA\",\n \"Zip\": \"94085\",\n \"Country\": \"US\"\n }\n ]";
|
" [0, -1, 0],\n"
|
||||||
|
" [1, 0, 0],\n"
|
||||||
|
" [0, 0, 1]\n"
|
||||||
|
"\t]\n";
|
||||||
|
char text4[] =
|
||||||
|
"{\n"
|
||||||
|
"\t\t\"Image\": {\n"
|
||||||
|
"\t\t\t\"Width\": 800,\n"
|
||||||
|
"\t\t\t\"Height\": 600,\n"
|
||||||
|
"\t\t\t\"Title\": \"View from 15th Floor\",\n"
|
||||||
|
"\t\t\t\"Thumbnail\": {\n"
|
||||||
|
"\t\t\t\t\"Url\": \"http:/*www.example.com/image/481989943\",\n"
|
||||||
|
"\t\t\t\t\"Height\": 125,\n"
|
||||||
|
"\t\t\t\t\"Width\": \"100\"\n"
|
||||||
|
"\t\t\t},\n"
|
||||||
|
"\t\t\t\"IDs\": [116, 943, 234, 38793]\n"
|
||||||
|
"\t\t}\n"
|
||||||
|
"\t}";
|
||||||
|
char text5[] =
|
||||||
|
"[\n"
|
||||||
|
"\t {\n"
|
||||||
|
"\t \"precision\": \"zip\",\n"
|
||||||
|
"\t \"Latitude\": 37.7668,\n"
|
||||||
|
"\t \"Longitude\": -122.3959,\n"
|
||||||
|
"\t \"Address\": \"\",\n"
|
||||||
|
"\t \"City\": \"SAN FRANCISCO\",\n"
|
||||||
|
"\t \"State\": \"CA\",\n"
|
||||||
|
"\t \"Zip\": \"94107\",\n"
|
||||||
|
"\t \"Country\": \"US\"\n"
|
||||||
|
"\t },\n"
|
||||||
|
"\t {\n"
|
||||||
|
"\t \"precision\": \"zip\",\n"
|
||||||
|
"\t \"Latitude\": 37.371991,\n"
|
||||||
|
"\t \"Longitude\": -122.026020,\n"
|
||||||
|
"\t \"Address\": \"\",\n"
|
||||||
|
"\t \"City\": \"SUNNYVALE\",\n"
|
||||||
|
"\t \"State\": \"CA\",\n"
|
||||||
|
"\t \"Zip\": \"94085\",\n"
|
||||||
|
"\t \"Country\": \"US\"\n"
|
||||||
|
"\t }\n"
|
||||||
|
"\t ]";
|
||||||
|
|
||||||
char text6[] = "<!DOCTYPE html>"
|
char text6[] =
|
||||||
|
"<!DOCTYPE html>"
|
||||||
"<html>\n"
|
"<html>\n"
|
||||||
"<head>\n"
|
"<head>\n"
|
||||||
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n"
|
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user