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