X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fjsmn%2Fexample%2Fmaptest.c;h=7cceabb8ea2e7494d470f68aa45ab01a2ac30bf8;hb=acc96b5371d3d51633b9175609b0ce030a3d75db;hp=d951e64b2bda1bc55ce10375b912d430dd6cf776;hpb=619a510fbeed4226c15355146b78f0b8f758a940;p=16.git diff --git a/src/lib/jsmn/example/maptest.c b/src/lib/jsmn/example/maptest.c index d951e64b..7cceabb8 100644 --- a/src/lib/jsmn/example/maptest.c +++ b/src/lib/jsmn/example/maptest.c @@ -1,8 +1,11 @@ #include #include #include +//#include #include "../jsmn.c" +//#define BUFSIZ 2048 + /* * A small example of jsmn parsing when JSON structure is known and number of * tokens is predictable. @@ -36,17 +39,25 @@ int main() { int r; size_t z; jsmn_parser p; - jsmntok_t t[2048]; /* We expect no more than 128 tokens */ + jsmntok_t t[(BUFSIZ/sizeof(jsmntok_t))*2]; /* We expect no more than 128 tokens */ FILE *fh = fopen("../../../../data/test.map", "r"); char *json_string = malloc(filesize(fh)); - //memset(json_string, 0, sizeof(*json_string)); - memset(&p, 0, sizeof(p)); if(fh != NULL) { + /*t = malloc(2048); + if (t == NULL) { + fprintf(stderr, "malloc(): errno=%d\n", errno); + return 3; + }*/ + //printf("\n%d\n\n", sizeof(*t)); + printf("\n%d", sizeof(*t)); + printf("\n%d", sizeof(t)); + printf("\n%d\n\n", sizeof(t)/sizeof(t[0])); z = fread(json_string, 1, filesize(fh), fh); + //char json_s[2048]; fclose(fh); fh = NULL; - printf("[[%d]]\n", z); + printf("[%d]\n", z); json_string[z] = '\0'; // we can now close the file //printf("]%s[\n", json_s); @@ -55,7 +66,9 @@ int main() { jsmn_init(&p); r = jsmn_parse(&p, json_string, strlen(json_string), t, sizeof(t)/sizeof(t[0])); + //t[(BUFSIZ/sizeof(jsmntok_t))*2+1].type=JSMN_OBJECT; printf("[\n%s\n]", json_string); + printf("[[%d]]\n",r); if (r < 0) { printf("Failed to parse JSON: %d\n", r); return 1; @@ -96,8 +109,8 @@ int main() { } i += t[i+1].size + 1; } else { - printf("Unexpected key: %.*s\n", t[i].end-t[i].start, - json_string + t[i].start); + /*printf("Unexpected key: %.*s\n", t[i].end-t[i].start, + json_string + t[i].start);*/ } }