blob: 96504c5eac2309b601b427c5aab5f42117fe3ff4 [file] [log] [blame]
Radek Krejci50f0c6b2020-06-18 16:31:48 +02001/**
2 * @file json.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief Generic JSON format parser routines.
5 *
6 * Copyright (c) 2020 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_JSON_H_
16#define LY_JSON_H_
17
18#include <stddef.h>
19#include <stdint.h>
20
21#include "log.h"
22#include "set.h"
23
24struct ly_ctx;
Radek Krejci47fab892020-11-05 17:02:41 +010025struct ly_in;
Radek Krejci50f0c6b2020-06-18 16:31:48 +020026
27/* Macro to test if character is whitespace */
28#define is_jsonws(c) (c == 0x20 || c == 0x9 || c == 0xa || c == 0xd)
29
30/* Macro to test if character is valid string character */
31#define is_jsonstrchar(c) (c == 0x20 || c == 0x21 || (c >= 0x23 && c <= 0x5b) || (c >= 0x5d && c <= 0x10ffff))
32
33/**
34 * @brief Status of the parser providing information what is expected next (which function is supposed to be called).
35 */
36enum LYJSON_PARSER_STATUS {
37 LYJSON_ERROR, /* JSON parser error - value is used as an error return code */
38 LYJSON_ROOT, /* JSON document root, used internally */
39 LYJSON_OBJECT, /* JSON object */
40 LYJSON_OBJECT_CLOSED, /* JSON object closed */
41 LYJSON_OBJECT_EMPTY, /* empty JSON object { }*/
42 LYJSON_ARRAY, /* JSON array */
43 LYJSON_ARRAY_CLOSED, /* JSON array closed */
44 LYJSON_ARRAY_EMPTY, /* empty JSON array */
45 LYJSON_NUMBER, /* JSON number value */
46 LYJSON_STRING, /* JSON string value */
47 LYJSON_FALSE, /* JSON false value */
48 LYJSON_TRUE, /* JSON true value */
49 LYJSON_NULL, /* JSON null value */
50 LYJSON_END /* end of input data */
51};
52
53struct lyjson_ctx {
Radek Krejci1798aae2020-07-14 13:26:06 +020054 const struct ly_ctx *ctx;
Radek Krejci1798aae2020-07-14 13:26:06 +020055 struct ly_in *in; /* input structure */
Radek Krejci50f0c6b2020-06-18 16:31:48 +020056
Radek Krejci84d7fd72021-07-14 18:32:21 +020057 struct ly_set status; /* stack of ::LYJSON_PARSER_STATUS values corresponding to the JSON items being processed */
Radek Krejci50f0c6b2020-06-18 16:31:48 +020058
Radek Krejci84d7fd72021-07-14 18:32:21 +020059 const char *value; /* ::LYJSON_STRING, ::LYJSON_NUMBER, ::LYJSON_OBJECT */
60 size_t value_len; /* ::LYJSON_STRING, ::LYJSON_NUMBER, ::LYJSON_OBJECT */
61 ly_bool dynamic; /* ::LYJSON_STRING, ::LYJSON_NUMBER, ::LYJSON_OBJECT */
aPiecek93582ed2021-05-25 14:49:06 +020062 uint32_t depth; /* current number of nested blocks, see ::LY_MAX_BLOCK_DEPTH */
Radek Krejci50f0c6b2020-06-18 16:31:48 +020063
64 struct {
65 enum LYJSON_PARSER_STATUS status;
66 uint32_t status_count;
67 const char *value;
68 size_t value_len;
Radek Krejci857189e2020-09-01 13:26:36 +020069 ly_bool dynamic;
aPiecek93582ed2021-05-25 14:49:06 +020070 uint32_t depth;
Radek Krejci50f0c6b2020-06-18 16:31:48 +020071 const char *input;
72 } backup;
73};
74
75/**
76 * @brief Create a new JSON parser context and start parsing.
77 *
78 * @param[in] ctx libyang context.
79 * @param[in] in JSON string data to parse.
Radek Krejci84d7fd72021-07-14 18:32:21 +020080 * @param[out] jsonctx New JSON context with status referring the parsed value.
Radek Krejci50f0c6b2020-06-18 16:31:48 +020081 * @return LY_ERR value.
82 */
83LY_ERR lyjson_ctx_new(const struct ly_ctx *ctx, struct ly_in *in, struct lyjson_ctx **jsonctx);
84
85/**
86 * @brief Get status of the parser as the last/previous parsed token
87 *
88 * @param[in] jsonctx JSON context to check.
89 * @param[in] index Index of the token, starting by 0 for the last token
Radek Krejci84d7fd72021-07-14 18:32:21 +020090 * @return ::LYJSON_ERROR in case of invalid index, other ::LYJSON_PARSER_STATUS corresponding to the token.
Radek Krejci50f0c6b2020-06-18 16:31:48 +020091 */
92enum LYJSON_PARSER_STATUS lyjson_ctx_status(struct lyjson_ctx *jsonctx, uint32_t index);
93
94/**
95 * @brief Get string representation of the JSON context status (token).
96 *
97 * @param[in] status Context status (aka JSON token)
98 * @return String representation of the @p status.
99 */
Michal Vasko22df3f02020-08-24 13:29:22 +0200100const char *lyjson_token2str(enum LYJSON_PARSER_STATUS status);
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200101
102/**
Radek Krejci84d7fd72021-07-14 18:32:21 +0200103 * @brief Move to the next JSON artifact and update parser status.
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200104 *
105 * @param[in] jsonctx XML context to move.
106 * @param[out] status Optional parameter to provide new parser status
107 * @return LY_ERR value.
108 */
109LY_ERR lyjson_ctx_next(struct lyjson_ctx *jsonctx, enum LYJSON_PARSER_STATUS *status);
110
111/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200112 * @brief Backup the JSON parser context's state To restore the backup, use ::lyjson_ctx_restore().
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200113 * @param[in] jsonctx JSON parser context to backup.
114 */
115void lyjson_ctx_backup(struct lyjson_ctx *jsonctx);
116
117/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200118 * @brief REstore the JSON parser context's state from the backup created by ::lyjson_ctx_backup().
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200119 * @param[in] jsonctx JSON parser context to restore.
120 */
121void lyjson_ctx_restore(struct lyjson_ctx *jsonctx);
122
123/**
124 * @brief Remove the allocated working memory of the context.
125 *
126 * @param[in] jsonctx JSON context to clear.
127 */
128void lyjson_ctx_free(struct lyjson_ctx *jsonctx);
129
130#endif /* LY_JSON_H_ */