]> 4ch.mooo.com Git - 16.git/blob - src/lib/jsmn/example/maptest.c
modified: src/lib/jsmn/example/maptest.c
[16.git] / src / lib / jsmn / example / maptest.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdlib.h>
4 #include "../jsmn.c"
5
6 /*
7  * A small example of jsmn parsing when JSON structure is known and number of
8  * tokens is predictable.
9  */
10
11 /*char *json_string =
12         "{\"user\": \"johndoe\", \"admin\": false, \"uid\": 1000,\n  "
13         "\"groups\": [\"users\", \"wheel\", \"audio\", \"video\"]}";*/
14
15 long int filesize(FILE *fp)\r
16 {\r
17         long int save_pos, size_of_file;\r
18 \r
19         save_pos = ftell(fp);\r
20         fseek(fp, 0L, SEEK_END);\r
21         size_of_file = ftell(fp);\r
22         fseek(fp, save_pos, SEEK_SET);\r
23         return(size_of_file);\r
24 }
25
26 static int jsoneq(const char *json, jsmntok_t *tok, const char *s) {
27         if (tok->type == JSMN_STRING && (int) strlen(s) == tok->end - tok->start &&
28                         strncmp(json + tok->start, s, tok->end - tok->start) == 0) {
29                 return 0;
30         }
31         return -1;
32 }
33
34 int main() {
35         int i;
36         int r;
37         size_t z;
38         jsmn_parser p;
39         jsmntok_t t[2048]; /* We expect no more than 128 tokens */
40         FILE *fh = fopen("../../../../data/test.map", "r");
41         char *json_string = malloc(filesize(fh));
42         //memset(json_string, 0, sizeof(*json_string));
43
44         if(fh != NULL)
45         {
46                 z = fread(json_string, 1, filesize(fh), fh);
47                 fclose(fh); fh = NULL;
48                 printf("[[%d]]\n", z);
49                 json_string[z] = '\0';
50                 // we can now close the file
51                 //printf("]%s[\n", json_s);
52                 //json_string=json_s;
53                 //printf("[[%s]]\n", json_string);
54
55         jsmn_init(&p);
56         r = jsmn_parse(&p, json_string, strlen(json_string), t, sizeof(t)/sizeof(t[0]));
57         printf("[\n%s\n]", json_string);
58         if (r < 0) {
59                 printf("Failed to parse JSON: %d\n", r);
60                 return 1;
61         }
62
63         /* Assume the top-level element is an object */
64         if (r < 1 || t[0].type != JSMN_OBJECT) {
65                 printf("Object expected\n");
66                 return 1;
67         }
68
69         /* Loop over all keys of the root object */
70         for (i = 1; i < r; i++) {
71                 if (jsoneq(json_string, &t[i], "image") == 0) {
72                         /* We may use strndup() to fetch string value */
73                         printf("- image: %.*s\n", t[i+1].end-t[i+1].start,
74                                         json_string + t[i+1].start);
75                         i++;
76                 } else if (jsoneq(json_string, &t[i], "admin") == 0) {
77                         /* We may additionally check if the value is either "true" or "false" */
78                         printf("- Admin: %.*s\n", t[i+1].end-t[i+1].start,
79                                         json_string + t[i+1].start);
80                         i++;
81                 } else if (jsoneq(json_string, &t[i], "uid") == 0) {
82                         /* We may want to do strtol() here to get numeric value */
83                         printf("- UID: %.*s\n", t[i+1].end-t[i+1].start,
84                                         json_string + t[i+1].start);
85                         i++;
86                 } else if (jsoneq(json_string, &t[i], "tilesets") == 0) {
87                         int j;
88                         printf("- tilesets:\n");
89                         if (t[i+1].type != JSMN_ARRAY) {
90                                 continue; /* We expect groups to be an array of strings */
91                         }
92                         for (j = 0; j < t[i+1].size; j++) {
93                                 jsmntok_t *g = &t[i+j+2];
94                                 printf("  * %.*s\n", g->end - g->start, json_string + g->start);
95                         }
96                         i += t[i+1].size + 1;
97                 } else {
98                         printf("Unexpected key: %.*s\n", t[i].end-t[i].start,
99                                         json_string + t[i].start);
100                 }
101         }
102
103         //free(json_string);
104         }
105         if (fh != NULL) fclose(fh);
106   ////}
107         return 0;
108 }