test.c 7.4 KB
Newer Older
D
Dave Gamble 已提交
1 2
/*
  Copyright (c) 2009 Dave Gamble
3

D
Dave Gamble 已提交
4 5 6 7 8 9
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
10

D
Dave Gamble 已提交
11 12
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
13

D
Dave Gamble 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
*/

#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"

27
/* Parse text to JSON, then render back to text, and print! */
D
Dave Gamble 已提交
28 29 30
void doit(char *text)
{
	char *out;cJSON *json;
31

D
Dave Gamble 已提交
32
	json=cJSON_Parse(text);
33 34 35 36 37 38 39 40
	if (!json) {printf("Error before: [%s]\n",cJSON_GetErrorPtr());}
	else
	{
		out=cJSON_Print(json);
		cJSON_Delete(json);
		printf("%s\n",out);
		free(out);
	}
D
Dave Gamble 已提交
41 42
}

43
/* Read a file, parse, render back, etc. */
D
Dave Gamble 已提交
44 45
void dofile(char *filename)
{
46
	FILE *f;long len;char *data;
47

48
	f=fopen(filename,"rb");fseek(f,0,SEEK_END);len=ftell(f);fseek(f,0,SEEK_SET);
49
	data=(char*)malloc(len+1);fread(data,1,len,f);data[len]='\0';fclose(f);
D
Dave Gamble 已提交
50 51 52 53
	doit(data);
	free(data);
}

54
/* Used by some code below as an example datatype. */
D
Dave Gamble 已提交
55 56
struct record {const char *precision;double lat,lon;const char *address,*city,*state,*zip,*country; };

57
/* Create a bunch of objects as demonstration. */
D
Dave Gamble 已提交
58 59
void create_objects()
{
60
	cJSON *root,*fmt,*img,*thm,*fld;char *out;int i;	/* declare a few. */
61 62 63 64 65 66 67 68 69 70
	/* Our "days of the week" array: */
	const char *strings[7]={"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
	/* Our matrix: */
	int numbers[3][3]={{0,-1,0},{1,0,0},{0,0,1}};
	/* Our "gallery" item: */
	int ids[4]={116,943,234,38793};
	/* Our array of "records": */
	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"}};
71
	volatile double zero = 0.0;
D
Dave Gamble 已提交
72

73
	/* Here we construct some JSON standards, from the JSON site. */
74

75
	/* Our "Video" datatype: */
76
	root=cJSON_CreateObject();
D
Dave Gamble 已提交
77 78
	cJSON_AddItemToObject(root, "name", cJSON_CreateString("Jack (\"Bee\") Nimble"));
	cJSON_AddItemToObject(root, "format", fmt=cJSON_CreateObject());
D
Dave Gamble 已提交
79 80 81 82 83
	cJSON_AddStringToObject(fmt,"type",		"rect");
	cJSON_AddNumberToObject(fmt,"width",		1920);
	cJSON_AddNumberToObject(fmt,"height",		1080);
	cJSON_AddFalseToObject (fmt,"interlace");
	cJSON_AddNumberToObject(fmt,"frame rate",	24);
84

D
Dave Gamble 已提交
85
	out=cJSON_Print(root);	cJSON_Delete(root);	printf("%s\n",out);	free(out);	/* Print to text, Delete the cJSON, print it, release the string. */
D
Dave Gamble 已提交
86

87
	/* Our "days of the week" array: */
D
Dave Gamble 已提交
88 89 90 91
	root=cJSON_CreateStringArray(strings,7);

	out=cJSON_Print(root);	cJSON_Delete(root);	printf("%s\n",out);	free(out);

92
	/* Our matrix: */
D
Dave Gamble 已提交
93 94 95
	root=cJSON_CreateArray();
	for (i=0;i<3;i++) cJSON_AddItemToArray(root,cJSON_CreateIntArray(numbers[i],3));

96
/*	cJSON_ReplaceItemInArray(root,1,cJSON_CreateString("Replacement")); */
97

D
Dave Gamble 已提交
98 99 100
	out=cJSON_Print(root);	cJSON_Delete(root);	printf("%s\n",out);	free(out);


101
	/* Our "gallery" item: */
D
Dave Gamble 已提交
102 103
	root=cJSON_CreateObject();
	cJSON_AddItemToObject(root, "Image", img=cJSON_CreateObject());
D
Dave Gamble 已提交
104 105 106
	cJSON_AddNumberToObject(img,"Width",800);
	cJSON_AddNumberToObject(img,"Height",600);
	cJSON_AddStringToObject(img,"Title","View from 15th Floor");
D
Dave Gamble 已提交
107
	cJSON_AddItemToObject(img, "Thumbnail", thm=cJSON_CreateObject());
108
	cJSON_AddStringToObject(thm, "Url", "http:/*www.example.com/image/481989943");
D
Dave Gamble 已提交
109 110
	cJSON_AddNumberToObject(thm,"Height",125);
	cJSON_AddStringToObject(thm,"Width","100");
D
Dave Gamble 已提交
111 112 113 114
	cJSON_AddItemToObject(img,"IDs", cJSON_CreateIntArray(ids,4));

	out=cJSON_Print(root);	cJSON_Delete(root);	printf("%s\n",out);	free(out);

115
	/* Our array of "records": */
D
Dave Gamble 已提交
116 117

	root=cJSON_CreateArray();
118
	for (i=0;i<2;i++)
D
Dave Gamble 已提交
119 120
	{
		cJSON_AddItemToArray(root,fld=cJSON_CreateObject());
D
Dave Gamble 已提交
121 122 123 124 125 126 127 128
		cJSON_AddStringToObject(fld, "precision", fields[i].precision);
		cJSON_AddNumberToObject(fld, "Latitude", fields[i].lat);
		cJSON_AddNumberToObject(fld, "Longitude", fields[i].lon);
		cJSON_AddStringToObject(fld, "Address", fields[i].address);
		cJSON_AddStringToObject(fld, "City", fields[i].city);
		cJSON_AddStringToObject(fld, "State", fields[i].state);
		cJSON_AddStringToObject(fld, "Zip", fields[i].zip);
		cJSON_AddStringToObject(fld, "Country", fields[i].country);
D
Dave Gamble 已提交
129
	}
130

131
/*	cJSON_ReplaceItemInObject(cJSON_GetArrayItem(root,1),"City",cJSON_CreateIntArray(ids,4)); */
132

D
Dave Gamble 已提交
133 134
	out=cJSON_Print(root);	cJSON_Delete(root);	printf("%s\n",out);	free(out);

L
Linus Wallgren 已提交
135
	root=cJSON_CreateObject();
136
	cJSON_AddNumberToObject(root,"number", 1.0/zero);
L
Linus Wallgren 已提交
137
	out=cJSON_Print(root);	cJSON_Delete(root);	printf("%s\n",out);	free(out);
D
Dave Gamble 已提交
138 139 140
}

int main (int argc, const char * argv[]) {
141
	/* a bunch of json: */
142
	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}";
D
Dave Gamble 已提交
143 144
	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";
145
	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	}";
