Coverage Report

Created: 2026-08-14 07:31

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/open62541_15/deps/cj5.c
Line
Count
Source
1
// MIT License
2
//
3
// Copyright (c) 2020 Sepehr Taghdisian
4
// Copyright (c) 2022, 2024 Julius Pfrommer
5
//
6
// Permission is hereby granted, free of charge, to any person obtaining a copy
7
// of this software and associated documentation files (the "Software"), to deal
8
// in the Software without restriction, including without limitation the rights
9
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
// copies of the Software, and to permit persons to whom the Software is
11
// furnished to do so, subject to the following conditions:
12
//
13
// The above copyright notice and this permission notice shall be included in all
14
// copies or substantial portions of the Software.
15
//
16
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
// SOFTWARE.
23
24
#include "cj5.h"
25
#include "parse_num.h"
26
#include "utf8.h"
27
28
#include <math.h>
29
#include <float.h>
30
#include <string.h>
31
32
#if defined(_MSC_VER)
33
# define CJ5_INLINE __inline
34
#else
35
# define CJ5_INLINE inline
36
#endif
37
38
/* vs2008 does not have INFINITY and NAN defined */
39
#ifndef INFINITY
40
# define INFINITY ((double)(DBL_MAX+DBL_MAX))
41
#endif
42
#ifndef NAN
43
# define NAN ((double)(INFINITY-INFINITY))
44
#endif
45
46
#if defined(_MSC_VER)
47
# pragma warning(disable: 4056)
48
# pragma warning(disable: 4756)
49
#endif
50
51
/* Max nesting depth of objects and arrays */
52
5.10M
#define CJ5_MAX_NESTING 32
53
54
#define CJ5__FOURCC(_a, _b, _c, _d)                         \
55
    (((uint32_t)(_a) | ((uint32_t)(_b) << 8) |              \
56
      ((uint32_t)(_c) << 16) | ((uint32_t)(_d) << 24)))
