blob: ed7693c952db8e213c54a34b9bccdda6b547bb6f [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 */ \
Michal Vasko5bfd4be2020-06-23 13:26:19 +020091 (NEXT) = lyd_node_children((struct lyd_node*)ELEM, 0); \
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 */
Michal Vasko60ea6352020-06-29 13:39:39 +0200125 LYD_LYB, /**< LYB instance data format, invalid value prefix format (same as LYD_JSON) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200126} LYD_FORMAT;
127
128/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200129 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200130 */
131typedef enum {
Radek Krejci22ebdba2019-07-25 13:59:43 +0200132 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 +0200133 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
134 with the data after a successful call (including calling lyd_free() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200135 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 +0200136 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
137 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200138 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
139 LYD_ANYDATA_JSON, /**< Value is a string containing the data modeled by YANG and encoded as I-JSON. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200140 LYD_ANYDATA_LYB, /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200141} LYD_ANYDATA_VALUETYPE;
142
143/** @} */
144
145/**
146 * @brief YANG data representation
147 */
148struct lyd_value {
Radek Krejci950f6a52019-09-12 17:15:32 +0200149 const char *original; /**< Original string representation of the value. It is never NULL, but (canonical) string representation
150 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 +0200151 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200152 int8_t boolean; /**< 0 as false, 1 as true */
153 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200154 int8_t int8; /**< 8-bit signed integer */
155 int16_t int16; /**< 16-bit signed integer */
156 int32_t int32; /**< 32-bit signed integer */
157 int64_t int64; /**< 64-bit signed integer */
158 uint8_t uint8; /**< 8-bit unsigned integer */
159 uint16_t uint16; /**< 16-bit signed integer */
160 uint32_t uint32; /**< 32-bit signed integer */
161 uint64_t uint64; /**< 64-bit signed integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200162 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200163 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 +0200164 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Radek Krejciefbb3922019-07-15 12:58:00 +0200165
166 struct lyd_value_subvalue {
167 struct lyd_value_prefix {
168 const char *prefix; /**< prefix string used in the canonized string to identify the mod of the YANG schema */
169 const struct lys_module *mod; /**< YANG schema module identified by the prefix string */
170 } *prefixes; /**< list of mappings between prefix in canonized value to a YANG schema ([sized array](@ref sizedarrays)) */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200171 struct lyd_value *value; /**< representation of the value according to the selected union's subtype (stored as lyd_value::realpath
172 here, in subvalue structure */
173 } *subvalue; /**< data to represent data with multiple types (union). Original value is stored in the main
Michal Vasko9b368d32020-02-14 13:53:31 +0100174 lyd_value:canonical_cache while the lyd_value_subvalue::value contains representation according to the
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200175 one of the union's type. The lyd_value_subvalue:prefixes provides (possible) mappings from prefixes
176 in original value to YANG modules. These prefixes are necessary to parse original value to the union's
177 subtypes. */
Radek Krejci084289f2019-07-09 17:35:30 +0200178
Michal Vasko004d3152020-06-11 19:59:22 +0200179 struct ly_path *target; /**< Instance-identifier's target path. */
Radek Krejci084289f2019-07-09 17:35:30 +0200180
Radek Krejcie7b95092019-05-15 11:03:07 +0200181 void *ptr; /**< generic data type structure used to store the data */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200182 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the lyd_value::realtype
183 plugin's callbacks to work with the data. */
Radek Krejci084289f2019-07-09 17:35:30 +0200184
Radek Krejci950f6a52019-09-12 17:15:32 +0200185 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 +0200186 in the schema node of the data node since the type's store plugin can use other types/plugins for
187 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
188 target type. In contrast, union type also use its subtype's callbacks, but inside an internal data
189 lyd_value::subvalue structure, so here is the pointer to the union type.
190 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
191 the type used to store data directly in the same lyd_value instance. */
Radek Krejci950f6a52019-09-12 17:15:32 +0200192 void *canonical_cache; /**< Generic cache for type plugins to store data necessary to print canonical value. It can be the canonical
193 value itself or anything else useful to print the canonical form of the value. Plugin is responsible for
194 freeing the cache in its free callback. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200195};
196
197/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100198 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200199 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100200 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200201 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
202 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
203 * they are represented as JSON elements starting with the '@' character (for more information, see the
204 * YANG metadata RFC.
205 *
206 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100207struct lyd_meta {
208 struct lyd_node *parent; /**< data node where the metadata is placed */
209 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
210 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
211 const char *name; /**< metadata name */
212 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200213};
214
Michal Vasko52927e22020-03-16 17:26:14 +0100215/**
216 * @brief Generic prefix and namespace mapping, meaning depends on the format.
217 */
218struct ly_prefix {
219 const char *pref;
220 const char *ns;
221};
222
223/**
224 * @brief Generic attribute structure.
225 */
226struct ly_attr {
227 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
228 struct ly_attr *next;
229 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
230 const char *name;
231 const char *value;
232
233 LYD_FORMAT format;
234 struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */
235
236};
Radek Krejcie7b95092019-05-15 11:03:07 +0200237
Michal Vasko1bf09392020-03-27 12:38:10 +0100238#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 +0200239#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
240#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
241
242/**
Michal Vasko9b368d32020-02-14 13:53:31 +0100243 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200244 * @ingroup datatree
245 * @{
246 *
247 * Various flags of data nodes.
248 *
249 * 1 - container 5 - anydata/anyxml
250 * 2 - list 6 - rpc/action
251 * 3 - leaf 7 - notification
252 * 4 - leaflist
253 *
254 * bit name 1 2 3 4 5 6 7
255 * ---------------------+-+-+-+-+-+-+-+
256 * 1 LYD_DEFAULT |x| |x|x| | | |
257 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100258 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100259 * +-+-+-+-+-+-+-+
260 * 3 LYD_NEW |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200261 * ---------------------+-+-+-+-+-+-+-+
262 *
263 */
264
Michal Vasko5c4e5892019-11-14 12:31:38 +0100265#define LYD_DEFAULT 0x01 /**< default (implicit) node */
266#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
Michal Vasko9b368d32020-02-14 13:53:31 +0100267#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
Michal Vasko52927e22020-03-16 17:26:14 +0100268
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200269/** @} */
270
271/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100272 * @brief Callback provided by the data/schema parsers to type plugins to resolve (format-specific) mapping between prefixes used
273 * in the value strings to the YANG schemas.
274 *
275 * Reverse function to ly_clb_get_prefix.
276 *
277 * XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports.
278 *
279 * @param[in] ctx libyang context to find the schema.
280 * @param[in] prefix Prefix found in the value string
281 * @param[in] prefix_len Length of the @p prefix.
282 * @param[in] private Internal data needed by the callback.
283 * @return Pointer to the YANG schema identified by the provided prefix or NULL if no mapping found.
284 */
Michal Vasko52927e22020-03-16 17:26:14 +0100285typedef const struct lys_module *(*ly_clb_resolve_prefix)(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len,
286 void *private);
Michal Vasko9f96a052020-03-10 09:41:45 +0100287
288/**
289 * @brief Callback provided by the data/schema printers to type plugins to resolve (format-specific) mapping between YANG module of a data object
290 * to prefixes used in the value strings.
291 *
292 * Reverse function to ly_clb_resolve_prefix.
293 *
294 * XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports.
295 *
296 * @param[in] mod YANG module of the object.
297 * @param[in] private Internal data needed by the callback.
298 * @return String representing prefix for the object of the given YANG module @p mod.
299 */
300typedef const char *(*ly_clb_get_prefix)(const struct lys_module *mod, void *private);
301
302/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200303 * @brief Generic structure for a data node.
304 */
305struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200306 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
307 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
308 used to get know that nodes are not equal, it cannot be used to decide that the
309 nodes are equal due to possible collisions. */
310 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Michal Vaskoecd62de2019-11-13 12:35:11 +0100311 const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just
312 ::struct lysc_node but ::struct lysc_action or ::struct lysc_notif as well */
Radek Krejcie7b95092019-05-15 11:03:07 +0200313 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
314 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
315 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
316 never NULL. If there is no sibling node, pointer points to the node
317 itself. In case of the first node, this pointer points to the last
318 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100319 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200320
321#ifdef LY_ENABLED_LYD_PRIV
322 void *priv; /**< private user data, not used by libyang */
323#endif
324};
325
326/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200327 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200328 */
329struct lyd_node_inner {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200330 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
331 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
332 used to get know that nodes are not equal, it cannot be used to decide that the
333 nodes are equal due to possible collisions. */
334 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200335 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
336 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
337 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
338 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
339 never NULL. If there is no sibling node, pointer points to the node
340 itself. In case of the first node, this pointer points to the last
341 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100342 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200343
344#ifdef LY_ENABLED_LYD_PRIV
345 void *priv; /**< private user data, not used by libyang */
346#endif
347
348 struct lyd_node *child; /**< pointer to the first child node. */
349 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 +0200350#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 +0200351};
352
353/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100354 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200355 */
356struct lyd_node_term {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200357 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
358 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
359 used to get know that nodes are not equal, it cannot be used to decide that the
360 nodes are equal due to possible collisions. */
361 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200362 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
363 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
364 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
365 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
366 never NULL. If there is no sibling node, pointer points to the node
367 itself. In case of the first node, this pointer points to the last
368 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100369 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200370
371#ifdef LY_ENABLED_LYD_PRIV
372 void *priv; /**< private user data, not used by libyang */
373#endif
374
375 struct lyd_value value; /**< node's value representation */
376};
377
378/**
379 * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls.
380 */
381struct lyd_node_any {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200382 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
383 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
384 used to get know that nodes are not equal, it cannot be used to decide that the
385 nodes are equal due to possible collisions. */
386 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200387 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
388 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
389 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
390 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
391 never NULL. If there is no sibling node, pointer points to the node
392 itself. In case of the first node, this pointer points to the last
393 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100394 struct lyd_meta *meta; /**< pointer to the list of attributes of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200395
396#ifdef LY_ENABLED_LYD_PRIV
397 void *priv; /**< private user data, not used by libyang */
398#endif
399
Michal Vasko00cbf532020-06-15 13:58:47 +0200400 union lyd_any_value {
Radek Krejciee4cab22019-07-17 17:07:47 +0200401 struct lyd_node *tree; /**< data tree */
402 const char *str; /**< Generic string data */
403 const char *xml; /**< Serialized XML data */
404 const char *json; /**< I-JSON encoded string */
405 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
406 } value; /**< pointer to the stored value representation of the anydata/anyxml node */
407 LYD_ANYDATA_VALUETYPE value_type;/**< type of the data stored as lyd_node_any::value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200408};
409
410/**
Michal Vasko52927e22020-03-16 17:26:14 +0100411 * @brief Data node structure for unparsed (opaque) nodes.
412 */
413struct lyd_node_opaq {
414 uint32_t hash; /**< always 0 */
415 uint32_t flags; /**< always 0 */
416 const struct lysc_node *schema; /**< always NULL */
417 struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */
418 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
419 struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */
420 struct ly_attr *attr;
421
422#ifdef LY_ENABLED_LYD_PRIV
423 void *priv; /**< private user data, not used by libyang */
424#endif
425
426 struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */
427 const char *name;
428 LYD_FORMAT format;
429 struct ly_prefix prefix; /**< name prefix */
430 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
431 const char *value; /**< original value */
432 const struct ly_ctx *ctx; /**< libyang context */
433};
434
435/**
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200436 * @defgroup children_options Children traversal options.
437 * @ingroup datatree
438 */
439
440#define LYD_CHILDREN_SKIP_KEYS 0x01 /**< If list children are returned, skip its keys. */
441
442/** @} children_options */
443
444/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200445 * @brief Get the node's children list if any.
446 *
447 * Decides the node's type and in case it has a children list, returns it.
448 * @param[in] node Node to check.
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200449 * @param[in] options Bitmask of options, see @ref
Radek Krejcie7b95092019-05-15 11:03:07 +0200450 * @return Pointer to the first child node (if any) of the \p node.
451 */
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200452struct lyd_node *lyd_node_children(const struct lyd_node *node, int options);
Radek Krejcie7b95092019-05-15 11:03:07 +0200453
454/**
Michal Vaskoc193ce92020-03-06 11:04:48 +0100455 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
456 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
457 *
458 * @param[in] node Data node to examine.
459 * @return Module owner of the node.
460 */
461const struct lys_module *lyd_owner_module(const struct lyd_node *node);
462
463/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200464 * @brief Learn the length of LYB data.
465 *
466 * @param[in] data LYB data to examine.
467 * @return Length of the LYB data chunk,
468 * @return -1 on error.
469 */
470int lyd_lyb_data_length(const char *data);
471
472/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200473 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100474 *
475 * @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 +0100476 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100477 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200478 * @param[out] node Optional created node.
479 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100480 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200481LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100482
483/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200484 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100485 *
486 * @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 +0100487 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100488 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200489 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +0100490 * @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 +0200491 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
492 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200493 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100494 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200495LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, struct lyd_node **node, ...);
Michal Vasko013a8182020-03-03 10:46:53 +0100496
497/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200498 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100499 *
500 * @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 +0100501 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100502 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
503 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
504 * 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 +0200505 * Use NULL or string of length 0 in case of key-less list.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200506 * @param[out] node Optional created node.
507 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100508 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200509LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
510 struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100511
512/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200513 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100514 *
515 * @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 +0100516 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100517 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
518 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
519 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko3a41dff2020-07-15 14:30:28 +0200520 * @param[out] node Optional created node.
521 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100522 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200523LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
524 struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100525
526/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200527 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100528 *
529 * @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 +0100530 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100531 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
532 * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type.
533 * @param[in] value_type Type of the provided value in @p value.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200534 * @param[out] node Optional created node.
535 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100536 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200537LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
538 LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100539
540/**
Michal Vaskod86997b2020-05-26 15:19:54 +0200541 * @brief Create new metadata for a data node.
542 *
543 * @param[in] parent Parent node for the metadata being created.
Michal Vasko00cbf532020-06-15 13:58:47 +0200544 * @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 +0200545 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
546 * 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 +0200547 * @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 +0200548 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko3a41dff2020-07-15 14:30:28 +0200549 * @param[out] meta Optional created metadata.
550 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +0200551 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200552LY_ERR lyd_new_meta(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
553 struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +0200554
555/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200556 * @brief Create a new opaque node in the data tree.
557 *
558 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
559 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
560 * @param[in] name Node name.
561 * @param[in] value Node value, may be NULL.
562 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200563 * @param[out] node Optional created node.
564 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200565 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200566LY_ERR lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
567 const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200568
569/**
570 * @brief Create new attribute for an opaque data node.
571 *
572 * @param[in] parent Parent opaque node for the attribute being created.
573 * @param[in] module Module name of the attribute being created. There may be none.
574 * @param[in] name Attribute name. It can include the module name as the prefix.
575 * @param[in] val_str String value of the attribute. Is stored directly.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200576 * @param[out] attr Optional created attribute.
577 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200578 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200579LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
580 struct ly_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +0200581
582/**
583 * @defgroup pathoptions Data path creation options
584 * @ingroup datatree
585 *
586 * Various options to change lyd_new_path*() behavior.
587 *
588 * Default behavior:
589 * - if the target node already exists (and is not default), an error is returned.
590 * - the whole path to the target node is created (with any missing parents) if necessary.
591 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
592 * @{
593 */
594
595#define LYD_NEWOPT_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
596 default flag is changed, it is returned. If the target node exists and is not
597 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
598 no error set. */
599#define LYD_NEWOPT_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
600 output ones. */
601#define LYD_NEWOPT_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
602 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
603 invalid value (leaf/leaf-list), it is created as opaque. */
604
605/** @} pathoptions */
606
607/**
608 * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes,
609 * for those use ::lyd_new_path_any.
610 *
611 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
612 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
613 * and @p value is set, the predicate is preferred.
614 *
615 * @param[in] parent Data parent to add to/modify, can be NULL.
616 * @param[in] ctx libyang context, must be set if @p parent is NULL.
617 * @param[in] path Path to create (TODO ref path).
618 * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored.
619 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200620 * @param[out] node Optional first created node.
621 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200622 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200623LY_ERR lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value,
624 int options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200625
626/**
627 * @brief Create a new node in the data tree based on a path. All node types can be created.
628 *
629 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
630 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
631 * and @p value is set, the predicate is preferred.
632 *
633 * @param[in] parent Data parent to add to/modify, can be NULL.
634 * @param[in] ctx libyang context, must be set if @p parent is NULL.
635 * @param[in] path Path to create (TODO ref path).
636 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
637 * @param[in] value_type Anyxml/anydata node @p value type.
638 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200639 * @param[out] node Optional first created node.
640 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200641 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200642LY_ERR lyd_new_path_any(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
643 LYD_ANYDATA_VALUETYPE value_type, int options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200644
645/**
646 * @brief Create a new node in the data tree based on a path. All node types can be created.
647 *
648 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
649 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
650 * and @p value is set, the predicate is preferred.
651 *
652 * @param[in] parent Data parent to add to/modify, can be NULL.
653 * @param[in] ctx libyang context, must be set if @p parent is NULL.
654 * @param[in] path Path to create (TODO ref path).
655 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
656 * @param[in] value_type Anyxml/anydata node @p value type.
657 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200658 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
659 * @param[out] new_node Optional last node created.
Michal Vasko00cbf532020-06-15 13:58:47 +0200660 * @return LY_ERR value.
661 */
662LY_ERR lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
663 LYD_ANYDATA_VALUETYPE value_type, int options, struct lyd_node **new_parent, struct lyd_node **new_node);
664
665/**
666 * @brief Change the value of a term (leaf or leaf-list) node.
667 *
668 * Node changed this way is always considered explicitly set, meaning its default flag
669 * is always cleared.
670 *
671 * @param[in] term Term node to change.
672 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
673 * @return LY_SUCCESS if value was changed,
674 * @return LY_EEXIST if value was the same and only the default flag was cleared,
675 * @return LY_ENOT if the values were equal and no change occured,
676 * @return LY_ERR value on other errors.
677 */
678LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
679
680/**
Michal Vasko41586352020-07-13 13:54:25 +0200681 * @brief Change the value of a metadata instance.
682 *
683 * @param[in] ctx libyang context.
684 * @param[in] meta Metadata to change.
685 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
686 * @return LY_SUCCESS if value was changed,
687 * @return LY_ENOT if the values were equal and no change occured,
688 * @return LY_ERR value on other errors.
689 */
690LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
691
692/**
Michal Vaskob104f112020-07-17 09:54:54 +0200693 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +0100694 *
695 * - if the node is part of some other tree, it is automatically unlinked.
696 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
697 *
698 * @param[in] parent Parent node to insert into.
699 * @param[in] node Node to insert.
700 * @return LY_SUCCESS on success.
701 * @return LY_ERR error on error.
702 */
Michal Vaskob104f112020-07-17 09:54:54 +0200703LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +0100704
705/**
Michal Vaskob104f112020-07-17 09:54:54 +0200706 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +0100707 *
708 * - if the node is part of some other tree, it is automatically unlinked.
709 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
710 *
Michal Vaskob104f112020-07-17 09:54:54 +0200711 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +0100712 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +0200713 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +0100714 * @return LY_SUCCESS on success.
715 * @return LY_ERR error on error.
716 */
Michal Vaskob104f112020-07-17 09:54:54 +0200717LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100718
719/**
Michal Vaskob104f112020-07-17 09:54:54 +0200720 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +0100721 *
722 * - if the node is part of some other tree, it is automatically unlinked.
723 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
724 *
725 * @param[in] sibling Sibling node to insert before.
726 * @param[in] node Node to insert.
727 * @return LY_SUCCESS on success.
728 * @return LY_ERR error on error.
729 */
730LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
731
732/**
Michal Vaskob104f112020-07-17 09:54:54 +0200733 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +0100734 *
735 * - if the node is part of some other tree, it is automatically unlinked.
736 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
737 *
738 * @param[in] sibling Sibling node to insert after.
739 * @param[in] node Node to insert.
740 * @return LY_SUCCESS on success.
741 * @return LY_ERR error on error.
742 */
743LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
744
745/**
746 * @brief Unlink the specified data subtree.
747 *
748 * @param[in] node Data tree node to be unlinked (together with all the children).
749 */
750void lyd_unlink_tree(struct lyd_node *node);
751
752/**
Radek Krejcib0849a22019-07-25 12:31:04 +0200753 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +0200754 *
755 * @param[in] node Any of the nodes inside the tree.
756 */
757void lyd_free_all(struct lyd_node *node);
758
759/**
Michal Vasko3a41dff2020-07-15 14:30:28 +0200760 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +0200761 *
762 * @param[in] node Any of the sibling nodes to free.
763 */
Michal Vaskof03ed032020-03-04 13:31:44 +0100764void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +0200765
766/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200767 * @brief Free (and unlink) the specified data (sub)tree.
768 *
Radek Krejcie7b95092019-05-15 11:03:07 +0200769 * @param[in] node Root of the (sub)tree to be freed.
770 */
771void lyd_free_tree(struct lyd_node *node);
772
773/**
Michal Vasko3a41dff2020-07-15 14:30:28 +0200774 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +0200775 *
Michal Vasko3a41dff2020-07-15 14:30:28 +0200776 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +0200777 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200778void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +0100779
780/**
Michal Vasko3a41dff2020-07-15 14:30:28 +0200781 * @brief Free the metadata instance with any following instances.
782 *
783 * @param[in] meta Metadata to free.
784 */
785void lyd_free_meta_siblings(struct lyd_meta *meta);
786
787/**
788 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +0100789 *
790 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200791 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +0100792 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200793void ly_free_attr_single(const struct ly_ctx *ctx, struct ly_attr *attr);
794
795/**
796 * @brief Free the attribute with any following attributes.
797 *
798 * @param[in] ctx Context where the attributes were created.
799 * @param[in] attr First attribute to free.
800 */
801void ly_free_attr_siblings(const struct ly_ctx *ctx, struct ly_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +0200802
Radek Krejci084289f2019-07-09 17:35:30 +0200803/**
804 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
805 *
806 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
807 *
808 * If there is no data node instance and you are fine with checking just the type's restrictions without the
809 * data tree context (e.g. for the case of require-instance restriction), use lys_value_validate().
810 *
811 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
812 * @param[in] node Data node for the @p value.
813 * @param[in] value String value to be checked.
814 * @param[in] value_len Length of the given @p value (mandatory).
815 * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string.
816 * @param[in] get_prefix_data Private data for the @p get_prefix callback.
817 * @param[in] format Input format of the data.
Michal Vaskof03ed032020-03-04 13:31:44 +0100818 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
819 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
820 * then LY_EINCOMPLETE can be returned.
Radek Krejci084289f2019-07-09 17:35:30 +0200821 * @return LY_SUCCESS on success
822 * @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).
823 * @return LY_ERR value if an error occurred.
824 */
Michal Vasko44685da2020-03-17 15:38:06 +0100825LY_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 +0100826 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 +0200827
828/**
829 * @brief Compare the node's value with the given string value. The string value is first validated according to the node's type.
830 *
831 * @param[in] node Data node to compare.
832 * @param[in] value String value to be compared. It does not need to be in a canonical form - as part of the process,
833 * it is validated and canonized if possible.
834 * @param[in] value_len Length of the given @p value (mandatory).
835 * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string.
836 * @param[in] get_prefix_data Private data for the @p get_prefix callback.
837 * @param[in] format Input format of the data.
Michal Vaskof03ed032020-03-04 13:31:44 +0100838 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
839 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
840 * then LY_EINCOMPLETE can be returned.
Radek Krejci084289f2019-07-09 17:35:30 +0200841 * @return LY_SUCCESS on success
842 * @return LY_EINCOMPLETE in case of success when the @p trees is not provided and it was needed to finish the validation of
843 * the given string @p value (e.g. due to require-instance).
Michal Vaskob3ddccb2020-07-09 15:43:05 +0200844 * @return LY_ENOT if the values do not match.
Radek Krejci084289f2019-07-09 17:35:30 +0200845 * @return LY_ERR value if an error occurred.
846 */
847LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len,
Michal Vaskof03ed032020-03-04 13:31:44 +0100848 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 +0200849
Radek Krejci576b23f2019-07-12 14:06:32 +0200850/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200851 * @defgroup datacompareoptions Data compare options
852 * @ingroup datatree
853 *
Radek Krejci22ebdba2019-07-25 13:59:43 +0200854 * Various options to change the lyd_compare() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200855 */
856#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
857 (subtree, so direct as well as indirect children) are the same. By default,
858 containers are the same in case of the same schema node and lists are the same
859 in case of equal keys (keyless lists do the full recursion comparison all the time). */
860#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
861 changes this behavior and implicit (automatically created default node) and explicit
862 (explicitly created node with the default value) default nodes are considered different. */
Michal Vasko60ea6352020-06-29 13:39:39 +0200863/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200864
865/**
866 * @brief Compare 2 data nodes if they are equivalent.
867 *
868 * @param[in] node1 The first node to compare.
869 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +0200870 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200871 * @return LY_SUCCESS if the nodes are equivalent.
872 * @return LY_ENOT if the nodes are not equivalent.
873 */
Michal Vasko8f359bf2020-07-28 10:41:15 +0200874LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, int options);
875
876/**
877 * @brief Compare 2 lists of siblings if they are equivalent.
878 *
879 * @param[in] node1 The first sibling list to compare.
880 * @param[in] node2 The second sibling list to compare.
881 * @param[in] options Various @ref datacompareoptions.
882 * @return LY_SUCCESS if all the siblings are equivalent.
883 * @return LY_ENOT if the siblings are not equivalent.
884 */
885LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, int options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200886
887/**
Michal Vasko21725742020-06-29 11:49:25 +0200888 * @brief Compare 2 metadata.
889 *
890 * @param[in] meta1 First metadata.
891 * @param[in] meta2 Second metadata.
892 * @return LY_SUCCESS if the metadata are equivalent.
893 * @return LY_ENOT if not.
894 */
895LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
896
897/**
Radek Krejci22ebdba2019-07-25 13:59:43 +0200898 * @defgroup dupoptions Data duplication options
899 * @ingroup datatree
900 *
901 * Various options to change lyd_dup() behavior.
902 *
903 * Default behavior:
904 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200905 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +0200906 * @{
907 */
908
909#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
910 list's keys are always duplicated. */
Michal Vaskoa29a5762020-06-23 13:28:49 +0200911#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200912#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
913 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200914#define LYD_DUP_WITH_FLAGS 0x08 /**< Also copy any data node flags. That will cause the duplicated data to preserve
Michal Vaskof6df0a02020-06-16 13:08:34 +0200915 its validation/default node state. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200916
917/** @} dupoptions */
918
919/**
920 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
921 *
Radek Krejci22ebdba2019-07-25 13:59:43 +0200922 * @param[in] node Data tree node to be duplicated.
923 * @param[in] parent Optional parent node where to connect the duplicated node(s).
Michal Vasko3a41dff2020-07-15 14:30:28 +0200924 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
925 * the @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +0200926 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200927 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
928 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
929 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +0200930 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200931LY_ERR lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, int options, struct lyd_node **dup);
932
933/**
934 * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same.
935 *
936 * @param[in] node Data tree node to be duplicated.
937 * @param[in] parent Optional parent node where to connect the duplicated node(s).
938 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
939 * the @p parent.
940 * @param[in] options Bitmask of options flags, see @ref dupoptions.
941 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
942 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
943 * @return LY_ERR value.
944 */
945LY_ERR lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, int options, struct lyd_node **dup);
Radek Krejci22ebdba2019-07-25 13:59:43 +0200946
947/**
Michal Vasko25a32822020-07-09 15:48:22 +0200948 * @brief Create a copy of the metadata.
949 *
950 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200951 * @param[in] parent Node where to append the new metadata.
952 * @param[out] dup Optional created metadata copy.
953 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +0200954 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200955LY_ERR lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *parent, struct lyd_meta **dup);
Michal Vasko25a32822020-07-09 15:48:22 +0200956
957/**
Michal Vasko4490d312020-06-16 13:08:55 +0200958 * @defgroup mergeoptions Data merge options.
959 * @ingroup datatree
Radek Krejci576b23f2019-07-12 14:06:32 +0200960 *
Michal Vasko4490d312020-06-16 13:08:55 +0200961 * Various options to change lyd_merge() behavior.
962 *
963 * Default behavior:
964 * - source data tree is not modified in any way,
Michal Vasko3a41dff2020-07-15 14:30:28 +0200965 * - any default nodes in the source are ignored if there are explicit nodes in the target.
Michal Vasko4490d312020-06-16 13:08:55 +0200966 * @{
967 */
968
969#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200970#define LYD_MERGE_DEFAULTS 0x02 /**< Default nodes in the source tree replace even explicit nodes in the target. */
Michal Vasko4490d312020-06-16 13:08:55 +0200971
972/** @} mergeoptions */
973
974/**
Michal Vasko3a41dff2020-07-15 14:30:28 +0200975 * @brief Merge the source data subtree into the target data tree. Merge may not be complete until validation
Michal Vasko4490d312020-06-16 13:08:55 +0200976 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
977 *
978 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
979 * @param[in] source Source data tree to merge, must be a top-level tree.
980 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
981 * @return LY_SUCCESS on success,
982 * @return LY_ERR value on error.
983 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200984LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, int options);
985
986/**
987 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
988 * complete until validation called on the resulting data tree (data from more cases may be present, default
989 * and non-default values).
990 *
991 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
992 * @param[in] source Source data tree to merge, must be a top-level tree.
993 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
994 * @return LY_SUCCESS on success,
995 * @return LY_ERR value on error.
996 */
997LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, int options);
Michal Vasko4490d312020-06-16 13:08:55 +0200998
999/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001000 * @defgroup diffoptions Data diff options.
1001 * @ingroup datatree
1002 *
1003 * Various options to change lyd_diff() behavior.
1004 *
1005 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001006 * - any default nodes are treated as non-existent and ignored.
1007 * @{
1008 */
1009
Michal Vasko3a41dff2020-07-15 14:30:28 +02001010#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
1011 nodes. Also, leaves and leaf-lists are added into diff even in case only their
1012 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001013
1014/** @} diffoptions */
1015
1016/**
1017 * @brief Learn the differences between 2 data trees.
1018 *
1019 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
1020 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
1021 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
1022 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
1023 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
1024 * or the second tree.
1025 *
1026 * The diff tree is completely independent on the @p first and @p second trees, meaning all
1027 * the information about the change is stored in the diff and the trees are not needed.
1028 *
1029 * !! Caution !!
1030 * The diff tree should never be validated because it may easily not be valid! For example,
1031 * when data from one case branch are deleted and data from another branch created - data from both
1032 * branches are then stored in the diff tree simultaneously.
1033 *
1034 * @param[in] first First data tree.
1035 * @param[in] second Second data tree.
1036 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1037 * @param[out] diff Generated diff.
1038 * @return LY_SUCCESS on success,
1039 * @return LY_ERR on error.
1040 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001041LY_ERR lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, int options, struct lyd_node **diff);
1042
1043/**
1044 * @brief Learn the differences between 2 data trees including all the following siblings.
1045 *
1046 * @param[in] first First data tree.
1047 * @param[in] second Second data tree.
1048 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1049 * @param[out] diff Generated diff.
1050 * @return LY_SUCCESS on success,
1051 * @return LY_ERR on error.
1052 */
1053LY_ERR lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, int options, struct lyd_node **diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001054
1055/**
1056 * @brief Callback for diff nodes.
1057 *
1058 * @param[in] diff_node Diff node.
1059 * @param[in] data_node Matching node in data.
1060 * @param[in] cb_data Arbitrary callback data.
1061 * @return LY_ERR value.
1062 */
1063typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
1064
1065/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001066 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001067 *
1068 * @param[in,out] data Data to apply the diff on.
1069 * @param[in] diff Diff to apply.
1070 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
1071 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1072 * @param[in] cb_data Arbitrary callback data.
1073 * @return LY_SUCCESS on success,
1074 * @return LY_ERR on error.
1075 */
1076LY_ERR lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff, const struct lys_module *mod,
1077 lyd_diff_cb diff_cb, void *cb_data);
1078
1079/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001080 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001081 *
1082 * @param[in,out] data Data to apply the diff on.
1083 * @param[in] diff Diff to apply.
1084 * @return LY_SUCCESS on success,
1085 * @return LY_ERR on error.
1086 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001087LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001088
1089/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001090 * @brief Merge 2 diffs into each other but restrict the operation to one module.
1091 *
1092 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
1093 * created on data that had the target diff applied on them. In other words, this sequence is legal
1094 *
1095 * diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 ->
1096 * -> data 33 frm apply diff2 on data1
1097 *
1098 * and reusing these diffs
1099 *
1100 * diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1
1101 *
1102 * @param[in] src_diff Source diff.
1103 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
1104 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1105 * @param[in] cb_data Arbitrary callback data.
1106 * @param[in,out] diff Target diff to merge into.
1107 * @return LY_SUCCESS on success,
1108 * @return LY_ERR on error.
1109 */
1110LY_ERR lyd_diff_merge_module(const struct lyd_node *src_diff, const struct lys_module *mod, lyd_diff_cb diff_cb,
1111 void *cb_data, struct lyd_node **diff);
1112
1113/**
1114 * @brief Merge 2 diffs into each other.
1115 *
1116 * @param[in] src_diff Source diff.
1117 * @param[in,out] diff Target diff to merge into.
1118 * @return LY_SUCCESS on success,
1119 * @return LY_ERR on error.
1120 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001121LY_ERR lyd_diff_merge_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001122
1123/**
Michal Vasko4231fb62020-07-13 13:54:47 +02001124 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
1125 * or move from place A to B to move from B to A and so on.
1126 *
1127 * @param[in] src_diff Diff to reverse.
1128 * @param[out] diff Reversed diff.
1129 * @return LY_SUCCESS on success.
1130 * @return LY_ERR on error.
1131 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001132LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02001133
1134/**
Michal Vasko4490d312020-06-16 13:08:55 +02001135 * @brief Find the target in data of a compiled ly_path structure (instance-identifier).
1136 *
1137 * @param[in] path Compiled path structure.
Michal Vaskof03ed032020-03-04 13:31:44 +01001138 * @param[in] tree Data tree to be searched.
Michal Vasko4490d312020-06-16 13:08:55 +02001139 * @return Found target node,
1140 * @return NULL if not found.
Radek Krejci576b23f2019-07-12 14:06:32 +02001141 */
Michal Vasko004d3152020-06-11 19:59:22 +02001142const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02001143
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001144/**
1145 * @brief Get string value of a term data \p node.
1146 *
1147 * @param[in] node Data tree node with the value.
1148 * @param[out] dynamic Whether the string value was dynmically allocated.
1149 * @return String value of @p node, if @p dynamic, needs to be freed.
1150 */
1151const char *lyd_value2str(const struct lyd_node_term *node, int *dynamic);
1152
1153/**
Michal Vasko9f96a052020-03-10 09:41:45 +01001154 * @brief Get string value of a metadata \p meta.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001155 *
Michal Vasko9f96a052020-03-10 09:41:45 +01001156 * @param[in] meta Metadata with the value.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001157 * @param[out] dynamic Whether the string value was dynmically allocated.
Michal Vasko9f96a052020-03-10 09:41:45 +01001158 * @return String value of @p meta, if @p dynamic, needs to be freed.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001159 */
Michal Vasko9f96a052020-03-10 09:41:45 +01001160const char *lyd_meta2str(const struct lyd_meta *meta, int *dynamic);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001161
1162/**
1163 * @brief Types of the different data paths.
1164 */
1165typedef enum {
Michal Vasko14654712020-02-06 08:35:21 +01001166 LYD_PATH_LOG, /**< Descriptive path format used in log messages */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001167} LYD_PATH_TYPE;
1168
1169/**
1170 * @brief Generate path of the given node in the requested format.
1171 *
1172 * @param[in] node Schema path of this node will be generated.
1173 * @param[in] pathtype Format of the path to generate.
1174 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1175 * If NULL, memory for the complete path is allocated.
1176 * @param[in] buflen Size of the provided @p buffer.
1177 * @return NULL in case of memory allocation error, path of the node otherwise.
1178 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1179 */
1180char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
1181
Michal Vaskoe444f752020-02-10 12:20:06 +01001182/**
Michal Vasko25a32822020-07-09 15:48:22 +02001183 * @brief Find a specific metadata.
1184 *
1185 * @param[in] first First metadata to consider.
1186 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
1187 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
1188 * @return Found metadata,
1189 * @return NULL if not found.
1190 */
1191struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name);
1192
1193/**
Michal Vaskoda859032020-07-14 12:20:14 +02001194 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01001195 * Uses hashes - should be used whenever possible for best performance.
1196 *
1197 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1198 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01001199 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001200 * @return LY_SUCCESS on success, @p match set.
1201 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1202 * @return LY_ERR value if another error occurred.
1203 */
1204LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
1205
1206/**
Michal Vaskoe444f752020-02-10 12:20:06 +01001207 * @brief Search in the given siblings for the first schema instance.
1208 * Uses hashes - should be used whenever possible for best performance.
1209 *
1210 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1211 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02001212 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
1213 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01001214 * LYS_LEAFLIST:
1215 * Searched instance value.
1216 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001217 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
1218 * The keys do not have to be ordered but all of them must be set.
1219 *
1220 * Note that any explicit values (leaf-list or list key values) will be canonized first
1221 * before comparison. But values that do not have a canonical value are expected to be in the
1222 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001223 * @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 +01001224 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001225 * @return LY_SUCCESS on success, @p match set.
1226 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1227 * @return LY_EINVAL if @p schema is a key-less list.
1228 * @return LY_ERR value if another error occurred.
1229 */
1230LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value,
1231 size_t val_len, struct lyd_node **match);
1232
Michal Vaskoccc02342020-05-21 10:09:21 +02001233/**
1234 * @brief Search in the given data for instances of nodes matching the provided XPath.
1235 *
Michal Vaskob104f112020-07-17 09:54:54 +02001236 * The expected format of the expression is ::LYD_JSON, meaning the first node in every path
Michal Vasko61ac2f62020-05-25 12:39:51 +02001237 * must have its module name as prefix or be the special `*` value for all the nodes.
1238 *
Michal Vasko19a30602020-05-25 10:40:19 +02001239 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
1240 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
1241 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
1242 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
1243 *
Michal Vaskoccc02342020-05-21 10:09:21 +02001244 * @param[in] ctx_node XPath context node.
1245 * @param[in] xpath Data XPath expression filtering the matching nodes. ::LYD_JSON format is expected.
1246 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
1247 * the returned set is empty.
1248 * @return LY_SUCCESS on success, @p set is returned.
1249 * @return LY_ERR value if an error occurred.
1250 */
1251LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
1252
Radek Krejcie7b95092019-05-15 11:03:07 +02001253#ifdef __cplusplus
1254}
1255#endif
1256
1257#endif /* LY_TREE_DATA_H_ */