-
Notifications
You must be signed in to change notification settings - Fork 1
/
json.c
495 lines (477 loc) · 10.5 KB
/
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
#include "json.h"
typedef struct array array;
typedef struct object object;
typedef struct value value;
typedef struct keyvalue keyvalue;
//json_encode得到的是字符串类型,json_decode得到的是对象类型。这里实现的和decode相关。
//平常说json格式指的是json值为对象格式,json值类型可以是int bool array,
//object类型,数据结构定义如下面所示。object是key-value类型的数组。而array类型,是值的数组,比如
//[{"firstname":"shi","secondname":"xiaoxiao"},{"firstname":"qin","secondname":"xiaonan"}] [123,456]。
/**
* 想想:这些结构体定义在.c是为什么?
*/
//需要一个数据结构保存key 和 value的。key为char*。
struct keyvalue {
char *key;
value *val;
};
/**
* 想想:如果要提升内存分配效率,这个结构体该作什么变化?
*/
//提高内存分配效率可以一个变量capacity,表示容纳的能力>=count。当count == capacity的时候才
//需要重新分配内存下面object一样
struct array {
value **elems; /* 想想: 这里如果定义为'value *elems'会怎样? */
U32 count;
};
/**
* 想想:如果要提升内存分配效率,这个结构体该作什么变化?
*/
struct object {
keyvalue *kvs;
U32 count;
};
//值的类型是union里面的类型并且只能是一种。
struct value {
json_e type;
union {
int num;
bool bol;
char *str;
array arr;
object obj;
};
};
/**
*
*/
JSON *json_value_new(json_e type)
{
JSON *json = (JSON *)calloc(1, sizeof(JSON));
if (!json)
return NULL;
json->type = type;
switch( type ) {
case JSON_BOL : json->bol = false; break;
case JSON_INT : json->num = 0; break;
case JSON_STR : json->str = NULL; break;
case JSON_OBJ : json->obj->kvs = NULL; json->obj->count = 0; break;
case JSON_ARR : json->elems =NULL; json->obj->count = 0; break;
}
return json;
}
//json_delete都是对于obj对象来说的
void json_delete(JSON *obj)
{
int num = obj->obj.count;
keyval *kvs = obj->obj.kvs;
for(int i = 0; i < num; i++)
{
free(kvs[i].key);
kvs[i].key = NULL;
value_delete(kvs[i].val);
kvs[i] = NULL;
}
free(obj);
obj = NULL;
}
void free_arr(value *arr)
{
int count = arr->count;
for(int i = 0; i < count; i++)
{
value_delete(arr[i]);
}
free(arr->elems);
}
void value_delete(value *json)
{
if(!json)
return;
json_e type = json->type;
switch(type)
{
case JSON_INT :
case JSON_BOL :
{
break;
}
case JSON_STR :
{
if(json->str)
free(json->str);
break;
}
case JSON_OBJ :
{
json_delete(json);
break;
}
case JSON_ARR :
{
free_arr(json);
break;
}
}
if (json)
free(json);
}
//从json对象中根据关键字提取出来值
const JSON *json_get_member(const JSON *json, const char *key, bool &is_exist)
{
U32 i;
assert(json);
if (json->type != JSON_OBJ)
{
is_exist = false;
return NULL;
}
assert(json->obj.count == 0);
for (i = 0; i < json->obj.count; ++i) {
if (strcmp(json->obj.kvs[i].key, key) == 0)
{
is_exist = true;
return json->obj.kvs[i].val;
}
}
is_exist = false;
return NULL;
}
//
//对于值类型为int型的。
int json_get_int(const JSON *json, const char *key, int def)
{
bool is_exist;
const JSON * val = json_get_member(json, key, &is_exist);
if(val == NULL || val->type != JSON_INT)
return def;
return val->num;
}
//值类型为bool
BOOL json_get_bool(const JSON *json, const char *key);
{
bool is_exist;
const JSON * val = json_get_member(json, key, &is_exist);
if(val == NULL || val->type != JSON_BOL)
return false;
return val->bol;
}
//对值类型经行编码,得到的结果字符串类型以','结尾。
void encode_value(value *val, char *pre_val, int *pre_val_index)
{
assert(val);
json_e type = val->type;
char *res = malloc(sizeof(char) * MAX_NUM);
int index = 0;
switch(type)
{
//值类型编码出来的中间结果都以'\0'结尾,为了能和之前的进行拼接。
case JSON_STR :
{
res[index++] = '\"';
strcpy(res + index, val->str);
index = strlen(res) + 1;
res[index - 1] = '\"';
res[index++] = '\0';
break;
}
case JSON_INT :
{
sprintf(res, "%d", val->num);
break;
}
case JSON_BOL :
{
if(val->bol == true)
strcpy(res, "true");
else if(val->bol == false)
strcpy(res, "false");
break;
}
case JSON_ARR :
{
json_encode_arr(val, res);
break;
}
//obj类型编码最终也是得到'\0'结尾
case JSON_OBJ :
{
json_encode_obj(val, def, res);
break;
}
}
if( res ) {
//拼接后,在将结尾替换为','号
strcat(pre_val + *pre_val_index, res);
*pre_val_index = strlen(pre_val) + 1;
pre_val[*pre_val_index - 1] = ',';
free(res);
}
}
void json_encode_arr(value *val, char *res)
{
assert(val);
if(val->type != JSON_ARR)
return NULL;
int count = val->count;
if(!count || !val->arr.elems) return NULL;
int index = 0;
res[index++] = '[';
for(int i = 0; i < count; i++)
{
value *temp = val->arr.elems[i];
assert(temp);
encode_value(temp, res, &index);
}
res[index - 1] = ']';
res[index++] = '\0';
}
//将obj encode为字符串类型。最外层肯定是"{}\0",里面每一项的关键字为 "key":
//调用函数得到value的字符串类型并且以,号结束。
void json_encode_obj(const JSON *json, const char *def, char *arr_char)
{
U32 i;
assert(json);
if (json->type != JSON_OBJ)
return def;
assert(json->obj.count == 0 || json->obj.kvs);
int index = 0;
arr_char[index++] = '{';
for (i = 0; i < json->obj.count; ++i)
{
/*
if(index >= limit)
{
limit = limit * 2;
char *realloc = malloc(limit);
if(!realloc)
return def;
strcpy(realloc, arr_char);
free(arr_char);
arr_char = realloc;
}
*/
assert(json->obj.kvs[i].key);
arr_char[index++] = '\"';
strcat(arr_char+index, json->obj.kvs[i].key);
index = strlen(arr_char) + 1;
arr_char[index - 1] = '\"';
arr_char[index++] = ':';
assert(json->obj.kvs[i].val);
encode_value(json->obj.kvs[i].val, arr_char, &index);
}
arr_char[index - 1] = '}';
arr_char[index++] = '\0';
return arr_char;
}
//值类型为str
const char *json_get_str(const JSON *json, const char *key, const char *def)
{
bool is_exist;
const JSON * val = json_get_member(json, key, &is_exist);
if(val == NULL)
return def;
char *res = NULL;
res = malloc(sizeof(char) * MAX_NUM);
if(!res)
return def;
int index = 0;
encode_value(val, res, &index);
res[index - 1] = ',';
res[index++] = '\0';
return res;
}
//对于值类型为数组的,还需要定义函数提取值
const JSON *json_get_index(const JSON *json, U32 idx)
{
assert(json);
if (json->type != JSON_ARR)
return NULL;
if (idx >= json->arr.count)
return NULL;
return json->arr.elems[idx];
}
void arr_cpy(value *arr1, value *arr2)
{
assert(arr1 || arr2);
int sz = arr2->arr.count;
arr1->count = sz;
arr1->elems = malloc(sz * sizeof(value *));
for(int i = 0; i < sz; i++)
{
arr1->elems[i] = NULL;
depth_cpy(&(arr1->elems[i]), arr2->elems[i]);
}
}
void obj_cpy(value *obj1, value *obj2, int extra)
{
assert(obj1 || obj2);
int sz = obj2->obj.count;
int key_sz;
obj1->obj.kvs = malloc(sz * sizeof(keyvalue) + extra);
obj1->obj.count = sz;
keyvalue *kvs1 = obj1->obj.kvs;
keyvalue *kvs2 = obj2->obj.kvs;
for(int i = 0; i < sz; i++)
{
key_sz = strlen(kvs2[i].key) + 1;
kvs1[i].key = malloc(key_sz * sizeof(char));
strcpy(kvs1[i].key, kvs2[i].key);
kvs1[i].val = NULL;
depth_cpy(&(kvs1[i].val), kvs2[i].val);
}
}
void depth_cpy(value **src, value *dst)
{
if (!dst)return;
if (*src) {
value_delete(*src);
*src = NULL;
}
json_e type = dst->type;
switch(type)
{
case JSON_INT :
{
*src = json_value_new(type);
if(!(*src))
return;
(*src)->type = JSON_INT;
(*src)->num = dst->num;
break;
}
case JSON_BOL :
{
*src = json_value_new(type);
if(!(*src))
return;
(*src)->type = JSON_BOL;
(*src)->bol = dst->bol;
break;
}
case JSON_ARR :
{
*src = json_value_new(type);
if (!(*src))
return;
(*src)->type = JSON_ARR;
arr_cpy(*src, dst);
break;
}
case JSON_OBJ :
{
*src = json_value_new(type);
if (!(*src))
return;
(*src)->type = JSON_OBJ;
obj_cpy(*src, dst, 0);
break;
}
case JSON_STR :
{
*src = json_value_new(type);
if(!(*src))
return;
(*src)->type = JSON_STR;
int sz = strlen(dst->str);
char *str = malloc(sizeof(char) * sz);
strcpy(str, dst->str);
(*src)->str = str;
break;
}
}
}
bool expand(JSON *json, int extra)
{
JSON *new = json_value_new(JSON_OBJ);
new->obj.kvs = json->obj.kvs;
json->obj.kvs= NULL;
obj_cpy(json, new, 1);
json_delete(new);
}
void json_add_member(JSON *json, const char *key, JSON *val)
{
expand(json, 1);
int sz = strlen(key) + 1;
json->obj.kvs[count].key = malloc(sizeof(char) * sz);
strcpy(json->obj.kvs[count].key, key);
json->obj.kvs[count].value = val;
json->obj.count = json->obj.count + 1;
}
bool json_set_value(JSON *json, const char *key, void *val, json_e type)
{
bool is_exist = false;
const JSON * json_val_old = json_get_member(json, key, &is_exist);
if (json_val_old)
value_delete(json_val_old);
value * json_val_new = json_value_new(type);
if (!json_val_new)
return false;
switch(type)
{
case JSON_INT :
{
int num = *(int *)val;
json_val_new->type = JSON_INT;
json_val_new->num = num;
break;
}
case JSON_BOL :
{
bool bol = *(bool *)val;
json_val_new->type = JSON_BOL;
json_val_new->bol = bol;
break;
}
case JSON_STR :
{
char *str = char(*)val;
json_val_new->type = JSON_STR;
json_val_new->str = str;
break;
}
case JSON_ARR :
{
array arr = *(array *)val;
json_val_new->type = JSON_ARR;
depth_cpy(&json_val_new, json_val_old);
break;
}
case JSON_OBJ :
{
object obj = *(object *)val;
json_val_new->type = JSON_OBJ;
depth_cpy(&json_val_new, json_val_old);
break;
}
}
if (is_exist)
{
json_val_old = json_val_new;
return ture;
}else {
json_add_member(json, key, json_val_new);
}
}
booL json_set_int(JSON *json, const char *key, int val)
{
bool is_success = false;
is_success = json_set_value(json, key, (void*)&val, JSON_INT);
return is_success;
}
bool json_set_obj(JSON *json, const char *key, value *obj)
{
bool is_success = false;
is_success = json_set_value(json, key, (void*)obj, JSON_OBJ);
return is_success;
}
int main()
{
json_e type = JSON_OBJ;
json * json_val = json_value_new(type);
if( json_set_int(json_val, "shi", 123) )
{
value_delete(json_val);
return 1;
}
}