blob: 6596aa828d7fa1b9965465376c049152131501a9 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data_internal.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief internal functions for YANG schema trees.
5 *
6 * Copyright (c) 2015 - 2019 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_TREE_DATA_INTERNAL_H_
16#define LY_TREE_DATA_INTERNAL_H_
17
18#include "tree_data.h"
Radek Krejciaca74032019-06-04 08:53:06 +020019#include "plugins_types.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020020
Michal Vasko52927e22020-03-16 17:26:14 +010021#include <stddef.h>
22
Michal Vasko004d3152020-06-11 19:59:22 +020023struct ly_path_predicate;
24
Radek Krejcie7b95092019-05-15 11:03:07 +020025/**
Michal Vaskob1b5c262020-03-05 14:29:47 +010026 * @brief Check whether a node to be deleted is the first top-level sibling.
27 *
28 * @param[in] first First sibling.
29 * @param[in] to_del Node to be deleted.
30 */
31#define LYD_DEL_IS_ROOT(first, to_del) (((first) == (to_del)) && !(first)->parent && !(first)->prev->next)
32
33/**
Radek Krejcie7b95092019-05-15 11:03:07 +020034 * @brief Get address of a node's child pointer if any.
35 *
Radek Krejcie7b95092019-05-15 11:03:07 +020036 * @param[in] node Node to check.
Michal Vasko9b368d32020-02-14 13:53:31 +010037 * @return Address of the node's child member,
38 * @return NULL if there is no child pointer.
Radek Krejcie7b95092019-05-15 11:03:07 +020039 */
40struct lyd_node **lyd_node_children_p(struct lyd_node *node);
41
42/**
Michal Vasko9b368d32020-02-14 13:53:31 +010043 * @brief Create a term (leaf/leaf-list) node from a string value.
44 *
45 * Hash is calculated and new node flag is set.
Michal Vasko90932a92020-02-12 14:33:03 +010046 *
47 * @param[in] schema Schema node of the new data node.
48 * @param[in] value String value to be parsed.
Michal Vaskof03ed032020-03-04 13:31:44 +010049 * @param[in] value_len Length of @p value, must be set correctly.
Michal Vasko90932a92020-02-12 14:33:03 +010050 * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed.
51 * @param[in] get_prefix Parser-specific getter to resolve prefixes used in the @p value string.
52 * @param[in] prefix_data User data for @p get_prefix.
53 * @param[in] format Input format of @p value.
54 * @param[out] node Created node.
55 * @return LY_SUCCESS on success.
56 * @return LY_EINCOMPLETE in case data tree is needed to finish the validation.
57 * @return LY_ERR value if an error occurred.
58 */
59LY_ERR lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, int *dynamic,
60 ly_clb_resolve_prefix get_prefix, void *prefix_data, LYD_FORMAT format, struct lyd_node **node);
61
62/**
Michal Vasko9b368d32020-02-14 13:53:31 +010063 * @brief Create a term (leaf/leaf-list) node from a parsed value by duplicating it.
64 *
65 * Hash is calculated and new node flag is set.
66 *
67 * @param[in] schema Schema node of the new data node.
68 * @param[in] val Parsed value to use.
69 * @param[out] node Created node.
70 * @return LY_SUCCESS on success.
71 * @return LY_ERR value if an error occurred.
72 */
73LY_ERR lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node);
74
75/**
76 * @brief Create an inner (container/list/RPC/action/notification) node.
77 *
78 * Hash is calculated and new node flag is set except
79 * for list with keys, when the hash is not calculated!
80 * Also, non-presence container has its default flag set.
Michal Vasko90932a92020-02-12 14:33:03 +010081 *
82 * @param[in] schema Schema node of the new data node.
83 * @param[out] node Created node.
84 * @return LY_SUCCESS on success.
85 * @return LY_ERR value if an error occurred.
86 */
87LY_ERR lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node);
88
89/**
Michal Vasko9b368d32020-02-14 13:53:31 +010090 * @brief Create a list with all its keys (cannot be used for key-less list).
91 *
92 * Hash is calculated and new node flag is set.
Michal Vasko90932a92020-02-12 14:33:03 +010093 *
94 * @param[in] schema Schema node of the new data node.
Michal Vasko004d3152020-06-11 19:59:22 +020095 * @param[in] predicates Compiled key list predicates.
Michal Vasko90932a92020-02-12 14:33:03 +010096 * @param[out] node Created node.
97 * @return LY_SUCCESS on success.
98 * @return LY_ERR value if an error occurred.
99 */
Michal Vasko004d3152020-06-11 19:59:22 +0200100LY_ERR lyd_create_list(const struct lysc_node *schema, const struct ly_path_predicate *predicates, struct lyd_node **node);
Michal Vasko90932a92020-02-12 14:33:03 +0100101
102/**
Michal Vasko9b368d32020-02-14 13:53:31 +0100103 * @brief Create an anyxml/anydata node.
104 *
105 * Hash is calculated and flags are properly set based on @p is_valid.
Michal Vasko90932a92020-02-12 14:33:03 +0100106 *
107 * @param[in] schema Schema node of the new data node.
108 * @param[in] value Value of the any node, is directly assigned into the data node.
109 * @param[in] value_type Value type of the value.
110 * @param[out] node Created node.
111 * @return LY_SUCCESS on success.
112 * @return LY_ERR value if an error occurred.
113 */
Michal Vasko9b368d32020-02-14 13:53:31 +0100114LY_ERR lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type,
115 struct lyd_node **node);
Michal Vasko90932a92020-02-12 14:33:03 +0100116
117/**
Michal Vasko52927e22020-03-16 17:26:14 +0100118 * @brief Create an opaque node.
119 *
120 * @param[in] ctx libyang context.
121 * @param[in] name Element name.
122 * @param[in] name_len Length of @p name, must be set correctly.
123 * @param[in] value String value to be parsed.
124 * @param[in] value_len Length of @p value, must be set correctly.
125 * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed.
126 * @param[in] format Input format of @p value and @p ns.
127 * @param[in] val_prefs Possible value prefixes, array is spent.
128 * @param[in] prefix Element prefix.
129 * @param[in] pref_len Length of @p prefix, must be set correctly.
130 * @param[in] ns Node namespace, meaning depends on @p format.
131 * @param[out] node Created node.
132 * @return LY_SUCCESS on success.
133 * @return LY_ERR value if an error occurred.
134 */
135LY_ERR lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *value, size_t value_len,
136 int *dynamic, LYD_FORMAT format, struct ly_prefix *val_prefs, const char *prefix, size_t pref_len,
137 const char *ns, struct lyd_node **node);
138
139/**
Michal Vasko90932a92020-02-12 14:33:03 +0100140 * @brief Find the key after which to insert the new key.
141 *
142 * @param[in] first_sibling List first sibling.
143 * @param[in] new_key Key that will be inserted.
144 * @return Key to insert after.
145 * @return NULL if the new key should be first.
146 */
147struct lyd_node *lyd_get_prev_key_anchor(const struct lyd_node *first_sibling, const struct lysc_node *new_key);
148
149/**
150 * @brief Insert a node into parent/siblings. In case a key is being inserted into a list, the correct position
Michal Vasko9f96a052020-03-10 09:41:45 +0100151 * is found, inserted into, and if it is the last key, parent list hash is calculated. Also, in case we are inserting
152 * into top-level siblings, insert it as the last sibling of all the module data siblings. Otherwise it is inserted at
153 * the very last place.
Michal Vasko90932a92020-02-12 14:33:03 +0100154 *
Michal Vasko9b368d32020-02-14 13:53:31 +0100155 * @param[in] parent Parent to insert into, NULL for top-level sibling.
156 * @param[in,out] first_sibling First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set.
Michal Vasko90932a92020-02-12 14:33:03 +0100157 * @param[in] node Individual node (without siblings) to insert.
158 */
Michal Vasko9b368d32020-02-14 13:53:31 +0100159void lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling, struct lyd_node *node);
Michal Vasko90932a92020-02-12 14:33:03 +0100160
161/**
Michal Vasko52927e22020-03-16 17:26:14 +0100162 * @brief Create and insert a metadata (last) into a parent.
Michal Vasko90932a92020-02-12 14:33:03 +0100163 *
Michal Vasko52927e22020-03-16 17:26:14 +0100164 * @param[in] parent Parent of the metadata, can be NULL.
Michal Vasko9f96a052020-03-10 09:41:45 +0100165 * @param[in,out] meta Metadata list to add at its end if @p parent is NULL, returned created attribute.
166 * @param[in] mod Metadata module (with the annotation definition).
Michal Vasko90932a92020-02-12 14:33:03 +0100167 * @param[in] name Attribute name.
Michal Vaskof03ed032020-03-04 13:31:44 +0100168 * @param[in] name_len Length of @p name, must be set correctly.
Michal Vasko90932a92020-02-12 14:33:03 +0100169 * @param[in] value String value to be parsed.
Michal Vaskof03ed032020-03-04 13:31:44 +0100170 * @param[in] value_len Length of @p value, must be set correctly.
Michal Vasko90932a92020-02-12 14:33:03 +0100171 * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed.
Michal Vasko52927e22020-03-16 17:26:14 +0100172 * @param[in] resolve_prefix Parser-specific getter to resolve prefixes used in the @p value string.
Michal Vasko90932a92020-02-12 14:33:03 +0100173 * @param[in] prefix_data User data for @p get_prefix.
174 * @param[in] format Input format of @p value.
Michal Vasko8d544252020-03-02 10:19:52 +0100175 * @param[in] ctx_snode Context node for value resolution in schema.
Michal Vasko90932a92020-02-12 14:33:03 +0100176 * @return LY_SUCCESS on success.
177 * @return LY_EINCOMPLETE in case data tree is needed to finish the validation.
178 * @return LY_ERR value if an error occurred.
179 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100180LY_ERR lyd_create_meta(struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, const char *name,
Michal Vasko52927e22020-03-16 17:26:14 +0100181 size_t name_len, const char *value, size_t value_len, int *dynamic, ly_clb_resolve_prefix resolve_prefix,
Michal Vasko8d544252020-03-02 10:19:52 +0100182 void *prefix_data, LYD_FORMAT format, const struct lysc_node *ctx_snode);
Michal Vasko90932a92020-02-12 14:33:03 +0100183
184/**
Michal Vasko52927e22020-03-16 17:26:14 +0100185 * @brief Create and insert a generic attribute (last) into a parent.
186 *
187 * @param[in] parent Parent of the attribute, can be NULL.
188 * @param[in,out] attr Attribute list to add at its end if @p parent is NULL, returned created attribute.
189 * @param[in] ctx libyang context.
190 * @param[in] name Attribute name.
191 * @param[in] name_len Length of @p name, must be set correctly.
192 * @param[in] value String value to be parsed.
193 * @param[in] value_len Length of @p value, must be set correctly.
194 * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed.
195 * @param[in] format Input format of @p value and @p ns.
196 * @param[in] val_prefs Possible value prefixes, array is spent.
197 * @param[in] prefix Attribute prefix.
198 * @param[in] prefix_len Attribute prefix length.
199 * @param[in] ns Attribute namespace, meaning depends on @p format.
200 * @return LY_SUCCESS on success.
201 * @return LY_ERR value if an error occurred.
202 */
203LY_ERR ly_create_attr(struct lyd_node *parent, struct ly_attr **attr, const struct ly_ctx *ctx, const char *name,
204 size_t name_len, const char *value, size_t value_len, int *dynamic, LYD_FORMAT format,
205 struct ly_prefix *val_prefs, const char *prefix, size_t prefix_len, const char *ns);
206
207/**
Radek Krejci5819f7c2019-05-31 14:53:29 +0200208 * @brief Validate, canonize and store the given @p value into the node according to the node's type's rules.
Radek Krejcie7b95092019-05-15 11:03:07 +0200209 *
Radek Krejci38d85362019-09-05 16:26:38 +0200210 * @param[in] node Data node for the @p value.
Radek Krejci084289f2019-07-09 17:35:30 +0200211 * @param[in] value String value to be parsed, must not be NULL.
Michal Vaskof03ed032020-03-04 13:31:44 +0100212 * @param[in] value_len Length of the give @p value, must be set correctly.
Michal Vasko90932a92020-02-12 14:33:03 +0100213 * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed.
Radek Krejci3c9758d2019-07-11 16:49:10 +0200214 * @param[in] second Flag for the second call after returning LY_EINCOMPLETE
Radek Krejci084289f2019-07-09 17:35:30 +0200215 * @param[in] get_prefix Parser-specific getter to resolve prefixes used in the @p value string.
Radek Krejciaca74032019-06-04 08:53:06 +0200216 * @param[in] parser Parser's data for @p get_prefix
Michal Vasko90932a92020-02-12 14:33:03 +0100217 * @param[in] format Input format of @p value.
Michal Vaskof03ed032020-03-04 13:31:44 +0100218 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required
Radek Krejcie553e6d2019-06-07 15:33:18 +0200219 * data instance (leafref target, instance-identifier) can be placed. NULL in case the data tree are not yet complete,
220 * then LY_EINCOMPLETE can be returned.
221 * @return LY_SUCCESS on success
222 * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation.
223 * @return LY_ERR value if an error occurred.
Radek Krejcie7b95092019-05-15 11:03:07 +0200224 */
Michal Vasko90932a92020-02-12 14:33:03 +0100225LY_ERR lyd_value_parse(struct lyd_node_term *node, const char *value, size_t value_len, int *dynamic, int second,
Michal Vaskof03ed032020-03-04 13:31:44 +0100226 ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format, const struct lyd_node *tree);
Radek Krejcie7b95092019-05-15 11:03:07 +0200227
Michal Vasko004d3152020-06-11 19:59:22 +0200228/* similar to lyd_value_parse except can be used just to store the value, hence does also not support a second call */
229LY_ERR lyd_value_store(struct lyd_value *val, const struct lysc_node *schema, const char *value, size_t value_len,
230 int *dynamic, ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format);
231
Radek Krejcie7b95092019-05-15 11:03:07 +0200232/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100233 * @brief Validate, canonize and store the given @p value into the metadata according to the annotation type's rules.
Radek Krejci38d85362019-09-05 16:26:38 +0200234 *
Michal Vasko8d544252020-03-02 10:19:52 +0100235 * @param[in] ctx libyang context.
Michal Vasko9f96a052020-03-10 09:41:45 +0100236 * @param[in] meta Metadata for the @p value.
Radek Krejci38d85362019-09-05 16:26:38 +0200237 * @param[in] value String value to be parsed, must not be NULL.
Michal Vaskof03ed032020-03-04 13:31:44 +0100238 * @param[in] value_len Length of the give @p value, must be set correctly.
Michal Vasko90932a92020-02-12 14:33:03 +0100239 * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed.
Radek Krejci38d85362019-09-05 16:26:38 +0200240 * @param[in] second Flag for the second call after returning LY_EINCOMPLETE
241 * @param[in] get_prefix Parser-specific getter to resolve prefixes used in the @p value string.
242 * @param[in] parser Parser's data for @p get_prefix
243 * @param[in] format Input format of the data.
Michal Vasko8d544252020-03-02 10:19:52 +0100244 * @param[in] ctx_snode Context node for value resolution in schema.
Michal Vaskof03ed032020-03-04 13:31:44 +0100245 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required
Radek Krejci38d85362019-09-05 16:26:38 +0200246 * data instance (leafref target, instance-identifier) can be placed. NULL in case the data tree are not yet complete,
247 * then LY_EINCOMPLETE can be returned.
248 * @return LY_SUCCESS on success
249 * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation.
250 * @return LY_ERR value if an error occurred.
251 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100252LY_ERR lyd_value_parse_meta(struct ly_ctx *ctx, struct lyd_meta *meta, const char *value, size_t value_len, int *dynamic,
Michal Vasko8d544252020-03-02 10:19:52 +0100253 int second, ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format,
Michal Vaskof03ed032020-03-04 13:31:44 +0100254 const struct lysc_node *ctx_snode, const struct lyd_node *tree);
Radek Krejci38d85362019-09-05 16:26:38 +0200255
256/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200257 * @brief Parse XML string as YANG data tree.
258 *
259 * @param[in] ctx libyang context
Michal Vasko9f96a052020-03-10 09:41:45 +0100260 * @param[in] data Pointer to the XML data to parse.
Radek Krejcie7b95092019-05-15 11:03:07 +0200261 * @param[in] options @ref dataparseroptions
Michal Vaskob1b5c262020-03-05 14:29:47 +0100262 * @param[out] tree Parsed data tree. Note that NULL can be a valid result.
Michal Vasko9f96a052020-03-10 09:41:45 +0100263 * @return LY_ERR value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200264 */
Michal Vasko1bf09392020-03-27 12:38:10 +0100265LY_ERR lyd_parse_xml_data(const struct ly_ctx *ctx, const char *data, int options, struct lyd_node **tree);
Michal Vasko9f96a052020-03-10 09:41:45 +0100266
267/**
268 * @brief Parse XML string as YANG RPC/action invocation.
269 *
270 * Optional \<rpc\> envelope element, if present, is [checked](https://tools.ietf.org/html/rfc6241#section-4.1) and all
Michal Vaskoa8edff02020-03-27 14:47:01 +0100271 * its XML attributes parsed. In that case an RPC is expected to be parsed.
Michal Vasko9f96a052020-03-10 09:41:45 +0100272 *
273 * Can be followed by optional \<action\> envelope element, which is also
274 * [checked](https://tools.ietf.org/html/rfc7950#section-7.15.2) and then an action is expected to be parsed.
275 *
276 * @param[in] ctx libyang context.
277 * @param[in] data Pointer to the XML data to parse.
Michal Vaskob36053d2020-03-26 15:49:30 +0100278 * @param[out] tree Parsed full RPC/action tree.
Michal Vaskocc048b22020-03-27 15:52:38 +0100279 * @param[out] op Optional pointer to the actual operation. Useful mainly for action.
Michal Vasko9f96a052020-03-10 09:41:45 +0100280 * @return LY_ERR value.
281 */
Michal Vasko1bf09392020-03-27 12:38:10 +0100282LY_ERR lyd_parse_xml_rpc(const struct ly_ctx *ctx, const char *data, struct lyd_node **tree, struct lyd_node **op);
Radek Krejcie7b95092019-05-15 11:03:07 +0200283
284/**
Michal Vaskoa8edff02020-03-27 14:47:01 +0100285 * @brief Parse XML string as YANG notification.
286 *
287 * Optional \<notification\> envelope element, if present, is [checked](https://tools.ietf.org/html/rfc5277#page-25)
288 * and parsed. Specifically, its namespace and the child \<eventTime\> element and its value.
289 *
290 * @param[in] ctx libyang context.
291 * @param[in] data Pointer to the XML data to parse.
292 * @param[out] tree Parsed full notification tree.
Michal Vaskocc048b22020-03-27 15:52:38 +0100293 * @param[out] op Optional pointer to the actual notification. Useful mainly for nested notifications.
Michal Vaskoa8edff02020-03-27 14:47:01 +0100294 * @return LY_ERR value.
295 */
296LY_ERR lyd_parse_xml_notif(const struct ly_ctx *ctx, const char *data, struct lyd_node **tree, struct lyd_node **ntf);
297
298/**
Michal Vasko1ce933a2020-03-30 12:38:22 +0200299 * @brief Parse XML string as YANG RPC/action reply.
300 *
301 * Optional \<rpc-reply\> envelope element, if present, is [checked](https://tools.ietf.org/html/rfc6241#section-4.2)
302 * and all its XML attributes parsed.
303 *
304 * @param[in] request Data tree of the RPC/action request.
305 * @param[in] data Pointer to the XML data to parse.
306 * @param[out] tree Parsed full reply tree. It always includes duplicated operation and parents of the @p request.
307 * @param[out] op Optional pointer to the reply operation. Useful mainly for action.
308 * @return LY_ERR value.
309 */
310LY_ERR lyd_parse_xml_reply(const struct lyd_node *request, const char *data, struct lyd_node **tree, struct lyd_node **op);
311
312/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200313 * @defgroup datahash Data nodes hash manipulation
314 * @ingroup datatree
315 */
316
317/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200318 * @brief Generate hash for the node.
319 *
320 * @param[in] node Data node to (re)generate hash value.
321 * @return LY_ERR value.
322 */
323LY_ERR lyd_hash(struct lyd_node *node);
324
325/**
326 * @brief Insert hash of the node into the hash table of its parent.
327 *
328 * @param[in] node Data node which hash will be inserted into the lyd_node_inner::children_hash hash table of its parent.
329 * @return LY_ERR value.
330 */
331LY_ERR lyd_insert_hash(struct lyd_node *node);
332
333/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200334 * @brief Maintain node's parent's children hash table when unlinking the node.
335 *
336 * When completely freeing data tree, it is expected to free the parent's children hash table first, at once.
337 *
338 * @param[in] node The data node being unlinked from its parent.
339 */
340void lyd_unlink_hash(struct lyd_node *node);
341
342/** @} datahash */
343
Radek Krejci084289f2019-07-09 17:35:30 +0200344/**
Michal Vasko9b368d32020-02-14 13:53:31 +0100345 * @brief Find the node, in the list, satisfying the given restrictions.
346 * Does **not** use hashes - should not be used unless necessary for best performance.
347 *
348 * @param[in] first Starting sibling node for search, only succeeding ones are searched.
349 * @param[in] schema Schema node of the data node to find.
350 * @param[in] key_or_value Expected value depends on the type of @p schema:
351 * LYS_CONTAINER:
352 * LYS_ANYXML:
353 * LYS_ANYDATA:
354 * LYS_NOTIF:
355 * LYS_RPC:
356 * LYS_ACTION:
357 * NULL should be always set, will be ignored.
358 * LYS_LEAF:
359 * LYS_LEAFLIST:
360 * Optional restriction on the specific leaf(-list) value.
361 * LYS_LIST:
362 * Optional keys values of the matching list instances in the form of "[key1='val1'][key2='val2']...".
363 * The keys do not have to be ordered and not all keys need to be specified.
364 *
365 * Note that any explicit values (leaf, leaf-list or list key values) will be canonized first
366 * before comparison. But values that do not have a canonical value are expected to be in the
367 * JSON format!
368 * @param[in] val_len Optional length of the @p key_or_value argument in case it is not NULL-terminated string.
369 * @param[out] match Can be NULL, otherwise the found data node.
370 * @return LY_SUCCESS on success, @p match set.
371 * @return LY_ENOTFOUND if not found, @p match set to NULL.
372 * @return LY_ERR value if another error occurred.
373 */
374LY_ERR lyd_find_sibling_next2(const struct lyd_node *first, const struct lysc_node *schema, const char *key_or_value,
375 size_t val_len, struct lyd_node **match);
376
377/**
Michal Vaskob1b5c262020-03-05 14:29:47 +0100378 * @brief Iterate over implemented modules for functions that accept specific modules or the whole context.
379 *
380 * @param[in] tree Data tree.
381 * @param[in] modules Selected modules, NULL for all.
382 * @param[in] mod_count Count of @p modules.
383 * @param[in] ctx Context, NULL for selected modules.
384 * @param[in,out] i Iterator, set to 0 on first call.
385 * @param[out] first First sibling of the returned module.
386 * @return Next module.
387 * @return NULL if all modules were traversed.
388 */
389const struct lys_module *lyd_mod_next_module(struct lyd_node *tree, const struct lys_module **modules, int mod_count,
390 const struct ly_ctx *ctx, uint32_t *i, struct lyd_node **first);
391
392/**
393 * @brief Iterate over modules for functions that want to traverse all the top-level data.
394 *
395 * @param[in,out] next Pointer to the next module data, set to first top-level sibling on first call.
396 * @param[out] first First sibling of the returned module.
397 * @return Next module.
398 * @return NULL if all modules were traversed.
399 */
400const struct lys_module *lyd_data_next_module(struct lyd_node **next, struct lyd_node **first);
401
Michal Vasko9f96a052020-03-10 09:41:45 +0100402/**
403 * @brief Check that a list has all its keys.
404 *
405 * @param[in] node List to check.
Michal Vasko44685da2020-03-17 15:38:06 +0100406 * @return LY_SUCCESS on success.
407 * @return LY_ENOT on a missing key.
Michal Vasko9f96a052020-03-10 09:41:45 +0100408 */
409LY_ERR lyd_parse_check_keys(struct lyd_node *node);
410
Radek Krejcie7b95092019-05-15 11:03:07 +0200411#endif /* LY_TREE_DATA_INTERNAL_H_ */