forked from miloyip/json-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleptjson.c
More file actions
405 lines (362 loc) · 11.2 KB
/
leptjson.c
File metadata and controls
405 lines (362 loc) · 11.2 KB
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
#include "leptjson.h"
#include <assert.h> /* assert() */
#include <errno.h> /* errno, ERANGE */
#include <math.h> /* HUGE_VAL */
#include <stdlib.h> /* NULL, malloc(), realloc(), free(), strtod() */
#include <string.h> /* memcpy() */
#ifndef LEPT_PARSE_STACK_INIT_SIZE
#define LEPT_PARSE_STACK_INIT_SIZE 256
#endif
#define EXPECT(c, ch) do { assert(*c->json == (ch)); c->json++; } while(0)
#define ISWHITESPACE(ch) ((ch) == ' ' || (ch) == '\t' || (ch) == '\n' || (ch) == '\r')
#define ISDIGIT(ch) ((ch) >= '0' && (ch) <= '9')
#define ISDIGIT1TO9(ch) ((ch) >= '1' && (ch) <= '9')
#define PUTC(c, ch) do { *(char*)lept_context_push(c, sizeof(char)) = (ch); } while(0)
typedef struct {
const char* json;
char* stack;
size_t size, top;
} lept_context;
static void* lept_context_push(lept_context* c, size_t size) {
void* ret;
assert(size > 0);
if (c->top + size >= c->size) {
if (c->size == 0) {
c->size = LEPT_PARSE_STACK_INIT_SIZE;
}
while (c->top + size >= c->size) {
c->size += c->size >> 1; /* c->size * 1.5 */
}
c->stack = (char*)realloc(c->stack, c->size);
}
ret = c->stack + c->top;
c->top += size;
return ret;
}
static void* lept_context_pop(lept_context* c, size_t size) {
assert(c->top >= size);
c->top -= size;
return c->stack + c->top;
}
static void lept_parse_whitespace(lept_context* c)
{
while (ISWHITESPACE(*c->json)) {
c->json++;
}
}
static int lept_parse_null(lept_context* c, lept_value* v)
{
EXPECT(c, 'n');
if (c->json[0] != 'u' || c->json[1] != 'l' || c->json[2] != 'l') {
return LEPT_PARSE_INVALID_VALUE;
}
c->json += 3;
v->type = LEPT_NULL;
return LEPT_PARSE_OK;
}
static int lept_parse_false(lept_context* c, lept_value* v)
{
EXPECT(c, 'f');
if (c->json[0] != 'a' || c->json[1] != 'l' || c->json[2] != 's' || c->json[3] != 'e') {
return LEPT_PARSE_INVALID_VALUE;
}
c->json += 4;
v->type = LEPT_FALSE;
return LEPT_PARSE_OK;
}
static int lept_parse_true(lept_context* c, lept_value* v)
{
EXPECT(c, 't');
if (c->json[0] != 'r' || c->json[1] != 'u' || c->json[2] != 'e') {
return LEPT_PARSE_INVALID_VALUE;
}
c->json += 3;
v->type = LEPT_TRUE;
return LEPT_PARSE_OK;
}
static int lept_parse_number(lept_context* c, lept_value* v)
{
const char* p = c->json;
/* nagetive */
if (*p == '-') p++;
/* int */
if (*p == '0') p++;
else {
if (!ISDIGIT1TO9(*p)) return LEPT_PARSE_INVALID_VALUE;
while (ISDIGIT(*p)) p++;
}
/* frac */
if (*p == '.') {
p++;
if (!ISDIGIT(*p)) return LEPT_PARSE_INVALID_VALUE;
while (ISDIGIT(*p)) p++;
}
/* exp */
if (*p == 'e' || *p == 'E') {
p++;
if (*p == '+' || *p == '-') p++;
if (!ISDIGIT(*p)) return LEPT_PARSE_INVALID_VALUE;
while (ISDIGIT(*p)) p++;
}
errno = 0;
v->u.n = strtod(c->json, NULL);
if (errno == ERANGE && (v->u.n == HUGE_VAL || v->u.n == -HUGE_VAL)) {
return LEPT_PARSE_NUMBER_TOO_BIG;
}
c->json = p;
v->type = LEPT_NUMBER;
return LEPT_PARSE_OK;
}
static const char* lept_parse_hex4(const char* p, unsigned int* u)
{
*u = 0;
for (int i = 0; i < 4; i++) {
char ch = *p++;
*u <<= 4;
if (ch >= '0' && ch <= '9') *u |= ch - '0';
else if (ch >= 'A' && ch <= 'F') *u |= ch - ('A' - 10);
else if (ch >= 'a' && ch <= 'f') *u |= ch - ('a' - 10);
else return NULL;
}
return p;
}
static void lept_encode_utf8(lept_context* c, unsigned int u)
{
assert(u >= 0x0000 && u <= 0x10FFFF);
if (u < 0x007F) {
PUTC(c, (0x00 | ( u & 0xFF))); /* 0x00 = 00000000 */
}
else if (u <= 0x07FF) {
PUTC(c, (0xC0 | ((u >> 6) & 0xFF))); /* 0xC0 = 11000000 */
PUTC(c, (0x80 | ( u & 0x3F))); /* 0x80 = 10000000 */
}
else if (u <= 0xFFFF) {
PUTC(c, (0xE0 | ((u >> 12) & 0xFF))); /* 0xE0 = 11100000 */
PUTC(c, (0x80 | ((u >> 6) & 0x3F)));
PUTC(c, (0x80 | ( u & 0x3F)));
}
else {
PUTC(c, (0xF0 | ((u >> 18) & 0xFF))); /* 0xF0 = 11110000 */
PUTC(c, (0x80 | ((u >> 12) & 0x3F)));
PUTC(c, (0x80 | ((u >> 6) & 0x3F)));
PUTC(c, (0x80 | ( u & 0x3F)));
}
}
#define RETURN_STRING_ERROR(ret) do { c->top = head; return ret; } while(0)
static int lept_parse_string(lept_context* c, lept_value* v)
{
size_t head = c->top, len;
const char* p;
unsigned int u; /* store unicode hex4 */
EXPECT(c, '\"');
p = c->json;
for (;;) {
char ch = *p++;
switch (ch) {
case '\"':
len = c->top - head;
lept_set_string(v, lept_context_pop(c, len), len);
c->json = p;
return LEPT_PARSE_OK;
case '\0':
RETURN_STRING_ERROR(LEPT_PARSE_MISS_QUOTATION_MARK);
case '\\':
switch (*p++) {
case '\"': PUTC(c, '\"'); break;
case '\\': PUTC(c, '\\'); break;
case '/': PUTC(c, '/'); break;
case 'b': PUTC(c, '\b'); break;
case 'f': PUTC(c, '\f'); break;
case 'n': PUTC(c, '\n'); break;
case 'r': PUTC(c, '\r'); break;
case 't': PUTC(c, '\t'); break;
case 'u':
if (!(p = lept_parse_hex4(p, &u))) {
RETURN_STRING_ERROR(LEPT_PARSE_INVALID_UNICODE_HEX);
}
/* surrogate handling */
if (u >= 0xD800 && u <= 0xDBFF) {
if (*p == '\\' && *(p+1) == 'u') {
p += 2;
unsigned int ul;
if (!(p = lept_parse_hex4(p, &ul))) {
RETURN_STRING_ERROR(LEPT_PARSE_INVALID_UNICODE_HEX);
}
if (ul < 0xDC00 || ul > 0xDFFF) {
RETURN_STRING_ERROR(LEPT_PARSE_INVALID_UNICODE_SURROGATE);
}
u = (((u - 0xD800) << 10) | (ul - 0xDC00)) + 0x10000;
}
else {
RETURN_STRING_ERROR(LEPT_PARSE_INVALID_UNICODE_SURROGATE);
}
}
lept_encode_utf8(c, u);
break;
default:
RETURN_STRING_ERROR(LEPT_PARSE_INVALID_STRING_ESCAPE);
}
break;
default:
if ((unsigned char)ch <= 0x1F) {
RETURN_STRING_ERROR(LEPT_PARSE_INVALID_STRING_CHAR);
}
PUTC(c, ch);
}
}
}
/* forward declaration */
static int lept_parse_value(lept_context* c, lept_value* v);
static int lept_parse_array(lept_context* c, lept_value* v)
{
size_t size = 0;
int ret;
EXPECT(c, '[');
lept_parse_whitespace(c); /* parse whitespace around */
if (*c->json == ']') {
c->json++;
v->type = LEPT_ARRAY;
v->u.a.size = 0;
v->u.a.e = NULL;
return LEPT_PARSE_OK;
}
for (;;) {
lept_value e;
lept_init(&e);
lept_parse_whitespace(c); /* parse whitespace around */
if ((ret = lept_parse_value(c, &e)) != LEPT_PARSE_OK) {
break;
}
lept_parse_whitespace(c); /* parse whitespace around */
memcpy(lept_context_push(c, sizeof(lept_value)), &e, sizeof(lept_value));
size++;
if (*c->json == ',') {
c->json++;
}
else if (*c->json == ']') {
c->json++;
v->type = LEPT_ARRAY;
v->u.a.size = size;
size = size * sizeof(lept_value); /* byte size */
v->u.a.e = (lept_value*)malloc(size);
memcpy(v->u.a.e, lept_context_pop(c, size), size);
return LEPT_PARSE_OK;
}
else {
ret = LEPT_PARSE_MISS_COMMA_OR_SQUARE_BRACKET;
break;
}
}
/* clear stack and free elements when failed in parsing array */
for (size_t i = 0; i < size; i++) {
lept_free((lept_value*)lept_context_pop(c, sizeof(lept_value)));
}
return ret;
}
static int lept_parse_value(lept_context* c, lept_value* v)
{
switch (*c->json) {
case 'n': return lept_parse_null(c, v);
case 'f': return lept_parse_false(c, v);
case 't': return lept_parse_true(c, v);
default: return lept_parse_number(c, v);
case '"': return lept_parse_string(c, v);
case '[': return lept_parse_array(c, v);
case '\0': return LEPT_PARSE_EXPECT_VALUE;
}
}
int lept_parse(lept_value* v, const char* json)
{
lept_context c;
int ret;
assert(v != NULL);
c.json = json;
c.stack = NULL;
c.size = c.top = 0;
lept_init(v);
lept_parse_whitespace(&c);
if ((ret = lept_parse_value(&c, v)) == LEPT_PARSE_OK) {
lept_parse_whitespace(&c);
if (*c.json != '\0') {
v->type = LEPT_NULL;
ret = LEPT_PARSE_ROOT_NOT_SINGULAR;
}
}
assert(c.top == 0);
free(c.stack);
return ret;
}
void lept_free(lept_value* v)
{
assert(v != NULL);
switch (v->type) {
case LEPT_STRING:
free(v->u.s.s);
break;
case LEPT_ARRAY:
for (size_t i = 0; i < v->u.a.size; i++) {
lept_free(&v->u.a.e[i]);
}
free(v->u.a.e);
break;
default:
break;
}
v->type = LEPT_NULL;
}
int lept_get_boolean(const lept_value* v)
{
assert(v != NULL && (v->type == LEPT_TRUE || v->type == LEPT_FALSE));
return v->type == LEPT_TRUE;
}
void lept_set_boolean(lept_value* v, int b)
{
lept_free(v);
v->type = b ? LEPT_TRUE : LEPT_FALSE;
}
lept_type lept_get_type(const lept_value* v)
{
assert(v != NULL);
return v->type;
}
double lept_get_number(const lept_value* v)
{
assert(v != NULL && v->type == LEPT_NUMBER);
return v->u.n;
}
void lept_set_number(lept_value* v, double n)
{
lept_free(v);
v->type = LEPT_NUMBER;
v->u.n = n;
}
const char* lept_get_string(const lept_value* v)
{
assert(v != NULL && v->type == LEPT_STRING);
return v->u.s.s;
}
size_t lept_get_string_length(const lept_value* v)
{
assert(v != NULL && v->type == LEPT_STRING);
return v->u.s.len;
}
void lept_set_string(lept_value* v, const char* s, size_t len)
{
assert(v != NULL && (s != NULL || len == 0));
lept_free(v);
v->type = LEPT_STRING;
v->u.s.s = (char*)malloc(len+1);
memcpy(v->u.s.s, s, len);
v->u.s.s[len] = '\0';
v->u.s.len = len;
}
size_t lept_get_array_size(const lept_value* v)
{
assert(v != NULL && v->type == LEPT_ARRAY);
return v->u.a.size;
}
lept_value* lept_get_array_element(const lept_value* v, size_t index) {
assert(v != NULL && v->type == LEPT_ARRAY);
assert(index < v->u.a.size);
return &v->u.a.e[index];
}