2009-08-26 03:55:20 +00:00
|
|
|
/*
|
2017-03-22 11:46:42 +00:00
|
|
|
Copyright (c) 2009-2017 Dave Gamble and cJSON contributors
|
2016-04-22 19:27:20 +00:00
|
|
|
|
2009-08-26 03:55:20 +00:00
|
|
|
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:
|
2016-04-22 19:27:20 +00:00
|
|
|
|
2009-08-26 03:55:20 +00:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2016-04-22 19:27:20 +00:00
|
|
|
|
2009-08-26 03:55:20 +00:00
|
|
|
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>
|
2016-11-25 18:33:10 +00:00
|
|
|
#include <string.h>
|
2009-08-26 03:55:20 +00:00
|
|
|
#include "cJSON.h"
|
|
|
|
|
2011-03-02 19:09:43 +00:00
|
|
|
/* Used by some code below as an example datatype. */
|
2016-10-10 17:34:19 +00:00
|
|
|
struct record
|
|
|
|
{
|
|
|
|
const char *precision;
|
|
|
|
double lat;
|
|
|
|
double lon;
|
|
|
|
const char *address;
|
|
|
|
const char *city;
|
|
|
|
const char *state;
|
|
|
|
const char *zip;
|
|
|
|
const char *country;
|
|
|
|
};
|
2009-08-26 03:55:20 +00:00
|
|
|
|
2016-11-28 08:21:15 +00:00
|
|
|
|
|
|
|
/* Create a bunch of objects as demonstration. */
|
2016-11-28 19:21:38 +00:00
|
|
|
static int print_preallocated(cJSON *root)
|
2016-11-28 08:21:15 +00:00
|
|
|
{
|
|
|
|
/* declarations */
|
|
|
|
char *out = NULL;
|
|
|
|
char *buf = NULL;
|
|
|
|
char *buf_fail = NULL;
|
2017-02-03 17:34:37 +00:00
|
|
|
size_t len = 0;
|
|
|
|
size_t len_fail = 0;
|
2016-11-28 08:21:15 +00:00
|
|
|
|
|
|
|
/* formatted print */
|
|
|
|
out = cJSON_Print(root);
|
|
|
|
|
|
|
|
/* create buffer to succeed */
|
2017-04-08 01:42:44 +00:00
|
|
|
/* the extra 5 bytes are because of inaccuracies when reserving memory */
|
|
|
|
len = strlen(out) + 5;
|
2016-12-15 18:43:32 +00:00
|
|
|
buf = (char*)malloc(len);
|
2016-12-06 01:41:51 +00:00
|
|
|
if (buf == NULL)
|
|
|
|
{
|
|
|
|
printf("Failed to allocate memory.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2016-11-28 08:21:15 +00:00
|
|
|
|
|
|
|
/* create buffer to fail */
|
2017-02-07 20:22:40 +00:00
|
|
|
len_fail = strlen(out);
|
2016-12-15 18:43:32 +00:00
|
|
|
buf_fail = (char*)malloc(len_fail);
|
2016-12-06 01:41:51 +00:00
|
|
|
if (buf_fail == NULL)
|
|
|
|
{
|
|
|
|
printf("Failed to allocate memory.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2016-11-28 08:21:15 +00:00
|
|
|
|
|
|
|
/* Print to buffer */
|
2017-02-03 17:34:37 +00:00
|
|
|
if (!cJSON_PrintPreallocated(root, buf, (int)len, 1)) {
|
2016-11-28 08:21:15 +00:00
|
|
|
printf("cJSON_PrintPreallocated failed!\n");
|
|
|
|
if (strcmp(out, buf) != 0) {
|
|
|
|
printf("cJSON_PrintPreallocated not the same as cJSON_Print!\n");
|
|
|
|
printf("cJSON_Print result:\n%s\n", out);
|
|
|
|
printf("cJSON_PrintPreallocated result:\n%s\n", buf);
|
|
|
|
}
|
|
|
|
free(out);
|
|
|
|
free(buf_fail);
|
|
|
|
free(buf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* success */
|
|
|
|
printf("%s\n", buf);
|
|
|
|
|
|
|
|
/* force it to fail */
|
2017-02-03 17:34:37 +00:00
|
|
|
if (cJSON_PrintPreallocated(root, buf_fail, (int)len_fail, 1)) {
|
2016-11-28 08:21:15 +00:00
|
|
|
printf("cJSON_PrintPreallocated failed to show error with insufficient memory!\n");
|
|
|
|
printf("cJSON_Print result:\n%s\n", out);
|
|
|
|
printf("cJSON_PrintPreallocated result:\n%s\n", buf_fail);
|
|
|
|
free(out);
|
|
|
|
free(buf_fail);
|
|
|
|
free(buf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(out);
|
|
|
|
free(buf_fail);
|
|
|
|
free(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-02 19:09:43 +00:00
|
|
|
/* Create a bunch of objects as demonstration. */
|
2016-11-26 14:18:07 +00:00
|
|
|
static void create_objects(void)
|
2009-08-26 03:55:20 +00:00
|
|
|
{
|
2016-10-10 17:34:19 +00:00
|
|
|
/* declare a few. */
|
2016-11-13 11:05:44 +00:00
|
|
|
cJSON *root = NULL;
|
|
|
|
cJSON *fmt = NULL;
|
|
|
|
cJSON *img = NULL;
|
|
|
|
cJSON *thm = NULL;
|
|
|
|
cJSON *fld = NULL;
|
|
|
|
int i = 0;
|
2016-10-10 17:34:19 +00:00
|
|
|
|
|
|
|
/* 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"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
volatile double zero = 0.0;
|
|
|
|
|
|
|
|
/* Here we construct some JSON standards, from the JSON site. */
|
|
|
|
|
|
|
|
/* Our "Video" datatype: */
|
|
|
|
root = cJSON_CreateObject();
|
|
|
|
cJSON_AddItemToObject(root, "name", cJSON_CreateString("Jack (\"Bee\") Nimble"));
|
|
|
|
cJSON_AddItemToObject(root, "format", fmt = cJSON_CreateObject());
|
|
|
|
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);
|
|
|
|
|
|
|
|
/* Print to text */
|
2016-11-28 08:24:02 +00:00
|
|
|
if (print_preallocated(root) != 0) {
|
|
|
|
cJSON_Delete(root);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2016-10-10 17:34:19 +00:00
|
|
|
cJSON_Delete(root);
|
|
|
|
|
|
|
|
/* Our "days of the week" array: */
|
|
|
|
root = cJSON_CreateStringArray(strings, 7);
|
|
|
|
|
2016-11-28 08:24:02 +00:00
|
|
|
if (print_preallocated(root) != 0) {
|
|
|
|
cJSON_Delete(root);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2016-10-10 17:34:19 +00:00
|
|
|
cJSON_Delete(root);
|
|
|
|
|
|
|
|
/* Our matrix: */
|
|
|
|
root = cJSON_CreateArray();
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
cJSON_AddItemToArray(root, cJSON_CreateIntArray(numbers[i], 3));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cJSON_ReplaceItemInArray(root, 1, cJSON_CreateString("Replacement")); */
|
|
|
|
|
2016-11-28 08:24:02 +00:00
|
|
|
if (print_preallocated(root) != 0) {
|
|
|
|
cJSON_Delete(root);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2016-10-10 17:34:19 +00:00
|
|
|
cJSON_Delete(root);
|
|
|
|
|
|
|
|
/* Our "gallery" item: */
|
|
|
|
root = cJSON_CreateObject();
|
|
|
|
cJSON_AddItemToObject(root, "Image", img = cJSON_CreateObject());
|
|
|
|
cJSON_AddNumberToObject(img, "Width", 800);
|
|
|
|
cJSON_AddNumberToObject(img, "Height", 600);
|
|
|
|
cJSON_AddStringToObject(img, "Title", "View from 15th Floor");
|
|
|
|
cJSON_AddItemToObject(img, "Thumbnail", thm = cJSON_CreateObject());
|
|
|
|
cJSON_AddStringToObject(thm, "Url", "http:/*www.example.com/image/481989943");
|
|
|
|
cJSON_AddNumberToObject(thm, "Height", 125);
|
|
|
|
cJSON_AddStringToObject(thm, "Width", "100");
|
|
|
|
cJSON_AddItemToObject(img, "IDs", cJSON_CreateIntArray(ids, 4));
|
|
|
|
|
2016-11-28 08:24:02 +00:00
|
|
|
if (print_preallocated(root) != 0) {
|
|
|
|
cJSON_Delete(root);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2016-10-10 17:34:19 +00:00
|
|
|
cJSON_Delete(root);
|
|
|
|
|
|
|
|
/* Our array of "records": */
|
|
|
|
root = cJSON_CreateArray();
|
|
|
|
for (i = 0; i < 2; i++)
|
|
|
|
{
|
|
|
|
cJSON_AddItemToArray(root, fld = cJSON_CreateObject());
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cJSON_ReplaceItemInObject(cJSON_GetArrayItem(root, 1), "City", cJSON_CreateIntArray(ids, 4)); */
|
|
|
|
|
2016-11-28 08:24:02 +00:00
|
|
|
if (print_preallocated(root) != 0) {
|
|
|
|
cJSON_Delete(root);
|
2016-11-25 18:33:10 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2016-10-10 17:34:19 +00:00
|
|
|
cJSON_Delete(root);
|
|
|
|
|
|
|
|
root = cJSON_CreateObject();
|
|
|
|
cJSON_AddNumberToObject(root, "number", 1.0 / zero);
|
2016-11-25 18:33:10 +00:00
|
|
|
|
2016-11-28 08:24:02 +00:00
|
|
|
if (print_preallocated(root) != 0) {
|
|
|
|
cJSON_Delete(root);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2016-10-10 17:34:19 +00:00
|
|
|
cJSON_Delete(root);
|
2009-08-26 03:55:20 +00:00
|
|
|
}
|
|
|
|
|
2016-11-05 09:52:09 +00:00
|
|
|
int main(void)
|
2016-10-10 17:34:19 +00:00
|
|
|
{
|
2017-01-12 19:37:29 +00:00
|
|
|
/* print the version */
|
|
|
|
printf("Version: %s\n", cJSON_Version());
|
|
|
|
|
2016-10-10 17:34:19 +00:00
|
|
|
/* Now some samplecode for building objects concisely: */
|
|
|
|
create_objects();
|
2016-04-22 19:27:20 +00:00
|
|
|
|
2016-10-10 17:34:19 +00:00
|
|
|
return 0;
|
2009-08-26 03:55:20 +00:00
|
|
|
}
|