-
Notifications
You must be signed in to change notification settings - Fork 0
/
jett.c
304 lines (282 loc) · 7.92 KB
/
jett.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
#include "jett.h"
#ifndef MULTITHREAD_ENABLED
static int pos = 0;
static int length = 0;
static char* pJson = NULL;
//Just initialize the pointer to a JSON text, its size and cursor position
void jett_init(char *pJsonDocument, int size)
{
pos = 0;
pJson = pJsonDocument;
length = size;
}
#endif
bool jett_findKey(
#ifdef MULTITHREAD_ENABLED
sJettState* pState,
#endif
int* pBegin, int* pEnd)
{
#ifdef MULTITHREAD_ENABLED
/* Initialize local variables we will be using to traverse the JSON */
int pos = pState->pos;
int length = pState->length;
char* pJson = pState->pJson;
#endif
*pBegin = -1;
*pEnd = -1;
int depth = 0;
bool bResult = false;
for (; (pJson[pos] != '\0') && (pos < length); pos++)
{
/* When looking-up for the key, skip anything related to the objects or arrays */
if ((pJson[pos] == '{') || (pJson[pos]=='['))
{
/* Only increase the depth of search if key is not found */
if ((*pBegin == -1) && (*pEnd == -1))
{
depth++;
}
/* Otherwise the JSON is somewhat broken and we cannot deal with it */
else
{
*pBegin = -1;
*pEnd = -1;
break;
}
}
else if ((pJson[pos] == '}') || (pJson[pos] == ']'))
{
/* Only go to the upper level of search if key is not found */
if ((*pBegin == -1) && (*pEnd == -1))
{
/* We cannot move up the level from the ground */
if (depth > 0)
{
depth--;
}
else
{
/* That means no key is found */
*pBegin = -1;
*pEnd = -1;
break;
}
}
/* Otherwise the JSON is somewhat broken and we cannot deal with it */
else
{
*pBegin = -1;
*pEnd = -1;
break;
}
}
/* Only look-up for keys on the same level where we started */
else if (depth == 0)
{
/* If candidate for a key is found, continue looking for its end */
if ((pJson[pos] == '"') && (*pBegin == -1))
{
*pBegin = pos + 1;
*pEnd = -1;
}
/* If candidate key end is found, mark it and continue to look for key-value separator */
else if ((pJson[pos] == '"') && (*pEnd == -1))
{
*pEnd = pos;
}
/* If key is found and separator is found, then we stop */
else if ((*pBegin != -1) && (*pEnd != -1) && pJson[pos] == ':')
{
bResult = true;
pos++;/* Cursor is set to the character next to colon, which is a beginning of value */
break;
}
}
}
#ifdef MULTITHREAD_ENABLED
pState->pos = pos;
#endif
return bResult;
}
bool jett_collectionBegin(
#ifdef MULTITHREAD_ENABLED
sJettState* pState
#else
void
#endif
)
{
#ifdef MULTITHREAD_ENABLED
/* Initialize local variables we will be using to traverse the JSON */
int pos = pState->pos;
int length = pState->length;
char* pJson = pState->pJson;
#endif
bool bResult = false;
for (; (pJson[pos] != '\0') && (pos < length); pos++)
{
/* Look for an array or object start */
if ((pJson[pos] == '[') || (pJson[pos] == '{'))
{
pos++;//Set pointer to the next character
bResult = true;
break;
}
/* Skip any whitespace character */
else if ((pJson[pos] == ' ') || (pJson[pos] == '\r') || (pJson[pos] == '\t') || (pJson[pos] == '\n'))
{
continue;
}
/* No collection begin found, aborting */
else
{
break;
}
}
#ifdef MULTITHREAD_ENABLED
pState->pos = pos;
#endif
return bResult;
}
bool jett_collectionEnd(
#ifdef MULTITHREAD_ENABLED
sJettState* pState
#else
void
#endif
)
{
#ifdef MULTITHREAD_ENABLED
/* Initialize local variables we will be using to traverse the JSON */
int pos = pState->pos;
int length = pState->length;
char* pJson = pState->pJson;
#endif
bool bResult = false;
for (; (pJson[pos] != '\0') && (pos < length); pos++)
{
/* When we found the end of collection, we need to find end of nesting collection or next element in the array */
if (bResult)
{
if ((pJson[pos] == ']') || (pJson[pos] == '}') || (pJson[pos] == ','))
{
//Skip over comma
if (pJson[pos] == ',')
{
pos++;
}
break;
}
}
/* Look for collection end */
else if ((pJson[pos] == ']') || (pJson[pos] == '}'))
{
bResult = true;
/* Continue looking Look for the actual end of the element */
}
/* Skip any whitespace character */
else if ((pJson[pos] == ' ') || (pJson[pos] == '\r') || (pJson[pos] == '\t') || (pJson[pos] == '\n'))
{
continue;
}
/* No collection end found, aborting */
else
{
break;
}
}
#ifdef MULTITHREAD_ENABLED
pState->pos = pos;
#endif
return bResult;
}
bool jett_getValue(
#ifdef MULTITHREAD_ENABLED
sJettState* pState,
#endif
int* pBegin, int* pEnd)
{
#ifdef MULTITHREAD_ENABLED
/* Initialize local variables we will be using to traverse the JSON */
int pos = pState->pos;
int length = pState->length;
char* pJson = pState->pJson;
#endif
*pBegin = -1;
*pEnd = -1;
bool bResult = false;
bool bStringFound = false;
for (; (pJson[pos] != '\0') && (pos < length); pos++)
{
/* If we found an end of the value in object, array or found next element then stop traversing, regardless of success or failure */
if ((pJson[pos] == '}') || (pJson[pos] == ']') || (pJson[pos] == ','))
{
/* If we found beginning of value and it is not a string, then our search is over */
if (!bResult && !bStringFound && (*pBegin != -1))
{
*pEnd = pos;
bResult = true;
}
/* If we found a string but not the end of it, then continue until we find quotes */
else if (bStringFound && (*pEnd == -1))
{
continue;
}
if (pJson[pos] == ',')
{
/* Skip to next value */
pos++;
}
/* If open string was found, then we just break with failure */
break;
}
/* If value position is not found, continue the search */
else if (!bResult)
{
/* A string candidate found */
if (pJson[pos] == '"')
{
if (!bStringFound)
{
pos++;
*pBegin = pos;
// Check for empty string
if (pJson[pos] == '"')
{
*pEnd = pos;
bResult = true;
}
bStringFound = true;
}
else
{
*pEnd = pos;
bResult = true;
/* We do not break here, keep looking for the end symbol */
}
}
/* Look for anything else */
else if (!bStringFound)
{
/* Use the whitespace to find begin and end of the primitive value */
if ((pJson[pos] == ' ') || (pJson[pos] == '\r') || (pJson[pos] == '\t') || (pJson[pos] == '\n'))
{
if (*pBegin != -1)
{
*pEnd = pos;
bResult = true;
}
}
else if (*pBegin == -1)
{
*pBegin = pos;
}
}
}
}
#ifdef MULTITHREAD_ENABLED
pState->pos = pos;
#endif
return bResult;
}