blob: ba2288434a6e5decefb97ed752a3cac9b4b36a51 [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
57 struct ly_set status; /* stack of LYJSON_PARSER_STATUS values corresponding to the JSON items being processed */
58
59 const char *value; /* LYJSON_STRING, LYJSON_NUMBER, LYJSON_OBJECT */
60 size_t value_len; /* LYJSON_STRING, LYJSON_NUMBER, LYJSON_OBJECT */
Radek Krejci857189e2020-09-01 13:26:36 +020061 ly_bool dynamic; /* LYJSON_STRING, LYJSON_NUMBER, LYJSON_OBJECT */
Radek Krejci50f0c6b2020-06-18 16:31:48 +020062
63 struct {
64 enum LYJSON_PARSER_STATUS status;
65 uint32_t status_count;
66 const char *value;
67 size_t value_len;
Radek Krejci857189e2020-09-01 13:26:36 +020068 ly_bool dynamic;
Radek Krejci50f0c6b2020-06-18 16:31:48 +020069 const char *input;
70 } backup;
71};
72
73/**
74 * @brief Create a new JSON parser context and start parsing.
75 *
76 * @param[in] ctx libyang context.
77 * @param[in] in JSON string data to parse.
78 * @param[out] jsonctx New JSON context with status ::LYJSON_VALUE.
79 * @return LY_ERR value.
80 */
81LY_ERR lyjson_ctx_new(const struct ly_ctx *ctx, struct ly_in *in, struct lyjson_ctx **jsonctx);
82
83/**
84 * @brief Get status of the parser as the last/previous parsed token
85 *
86 * @param[in] jsonctx JSON context to check.
87 * @param[in] index Index of the token, starting by 0 for the last token
88 * @return LYJSON_ERROR in case of invalid index, other LYJSON_PARSER_STATUS corresponding to the token.
89 */
90enum LYJSON_PARSER_STATUS lyjson_ctx_status(struct lyjson_ctx *jsonctx, uint32_t index);
91
92/**
93 * @brief Get string representation of the JSON context status (token).
94 *
95 * @param[in] status Context status (aka JSON token)
96 * @return String representation of the @p status.
97 */
Michal Vasko22df3f02020-08-24 13:29:22 +020098const char *lyjson_token2str(enum LYJSON_PARSER_STATUS status);
Radek Krejci50f0c6b2020-06-18 16:31:48 +020099
100/**
101 * @brief Move to the next JSON artefact and update parser status.
102 *
103 * @param[in] jsonctx XML context to move.
104 * @param[out] status Optional parameter to provide new parser status
105 * @return LY_ERR value.
106 */
107LY_ERR lyjson_ctx_next(struct lyjson_ctx *jsonctx, enum LYJSON_PARSER_STATUS *status);
108
109/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200110 * @brief Backup the JSON parser context's state To restore the backup, use ::lyjson_ctx_restore().
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200111 * @param[in] jsonctx JSON parser context to backup.
112 */
113void lyjson_ctx_backup(struct lyjson_ctx *jsonctx);
114
115/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200116 * @brief REstore the JSON parser context's state from the backup created by ::lyjson_ctx_backup().
Radek Krejci50f0c6b2020-06-18 16:31:48 +0200117 * @param[in] jsonctx JSON parser context to restore.
118 */
119void lyjson_ctx_restore(struct lyjson_ctx *jsonctx);
120
121/**
122 * @brief Remove the allocated working memory of the context.
123 *
124 * @param[in] jsonctx JSON context to clear.
125 */
126void lyjson_ctx_free(struct lyjson_ctx *jsonctx);
127
128#endif /* LY_JSON_H_ */