blob: f807d4d6b22935be008c431ca0395fe16b7b08c4 [file] [log] [blame]
Radek Krejcif0e1ba52020-05-22 15:14:35 +02001/**
2 * @file parser_internal.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vaskod027f382023-02-10 09:13:25 +01004 * @author Michal Vasko <mvasko@cesnet.cz>
Radek Krejcif0e1ba52020-05-22 15:14:35 +02005 * @brief Internal structures and functions for libyang parsers
6 *
Michal Vaskod027f382023-02-10 09:13:25 +01007 * Copyright (c) 2020 - 2023 CESNET, z.s.p.o.
Radek Krejcif0e1ba52020-05-22 15:14:35 +02008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
16#ifndef LY_PARSER_INTERNAL_H_
17#define LY_PARSER_INTERNAL_H_
18
Michal Vaskoe0665742021-02-11 11:08:44 +010019#include "parser_data.h"
aPiecek704f8e92021-08-25 13:35:05 +020020#include "set.h"
Radek Krejcif0e1ba52020-05-22 15:14:35 +020021
Radek Krejci1798aae2020-07-14 13:26:06 +020022struct lyd_ctx;
Michal Vaskoafac7822020-10-20 14:22:26 +020023struct ly_in;
Michal Vasko193dacd2022-10-13 08:43:05 +020024struct lysp_ext_substmt;
25struct lysp_stmt;
Michal Vaskod0625d72022-10-06 15:02:50 +020026struct lysp_yang_ctx;
27struct lysp_yin_ctx;
28struct lysp_ctx;
Michal Vaskoc8a230d2020-08-14 12:17:10 +020029
Radek Krejci1798aae2020-07-14 13:26:06 +020030/**
Michal Vaskod027f382023-02-10 09:13:25 +010031 * @brief Check data parser error taking into account multi-error validation.
32 *
33 * @param[in] r Local return value.
34 * @param[in] err_cmd Command to perform on any error.
35 * @param[in] lydctx Data parser context.
36 * @param[in] label Label to go to on fatal error.
37 */
38#define LY_DPARSER_ERR_GOTO(r, err_cmd, lydctx, label) \
39 if (r) { \
40 err_cmd; \
41 if ((r != LY_EVALID) || !lydctx || !(lydctx->val_opts & LYD_VALIDATE_MULTI_ERROR)) { \
42 goto label; \
43 } \
44 }
45
46/**
Radek Krejci84d7fd72021-07-14 18:32:21 +020047 * @brief Callback for ::lyd_ctx to free the structure
Radek Krejci1798aae2020-07-14 13:26:06 +020048 *
49 * @param[in] ctx Data parser context to free.
50 */
51typedef void (*lyd_ctx_free_clb)(struct lyd_ctx *ctx);
52
53/**
Michal Vaskoe0665742021-02-11 11:08:44 +010054 * @brief Internal data parser flags.
55 */
56#define LYD_INTOPT_RPC 0x01 /**< RPC request is being parsed. */
57#define LYD_INTOPT_ACTION 0x02 /**< Action request is being parsed. */
58#define LYD_INTOPT_REPLY 0x04 /**< RPC/action reply is being parsed. */
59#define LYD_INTOPT_NOTIF 0x08 /**< Notification is being parsed. */
Michal Vasko02ed9d82021-07-15 14:58:04 +020060#define LYD_INTOPT_ANY 0x10 /**< Anydata/anyxml content is being parsed, there can be anything. */
61#define LYD_INTOPT_WITH_SIBLINGS 0x20 /**< Parse the whole input with any siblings. */
62#define LYD_INTOPT_NO_SIBLINGS 0x40 /**< If there are any siblings, return an error. */
Michal Vaskoe0665742021-02-11 11:08:44 +010063
64/**
Radek Krejci1798aae2020-07-14 13:26:06 +020065 * @brief Internal (common) context for YANG data parsers.
Radek Krejci4f2e3e52021-03-30 14:20:28 +020066 *
Radek Krejci84d7fd72021-07-14 18:32:21 +020067 * Covers ::lyd_xml_ctx, ::lyd_json_ctx and ::lyd_lyb_ctx.
Radek Krejci1798aae2020-07-14 13:26:06 +020068 */
69struct lyd_ctx {
Radek Krejcif16e2542021-02-17 15:39:23 +010070 const struct lysc_ext_instance *ext; /**< extension instance possibly changing document root context of the data being parsed */
Michal Vaskoe0665742021-02-11 11:08:44 +010071 uint32_t parse_opts; /**< various @ref dataparseroptions. */
72 uint32_t val_opts; /**< various @ref datavalidationoptions. */
73 uint32_t int_opts; /**< internal parser options */
Radek Krejci1798aae2020-07-14 13:26:06 +020074 uint32_t path_len; /**< used bytes in the path buffer */
Michal Vasko26bbb272022-08-02 14:54:33 +020075
Radek Krejci1798aae2020-07-14 13:26:06 +020076#define LYD_PARSER_BUFSIZE 4078
77 char path[LYD_PARSER_BUFSIZE]; /**< buffer for the generated path */
Michal Vaskoc43c8ab2021-03-05 13:32:44 +010078 struct ly_set node_when; /**< set of nodes with "when" conditions */
Michal Vasko32711382020-12-03 14:14:31 +010079 struct ly_set node_types; /**< set of nodes validated with LY_EINCOMPLETE result */
80 struct ly_set meta_types; /**< set of metadata validated with LY_EINCOMPLETE result */
Michal Vasko135719f2022-08-25 12:18:17 +020081 struct ly_set ext_node; /**< set of nodes with extension instances to validate */
82 struct ly_set ext_val; /**< set of nested subtrees parsed by extensions to validate */
Radek Krejci1798aae2020-07-14 13:26:06 +020083 struct lyd_node *op_node; /**< if an RPC/action/notification is being parsed, store the pointer to it */
84
85 /* callbacks */
Radek Krejci0bff0b12020-08-15 18:37:50 +020086 lyd_ctx_free_clb free; /**< destructor */
Radek Krejci1798aae2020-07-14 13:26:06 +020087
88 struct {
Radek Krejci0bff0b12020-08-15 18:37:50 +020089 const struct ly_ctx *ctx; /**< libyang context */
90 uint64_t line; /**< current line */
91 struct ly_in *in; /**< input structure */
92 } *data_ctx; /**< generic pointer supposed to map to and access (common part of) XML/JSON/... parser contexts */
Radek Krejci1798aae2020-07-14 13:26:06 +020093};
94
Radek Krejci7931b192020-06-25 17:05:03 +020095/**
Michal Vasko03fbaed2021-07-15 09:18:32 +020096 * @brief Internal context for XML data parser.
97 */
98struct lyd_xml_ctx {
99 const struct lysc_ext_instance *ext;
100 uint32_t parse_opts;
101 uint32_t val_opts;
102 uint32_t int_opts;
103 uint32_t path_len;
104 char path[LYD_PARSER_BUFSIZE];
105 struct ly_set node_when;
Michal Vasko03fbaed2021-07-15 09:18:32 +0200106 struct ly_set node_types;
107 struct ly_set meta_types;
Michal Vasko135719f2022-08-25 12:18:17 +0200108 struct ly_set ext_node;
Michal Vaskoddd76592022-01-17 13:34:48 +0100109 struct ly_set ext_val;
Michal Vasko03fbaed2021-07-15 09:18:32 +0200110 struct lyd_node *op_node;
111
112 /* callbacks */
113 lyd_ctx_free_clb free;
114
115 struct lyxml_ctx *xmlctx; /**< XML context */
116};
117
118/**
119 * @brief Internal context for JSON data parser.
120 */
121struct lyd_json_ctx {
122 const struct lysc_ext_instance *ext;
123 uint32_t parse_opts;
124 uint32_t val_opts;
125 uint32_t int_opts;
126 uint32_t path_len;
127 char path[LYD_PARSER_BUFSIZE];
128 struct ly_set node_when;
Michal Vasko03fbaed2021-07-15 09:18:32 +0200129 struct ly_set node_types;
130 struct ly_set meta_types;
Michal Vasko135719f2022-08-25 12:18:17 +0200131 struct ly_set ext_node;
Michal Vaskoddd76592022-01-17 13:34:48 +0100132 struct ly_set ext_val;
Michal Vasko03fbaed2021-07-15 09:18:32 +0200133 struct lyd_node *op_node;
134
135 /* callbacks */
136 lyd_ctx_free_clb free;
137
138 struct lyjson_ctx *jsonctx; /**< JSON context */
139};
140
141/**
142 * @brief Internal context for LYB data parser/printer.
143 */
144struct lyd_lyb_ctx {
145 const struct lysc_ext_instance *ext;
Michal Vasko26bbb272022-08-02 14:54:33 +0200146
Michal Vasko03fbaed2021-07-15 09:18:32 +0200147 union {
148 struct {
149 uint32_t parse_opts;
150 uint32_t val_opts;
151 };
152 uint32_t print_options;
153 };
154 uint32_t int_opts;
155 uint32_t path_len;
156 char path[LYD_PARSER_BUFSIZE];
157 struct ly_set node_when;
Michal Vasko03fbaed2021-07-15 09:18:32 +0200158 struct ly_set node_types;
159 struct ly_set meta_types;
Michal Vasko135719f2022-08-25 12:18:17 +0200160 struct ly_set ext_node;
Michal Vaskoddd76592022-01-17 13:34:48 +0100161 struct ly_set ext_val;
Michal Vasko03fbaed2021-07-15 09:18:32 +0200162 struct lyd_node *op_node;
163
164 /* callbacks */
165 lyd_ctx_free_clb free;
166
167 struct lylyb_ctx *lybctx; /* LYB context */
168};
169
170/**
Michal Vaskoddd76592022-01-17 13:34:48 +0100171 * @brief Parsed extension instance data to validate.
172 */
173struct lyd_ctx_ext_val {
174 struct lysc_ext_instance *ext;
175 struct lyd_node *sibling;
176};
177
178/**
Michal Vasko135719f2022-08-25 12:18:17 +0200179 * @brief Parsed data node with extension instance to validate.
180 */
181struct lyd_ctx_ext_node {
182 struct lysc_ext_instance *ext;
183 struct lyd_node *node;
184};
185
186/**
Radek Krejci84d7fd72021-07-14 18:32:21 +0200187 * @brief Common part to supplement the specific ::lyd_ctx_free_clb callbacks.
Radek Krejci1798aae2020-07-14 13:26:06 +0200188 */
Michal Vaskoddd76592022-01-17 13:34:48 +0100189void lyd_ctx_free(struct lyd_ctx *ctx);
Radek Krejci1798aae2020-07-14 13:26:06 +0200190
191/**
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200192 * @brief Parse submodule from YANG data.
Radek Krejci84d7fd72021-07-14 18:32:21 +0200193 * @param[in,out] context Parser context.
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200194 * @param[in] ly_ctx Context of YANG schemas.
195 * @param[in] main_ctx Parser context of main module.
Michal Vasko63f3d842020-07-08 10:10:14 +0200196 * @param[in] in Input structure.
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200197 * @param[out] submod Pointer to the parsed submodule structure.
198 * @return LY_ERR value - LY_SUCCESS, LY_EINVAL or LY_EVALID.
199 */
Michal Vaskod0625d72022-10-06 15:02:50 +0200200LY_ERR yang_parse_submodule(struct lysp_yang_ctx **context, struct ly_ctx *ly_ctx, struct lysp_ctx *main_ctx,
Radek Krejci0f969882020-08-21 16:56:47 +0200201 struct ly_in *in, struct lysp_submodule **submod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200202
203/**
204 * @brief Parse module from YANG data.
Radek Krejci84d7fd72021-07-14 18:32:21 +0200205 * @param[in] context Parser context.
Michal Vasko63f3d842020-07-08 10:10:14 +0200206 * @param[in] in Input structure.
207 * @param[in,out] mod Prepared module structure where the parsed information, including the parsed
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200208 * module structure, will be filled in.
Michal Vasko405cc9e2020-12-01 12:01:27 +0100209 * @return LY_ERR values.
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200210 */
Michal Vaskod0625d72022-10-06 15:02:50 +0200211LY_ERR yang_parse_module(struct lysp_yang_ctx **context, struct ly_in *in, struct lys_module *mod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200212
213/**
214 * @brief Parse module from YIN data.
215 *
216 * @param[in,out] yin_ctx Context created during parsing, is used to finalize lysp_model after it's completly parsed.
Michal Vasko63f3d842020-07-08 10:10:14 +0200217 * @param[in] in Input structure.
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200218 * @param[in,out] mod Prepared module structure where the parsed information, including the parsed
219 * module structure, will be filled in.
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200220 * @return LY_ERR values.
221 */
Michal Vaskod0625d72022-10-06 15:02:50 +0200222LY_ERR yin_parse_module(struct lysp_yin_ctx **yin_ctx, struct ly_in *in, struct lys_module *mod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200223
224/**
225 * @brief Parse submodule from YIN data.
226 *
227 * @param[in,out] yin_ctx Context created during parsing, is used to finalize lysp_model after it's completly parsed.
228 * @param[in] ctx Libyang context.
229 * @param[in] main_ctx Parser context of main module.
Michal Vasko63f3d842020-07-08 10:10:14 +0200230 * @param[in] in Input structure.
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200231 * @param[in,out] submod Submodule structure where the parsed information, will be filled in.
232 * @return LY_ERR values.
233 */
Michal Vaskod0625d72022-10-06 15:02:50 +0200234LY_ERR yin_parse_submodule(struct lysp_yin_ctx **yin_ctx, struct ly_ctx *ctx, struct lysp_ctx *main_ctx,
Radek Krejci0f969882020-08-21 16:56:47 +0200235 struct ly_in *in, struct lysp_submodule **submod);
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200236
Radek Krejci1798aae2020-07-14 13:26:06 +0200237/**
Michal Vaskoe0665742021-02-11 11:08:44 +0100238 * @brief Parse XML string as a YANG data tree.
Michal Vaskoafac7822020-10-20 14:22:26 +0200239 *
Michal Vaskoe0665742021-02-11 11:08:44 +0100240 * @param[in] ctx libyang context.
aPiecekb0445f22021-06-24 11:34:07 +0200241 * @param[in] ext Optional extension instance to parse data following the schema tree specified in the extension instance
Michal Vaskoe0665742021-02-11 11:08:44 +0100242 * @param[in] parent Parent to connect the parsed nodes to, if any.
243 * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL.
Michal Vaskoafac7822020-10-20 14:22:26 +0200244 * @param[in] in Input structure.
Michal Vaskoe0665742021-02-11 11:08:44 +0100245 * @param[in] parse_opts Options for parser, see @ref dataparseroptions.
246 * @param[in] val_opts Options for the validation phase, see @ref datavalidationoptions.
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100247 * @param[in] int_opts Internal data parser options.
Michal Vaskoe0665742021-02-11 11:08:44 +0100248 * @param[out] parsed Set to add all the parsed siblings into.
Michal Vaskoddd76592022-01-17 13:34:48 +0100249 * @param[out] subtree_sibling Set if ::LYD_PARSE_SUBTREE is used and another subtree is following in @p in.
Michal Vaskoafac7822020-10-20 14:22:26 +0200250 * @param[out] lydctx_p Data parser context to finish validation.
251 * @return LY_ERR value.
252 */
Radek Krejcif16e2542021-02-17 15:39:23 +0100253LY_ERR lyd_parse_xml(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100254 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, uint32_t int_opts,
255 struct ly_set *parsed, ly_bool *subtree_sibling, struct lyd_ctx **lydctx_p);
256
257/**
258 * @brief Parse XML string as a NETCONF message.
259 *
260 * @param[in] ctx libyang context.
261 * @param[in] ext Optional extension instance to parse data following the schema tree specified in the extension instance
262 * @param[in] parent Parent to connect the parsed nodes to, if any.
263 * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL.
264 * @param[in] in Input structure.
265 * @param[in] parse_opts Options for parser, see @ref dataparseroptions.
266 * @param[in] val_opts Options for the validation phase, see @ref datavalidationoptions.
267 * @param[in] data_type Expected NETCONF data type of the data.
268 * @param[out] envp Individual parsed envelopes tree, may be returned possibly even on an error.
269 * @param[out] parsed Set to add all the parsed siblings into.
270 * @param[out] subtree_sibling Set if ::LYD_PARSE_SUBTREE is used and another subtree is following in @p in.
271 * @param[out] lydctx_p Data parser context to finish validation.
272 * @return LY_ERR value.
273 */
274LY_ERR lyd_parse_xml_netconf(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
Radek Krejcif16e2542021-02-17 15:39:23 +0100275 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, enum lyd_type data_type,
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100276 struct lyd_node **envp, struct ly_set *parsed, struct lyd_ctx **lydctx_p);
Michal Vaskoafac7822020-10-20 14:22:26 +0200277
278/**
Michal Vaskoe0665742021-02-11 11:08:44 +0100279 * @brief Parse JSON string as a YANG data tree.
Michal Vaskoafac7822020-10-20 14:22:26 +0200280 *
Michal Vaskoafac7822020-10-20 14:22:26 +0200281 * @param[in] ctx libyang context.
aPiecekb0445f22021-06-24 11:34:07 +0200282 * @param[in] ext Optional extension instance to parse data following the schema tree specified in the extension instance
Michal Vaskoe0665742021-02-11 11:08:44 +0100283 * @param[in] parent Parent to connect the parsed nodes to, if any.
284 * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL.
Michal Vaskoafac7822020-10-20 14:22:26 +0200285 * @param[in] in Input structure.
Michal Vaskoe0665742021-02-11 11:08:44 +0100286 * @param[in] parse_opts Options for parser, see @ref dataparseroptions.
287 * @param[in] val_opts Options for the validation phase, see @ref datavalidationoptions.
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100288 * @param[in] int_opts Internal data parser options.
Michal Vaskoe0665742021-02-11 11:08:44 +0100289 * @param[out] parsed Set to add all the parsed siblings into.
Michal Vaskoddd76592022-01-17 13:34:48 +0100290 * @param[out] subtree_sibling Set if ::LYD_PARSE_SUBTREE is used and another subtree is following in @p in.
Michal Vaskoafac7822020-10-20 14:22:26 +0200291 * @param[out] lydctx_p Data parser context to finish validation.
292 * @return LY_ERR value.
293 */
Radek Krejcif16e2542021-02-17 15:39:23 +0100294LY_ERR lyd_parse_json(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100295 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, uint32_t int_opts,
Michal Vaskoddd76592022-01-17 13:34:48 +0100296 struct ly_set *parsed, ly_bool *subtree_sibling, struct lyd_ctx **lydctx_p);
Michal Vaskoafac7822020-10-20 14:22:26 +0200297
298/**
Michal Vaskoe0665742021-02-11 11:08:44 +0100299 * @brief Parse binary LYB data as a YANG data tree.
Michal Vaskoafac7822020-10-20 14:22:26 +0200300 *
Michal Vaskoafac7822020-10-20 14:22:26 +0200301 * @param[in] ctx libyang context.
aPiecekb0445f22021-06-24 11:34:07 +0200302 * @param[in] ext Optional extension instance to parse data following the schema tree specified in the extension instance
Michal Vaskoe0665742021-02-11 11:08:44 +0100303 * @param[in] parent Parent to connect the parsed nodes to, if any.
304 * @param[in,out] first_p Pointer to the first top-level parsed node, used only if @p parent is NULL.
Michal Vaskoafac7822020-10-20 14:22:26 +0200305 * @param[in] in Input structure.
Michal Vaskoe0665742021-02-11 11:08:44 +0100306 * @param[in] parse_opts Options for parser, see @ref dataparseroptions.
307 * @param[in] val_opts Options for the validation phase, see @ref datavalidationoptions.
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100308 * @param[in] int_opts Internal data parser options.
Michal Vaskoe0665742021-02-11 11:08:44 +0100309 * @param[out] parsed Set to add all the parsed siblings into.
Michal Vaskoddd76592022-01-17 13:34:48 +0100310 * @param[out] subtree_sibling Set if ::LYD_PARSE_SUBTREE is used and another subtree is following in @p in.
Michal Vaskoafac7822020-10-20 14:22:26 +0200311 * @param[out] lydctx_p Data parser context to finish validation.
312 * @return LY_ERR value.
313 */
Radek Krejcif16e2542021-02-17 15:39:23 +0100314LY_ERR lyd_parse_lyb(const struct ly_ctx *ctx, const struct lysc_ext_instance *ext, struct lyd_node *parent,
Michal Vaskoe3ed7dc2022-11-30 11:39:44 +0100315 struct lyd_node **first_p, struct ly_in *in, uint32_t parse_opts, uint32_t val_opts, uint32_t int_opts,
Michal Vaskoddd76592022-01-17 13:34:48 +0100316 struct ly_set *parsed, ly_bool *subtree_sibling, struct lyd_ctx **lydctx_p);
Michal Vaskoafac7822020-10-20 14:22:26 +0200317
318/**
Michal Vaskoe0665742021-02-11 11:08:44 +0100319 * @brief Search all the parents for an operation node, check validity based on internal parser flags.
Michal Vaskoafac7822020-10-20 14:22:26 +0200320 *
Michal Vaskoe0665742021-02-11 11:08:44 +0100321 * @param[in] parent Parent to connect the parsed nodes to.
Radek Krejci84d7fd72021-07-14 18:32:21 +0200322 * @param[in] int_opts Internal parser options.
Michal Vaskoe0665742021-02-11 11:08:44 +0100323 * @param[out] op Found operation, if any.
Michal Vaskoafac7822020-10-20 14:22:26 +0200324 * @return LY_ERR value.
325 */
Michal Vaskoe0665742021-02-11 11:08:44 +0100326LY_ERR lyd_parser_find_operation(const struct lyd_node *parent, uint32_t int_opts, struct lyd_node **op);
Michal Vaskoafac7822020-10-20 14:22:26 +0200327
328/**
Radek Krejci1798aae2020-07-14 13:26:06 +0200329 * @brief Check that a data node representing the @p snode is suitable based on options.
330 *
331 * @param[in] lydctx Common data parsers context.
332 * @param[in] snode Schema node to check.
333 * @return LY_SUCCESS or LY_EVALID
334 */
335LY_ERR lyd_parser_check_schema(struct lyd_ctx *lydctx, const struct lysc_node *snode);
336
337/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200338 * @brief Wrapper around ::lyd_create_term() for data parsers.
Radek Krejci1798aae2020-07-14 13:26:06 +0200339 *
340 * @param[in] lydctx Data parser context.
Radek Krejci84d7fd72021-07-14 18:32:21 +0200341 * @param[in] schema Schema node of the new data node.
342 * @param[in] value String value to be parsed.
343 * @param[in] value_len Length of @p value, must be set correctly.
344 * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed.
345 * @param[in] format Input format of @p value.
346 * @param[in] prefix_data Format-specific data for resolving any prefixes (see ::ly_resolve_prefix).
347 * @param[in] hints [Data parser's hints](@ref lydvalhints) for the value's type.
348 * @param[out] node Created node.
349 * @return LY_SUCCESS on success.
350 * @return LY_EINCOMPLETE in case data tree is needed to finish the validation.
351 * @return LY_ERR value if an error occurred.
Radek Krejci1798aae2020-07-14 13:26:06 +0200352 */
Radek Krejci09c77442021-04-26 11:10:34 +0200353LY_ERR lyd_parser_create_term(struct lyd_ctx *lydctx, const struct lysc_node *schema, const void *value, size_t value_len,
Radek Krejci8df109d2021-04-23 12:19:08 +0200354 ly_bool *dynamic, LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, struct lyd_node **node);
Radek Krejci1798aae2020-07-14 13:26:06 +0200355
356/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200357 * @brief Wrapper around ::lyd_create_meta() for data parsers.
Radek Krejci1798aae2020-07-14 13:26:06 +0200358 *
359 * @param[in] lydctx Data parser context.
Michal Vaskob68571a2020-11-06 17:18:41 +0100360 * @param[in] parent Parent of the created meta. Must be set if @p meta is NULL.
361 * @param[in,out] meta First existing meta to connect to or empty pointer to set. Must be set if @p parent is NULL.
362 * @param[in] mod Module of the created metadata.
363 * @param[in] name Metadata name.
364 * @param[in] name_len Length of @p name.
365 * @param[in] value Metadata value.
366 * @param[in] value_len Length of @p value.
367 * @param[in,out] dynamic Whether the @p value is dynamically allocated, is adjusted once the value is assigned.
368 * @param[in] format Prefix format.
369 * @param[in] prefix_data Prefix format data (see ::ly_resolve_prefix()).
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200370 * @param[in] hints [Value hint](@ref lydvalhints) from the parser regarding the value type.
Michal Vaskoddd76592022-01-17 13:34:48 +0100371 * @param[in] ctx_node Value context node.
Michal Vaskob68571a2020-11-06 17:18:41 +0100372 * @return LY_ERR value.
Radek Krejci1798aae2020-07-14 13:26:06 +0200373 */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200374LY_ERR lyd_parser_create_meta(struct lyd_ctx *lydctx, struct lyd_node *parent, struct lyd_meta **meta,
Michal Vaskoddd76592022-01-17 13:34:48 +0100375 const struct lys_module *mod, const char *name, size_t name_len, const void *value, size_t value_len,
376 ly_bool *dynamic, LY_VALUE_FORMAT format, void *prefix_data, uint32_t hints, const struct lysc_node *ctx_node);
Radek Krejci1798aae2020-07-14 13:26:06 +0200377
Michal Vasko95c6d5c2022-05-20 10:33:39 +0200378/**
379 * @brief Check that a list has all its keys.
380 *
381 * @param[in] node List to check.
382 * @return LY_SUCCESS on success.
383 * @return LY_ENOT on a missing key.
384 */
385LY_ERR lyd_parse_check_keys(struct lyd_node *node);
386
387/**
388 * @brief Set data flags for a newly parsed node.
389 *
390 * @param[in] node Node to use.
391 * @param[in,out] meta Node metadata, may be removed from.
392 * @param[in] lydctx Data parsing context.
393 * @param[in] ext Extension instance if @p node was parsed for one.
394 * @return LY_ERR value.
395 */
396LY_ERR lyd_parse_set_data_flags(struct lyd_node *node, struct lyd_meta **meta, struct lyd_ctx *lydctx,
397 struct lysc_ext_instance *ext);
398
Michal Vasko193dacd2022-10-13 08:43:05 +0200399/**
400 * @brief Parse an instance extension statement.
401 *
402 * @param[in] pctx Parse context.
403 * @param[in] substmt Parsed ext instance substatement info.
404 * @param[in] stmt Parsed generic statement to process.
405 * @return LY_ERR value.
406 */
407LY_ERR lys_parse_ext_instance_stmt(struct lysp_ctx *pctx, struct lysp_ext_substmt *substmt, struct lysp_stmt *stmt);
408
Radek Krejcif0e1ba52020-05-22 15:14:35 +0200409#endif /* LY_PARSER_INTERNAL_H_ */