-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths_json.c
245 lines (198 loc) · 6.38 KB
/
s_json.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#include <jjp_wrap.h>
#include <jsmn.h>
#include <jsonpath.h>
#include <s_json.h>
#include <stdlib.h>
#include <string.h>
struct s_json {
const char *json_string;
jsmn_parser parser;
jsmntok_t *tokens;
int tokens_max;
int tokens_c;
};
static void set_ok(s_json_err_t *rc) {
if (rc) {
*rc = S_JSON_OK;
}
}
#ifdef check
#undef check
#endif
#define check(A, B, C) \
if (!(A)) { \
if (rc) { \
*rc = B; \
} \
goto C; \
}
#define check_input_params() \
{ \
check(json, S_JSON_ERR_WRONG_JSON, final_cleanup); \
check(json->tokens_c > 0, S_JSON_ERR_INTERNAL, final_cleanup); \
check(json, S_JSON_ERR_WRONG_ROOT, final_cleanup); \
}
static void j_cleanup(s_json_t *json) {
if (json) {
if (json->tokens) {
free(json->tokens);
}
free(json);
}
}
s_json_t *s_json_init(const char *json_string, size_t json_string_len,
s_json_err_t *rc) {
s_json_t *json;
jsmntok_t *tmp;
check(json_string, S_JSON_ERR_PARSE, final_cleanup);
json = malloc(sizeof(struct s_json));
check(json, S_JSON_ERR_NO_MEM, final_cleanup);
jsmn_init(&json->parser);
json->json_string = json_string;
json->tokens_max = 100;
json->tokens = NULL;
json->tokens_c = JSMN_ERROR_NOMEM;
while (json->tokens_c == JSMN_ERROR_NOMEM) {
json->tokens_max *= 2;
tmp = realloc(json->tokens, json->tokens_max * sizeof(jsmntok_t));
check(tmp, S_JSON_ERR_NO_MEM, json_cleanup);
json->tokens = tmp;
json->tokens_c =
jsmn_parse(&json->parser, json->json_string, json_string_len,
json->tokens, json->tokens_max);
}
check(json->tokens_c > 0, S_JSON_ERR_PARSE, json_cleanup);
set_ok(rc);
return json;
json_cleanup:
j_cleanup(json);
final_cleanup:
return NULL;
}
int s_json_int(s_json_t *json, const char *json_path, int root_object_index,
s_json_err_t *rc) {
int rc2;
int res;
check_input_params();
res = jjp_int(json->json_string, json->tokens, json->tokens_c, json_path,
root_object_index, &rc2);
check(rc2 == 0, S_JSON_NOT_FOUND, final_cleanup);
set_ok(rc);
return res;
final_cleanup:
return 0;
}
long s_json_long(s_json_t *json, const char *json_path, int root_object_index,
s_json_err_t *rc) {
int rc2;
long res;
check_input_params();
res = jjp_long(json->json_string, json->tokens, json->tokens_c, json_path,
root_object_index, &rc2);
check(rc2 == 0, S_JSON_NOT_FOUND, final_cleanup);
set_ok(rc);
return res;
final_cleanup:
return 0L;
}
double s_json_double(s_json_t *json, const char *json_path,
int root_object_index, s_json_err_t *rc) {
int rc2;
double res;
check_input_params();
res = jjp_double(json->json_string, json->tokens, json->tokens_c, json_path,
root_object_index, &rc2);
check(rc2 == 0, S_JSON_NOT_FOUND, final_cleanup);
set_ok(rc);
return res;
final_cleanup:
return 0.0;
}
float s_json_float(s_json_t *json, const char *json_path, int root_object_index,
s_json_err_t *rc) {
int rc2;
float res;
check_input_params();
res = jjp_float(json->json_string, json->tokens, json->tokens_c, json_path,
root_object_index, &rc2);
check(rc2 == 0, S_JSON_NOT_FOUND, final_cleanup);
set_ok(rc);
return res;
final_cleanup:
return 0.0f;
}
int s_json_boolean(s_json_t *json, const char *json_path, int root_object_index,
s_json_err_t *rc) {
int rc2;
int res;
check_input_params();
res = jjp_boolean(json->json_string, json->tokens, json->tokens_c, json_path,
root_object_index, &rc2);
check(rc2 == 0, S_JSON_NOT_FOUND, final_cleanup);
set_ok(rc);
return res;
final_cleanup:
return 0.0f;
}
char *s_json_string(s_json_t *json, const char *json_path,
int root_object_index, s_json_err_t *rc) {
const char *str;
char *res;
size_t len;
check_input_params();
s_json_string_raw(&str, &len, json, json_path, root_object_index, rc);
check(*rc == S_JSON_OK, *rc, final_cleanup);
res = malloc((len + 1) * sizeof(char));
check(res, S_JSON_ERR_NO_MEM, final_cleanup);
(void)strncpy(res, str, len);
res[len] = '\0';
set_ok(rc);
return res;
final_cleanup:
return NULL;
}
void s_json_string_raw(const char **string_raw, size_t *string_raw_length,
s_json_t *json, const char *json_path,
int root_object_index, s_json_err_t *rc) {
int i;
int len;
check_input_params();
i = jjp_jsonpath_first(json->json_string, json->tokens, json->tokens_c,
json_path, root_object_index);
check(i >= 0 && json->tokens[i].type == JSMN_STRING, S_JSON_NOT_FOUND,
final_cleanup);
len = json->tokens[i].end - json->tokens[i].start;
check(len >= 0, S_JSON_ERR_INTERNAL, final_cleanup);
set_ok(rc);
*string_raw_length = len;
*string_raw = json->json_string + json->tokens[i].start;
return;
final_cleanup:
*string_raw = NULL;
*string_raw_length = 0;
return;
}
int s_json_object(s_json_t *json, const char *json_path, int root_object_index,
s_json_err_t *rc) {
int index;
check_input_params();
index = jjp_jsonpath_first(json->json_string, json->tokens, json->tokens_c,
json_path, root_object_index);
check(index >= 0, S_JSON_NOT_FOUND, final_cleanup);
set_ok(rc);
return index;
final_cleanup:
return 0;
}
jjp_result_t *s_json_array_object(s_json_t *json, const char *json_path,
int root_object_index, s_json_err_t *rc) {
jjp_result_t *res;
res = jjp_jsonpath(json->json_string, json->tokens, json->tokens_c, json_path,
root_object_index);
check(res, S_JSON_NOT_FOUND, final_cleanup);
set_ok(rc);
return res;
final_cleanup:
return NULL;
}
void s_json_cleanup(s_json_t *json) { j_cleanup(json); }