57
58
static const uint32_t CJ5__NULL_FOURCC  = CJ5__FOURCC('n', 'u', 'l', 'l');
59
static const uint32_t CJ5__TRUE_FOURCC  = CJ5__FOURCC('t', 'r', 'u', 'e');
60
static const uint32_t CJ5__FALSE_FOURCC = CJ5__FOURCC('f', 'a', 'l', 's');
61
62
typedef struct {
63
    unsigned int pos;
64
    cj5_error_code error;
65
66
    const char *json5;
67
    unsigned int len;
68
69
    unsigned int curr_tok_idx;
70
71
    cj5_token *tokens;
72
    unsigned int token_count;
73
    unsigned int max_tokens;
74
75
    bool stop_early;
76
} cj5__parser;
77
78
static CJ5_INLINE bool
79
1.24G
cj5__isrange(char ch, char from, char to) {
80
1.24G
    return (uint8_t)(ch - from) <= (uint8_t)(to - from);
81
1.24G
}
82
83
948M
#define cj5__isupperchar(ch) cj5__isrange(ch, 'A', 'Z')
84
1.04G
#define cj5__islowerchar(ch) cj5__isrange(ch, 'a', 'z')
85
1.07G
#define cj5__isnum(ch)       cj5__isrange(ch, '0', '9')
86
87
static cj5_token *
88
249M
cj5__alloc_token(cj5__parser *parser) {
89
249M
    cj5_token* token = NULL;
90
249M
    if(parser->token_count < parser->max_tokens) {
91
121M
        token = &parser->tokens[parser->token_count];
92
121M
        memset(token, 0x0, sizeof(cj5_token));
93
127M
    } else {
94
127M
        parser->error = CJ5_ERROR_OVERFLOW;
95
127M
    }
96
97
    // Always increase the index. So we know eventually how many token would be
98
    // required (if there are not enough).
99
249M
    parser->token_count++;
100
249M
    return token;
101
249M
}
102
103
static void
104
15.5M
cj5__parse_string(cj5__parser *parser) {
105
15.5M
    const char *json5 = parser->json5;
106
15.5M
    unsigned int len = parser->len;
107
15.5M
    unsigned int start = parser->pos;
108
15.5M
    char str_open = json5[start];
109
110
15.5M
    parser->pos++;
111
471M
    for(; parser->pos < len; parser->pos++) {
112
471M
        char c = json5[parser->pos];
113
114
        // End of string
115
471M
        if(str_open == c) {
116
15.5M
            cj5_token *token = cj5__alloc_token(parser);
117
15.5M
            if(token) {
118
8.25M
                token->type = CJ5_TOKEN_STRING;
119
8.25M
                token->start = start + 1;
120
8.25M
                token->end = parser->pos - 1;
121
8.25M
                token->size = token->end - token->start + 1;
122
8.25M
                token->parent_id = parser->curr_tok_idx;
123
8.25M
            } 
124
15.5M
            return;
125
15.5M
        }
126
127
        // Unescaped newlines are forbidden
128
455M
        if(c == '\n') {
129
211
            parser->error = CJ5_ERROR_INVALID;
130
211
            return;
131
211
        }
132
133
        // Skip escape character
134
455M
        if(c == '\\') {
135
18.9M
            if(parser->pos + 1 >= len) {
136
36
                parser->error = CJ5_ERROR_INCOMPLETE;
137
36
                return;
138
36
            }
139
18.9M
            parser->pos++;
140
18.9M
        }
141
455M
    }
142
143
    // The file has ended before the string terminates
144
4.06k
    parser->error = CJ5_ERROR_INCOMPLETE;
145
4.06k
}
146
147
// parser->pos is advanced a last time in the next iteration of the main
148
// parse-loop. So we leave parse-primitive in a state where parse->pos points to
149
// the last character of the primitive value (or the quote-character of the
150
// string).
151
static void
152
215M
cj5__parse_primitive(cj5__parser* parser) {
153
215M
    const char* json5 = parser->json5;
154
215M
    unsigned int len = parser->len;
155
215M
    unsigned int start = parser->pos;
156
157
    // String value
158
215M
    if(json5[start] == '\"' ||
159
208M
       json5[start] == '\'') {
160
7.73M
        cj5__parse_string(parser);
161
7.73M
        return;
162
7.73M
    }
163
164
    // Fast comparison of bool, and null.
165
    // Make the comparison case-insensitive.
166
207M
    uint32_t fourcc = 0;
167
207M
    if(start + 3 < len) {
168
203M
        fourcc += (unsigned char)json5[start] | 32U;
169
203M
        fourcc += ((unsigned char)json5[start+1] | 32U) << 8;
170
203M
        fourcc += ((unsigned char)json5[start+2] | 32U) << 16;
171
203M
        fourcc += ((unsigned char)json5[start+3] | 32U) << 24;
172
203M
    }
173
    
174
207M
    cj5_token_type type;
175
207M
    if(fourcc == CJ5__NULL_FOURCC) {
176
3.42M
        type = CJ5_TOKEN_NULL;
177
3.42M
        parser->pos += 3;
178
204M
    } else if(fourcc == CJ5__TRUE_FOURCC) {
179
166k
        type = CJ5_TOKEN_BOOL;
180
166k
        parser->pos += 3;
181
204M
    } else if(fourcc == CJ5__FALSE_FOURCC) {
182
        // "false" has five characters
183
25.9k
        type = CJ5_TOKEN_BOOL;
184
25.9k
        if(start + 4 >= len || (json5[start+4] | 32) != 'e') {
185
127
            parser->error = CJ5_ERROR_INVALID;
186
127
            return;
187
127
        }
188
25.8k
        parser->pos += 4;
189
204M
    } else {
190
        // Numbers are checked for basic compatibility.
191
        // But they are fully parsed only in the cj5_get_XXX functions.
192
204M
        type = CJ5_TOKEN_NUMBER;
193
496M
        for(; parser->pos < len; parser->pos++) {
194
491M
            if(!cj5__isnum(json5[parser->pos]) &&
195
251M
               !(json5[parser->pos] == '.') &&
196
250M
               !cj5__islowerchar(json5[parser->pos]) && 
197
209M
               !cj5__isupperchar(json5[parser->pos]) &&
198
200M
               !(json5[parser->pos] == '+') && !(json5[parser->pos] == '-')) {
199
199M
                break;
200
199M
            }
201
491M
        }
202
204M
        parser->pos--; // Point to the last character that is still inside the
203
                       // primitive value
204
204M
    }
205
206
207M
    cj5_token *token = cj5__alloc_token(parser);
207
207M
    if(token) {
208
99.8M
        token->type = type;
209
99.8M
        token->start = start;
210
99.8M
        token->end = parser->pos;
211
99.8M
        token->size = parser->pos - start + 1;
212
99.8M
        token->parent_id = parser->curr_tok_idx;
213
99.8M
    }
214
207M
}
215
216
static void
217
28.6M
cj5__parse_key(cj5__parser* parser) {
218
28.6M
    const char* json5 = parser->json5;
219
28.6M
    unsigned int start = parser->pos;
220
28.6M
    cj5_token* token;
221
222
    // Key is a a normal string
223
28.6M
    if(json5[start] == '\"' || json5[start] == '\'') {
224
7.82M
        cj5__parse_string(parser);
225
7.82M
        return;
226
7.82M
    }
227
228
    // An unquoted key. Must start with a-ZA-Z_$. Can contain numbers later on.
229
20.7M
    unsigned int len = parser->len;
230
148M
    for(; parser->pos < len; parser->pos++) {
231
148M
        if(cj5__islowerchar(json5[parser->pos]) ||
232
98.8M
           cj5__isupperchar(json5[parser->pos]) ||
233
75.5M
           json5[parser->pos] == '_' || json5[parser->pos] == '$')
234
105M
            continue;
235
43.0M
        if(cj5__isnum(json5[parser->pos]) && parser->pos != start)
236
22.2M
            continue;
237
20.7M
        break;
238
43.0M
    }
239
240
    // An empty key is not allowed
241
20.7M
    if(parser->pos <= start) {
242
1.01k
        parser->error = CJ5_ERROR_INVALID;
243
1.01k
        return;
244
1.01k
    }
245
246
    // Move pos to the last character within the unquoted key
247
20.7M
    parser->pos--;
248
249
20.7M
    token = cj5__alloc_token(parser);
250
20.7M
    if(token) {
251
10.5M
        token->type = CJ5_TOKEN_STRING;
252
10.5M
        token->start = start;
253
10.5M
        token->end = parser->pos;
254
10.5M
        token->size = parser->pos - start + 1;
255
10.5M
        token->parent_id = parser->curr_tok_idx;
256
10.5M
    }
257
20.7M
}
258
259
static void
260
335k
cj5__skip_comment(cj5__parser* parser) {
261
335k
    const char* json5 = parser->json5;
262
263
    // Single-line comment
264
335k
    if(json5[parser->pos] == '#') {
265
220k
    skip_line:
266
60.3M
        while(parser->pos < parser->len) {
267
60.3M
            if(json5[parser->pos] == '\n') {
268
172k
                parser->pos--; // Reparse the newline in the main parse loop
269
172k
                return;
270
172k
            }
271
60.1M
            parser->pos++;
272
60.1M
        }
273
48.6k
        return;
274
220k
    }
275
276
    // Comment begins with '/' but not enough space for another character
277
279k
    if(parser->pos + 1 >= parser->len) {
278
199
        parser->error = CJ5_ERROR_INVALID;
279
199
        return;
280
199
    }
281
279k
    parser->pos++;
282
283
    // Comment begins with '//' -> single-line comment
284
279k
    if(json5[parser->pos] == '/')
285
164k
        goto skip_line;
286
287
    // Multi-line comments begin with '/*' and end with '*/'
288
114k
    if(json5[parser->pos] == '*') {
289
113k
        parser->pos++;
290
19.2M
        for(; parser->pos + 1 < parser->len; parser->pos++) {
291
19.2M
            if(json5[parser->pos] == '*' && json5[parser->pos + 1] == '/') {
292
113k
                parser->pos++;
293
113k
                return;
294
113k
            }
295
19.2M
        }
296
113k
    }
297
298
    // Unknown comment type or the multi-line comment is not terminated
299
942
    parser->error = CJ5_ERROR_INCOMPLETE;
300
942
}
301
302
cj5_result
303
cj5_parse(const char *json5, unsigned int len,
304
          cj5_token *tokens, unsigned int max_tokens,
305
5.82M
          cj5_options *options) {
306
5.82M
    cj5_result r;
307
5.82M
    cj5__parser parser;
308
5.82M
    memset(&parser, 0x0, sizeof(parser));
309
5.82M
    parser.curr_tok_idx = 0;
310
5.82M
    parser.json5 = json5;
311
5.82M
    parser.len = len;
312
5.82M
    parser.tokens = tokens;
313
5.82M
    parser.max_tokens = max_tokens;
314
315
5.82M
    if(options)
316
5.81M
        parser.stop_early = options->stop_early;
317
318
5.82M
    unsigned short depth = 0; // Nesting depth zero means "outside the root object"
319
5.82M
    char nesting[CJ5_MAX_NESTING]; // Contains either '\0', '{' or '[' for the
320
                                   // type of nesting at each depth. '\0'
321
                                   // indicates we are out of the root object.
322
5.82M
    char next[CJ5_MAX_NESTING];    // Next content to parse: 'k' (key), ':', 'v'
323
                                   // (value) or ',' (comma).
324
5.82M
    next[0] = 'v';  // The root is a "value" (object, array or primitive). If we
325
                    // detect a colon after the first value then everything is
326
                    // wrapped into a "virtual root object" and the parsing is
327
                    // restarted.
328
5.82M
    nesting[0] = 0; // Becomes '{' if there is a virtual root object
329
330
5.82M
    cj5_token *token = NULL; // The current token
331
332
5.87M
 start_parsing:
333
507M
    for(; parser.pos < len; parser.pos++) {
334
501M
        char c = json5[parser.pos];
335
501M
        switch(c) {
336
1.70M
        case '\n': // Skip newline and whitespace
337
4.07M
        case '\r':
338
5.69M
        case '\t':
339
6.25M
        case ' ':
340
6.25M
            break;
341
342
55.8k
        case '#': // Skip comment
343
335k
        case '/':
344
335k
            cj5__skip_comment(&parser);
345
335k
            if(parser.error != CJ5_ERROR_NONE &&
346
86.0k
               parser.error != CJ5_ERROR_OVERFLOW)
347
1.14k
                goto finish;
348
334k
            break;
349
350
4.77M
        case '{': // Open an object or array
351
5.10M
        case '[':
352
            // Check the nesting depth
353
5.10M
            if(depth + 1 >= CJ5_MAX_NESTING) {
354
25
                parser.error = CJ5_ERROR_INVALID;
355
25
                goto finish;
356
25
            }
357
358
            // Correct next?
359
5.10M
            if(next[depth] != 'v') {
360
253
                parser.error = CJ5_ERROR_INVALID;
361
253
                goto finish;
362
253
            }
363
364
5.10M
            depth++; // Increase the nesting depth
365
5.10M
            nesting[depth] = c; // Set the nesting type
366
5.10M
            next[depth] = (c == '{') ? 'k' : 'v'; // next is either a key or a value
367
368
            // Create a token for the object or array
369
5.10M
            token = cj5__alloc_token(&parser);
370
5.10M
            if(token) {
371
2.66M
                token->parent_id = parser.curr_tok_idx;
372
2.66M
                token->type = (c == '{') ? CJ5_TOKEN_OBJECT : CJ5_TOKEN_ARRAY;
373
2.66M
                token->start = parser.pos;
374
2.66M
                token->size = 0;
375
2.66M
                parser.curr_tok_idx = parser.token_count - 1; // The new curr_tok_idx
376
                                                              // is for this token
377
2.66M
            }
378
5.10M
            break;
379
380
4.76M
        case '}': // Close an object or array
381
5.07M
        case ']':
382
            // Check the nesting depth. Note that a "virtual root object" at
383
            // depth zero must not be closed.
384
5.07M
            if(depth == 0) {
385
132
                parser.error = CJ5_ERROR_INVALID;
386
132
                goto finish;
387
132
            }
388
389
            // Check and adjust the nesting. Note that ']' - '[' == 2 and '}' -
390
            // '{' == 2. Arrays can always be closed. Objects can only close
391
            // when a key or a comma is expected.
392
5.07M
            if(c - nesting[depth] != 2 ||
393
5.07M
               (c == '}' && next[depth] != 'k' && next[depth] != ',')) {
394
95
                parser.error = CJ5_ERROR_INVALID;
395
95
                goto finish;
396
95
            }
397
398
5.07M
            if(token) {
399
                // Finalize the current token
400
2.63M
                token->end = parser.pos;
401
402
                // Move to the parent and increase the parent size. Omit this
403
                // when we leave the root (parent the same as the current
404
                // token).
405
2.63M
                if(parser.curr_tok_idx != token->parent_id) {
406
2.58M
                    parser.curr_tok_idx = token->parent_id;
407
2.58M
                    token = &tokens[token->parent_id];
408
2.58M
                    token->size++;
409
2.58M
                }
410
2.63M
            }
411
412
            // Step one level up
413
5.07M
            depth--;
414
5.07M
            next[depth] = (depth == 0) ? 0 : ','; // zero if we step out the root
415
                                                  // object. then we do not look for
416
                                                  // another element.
417
418
            // The first element was successfully parsed. Stop early or try to
419
            // parse the full input string?
420
5.07M
            if(depth == 0 && parser.stop_early)
421
27.3k
                goto finish;
422
423
5.05M
            break;
424
425
28.6M
        case ':': // Colon (between key and value)
426
28.6M
            if(next[depth] != ':') {
427
51.6k
                parser.error = CJ5_ERROR_INVALID;
428
51.6k
                goto finish;
429
51.6k
            }
430
28.6M
            next[depth] = 'v';
431
28.6M
            break;
432
433
212M
        case ',': // Comma
434
212M
            if(next[depth] != ',') {
435
176
                parser.error = CJ5_ERROR_INVALID;
436
176
                goto finish;
437
176
            }
438
212M
            next[depth] = (nesting[depth] == '{') ? 'k' : 'v';
439
212M
            break;
440
441
244M
        default: // Value or key
442
244M
            if(next[depth] == 'v') {
443
215M
                cj5__parse_primitive(&parser); // Parse primitive value
444
215M
                if(nesting[depth] != 0) {
445
                    // Parent is object or array
446
209M
                    if(token)
447
189M
                        token->size++;
448
209M
                    next[depth] = ',';
449
209M
                } else {
450
                    // The current value was the root element. Don't look for
451
                    // any next element.
452
5.76M
                    next[depth] = 0;
453
454
                    // The first element was successfully parsed. Stop early or try to
455
                    // parse the full input string?
456
5.76M
                    if(parser.stop_early)
457
0
                        goto finish;
458
5.76M
                }
459
215M
            } else if(next[depth] == 'k') {
460
28.6M
                cj5__parse_key(&parser);
461
28.6M
                if(token)
462
24.7M
                    token->size++; // Keys count towards the length
463
28.6M
                next[depth] = ':';
464
28.6M
            } else {
465
2.79k
                parser.error = CJ5_ERROR_INVALID;
466
2.79k
            }
467
468
244M
            if(parser.error && parser.error != CJ5_ERROR_OVERFLOW)
469
8.24k
                goto finish;
470
471
244M
            break;
472
501M
        }
473
501M
    }
474
475
    // Are we back to the initial nesting depth?
476
5.79M
    if(depth != 0) {
477
1.54k
        parser.error = CJ5_ERROR_INCOMPLETE;
478
1.54k
        goto finish;
479
1.54k
    }
480
481
    // Close the virtual root object if there is one
482
5.78M
    if(nesting[0] == '{' && parser.error != CJ5_ERROR_OVERFLOW) {
483
        // Check the we end after a complete key-value pair (or dangling comma)
484
50.5k
        if(next[0] != 'k' && next[0] != ',')
485
489
            parser.error = CJ5_ERROR_INVALID;
486
50.5k
        tokens[0].end = parser.pos - 1;
487
50.5k
    }
488
489
5.87M
 finish:
490
    // If parsing failed at the initial nesting depth, create a virtual root object
491
    // and restart parsing.
492
5.87M
    if(parser.error != CJ5_ERROR_NONE &&
493
67.2k
       parser.error != CJ5_ERROR_OVERFLOW &&
494
63.7k
       depth == 0 && nesting[0] != '{') {
495
55.7k
        parser.token_count = 0;
496
55.7k
        token = cj5__alloc_token(&parser);
497
55.7k
        if(token) {
498
55.7k
            token->parent_id = 0;
499
55.7k
            token->type = CJ5_TOKEN_OBJECT;
500
55.7k
            token->start = 0;
501
55.7k
            token->size = 0;
502
503
55.7k
            nesting[0] = '{';
504
55.7k
            next[0] = 'k';
505
506
55.7k
            parser.curr_tok_idx = 0;
507
55.7k
            parser.pos = 0;
508
55.7k
            parser.error = CJ5_ERROR_NONE;
509
55.7k
            goto start_parsing;
510
55.7k
        }
511
55.7k
    }
512
513
5.82M
    memset(&r, 0x0, sizeof(r));
514
5.82M
    r.error = parser.error;
515
5.82M
    r.error_pos = parser.pos;
516
5.82M
    r.num_tokens = parser.token_count; // How many tokens (would) have been
517
                                       // consumed by the parser?
518
519
    // Not a single token was parsed -> return an error
520
5.82M
    if(r.num_tokens == 0)
521
386
        r.error = CJ5_ERROR_INCOMPLETE;
522
523
    // Set the tokens and original string only if successfully parsed
524
5.82M
    if(r.error == CJ5_ERROR_NONE) {
525
5.81M
        r.tokens = tokens;
526
5.81M
        r.json5 = json5;
527
5.81M
    }
528
529
5.82M
    return r;
530
5.87M
}
531
532
cj5_error_code
533
0
cj5_get_bool(const cj5_result *r, unsigned int tok_index, bool *out) {
534
0
    const cj5_token *token = &r->tokens[tok_index];
535
0
    if(token->type != CJ5_TOKEN_BOOL)
536
0
        return CJ5_ERROR_INVALID;
537
0
    *out = (r->json5[token->start] == 't');
538
0
    return CJ5_ERROR_NONE;
539
0
}
540
541
cj5_error_code
542
0
cj5_get_float(const cj5_result *r, unsigned int tok_index, double *out) {
543
0
    const cj5_token *token = &r->tokens[tok_index];
544
0
    if(token->type != CJ5_TOKEN_NUMBER)
545
0
        return CJ5_ERROR_INVALID;
546
547
0
    const char *tokstr = &r->json5[token->start];
548
0
    size_t toksize = token->end - token->start + 1;
549
0
    if(toksize == 0)
550
0
        return CJ5_ERROR_INVALID;
551
552
    // Skip prefixed +/-
553
0
    bool neg = false;
554
0
    if(tokstr[0] == '+' || tokstr[0] == '-') {
555
0
        neg = (tokstr[0] == '-');
556
0
        tokstr++;
557
0
        toksize--;
558
0
    }
559
560
    // Detect prefixed inf/nan
561
0
    if(strncmp(tokstr, "Infinity", toksize) == 0) {
562
0
        *out = neg ? -INFINITY : INFINITY;
563
0
        return CJ5_ERROR_NONE;
564
0
    } else if(strncmp(tokstr, "NaN", toksize) == 0) {
565
0
        *out = NAN;
566
0
        return CJ5_ERROR_NONE;
567
0
    }
568
569
    // reset the +/- detection and parse
570
0
    tokstr = &r->json5[token->start];
571
0
    toksize = token->end - token->start + 1;
572
0
    size_t parsed = parseDouble(tokstr, toksize, out);
573
574
    // There must only be whitespace between the end of the parsed number and
575
    // the end of the token
576
0
    for(size_t i = parsed; i < toksize; i++) {
577
0
        if(tokstr[i] != ' ' && tokstr[i] -'\t' >= 5)
578
0
            return CJ5_ERROR_INVALID;
579
0
    }
580
581
0
    return (parsed != 0) ? CJ5_ERROR_NONE : CJ5_ERROR_INVALID;
582
0
}
583
584
cj5_error_code
585
cj5_get_int(const cj5_result *r, unsigned int tok_index,
586
0
            int64_t *out) {
587
0
    const cj5_token *token = &r->tokens[tok_index];
588
0
    if(token->type != CJ5_TOKEN_NUMBER)
589
0
        return CJ5_ERROR_INVALID;
590
0
    size_t parsed = parseInt64(&r->json5[token->start], token->size, out);
591
0
    return (parsed != 0) ? CJ5_ERROR_NONE : CJ5_ERROR_INVALID;
592
0
}
593
594
cj5_error_code
595
cj5_get_uint(const cj5_result *r, unsigned int tok_index,
596
0
             uint64_t *out) {
597
0
    const cj5_token *token = &r->tokens[tok_index];
598
0
    if(token->type != CJ5_TOKEN_NUMBER)
599
0
        return CJ5_ERROR_INVALID;
600
0
    size_t parsed = parseUInt64(&r->json5[token->start], token->size, out);
601
0
    return (parsed != 0) ? CJ5_ERROR_NONE : CJ5_ERROR_INVALID;
602
0
}
603
604
static const uint32_t SURROGATE_OFFSET = 0x10000u - (0xD800u << 10) - 0xDC00;
605
606
static cj5_error_code
607
1.06M
parse_codepoint(const char *pos, uint32_t *out_utf) {
608
1.06M
    uint32_t utf = 0;
609
5.29M
    for(unsigned int i = 0; i < 4; i++) {
610
4.23M
        char byte = pos[i];
611
4.23M
        if(cj5__isnum(byte)) {
612
3.09M
            byte = (char)(byte - '0');
613
3.09M
        } else if(cj5__isrange(byte, 'a', 'f')) {
614
1.09M
            byte = (char)(byte - ('a' - 10));
615
1.09M
        } else if(cj5__isrange(byte, 'A', 'F')) {
616
45.3k
            byte = (char)(byte - ('A' - 10));
617
45.3k
        } else {
618
2.67k
            return CJ5_ERROR_INVALID;
619
2.67k
        }
620
4.23M
        utf = (utf << 4) | ((uint8_t)byte & 0xF);
621
4.23M
    }
622
1.05M
    *out_utf = utf;
623
1.05M
    return CJ5_ERROR_NONE;
624
1.06M
}
625
626
cj5_error_code
627
cj5_get_str(const cj5_result *r, unsigned int tok_index,
628
1.28M
            char *buf, unsigned int *buflen) {
629
1.28M
    const cj5_token *token = &r->tokens[tok_index];
630
1.28M
    if(token->type != CJ5_TOKEN_STRING) {
631
1
        buf[0] = 0;
632
1
        if(buflen)
633
1
            *buflen = 0;
634
1
        return CJ5_ERROR_INVALID;
635
1
    }
636
637
1.28M
    const char *pos = &r->json5[token->start];
638
1.28M
    const char *end = &r->json5[token->end + 1];
639
1.28M
    unsigned int outpos = 0;
640
1.28M
    cj5_error_code error = CJ5_ERROR_NONE;
641
163M
    for(; pos < end; pos++) {
642
161M
        uint8_t c = (uint8_t)*pos;
643
        // Unprintable ascii characters must be escaped
644
161M
        if(c < ' ' || c == 127) {
645
4.26k
            error = CJ5_ERROR_INVALID;
646
4.26k
            goto done;
647
4.26k
        }
648
649
        // Unescaped Ascii character or utf8 byte
650
161M
        if(c != '\\') {
651
149M
            buf[outpos++] = (char)c;
652
149M
            continue;
653
149M
        }
654
655
        // End of input before the escaped character
656
12.5M
        if(pos + 1 >= end) {
657
0
            error = CJ5_ERROR_INCOMPLETE;
658
0
            goto done;
659
0
        }
660
661
        // Process escaped character
662
12.5M
        pos++;
663
12.5M
        c = (uint8_t)*pos;
664
12.5M
        switch(c) {
665
89.1k
        case 'b': buf[outpos++] = '\b'; break;
666
36.0k
        case 'f': buf[outpos++] = '\f'; break;
667
13.4k
        case 'r': buf[outpos++] = '\r'; break;
668
126k
        case 'n': buf[outpos++] = '\n'; break;
669
12.9k
        case 't': buf[outpos++] = '\t'; break;
670
11.2M
        default:  buf[outpos++] = (char)c; break;
671
1.04M
        case 'u': {
672
            // Parse a unicode code point
673
1.04M
            if(pos + 4 >= end) {
674
430
                error = CJ5_ERROR_INCOMPLETE;
675
430
                goto done;
676
430
            }
677
1.04M
            pos++;
678
1.04M
            uint32_t utf;
679
1.04M
            error = parse_codepoint(pos, &utf);
680
1.04M
            if(error != CJ5_ERROR_NONE)
681
1.66k
                goto done;
682
1.04M
            pos += 3;
683
684
            // Parse a surrogate pair
685
1.04M
            if(0xd800 <= utf && utf <= 0xdfff) {
686
16.2k
                if(pos + 6 >= end) {
687
457
                    error = CJ5_ERROR_INVALID;
688
457
                    goto done;
689
457
                }
690
15.8k
                if(pos[1] != '\\' && pos[2] != 'u') {
691
452
                    error = CJ5_ERROR_INVALID;
692
452
                    goto done;
693
452
                }
694
15.3k
                pos += 3;
695
15.3k
                uint32_t utf2;
696
15.3k
                error = parse_codepoint(pos, &utf2);
697
15.3k
                if(error != CJ5_ERROR_NONE)
698
1.01k
                    goto done;
699
14.3k
                pos += 3;
700
                // High or low surrogate pair
701
14.3k
                utf = (utf <= 0xdbff) ?
702
6.41k
                    (utf << 10) + utf2 + SURROGATE_OFFSET :
703
14.3k
                    (utf2 << 10) + utf + SURROGATE_OFFSET;
704
14.3k
            }
705
706
            // Write the utf8 bytes of the code point
707
1.04M
            unsigned len = utf8_from_codepoint((unsigned char*)buf + outpos, utf);
708
1.04M
            if(len == 0) {
709
723
                error = CJ5_ERROR_INVALID; // Not a utf8 string
710
723
                goto done;
711
723
            }
712
1.04M
            outpos += len;
713
1.04M
            break;
714
1.04M
        }
715
12.5M
        }
716
12.5M
    }
717
718
1.28M
 done:
719
    // Always leave buf as a valid, NUL-terminated string, even when decoding
720
    // fails midway. Callers still must check the returned error code.
721
1.28M
    buf[outpos] = 0;
722
723
    // Set the output length
724
1.28M
    if(buflen)
725
1.28M
        *buflen = outpos;
726
1.28M
    return error;
727
1.28M
}
728
729
void
730
5.81k
cj5_skip(const cj5_result *r, unsigned int *tok_index) {
731
5.81k
    unsigned int idx = *tok_index;
732
5.81k
    unsigned int end = r->tokens[idx].end;
733
7.20k
    do { idx++; } while(idx < r->num_tokens &&
734
4.50k
                        r->tokens[idx].start < end);
735
5.81k
    *tok_index = idx;
736
5.81k
}
737
738
cj5_error_code
739
cj5_find(const cj5_result *r, unsigned int *tok_index,
740
0
         const char *key) {
741
    // It has to be an object
742
0
    unsigned int idx = *tok_index;
743
0
    if(r->tokens[idx].type != CJ5_TOKEN_OBJECT)
744
0
        return CJ5_ERROR_INVALID;
745
0
    unsigned int size = r->tokens[idx].size;
746
747
    // Skip to the first key
748
0
    idx++;
749
750
    // Size is number of keys + number of values
751
0
    for(unsigned int i = 0; i < size; i += 2) {
752
        // Key has to be a string
753
0
        if(r->tokens[idx].type != CJ5_TOKEN_STRING)
754
0
            return CJ5_ERROR_INVALID;
755
756
        // Return the index to the value if the key matches
757
0
        const char *keystart = &r->json5[r->tokens[idx].start];
758
0
        size_t keysize = r->tokens[idx].end - r->tokens[idx].start + 1;
759
0
        if(strncmp(key, keystart, keysize) == 0) {
760
0
            *tok_index = idx + 1;
761
0
            return CJ5_ERROR_NONE;
762
0
        }
763
764
        // Skip over the value
765
0
        idx++;
766
0
        cj5_skip(r, &idx);
767
0
    }
768
0
    return CJ5_ERROR_NOTFOUND;
769
0
}