blob: 8373284ced92434f4cfb12fc5fc808668003ca49 [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;
25struct ly_out;
26struct ly_prefix;
27
28/* Macro to test if character is whitespace */
29#define is_jsonws(c) (c == 0x20 || c == 0x9 || c == 0xa || c == 0xd)
30
31/* Macro to test if character is valid string character */
32#define is_jsonstrchar(c) (c == 0x20 || c == 0x21 || (c >= 0x23 && c <= 0x5b) || (c >= 0x5d && c <= 0x10ffff))
33
34/**
35 * @brief Status of the parser providing information what is expected next (which function is supposed to be called).
36 */
37enum LYJSON_PARSER_STATUS {
38 LYJSON_ERROR, /* JSON parser error - value is used as an error return code */
39 LYJSON_ROOT, /* JSON document root, used internally */
40 LYJSON_OBJECT, /* JSON object */
41 LYJSON_OBJECT_CLOSED, /* JSON object closed */
42 LYJSON_OBJECT_EMPTY, /* empty JSON object { }*/
43 LYJSON_ARRAY, /* JSON array */
44 LYJSON_ARRAY_CLOSED, /* JSON array closed */
45 LYJSON_ARRAY_EMPTY, /* empty JSON array */
46 LYJSON_NUMBER, /* JSON number value */
47 LYJSON_STRING, /* JSON string value */
48 LYJSON_FALSE, /* JSON false value */
49 LYJSON_TRUE, /* JSON true value */
50 LYJSON_NULL, /* JSON null value */
51 LYJSON_END /* end of input data */
52};
53
54struct lyjson_ctx {
55
56 struct ly_set status; /* stack of LYJSON_PARSER_STATUS values corresponding to the JSON items being processed */
57
58 const char *value; /* LYJSON_STRING, LYJSON_NUMBER, LYJSON_OBJECT */
59 size_t value_len; /* LYJSON_STRING, LYJSON_NUMBER, LYJSON_OBJECT */
60 int dynamic; /* LYJSON_STRING, LYJSON_NUMBER, LYJSON_OBJECT */
61
62 struct {
63 enum LYJSON_PARSER_STATUS status;
64 uint32_t status_count;
65 const char *value;
66 size_t value_len;
67 int dynamic;
68 const char *input;
69 } backup;
70};
71
72/**
73 * @brief Create a new JSON parser context and start parsing.
74 *
75 * @param[in] ctx libyang context.
76 * @param[in] in JSON string data to parse.
77 * @param[out] jsonctx New JSON context with status ::LYJSON_VALUE.
78 * @return LY_ERR value.
79 */
80LY_ERR lyjson_ctx_new(const struct ly_ctx *ctx, struct ly_in *in, struct lyjson_ctx **jsonctx);
81
82/**
83 * @brief Get status of the parser as the last/previous parsed token
84 *
85 * @param[in] jsonctx JSON context to check.
86 * @param[in] index Index of the token, starting by 0 for the last token
87 * @return LYJSON_ERROR in case of invalid index, other LYJSON_PARSER_STATUS corresponding to the token.
88 */
89enum LYJSON_PARSER_STATUS lyjson_ctx_status(struct lyjson_ctx *jsonctx, uint32_t index);
90
91/**
92 * @brief Get string representation of the JSON context status (token).
93 *
94 * @param[in] status Context status (aka JSON token)
95 * @return String representation of the @p status.
96 */
97const char* lyjson_token2str(enum LYJSON_PARSER_STATUS status);
98
99/**
100 * @brief Move to the next JSON artefact and update parser status.
101 *
102 * @param[in] jsonctx XML context to move.
103 * @param[out] status Optional parameter to provide new parser status
104 * @return LY_ERR value.
105 */
106LY_ERR lyjson_ctx_next(struct lyjson_ctx *jsonctx, enum LYJSON_PARSER_STATUS *status);
107
108/**
109 * @brief Backup the JSON parser context's state To restore the backup, use lyjson_ctx_restore().
110 * @param[in] jsonctx JSON parser context to backup.
111 */
112void lyjson_ctx_backup(struct lyjson_ctx *jsonctx);
113
114/**
115 * @brief REstore the JSON parser context's state from the backup created by lyjson_ctx_backup().
116 * @param[in] jsonctx JSON parser context to restore.
117 */
118void lyjson_ctx_restore(struct lyjson_ctx *jsonctx);
119
120/**
121 * @brief Remove the allocated working memory of the context.
122 *
123 * @param[in] jsonctx JSON context to clear.
124 */
125void lyjson_ctx_free(struct lyjson_ctx *jsonctx);
126
127#endif /* LY_JSON_H_ */