X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fjsmn%2Fexample%2Fmaptest.c;h=7cceabb8ea2e7494d470f68aa45ab01a2ac30bf8;hb=f1605e99959acfb32b36ae875601fc14dd670742;hp=1a3416cc31f9854e6731f4d0a4b66c7203e690a1;hpb=87a3262c2554ec660239e5f88fad81f78c72dd51;p=16.git diff --git a/src/lib/jsmn/example/maptest.c b/src/lib/jsmn/example/maptest.c old mode 100644 new mode 100755 index 1a3416cc..7cceabb8 --- 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[128]; /* We expect no more than 128 tokens */ - FILE *fh = fopen("../../../../data/test0.map", "r"); + 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);*/ } }