D
Dave Gamble 已提交
146 147
	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	 ]";

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
    char text6[] = "<!DOCTYPE html>"
        "<html>\n"
        "<head>\n"
        "  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n"
        "  <style type=\"text/css\">\n"
        "    html, body, iframe { margin: 0; padding: 0; height: 100%; }\n"
        "    iframe { display: block; width: 100%; border: none; }\n"
        "  </style>\n"
        "<title>Application Error</title>\n"
        "</head>\n"
        "<body>\n"
        "  <iframe src="//s3.amazonaws.com/heroku_pages/error.html">\n"
        "    <p>Application Error</p>\n"
        "  </iframe>\n"
        "</body>\n"
        "</html>\n";

165
	/* Process each json textblock by parsing, then rebuilding: */
D
Dave Gamble 已提交
166
	doit(text1);
167
	doit(text2);
D
Dave Gamble 已提交
168 169 170
	doit(text3);
	doit(text4);
	doit(text5);
171
    doit(text6);
D
Dave Gamble 已提交
172

D
Dave Gamble 已提交
173
	/* Parse standard testfiles: */
174 175 176 177 178
/*	dofile("../../tests/test1"); */
/*	dofile("../../tests/test2"); */
/*	dofile("../../tests/test3"); */
/*	dofile("../../tests/test4"); */
/*	dofile("../../tests/test5"); */
179
/*	dofile("../../tests/test6"); */
D
Dave Gamble 已提交
180

181
	/* Now some samplecode for building objects concisely: */
D
Dave Gamble 已提交
182
	create_objects();
183

D
Dave Gamble 已提交
184 185
	return 0;
}