blob: 803b61063df1176a9e204342510f949c3fd57a1e [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang representation of YANG data 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_H_
16#define LY_TREE_DATA_H_
17
18#include <stddef.h>
19#include <stdint.h>
20
21#include "log.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020022
Radek Krejcica376bd2020-06-11 16:04:06 +020023#ifdef __cplusplus
24extern "C" {
25#endif
26
Radek Krejcie7b95092019-05-15 11:03:07 +020027struct ly_ctx;
Michal Vasko004d3152020-06-11 19:59:22 +020028struct ly_path;
Radek Krejci535ea9f2020-05-29 16:01:05 +020029struct ly_set;
30struct lyd_node;
31struct lyd_node_opaq;
32struct lys_module;
33struct lysc_node;
Radek Krejcie7b95092019-05-15 11:03:07 +020034
Radek Krejcie7b95092019-05-15 11:03:07 +020035/**
36 * @defgroup datatree Data Tree
Radek Krejci2ff0d572020-05-21 15:27:28 +020037 * @ingroup trees
Radek Krejcie7b95092019-05-15 11:03:07 +020038 * @{
39 *
40 * Data structures and functions to manipulate and access instance data tree.
41 */
42
43/**
44 * @brief Macro to iterate via all elements in a data tree. This is the opening part
45 * to the #LYD_TREE_DFS_END - they always have to be used together.
46 *
47 * The function follows deep-first search algorithm:
48 * <pre>
49 * 1
50 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +010051 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +020052 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +010053 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +020054 * </pre>
55 *
Radek Krejci0935f412019-08-20 16:15:18 +020056 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Radek Krejcie7b95092019-05-15 11:03:07 +020057 * START can be any of the lyd_node* types, NEXT and ELEM variables are expected
58 * to be pointers to a generic struct lyd_node.
59 *
60 * Since the next node is selected as part of #LYD_TREE_DFS_END, do not use
61 * continue statement between the #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END.
62 *
63 * Use with opening curly bracket '{' after the macro.
64 *
65 * @param START Pointer to the starting element processed first.
66 * @param NEXT Temporary storage, do not use.
67 * @param ELEM Iterator intended for use in the block.
68 */
69#define LYD_TREE_DFS_BEGIN(START, NEXT, ELEM) \
70 for ((ELEM) = (NEXT) = (START); \
71 (ELEM); \
72 (ELEM) = (NEXT))
73
74/**
75 * @brief Macro to iterate via all elements in a tree. This is the closing part
76 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
77 *
78 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
79 * START can be any of the lyd_node* types, NEXT and ELEM variables are expected
80 * to be pointers to a generic struct lyd_node.
81 *
82 * Use with closing curly bracket '}' after the macro.
83 *
84 * @param START Pointer to the starting element processed first.
85 * @param NEXT Temporary storage, do not use.
86 * @param ELEM Iterator intended for use in the block.
87 */
88
89#define LYD_TREE_DFS_END(START, NEXT, ELEM) \
90 /* select element for the next run - children first */ \
Radek Krejcidae0ee82020-05-06 16:53:24 +020091 (NEXT) = lyd_node_children((struct lyd_node*)ELEM); \
Radek Krejcie7b95092019-05-15 11:03:07 +020092 if (!(NEXT)) { \
93 /* no children */ \
94 if ((ELEM) == (struct lyd_node*)(START)) { \
95 /* we are done, (START) has no children */ \
96 break; \
97 } \
98 /* try siblings */ \
99 (NEXT) = (ELEM)->next; \
100 } \
101 while (!(NEXT)) { \
102 /* parent is already processed, go to its sibling */ \
103 (ELEM) = (struct lyd_node*)(ELEM)->parent; \
104 /* no siblings, go back through parents */ \
105 if ((ELEM)->parent == (START)->parent) { \
106 /* we are done, no next element to process */ \
107 break; \
108 } \
109 (NEXT) = (ELEM)->next; \
110 }
111
112/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200113 * @brief Macro to get context from a data tree node.
114 */
Michal Vasko52927e22020-03-16 17:26:14 +0100115#define LYD_NODE_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200116
117/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200118 * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and
Radek Krejcid91d4da2020-05-18 11:28:02 +0200119 * [printer](@ref howtodataprinters) functions. Also used for value prefix format (TODO link to prefix formats descriptions).
Radek Krejcie7b95092019-05-15 11:03:07 +0200120 */
121typedef enum {
Michal Vasko52927e22020-03-16 17:26:14 +0100122 LYD_SCHEMA = 0, /**< invalid instance data format, value prefixes map to YANG import prefixes */
123 LYD_XML, /**< XML instance data format, value prefixes map to XML namespace prefixes */
124 LYD_JSON, /**< JSON instance data format, value prefixes map to module names */
Radek Krejci355bf4f2019-07-16 17:14:16 +0200125#if 0
Radek Krejcie7b95092019-05-15 11:03:07 +0200126 LYD_LYB, /**< LYB format of the instance data */
127#endif
128} LYD_FORMAT;
129
130/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200131 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200132 */
133typedef enum {
Radek Krejci22ebdba2019-07-25 13:59:43 +0200134 LYD_ANYDATA_DATATREE, /**< Value is a pointer to lyd_node structure (first sibling). When provided as input parameter, the pointer
Radek Krejciee4cab22019-07-17 17:07:47 +0200135 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
136 with the data after a successful call (including calling lyd_free() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200137 LYD_ANYDATA_STRING, /**< Value is a generic string without any knowledge about its format (e.g. anyxml value in JSON encoded
Radek Krejciee4cab22019-07-17 17:07:47 +0200138 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
139 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200140 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
141 LYD_ANYDATA_JSON, /**< Value is a string containing the data modeled by YANG and encoded as I-JSON. */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200142#if 0 /* TODO LYB format */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200143 LYD_ANYDATA_LYB, /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200144#endif
Radek Krejcie7b95092019-05-15 11:03:07 +0200145} LYD_ANYDATA_VALUETYPE;
146
147/** @} */
148
149/**
150 * @brief YANG data representation
151 */
152struct lyd_value {
Radek Krejci950f6a52019-09-12 17:15:32 +0200153 const char *original; /**< Original string representation of the value. It is never NULL, but (canonical) string representation
154 of the value should be always obtained via the type's printer callback (lyd_value::realtype::plugin::print). */
Radek Krejcie7b95092019-05-15 11:03:07 +0200155 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200156 int8_t boolean; /**< 0 as false, 1 as true */
157 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200158 int8_t int8; /**< 8-bit signed integer */
159 int16_t int16; /**< 16-bit signed integer */
160 int32_t int32; /**< 32-bit signed integer */
161 int64_t int64; /**< 64-bit signed integer */
162 uint8_t uint8; /**< 8-bit unsigned integer */
163 uint16_t uint16; /**< 16-bit signed integer */
164 uint32_t uint32; /**< 32-bit signed integer */
165 uint64_t uint64; /**< 64-bit signed integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200166 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200167 struct lysc_type_bitenum_item **bits_items; /**< list of set pointers to the specification of the set bits ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200168 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Radek Krejciefbb3922019-07-15 12:58:00 +0200169
170 struct lyd_value_subvalue {
171 struct lyd_value_prefix {
172 const char *prefix; /**< prefix string used in the canonized string to identify the mod of the YANG schema */
173 const struct lys_module *mod; /**< YANG schema module identified by the prefix string */
174 } *prefixes; /**< list of mappings between prefix in canonized value to a YANG schema ([sized array](@ref sizedarrays)) */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200175 struct lyd_value *value; /**< representation of the value according to the selected union's subtype (stored as lyd_value::realpath
176 here, in subvalue structure */
177 } *subvalue; /**< data to represent data with multiple types (union). Original value is stored in the main
Michal Vasko9b368d32020-02-14 13:53:31 +0100178 lyd_value:canonical_cache while the lyd_value_subvalue::value contains representation according to the
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200179 one of the union's type. The lyd_value_subvalue:prefixes provides (possible) mappings from prefixes
180 in original value to YANG modules. These prefixes are necessary to parse original value to the union's
181 subtypes. */
Radek Krejci084289f2019-07-09 17:35:30 +0200182
Michal Vasko004d3152020-06-11 19:59:22 +0200183 struct ly_path *target; /**< Instance-identifier's target path. */
Radek Krejci084289f2019-07-09 17:35:30 +0200184
Radek Krejcie7b95092019-05-15 11:03:07 +0200185 void *ptr; /**< generic data type structure used to store the data */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200186 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the lyd_value::realtype
187 plugin's callbacks to work with the data. */
Radek Krejci084289f2019-07-09 17:35:30 +0200188
Radek Krejci950f6a52019-09-12 17:15:32 +0200189 struct lysc_type *realtype; /**< pointer to the real type of the data stored in the value structure. This type can differ from the type
Radek Krejci62903c32019-07-15 14:42:05 +0200190 in the schema node of the data node since the type's store plugin can use other types/plugins for
191 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
192 target type. In contrast, union type also use its subtype's callbacks, but inside an internal data
193 lyd_value::subvalue structure, so here is the pointer to the union type.
194 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
195 the type used to store data directly in the same lyd_value instance. */
Radek Krejci950f6a52019-09-12 17:15:32 +0200196 void *canonical_cache; /**< Generic cache for type plugins to store data necessary to print canonical value. It can be the canonical
197 value itself or anything else useful to print the canonical form of the value. Plugin is responsible for
198 freeing the cache in its free callback. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200199};
200
201/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100202 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200203 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100204 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200205 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
206 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
207 * they are represented as JSON elements starting with the '@' character (for more information, see the
208 * YANG metadata RFC.
209 *
210 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100211struct lyd_meta {
212 struct lyd_node *parent; /**< data node where the metadata is placed */
213 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
214 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
215 const char *name; /**< metadata name */
216 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200217};
218
Michal Vasko52927e22020-03-16 17:26:14 +0100219/**
220 * @brief Generic prefix and namespace mapping, meaning depends on the format.
221 */
222struct ly_prefix {
223 const char *pref;
224 const char *ns;
225};
226
227/**
228 * @brief Generic attribute structure.
229 */
230struct ly_attr {
231 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
232 struct ly_attr *next;
233 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
234 const char *name;
235 const char *value;
236
237 LYD_FORMAT format;
238 struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */
239
240};
Radek Krejcie7b95092019-05-15 11:03:07 +0200241
Michal Vasko1bf09392020-03-27 12:38:10 +0100242#define LYD_NODE_INNER (LYS_CONTAINER|LYS_LIST|LYS_RPC|LYS_ACTION|LYS_NOTIF) /**< Schema nodetype mask for lyd_node_inner */
Radek Krejcie7b95092019-05-15 11:03:07 +0200243#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
244#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
245
246/**
Michal Vasko9b368d32020-02-14 13:53:31 +0100247 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200248 * @ingroup datatree
249 * @{
250 *
251 * Various flags of data nodes.
252 *
253 * 1 - container 5 - anydata/anyxml
254 * 2 - list 6 - rpc/action
255 * 3 - leaf 7 - notification
256 * 4 - leaflist
257 *
258 * bit name 1 2 3 4 5 6 7
259 * ---------------------+-+-+-+-+-+-+-+
260 * 1 LYD_DEFAULT |x| |x|x| | | |
261 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100262 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100263 * +-+-+-+-+-+-+-+
264 * 3 LYD_NEW |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200265 * ---------------------+-+-+-+-+-+-+-+
266 *
267 */
268
Michal Vasko5c4e5892019-11-14 12:31:38 +0100269#define LYD_DEFAULT 0x01 /**< default (implicit) node */
270#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
Michal Vasko9b368d32020-02-14 13:53:31 +0100271#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
Michal Vasko52927e22020-03-16 17:26:14 +0100272
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200273/** @} */
274
275/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100276 * @brief Callback provided by the data/schema parsers to type plugins to resolve (format-specific) mapping between prefixes used
277 * in the value strings to the YANG schemas.
278 *
279 * Reverse function to ly_clb_get_prefix.
280 *
281 * XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports.
282 *
283 * @param[in] ctx libyang context to find the schema.
284 * @param[in] prefix Prefix found in the value string
285 * @param[in] prefix_len Length of the @p prefix.
286 * @param[in] private Internal data needed by the callback.
287 * @return Pointer to the YANG schema identified by the provided prefix or NULL if no mapping found.
288 */
Michal Vasko52927e22020-03-16 17:26:14 +0100289typedef const struct lys_module *(*ly_clb_resolve_prefix)(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len,
290 void *private);
Michal Vasko9f96a052020-03-10 09:41:45 +0100291
292/**
293 * @brief Callback provided by the data/schema printers to type plugins to resolve (format-specific) mapping between YANG module of a data object
294 * to prefixes used in the value strings.
295 *
296 * Reverse function to ly_clb_resolve_prefix.
297 *
298 * XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports.
299 *
300 * @param[in] mod YANG module of the object.
301 * @param[in] private Internal data needed by the callback.
302 * @return String representing prefix for the object of the given YANG module @p mod.
303 */
304typedef const char *(*ly_clb_get_prefix)(const struct lys_module *mod, void *private);
305
306/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200307 * @brief Generic structure for a data node.
308 */
309struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200310 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
311 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
312 used to get know that nodes are not equal, it cannot be used to decide that the
313 nodes are equal due to possible collisions. */
314 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Michal Vaskoecd62de2019-11-13 12:35:11 +0100315 const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just
316 ::struct lysc_node but ::struct lysc_action or ::struct lysc_notif as well */
Radek Krejcie7b95092019-05-15 11:03:07 +0200317 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
318 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
319 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
320 never NULL. If there is no sibling node, pointer points to the node
321 itself. In case of the first node, this pointer points to the last
322 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100323 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200324
325#ifdef LY_ENABLED_LYD_PRIV
326 void *priv; /**< private user data, not used by libyang */
327#endif
328};
329
330/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200331 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200332 */
333struct lyd_node_inner {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200334 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
335 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
336 used to get know that nodes are not equal, it cannot be used to decide that the
337 nodes are equal due to possible collisions. */
338 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200339 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
340 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
341 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
342 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
343 never NULL. If there is no sibling node, pointer points to the node
344 itself. In case of the first node, this pointer points to the last
345 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100346 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200347
348#ifdef LY_ENABLED_LYD_PRIV
349 void *priv; /**< private user data, not used by libyang */
350#endif
351
352 struct lyd_node *child; /**< pointer to the first child node. */
353 struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200354#define LYD_HT_MIN_ITEMS 4 /**< minimal number of children to create lyd_node_inner::children_ht hash table. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200355};
356
357/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100358 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200359 */
360struct lyd_node_term {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200361 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
362 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
363 used to get know that nodes are not equal, it cannot be used to decide that the
364 nodes are equal due to possible collisions. */
365 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200366 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
367 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
368 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
369 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
370 never NULL. If there is no sibling node, pointer points to the node
371 itself. In case of the first node, this pointer points to the last
372 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100373 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200374
375#ifdef LY_ENABLED_LYD_PRIV
376 void *priv; /**< private user data, not used by libyang */
377#endif
378
379 struct lyd_value value; /**< node's value representation */
380};
381
382/**
383 * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls.
384 */
385struct lyd_node_any {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200386 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
387 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
388 used to get know that nodes are not equal, it cannot be used to decide that the
389 nodes are equal due to possible collisions. */
390 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200391 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
392 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
393 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
394 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
395 never NULL. If there is no sibling node, pointer points to the node
396 itself. In case of the first node, this pointer points to the last
397 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100398 struct lyd_meta *meta; /**< pointer to the list of attributes of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200399
400#ifdef LY_ENABLED_LYD_PRIV
401 void *priv; /**< private user data, not used by libyang */
402#endif
403
Michal Vasko00cbf532020-06-15 13:58:47 +0200404 union lyd_any_value {
Radek Krejciee4cab22019-07-17 17:07:47 +0200405 struct lyd_node *tree; /**< data tree */
406 const char *str; /**< Generic string data */
407 const char *xml; /**< Serialized XML data */
408 const char *json; /**< I-JSON encoded string */
409 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
410 } value; /**< pointer to the stored value representation of the anydata/anyxml node */
411 LYD_ANYDATA_VALUETYPE value_type;/**< type of the data stored as lyd_node_any::value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200412};
413
414/**
Michal Vasko52927e22020-03-16 17:26:14 +0100415 * @brief Data node structure for unparsed (opaque) nodes.
416 */
417struct lyd_node_opaq {
418 uint32_t hash; /**< always 0 */
419 uint32_t flags; /**< always 0 */
420 const struct lysc_node *schema; /**< always NULL */
421 struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */
422 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
423 struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */
424 struct ly_attr *attr;
425
426#ifdef LY_ENABLED_LYD_PRIV
427 void *priv; /**< private user data, not used by libyang */
428#endif
429
430 struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */
431 const char *name;
432 LYD_FORMAT format;
433 struct ly_prefix prefix; /**< name prefix */
434 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
435 const char *value; /**< original value */
436 const struct ly_ctx *ctx; /**< libyang context */
437};
438
439/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200440 * @defgroup dataparseroptions Data parser options
441 * @ingroup datatree
442 *
443 * Various options to change the data tree parsers behavior.
444 *
Michal Vasko9b368d32020-02-14 13:53:31 +0100445 * Default parser behavior:
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100446 * - complete input file is always parsed. In case of XML, even not well-formed XML document (multiple top-level
447 * elements) is parsed in its entirety,
Michal Vasko9f96a052020-03-10 09:41:45 +0100448 * - parser silently ignores data without matching schema node definition,
449 * - list instances are checked whether they have all the keys, error is raised if not.
Michal Vasko9b368d32020-02-14 13:53:31 +0100450 *
451 * Default parser validation behavior:
452 * - the provided data are expected to provide complete datastore content (both the configuration and state data)
453 * and performs data validation according to all YANG rules, specifics follow,
Michal Vasko9f96a052020-03-10 09:41:45 +0100454 * - list instances are expected to have all the keys (it is not checked),
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100455 * - instantiated (status) obsolete data print a warning,
Michal Vasko9b368d32020-02-14 13:53:31 +0100456 * - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have
457 * all the keys, leaf(-lists) correct values),
458 * - when statements on existing nodes are evaluated, if not satisfied, a validation error is raised,
Michal Vaskoc193ce92020-03-06 11:04:48 +0100459 * - if-feature statements are evaluated,
460 * - invalid multiple data instances/data from several cases cause a validation error,
Michal Vasko9b368d32020-02-14 13:53:31 +0100461 * - default values are added.
Radek Krejcie7b95092019-05-15 11:03:07 +0200462 * @{
463 */
464
Michal Vasko52927e22020-03-16 17:26:14 +0100465#define LYD_OPT_PARSE_ONLY 0x0001 /**< Data will be only parsed and no validation will be performed. When statements
466 are kept unevaluated, union types may not be fully resolved, if-feature
467 statements are not checked, and default values are not added (only the ones
468 parsed are present). */
469#define LYD_OPT_TRUSTED 0x0002 /**< Data are considered trusted so they will be parsed as validated. If the parsed
470 data are not valid, using this flag may lead to some unexpected behavior!
471 This flag can be used only with #LYD_OPT_PARSE_ONLY. */
472#define LYD_OPT_STRICT 0x0004 /**< Instead of silently ignoring data without schema definition raise an error.
473 Do not combine with #LYD_OPT_OPAQ. */
474#define LYD_OPT_OPAQ 0x0008 /**< Instead of silently ignoring data without definition, parse them into
475 an opaq node. Do not combine with #LYD_OPT_STRICT. */
476#define LYD_OPT_NO_STATE 0x0010 /**< Forbid state data in the parsed data. */
477
478#define LYD_OPT_MASK 0xFFFF /**< Mask for all the parser options. */
Michal Vasko5b37a352020-03-06 13:38:33 +0100479
Michal Vasko9b368d32020-02-14 13:53:31 +0100480/** @} dataparseroptions */
481
482/**
483 * @defgroup datavalidationoptions Data validation options
484 * @ingroup datatree
485 *
486 * Various options to change data validation behaviour, both for the parser and separate validation.
487 *
488 * Default separate validation behavior:
489 * - the provided data are expected to provide complete datastore content (both the configuration and state data)
490 * and performs data validation according to all YANG rules, specifics follow,
Michal Vaskoe75ecfd2020-03-06 14:12:28 +0100491 * - instantiated (status) obsolete data print a warning,
Michal Vasko9b368d32020-02-14 13:53:31 +0100492 * - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have
493 * all the keys, leaf(-lists) correct values),
494 * - when statements on existing nodes are evaluated. Depending on the previous when state (from previous validation
495 * or parsing), the node is silently auto-deleted if the state changed from true to false, otherwise a validation error
496 * is raised if it evaluates to false,
Michal Vaskoc193ce92020-03-06 11:04:48 +0100497 * - if-feature statements are evaluated,
Michal Vasko9b368d32020-02-14 13:53:31 +0100498 * - data from several cases behave based on their previous state (from previous validation or parsing). If there existed
499 * already a case and another one was added, the previous one is silently auto-deleted. Otherwise (if data from 2 or
500 * more cases were created) a validation error is raised,
501 * - default values are added.
502 *
503 * @{
504 */
505
506#define LYD_VALOPT_NO_STATE 0x00010000 /**< Consider state data not allowed and raise an error if they are found. */
507#define LYD_VALOPT_DATA_ONLY 0x00020000 /**< Validate only modules whose data actually exist. */
Michal Vaskocb7526d2020-03-30 15:08:26 +0200508#define LYD_VALOPT_INPUT 0x00040000 /**< Validate RPC/action request (input parameters). */
509#define LYD_VALOPT_OUTPUT 0x00080000 /**< Validate RPC/action reply (output parameters). */
Michal Vasko9b368d32020-02-14 13:53:31 +0100510
Michal Vasko5b37a352020-03-06 13:38:33 +0100511#define LYD_VALOPT_MASK 0xFFFF0000 /**< Mask for all the validation options. */
512
Michal Vasko9b368d32020-02-14 13:53:31 +0100513/** @} datavalidationoptions */
514
Michal Vaskoa3881362020-01-21 15:57:35 +0100515//#define LYD_OPT_VAL_DIFF 0x40000 /**< Flag only for validation, store all the data node changes performed by the validation
516// in a diff structure. */
517//#define LYD_OPT_DATA_TEMPLATE 0x1000000 /**< Data represents YANG data template. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200518
Radek Krejcie7b95092019-05-15 11:03:07 +0200519/**
520 * @brief Get the node's children list if any.
521 *
522 * Decides the node's type and in case it has a children list, returns it.
523 * @param[in] node Node to check.
524 * @return Pointer to the first child node (if any) of the \p node.
525 */
Radek Krejcidae0ee82020-05-06 16:53:24 +0200526struct lyd_node *lyd_node_children(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200527
528/**
Michal Vaskoc193ce92020-03-06 11:04:48 +0100529 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
530 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
531 *
532 * @param[in] node Data node to examine.
533 * @return Module owner of the node.
534 */
535const struct lys_module *lyd_owner_module(const struct lyd_node *node);
536
537/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200538 * @brief Parse (and validate) data from memory.
539 *
540 * In case of LY_XML format, the data string is parsed completely. It means that when it contains
541 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
542 * returned data node is a root of the first tree with other trees connected via the next pointer.
543 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
544 *
545 * @param[in] ctx Context to connect with the data tree being built here.
546 * @param[in] data Serialized data in the specified format.
547 * @param[in] format Format of the input data to be parsed.
Michal Vasko5b37a352020-03-06 13:38:33 +0100548 * @param[in] options Parser and validation options, see @ref parseroptions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200549 * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure,
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200550 * use lyd_free_all().
551 * @return NULL in case of error. The error information can be then obtained using ly_err* functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200552 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100553struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options);
Radek Krejcie7b95092019-05-15 11:03:07 +0200554
555/**
556 * @brief Read (and validate) data from the given file descriptor.
557 *
558 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
559 *
560 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
561 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
562 * returned data node is a root of the first tree with other trees connected via the next pointer.
563 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
564 *
565 * @param[in] ctx Context to connect with the data tree being built here.
566 * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format.
567 * @param[in] format Format of the input data to be parsed.
Michal Vaskoa3881362020-01-21 15:57:35 +0100568 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_PARSE_ONLY implicitly.
Radek Krejcie7b95092019-05-15 11:03:07 +0200569 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200570 * use lyd_free_all().
571 * @return NULL in case of error. The error information can be then obtained using ly_err* functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200572 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100573struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options);
Radek Krejcie7b95092019-05-15 11:03:07 +0200574
575/**
576 * @brief Read (and validate) data from the given file path.
577 *
578 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
579 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
580 * returned data node is a root of the first tree with other trees connected via the next pointer.
581 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
582 *
583 * @param[in] ctx Context to connect with the data tree being built here.
584 * @param[in] path Path to the file containing the data tree in the specified format.
585 * @param[in] format Format of the input data to be parsed.
Michal Vaskoa3881362020-01-21 15:57:35 +0100586 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_PARSE_ONLY implicitly.
Radek Krejcie7b95092019-05-15 11:03:07 +0200587 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200588 * use lyd_free_all().
589 * @return NULL in case of error. The error information can be then obtained using ly_err* functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200590 */
Michal Vaskoa3881362020-01-21 15:57:35 +0100591struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options);
Radek Krejcie7b95092019-05-15 11:03:07 +0200592
593/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100594 * @brief Fully validate a data tree.
595 *
Michal Vaskob1b5c262020-03-05 14:29:47 +0100596 * @param[in,out] tree Data tree to recursively validate. May be changed by validation.
597 * @param[in] ctx libyang context. Can be NULL if @p tree is set.
Michal Vaskof03ed032020-03-04 13:31:44 +0100598 * @param[in] val_opts Validation options (@ref datavalidationoptions).
599 * @return LY_SUCCESS on success.
600 * @return LY_ERR error on error.
601 */
Michal Vaskob1b5c262020-03-05 14:29:47 +0100602LY_ERR lyd_validate(struct lyd_node **tree, const struct ly_ctx *ctx, int val_opts);
603
604/**
605 * @brief Fully validate a data tree.
606 *
607 * @param[in,out] tree Data tree to recursively validate. May be changed by validation.
608 * @param[in] modules Array of modules to validate.
609 * @param[in] mod_count Number of @p modules.
610 * @param[in] val_opts Validation options (@ref datavalidationoptions).
611 * @return LY_SUCCESS on success.
612 * @return LY_ERR error on error.
613 */
614LY_ERR lyd_validate_modules(struct lyd_node **tree, const struct lys_module **modules, int mod_count, int val_opts);
Michal Vaskof03ed032020-03-04 13:31:44 +0100615
616/**
Michal Vaskocb7526d2020-03-30 15:08:26 +0200617 * @brief Validate an RPC/action, notification, or RPC/action reply.
Michal Vaskofea12c62020-03-30 11:00:15 +0200618 *
Michal Vaskocb7526d2020-03-30 15:08:26 +0200619 * @param[in,out] op_tree Operation tree with any parents. It can point to the operation itself or any of
620 * its parents, only the operation subtree is actually validated.
621 * @param[in] tree Tree to be used for validating references from the operation subtree.
622 * @param[in] val_opts Specific validation option (@ref datavalidationoptions):
623 * 0 - no validation option for validation notifications,
624 * ::LYD_VALOPT_INPUT - for validating RPC/action request (input),
625 * ::LYD_VALOPT_OUTPUT - for validatin RPC/action reply (output).
Michal Vaskofea12c62020-03-30 11:00:15 +0200626 * @return LY_SUCCESS on success.
627 * @return LY_ERR error on error.
628 */
Michal Vaskocb7526d2020-03-30 15:08:26 +0200629LY_ERR lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *tree, int val_opts);
Michal Vaskofea12c62020-03-30 11:00:15 +0200630
631/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200632 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100633 *
634 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
Michal Vaskof03ed032020-03-04 13:31:44 +0100635 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100636 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
637 * @return New created node.
638 * @return NULL on error.
639 */
640struct lyd_node *lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name);
641
642/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200643 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100644 *
645 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
Michal Vaskof03ed032020-03-04 13:31:44 +0100646 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100647 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
648 * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier
Michal Vasko004d3152020-06-11 19:59:22 +0200649 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
650 * key-less lists.
Michal Vasko013a8182020-03-03 10:46:53 +0100651 * @return New created node.
652 * @return NULL on error.
653 */
654struct lyd_node *lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ...);
655
656/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200657 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100658 *
659 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
Michal Vaskof03ed032020-03-04 13:31:44 +0100660 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100661 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
662 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
663 * In case of an instance-identifier or identityref value, the JSON format is expected (module names instead of prefixes).
Michal Vasko004d3152020-06-11 19:59:22 +0200664 * Use NULL or string of length 0 in case of key-less list.
Michal Vasko013a8182020-03-03 10:46:53 +0100665 * @return New created node.
666 * @return NULL on error.
667 */
668struct lyd_node *lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys);
669
670/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200671 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100672 *
673 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
Michal Vaskof03ed032020-03-04 13:31:44 +0100674 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100675 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
676 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
677 * value, the JSON format is expected (module names instead of prefixes).
678 * @return New created node.
679 * @return NULL on error.
680 */
681struct lyd_node *lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str);
682
683/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200684 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100685 *
686 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
Michal Vaskof03ed032020-03-04 13:31:44 +0100687 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100688 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
689 * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type.
690 * @param[in] value_type Type of the provided value in @p value.
691 * @return New created node.
692 * @return NULL on error.
693 */
694struct lyd_node *lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name,
695 const void *value, LYD_ANYDATA_VALUETYPE value_type);
696
697/**
Michal Vaskod86997b2020-05-26 15:19:54 +0200698 * @brief Create new metadata for a data node.
699 *
700 * @param[in] parent Parent node for the metadata being created.
Michal Vasko00cbf532020-06-15 13:58:47 +0200701 * @param[in] module Module of the metadata being created. If NULL, @p name must include module name as the prefix.
Michal Vaskod86997b2020-05-26 15:19:54 +0200702 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
703 * If the prefix is specified it is always used but if not specified, @p module must be set.
Michal Vasko00cbf532020-06-15 13:58:47 +0200704 * @param[in] val_str String form of the value of the metadata. In case of an instance-identifier or identityref
Michal Vaskod86997b2020-05-26 15:19:54 +0200705 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko00cbf532020-06-15 13:58:47 +0200706 * @return New created metadata of @p parent.
Michal Vaskod86997b2020-05-26 15:19:54 +0200707 * @return NULL on error.
708 */
709struct lyd_meta *lyd_new_meta(struct lyd_node *parent, const struct lys_module *module, const char *name,
710 const char *val_str);
711
712/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200713 * @brief Create a new opaque node in the data tree.
714 *
715 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
716 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
717 * @param[in] name Node name.
718 * @param[in] value Node value, may be NULL.
719 * @param[in] module_name Node module name.
720 * @return New created node.
721 * @return NULL on error.
722 */
723struct lyd_node *lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
724 const char *module_name);
725
726/**
727 * @brief Create new attribute for an opaque data node.
728 *
729 * @param[in] parent Parent opaque node for the attribute being created.
730 * @param[in] module Module name of the attribute being created. There may be none.
731 * @param[in] name Attribute name. It can include the module name as the prefix.
732 * @param[in] val_str String value of the attribute. Is stored directly.
733 * @return New created attribute of @p parent.
734 * @return NULL on error.
735 */
736struct ly_attr *lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str);
737
738/**
739 * @defgroup pathoptions Data path creation options
740 * @ingroup datatree
741 *
742 * Various options to change lyd_new_path*() behavior.
743 *
744 * Default behavior:
745 * - if the target node already exists (and is not default), an error is returned.
746 * - the whole path to the target node is created (with any missing parents) if necessary.
747 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
748 * @{
749 */
750
751#define LYD_NEWOPT_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
752 default flag is changed, it is returned. If the target node exists and is not
753 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
754 no error set. */
755#define LYD_NEWOPT_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
756 output ones. */
757#define LYD_NEWOPT_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
758 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
759 invalid value (leaf/leaf-list), it is created as opaque. */
760
761/** @} pathoptions */
762
763/**
764 * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes,
765 * for those use ::lyd_new_path_any.
766 *
767 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
768 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
769 * and @p value is set, the predicate is preferred.
770 *
771 * @param[in] parent Data parent to add to/modify, can be NULL.
772 * @param[in] ctx libyang context, must be set if @p parent is NULL.
773 * @param[in] path Path to create (TODO ref path).
774 * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored.
775 * @param[in] options Bitmask of options, see @ref pathoptions.
776 * @return (Last) created node.
777 * @return NULL on error.
778 */
779struct lyd_node *lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value,
780 int options);
781
782/**
783 * @brief Create a new node in the data tree based on a path. All node types can be created.
784 *
785 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
786 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
787 * and @p value is set, the predicate is preferred.
788 *
789 * @param[in] parent Data parent to add to/modify, can be NULL.
790 * @param[in] ctx libyang context, must be set if @p parent is NULL.
791 * @param[in] path Path to create (TODO ref path).
792 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
793 * @param[in] value_type Anyxml/anydata node @p value type.
794 * @param[in] options Bitmask of options, see @ref pathoptions.
795 * @return (Last) created node.
796 * @return NULL on error.
797 */
798struct lyd_node *lyd_new_path_any(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
799 LYD_ANYDATA_VALUETYPE value_type, int options);
800
801/**
802 * @brief Create a new node in the data tree based on a path. All node types can be created.
803 *
804 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
805 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
806 * and @p value is set, the predicate is preferred.
807 *
808 * @param[in] parent Data parent to add to/modify, can be NULL.
809 * @param[in] ctx libyang context, must be set if @p parent is NULL.
810 * @param[in] path Path to create (TODO ref path).
811 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
812 * @param[in] value_type Anyxml/anydata node @p value type.
813 * @param[in] options Bitmask of options, see @ref pathoptions.
814 * @param[out] new_parent First parent node created, can be NULL. If only one node was created, equals to @p new_node.
815 * @param[out] new_node Last node created, can be NULL.
816 * @return LY_ERR value.
817 */
818LY_ERR lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
819 LYD_ANYDATA_VALUETYPE value_type, int options, struct lyd_node **new_parent, struct lyd_node **new_node);
820
821/**
822 * @brief Change the value of a term (leaf or leaf-list) node.
823 *
824 * Node changed this way is always considered explicitly set, meaning its default flag
825 * is always cleared.
826 *
827 * @param[in] term Term node to change.
828 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
829 * @return LY_SUCCESS if value was changed,
830 * @return LY_EEXIST if value was the same and only the default flag was cleared,
831 * @return LY_ENOT if the values were equal and no change occured,
832 * @return LY_ERR value on other errors.
833 */
834LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
835
836/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100837 * @brief Insert a child into a parent. It is inserted as the last child.
838 *
839 * - if the node is part of some other tree, it is automatically unlinked.
840 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
841 *
842 * @param[in] parent Parent node to insert into.
843 * @param[in] node Node to insert.
844 * @return LY_SUCCESS on success.
845 * @return LY_ERR error on error.
846 */
847LY_ERR lyd_insert(struct lyd_node *parent, struct lyd_node *node);
848
849/**
Michal Vaskob1b5c262020-03-05 14:29:47 +0100850 * @brief Insert a node into siblings. It is inserted as the last sibling.
851 *
852 * - if the node is part of some other tree, it is automatically unlinked.
853 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
854 *
855 * @param[in] sibling Siblings to insert into.
856 * @param[in] node Node to insert.
857 * @return LY_SUCCESS on success.
858 * @return LY_ERR error on error.
859 */
860LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node);
861
862/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100863 * @brief Insert a node before another node that is its schema sibling.
864 *
865 * - if the node is part of some other tree, it is automatically unlinked.
866 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
867 *
868 * @param[in] sibling Sibling node to insert before.
869 * @param[in] node Node to insert.
870 * @return LY_SUCCESS on success.
871 * @return LY_ERR error on error.
872 */
873LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
874
875/**
876 * @brief Insert a node after another node that is its schema sibling.
877 *
878 * - if the node is part of some other tree, it is automatically unlinked.
879 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
880 *
881 * @param[in] sibling Sibling node to insert after.
882 * @param[in] node Node to insert.
883 * @return LY_SUCCESS on success.
884 * @return LY_ERR error on error.
885 */
886LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
887
888/**
889 * @brief Unlink the specified data subtree.
890 *
891 * @param[in] node Data tree node to be unlinked (together with all the children).
892 */
893void lyd_unlink_tree(struct lyd_node *node);
894
895/**
Radek Krejcib0849a22019-07-25 12:31:04 +0200896 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +0200897 *
898 * @param[in] node Any of the nodes inside the tree.
899 */
900void lyd_free_all(struct lyd_node *node);
901
902/**
Radek Krejcib0849a22019-07-25 12:31:04 +0200903 * @brief Free all the sibling nodes.
904 *
905 * @param[in] node Any of the sibling nodes to free.
906 */
Michal Vaskof03ed032020-03-04 13:31:44 +0100907void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +0200908
909/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200910 * @brief Free (and unlink) the specified data (sub)tree.
911 *
Radek Krejcie7b95092019-05-15 11:03:07 +0200912 * @param[in] node Root of the (sub)tree to be freed.
913 */
914void lyd_free_tree(struct lyd_node *node);
915
916/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100917 * @brief Destroy metadata.
Radek Krejcie7b95092019-05-15 11:03:07 +0200918 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100919 * @param[in] ctx Context where the metadata was created.
920 * @param[in] meta Metadata to destroy
Michal Vasko52927e22020-03-16 17:26:14 +0100921 * @param[in] recursive Zero to destroy only the single metadata (the metadata list is corrected),
Michal Vasko9f96a052020-03-10 09:41:45 +0100922 * non-zero to destroy also all the subsequent metadata in the list.
Radek Krejcie7b95092019-05-15 11:03:07 +0200923 */
Michal Vasko52927e22020-03-16 17:26:14 +0100924void lyd_free_meta(const struct ly_ctx *ctx, struct lyd_meta *meta, int recursive);
925
926/**
927 * @brief Destroy attributes.
928 *
929 * @param[in] ctx Context where the attributes were created.
930 * @param[in] attr Attributes to destroy.
931 * @param[in] recursive Zero to destroy only the single attribute (the attribute list is corrected),
932 * non-zero to destroy also all the subsequent attributes in the list.
933 */
934void ly_free_attr(const struct ly_ctx *ctx, struct ly_attr *attr, int recursive);
Radek Krejcie7b95092019-05-15 11:03:07 +0200935
Radek Krejci084289f2019-07-09 17:35:30 +0200936/**
937 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
938 *
939 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
940 *
941 * If there is no data node instance and you are fine with checking just the type's restrictions without the
942 * data tree context (e.g. for the case of require-instance restriction), use lys_value_validate().
943 *
944 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
945 * @param[in] node Data node for the @p value.
946 * @param[in] value String value to be checked.
947 * @param[in] value_len Length of the given @p value (mandatory).
948 * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string.
949 * @param[in] get_prefix_data Private data for the @p get_prefix callback.
950 * @param[in] format Input format of the data.
Michal Vaskof03ed032020-03-04 13:31:44 +0100951 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
952 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
953 * then LY_EINCOMPLETE can be returned.
Radek Krejci084289f2019-07-09 17:35:30 +0200954 * @return LY_SUCCESS on success
955 * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation (e.g. due to require-instance).
956 * @return LY_ERR value if an error occurred.
957 */
Michal Vasko44685da2020-03-17 15:38:06 +0100958LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len,
Michal Vaskof03ed032020-03-04 13:31:44 +0100959 ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +0200960
961/**
962 * @brief Compare the node's value with the given string value. The string value is first validated according to the node's type.
963 *
964 * @param[in] node Data node to compare.
965 * @param[in] value String value to be compared. It does not need to be in a canonical form - as part of the process,
966 * it is validated and canonized if possible.
967 * @param[in] value_len Length of the given @p value (mandatory).
968 * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string.
969 * @param[in] get_prefix_data Private data for the @p get_prefix callback.
970 * @param[in] format Input format of the data.
Michal Vaskof03ed032020-03-04 13:31:44 +0100971 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
972 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
973 * then LY_EINCOMPLETE can be returned.
Radek Krejci084289f2019-07-09 17:35:30 +0200974 * @return LY_SUCCESS on success
975 * @return LY_EINCOMPLETE in case of success when the @p trees is not provided and it was needed to finish the validation of
976 * the given string @p value (e.g. due to require-instance).
977 * @return LY_ERR value if an error occurred.
978 */
979LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len,
Michal Vaskof03ed032020-03-04 13:31:44 +0100980 ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +0200981
Radek Krejci576b23f2019-07-12 14:06:32 +0200982/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200983 * @defgroup datacompareoptions Data compare options
984 * @ingroup datatree
985 *
Radek Krejci22ebdba2019-07-25 13:59:43 +0200986 * Various options to change the lyd_compare() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200987 */
988#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
989 (subtree, so direct as well as indirect children) are the same. By default,
990 containers are the same in case of the same schema node and lists are the same
991 in case of equal keys (keyless lists do the full recursion comparison all the time). */
992#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
993 changes this behavior and implicit (automatically created default node) and explicit
994 (explicitly created node with the default value) default nodes are considered different. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200995/**@} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200996
997/**
998 * @brief Compare 2 data nodes if they are equivalent.
999 *
1000 * @param[in] node1 The first node to compare.
1001 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001002 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001003 * @return LY_SUCCESS if the nodes are equivalent.
1004 * @return LY_ENOT if the nodes are not equivalent.
1005 */
1006LY_ERR lyd_compare(const struct lyd_node *node1, const struct lyd_node *node2, int options);
1007
1008/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001009 * @defgroup dupoptions Data duplication options
1010 * @ingroup datatree
1011 *
1012 * Various options to change lyd_dup() behavior.
1013 *
1014 * Default behavior:
1015 * - only the specified node is duplicated without siblings, parents, or children.
1016 * - all the attributes of the duplicated nodes are also duplicated.
1017 * @{
1018 */
1019
1020#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1021 list's keys are always duplicated. */
1022#define LYD_DUP_NO_ATTR 0x02 /**< Do not duplicate attributes of any node. */
1023#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1024 Keys are also duplicated for lists. Return value does not change! */
1025#define LYD_DUP_WITH_SIBLINGS 0x08 /**< Duplicate also all the sibling of the given node. */
1026#define LYD_DUP_WITH_WHEN 0x10 /**< Also copy any when evaluation state flags. This is useful in case the copied
1027 nodes are actually still part of the same datastore meaning no dependency data
1028 could have changed. Otherwise nothing is assumed about the copied node when
1029 state and it is evaluated from scratch during validation. */
1030
1031/** @} dupoptions */
1032
1033/**
1034 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
1035 *
1036 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1037 *
1038 * @param[in] node Data tree node to be duplicated.
1039 * @param[in] parent Optional parent node where to connect the duplicated node(s).
1040 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connect with the @p parent
1041 * (if the parents chain does not match at some node the schema node of the provided @p parent, duplication fails).
1042 * @param[in] options Bitmask of options flags, see @ref dupoptions.
1043 * @return Created copy of the provided data \p node (the first of the duplicated siblings when LYD_DUP_WITH_SIBLINGS used).
1044 * Note that in case the parents chain is duplicated for the duplicated node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node
1045 * is still returned, not a pointer to the duplicated parents.
1046 */
1047struct lyd_node *lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, int options);
1048
1049/**
Radek Krejci576b23f2019-07-12 14:06:32 +02001050 * @brief Resolve instance-identifier defined by lyd_value_path structure.
1051 *
1052 * @param[in] path Path structure specifying the instance-identifier target.
Michal Vaskof03ed032020-03-04 13:31:44 +01001053 * @param[in] tree Data tree to be searched.
1054 * @return Target node of the instance-identifier present in the given data @p tree.
Radek Krejci576b23f2019-07-12 14:06:32 +02001055 */
Michal Vasko004d3152020-06-11 19:59:22 +02001056const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02001057
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001058/**
1059 * @brief Get string value of a term data \p node.
1060 *
1061 * @param[in] node Data tree node with the value.
1062 * @param[out] dynamic Whether the string value was dynmically allocated.
1063 * @return String value of @p node, if @p dynamic, needs to be freed.
1064 */
1065const char *lyd_value2str(const struct lyd_node_term *node, int *dynamic);
1066
1067/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001068 * @brief Get string value of a metadata \p meta.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001069 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001070 * @param[in] meta Metadata with the value.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001071 * @param[out] dynamic Whether the string value was dynmically allocated.
Michal Vasko9f96a052020-03-10 09:41:45 +01001072 * @return String value of @p meta, if @p dynamic, needs to be freed.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001073 */
Michal Vasko9f96a052020-03-10 09:41:45 +01001074const char *lyd_meta2str(const struct lyd_meta *meta, int *dynamic);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001075
1076/**
1077 * @brief Types of the different data paths.
1078 */
1079typedef enum {
Michal Vasko14654712020-02-06 08:35:21 +01001080 LYD_PATH_LOG, /**< Descriptive path format used in log messages */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001081} LYD_PATH_TYPE;
1082
1083/**
1084 * @brief Generate path of the given node in the requested format.
1085 *
1086 * @param[in] node Schema path of this node will be generated.
1087 * @param[in] pathtype Format of the path to generate.
1088 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1089 * If NULL, memory for the complete path is allocated.
1090 * @param[in] buflen Size of the provided @p buffer.
1091 * @return NULL in case of memory allocation error, path of the node otherwise.
1092 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1093 */
1094char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
1095
Michal Vaskoe444f752020-02-10 12:20:06 +01001096/**
Michal Vaskoe444f752020-02-10 12:20:06 +01001097 * @brief Find the node, in the list, satisfying the given restrictions.
1098 * Does **not** use hashes - should not be used unless necessary for best performance.
1099 *
1100 * @param[in] first Starting sibling node for search, only succeeding ones are searched.
1101 * @param[in] module Module of the node to find.
1102 * @param[in] name Name of the node to find.
Michal Vaskof03ed032020-03-04 13:31:44 +01001103 * @param[in] name_len Optional length of @p name in case it is not 0-terminated string.
Michal Vaskoe444f752020-02-10 12:20:06 +01001104 * @param[in] key_or_value Expected value depends on the type of @p name node:
1105 * LYS_CONTAINER:
1106 * LYS_ANYXML:
1107 * LYS_ANYDATA:
1108 * LYS_NOTIF:
1109 * LYS_RPC:
1110 * LYS_ACTION:
1111 * NULL should be always set, will be ignored.
1112 * LYS_LEAF:
1113 * LYS_LEAFLIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001114 * Optional restriction on the specific leaf(-list) value.
Michal Vaskoe444f752020-02-10 12:20:06 +01001115 * LYS_LIST:
1116 * Optional keys values of the matching list instances in the form of "[key1='val1'][key2='val2']...".
Michal Vasko90932a92020-02-12 14:33:03 +01001117 * The keys do not have to be ordered and not all keys need to be specified.
1118 *
1119 * Note that any explicit values (leaf, leaf-list or list key values) will be canonized first
1120 * before comparison. But values that do not have a canonical value are expected to be in the
1121 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001122 * @param[in] val_len Optional length of @p key_or_value in case it is not 0-terminated string.
Michal Vaskoe444f752020-02-10 12:20:06 +01001123 * @param[out] match Found data node.
1124 * @return LY_SUCCESS on success, @p match set.
1125 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1126 * @return LY_ERR value if another error occurred.
1127 */
1128LY_ERR lyd_find_sibling_next(const struct lyd_node *first, const struct lys_module *module, const char *name,
1129 size_t name_len, const char *key_or_value, size_t val_len, struct lyd_node **match);
1130
1131/**
1132 * @brief Search in the given siblings (NOT recursively) for the first target instance.
1133 * Uses hashes - should be used whenever possible for best performance.
1134 *
1135 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1136 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01001137 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001138 * @return LY_SUCCESS on success, @p match set.
1139 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1140 * @return LY_ERR value if another error occurred.
1141 */
1142LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
1143
1144/**
1145 * @brief Search in the given siblings for all target instances.
1146 * Uses hashes - should be used whenever possible for best performance.
1147 *
1148 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1149 * @param[in] target Target node to find. Key-less lists are compared based on
1150 * all its descendants (both direct and indirect).
1151 * @param[out] set Found nodes in a set in case of success.
1152 * @return LY_SUCCESS on success.
1153 * @return LY_ENOTFOUND if no matching siblings found.
1154 * @return LY_ERR value if another error occurred.
1155 */
1156LY_ERR lyd_find_sibling_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set);
1157
1158/**
1159 * @brief Search in the given siblings for the first schema instance.
1160 * Uses hashes - should be used whenever possible for best performance.
1161 *
1162 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1163 * @param[in] schema Schema node of the data node to find.
1164 * @param[in] key_or_value Expected value depends on the type of \p schema:
1165 * LYS_CONTAINER:
1166 * LYS_LEAF:
1167 * LYS_ANYXML:
1168 * LYS_ANYDATA:
1169 * LYS_NOTIF:
1170 * LYS_RPC:
1171 * LYS_ACTION:
1172 * NULL should be always set, will be ignored.
1173 * LYS_LEAFLIST:
1174 * Searched instance value.
1175 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001176 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
1177 * The keys do not have to be ordered but all of them must be set.
1178 *
1179 * Note that any explicit values (leaf-list or list key values) will be canonized first
1180 * before comparison. But values that do not have a canonical value are expected to be in the
1181 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001182 * @param[in] val_len Optional length of @p key_or_value in case it is not 0-terminated.
Michal Vasko9b368d32020-02-14 13:53:31 +01001183 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001184 * @return LY_SUCCESS on success, @p match set.
1185 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1186 * @return LY_EINVAL if @p schema is a key-less list.
1187 * @return LY_ERR value if another error occurred.
1188 */
1189LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value,
1190 size_t val_len, struct lyd_node **match);
1191
Michal Vaskoccc02342020-05-21 10:09:21 +02001192/**
1193 * @brief Search in the given data for instances of nodes matching the provided XPath.
1194 *
Michal Vasko61ac2f62020-05-25 12:39:51 +02001195 * The expected format of the expression is JSON (::LYD_JSON) meaning the first node in every path
1196 * must have its module name as prefix or be the special `*` value for all the nodes.
1197 *
Michal Vasko19a30602020-05-25 10:40:19 +02001198 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
1199 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
1200 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
1201 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
1202 *
Michal Vaskoccc02342020-05-21 10:09:21 +02001203 * @param[in] ctx_node XPath context node.
1204 * @param[in] xpath Data XPath expression filtering the matching nodes. ::LYD_JSON format is expected.
1205 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
1206 * the returned set is empty.
1207 * @return LY_SUCCESS on success, @p set is returned.
1208 * @return LY_ERR value if an error occurred.
1209 */
1210LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
1211
Radek Krejcie7b95092019-05-15 11:03:07 +02001212#ifdef __cplusplus
1213}
1214#endif
1215
1216#endif /* LY_TREE_DATA_H_ */