blob: bcea739b548e4f76b965a558575dd47c924af67b [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"
Christian Hopps59618972021-02-01 05:01:35 -050022#include "tree.h"
23#include "tree_schema.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020024
Radek Krejcica376bd2020-06-11 16:04:06 +020025#ifdef __cplusplus
26extern "C" {
27#endif
28
Radek Krejcie7b95092019-05-15 11:03:07 +020029struct ly_ctx;
Michal Vasko004d3152020-06-11 19:59:22 +020030struct ly_path;
Radek Krejci535ea9f2020-05-29 16:01:05 +020031struct ly_set;
32struct lyd_node;
33struct lyd_node_opaq;
Radek Krejci47fab892020-11-05 17:02:41 +010034struct lyd_node_term;
Radek Krejci535ea9f2020-05-29 16:01:05 +020035struct lys_module;
36struct lysc_node;
Radek Krejci47fab892020-11-05 17:02:41 +010037struct lysc_type;
Radek Krejcie7b95092019-05-15 11:03:07 +020038
Radek Krejcie7b95092019-05-15 11:03:07 +020039/**
Radek Krejci8678fa42020-08-18 16:07:28 +020040 * @page howtoData Data Instances
41 *
42 * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema
43 * it can be cast to several other structures.
44 *
45 * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq.
46 * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the
47 * context. Such a node can appear in several places in the data tree.
48 * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were
49 * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can
50 * appear as a node's attributes.
51 * - As a representation of YANG anydata/anyxml content.
52 * - As envelopes of standard data tree instances (RPCs, actions or Notifications).
53 *
54 * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is
55 * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype).
56 * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide
57 * structure of the tree by having children nodes.
58 * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal
59 * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value
60 * structure with string representation of the value (::lyd_value.canonical) and the type specific data stored in the
61 * structure's union according to the real type of the value (::lyd_value.realtype). The string representation provides
62 * canonical representation of the value in case the type has the canonical representation specified. Otherwise, it is the
63 * original value or, in case the value can contain prefixes, the JSON format is used to make the value unambiguous.
64 * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes.
65 *
66 * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use
67 * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros
68 * and functions.
69 * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node.
70 * - ::LYD_CTX to get libyang context from a data node.
71 * - ::LYD_CANON_VALUE to get canonical string value from a terminal node.
72 * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first).
73 * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page.
74 *
75 * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of
76 * \b lyd_find_*() functions.
77 *
78 * More information about specific operations with data instances can be found on the following pages:
79 * - @subpage howtoDataParsers
80 * - @subpage howtoDataValidation
81 * - @subpage howtoDataWD
82 * - @subpage howtoDataManipulation
83 * - @subpage howtoDataPrinters
84 *
85 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
86 *
87 * Functions List (not assigned to above subsections)
88 * --------------------------------------------------
89 * - ::lyd_child()
90 * - ::lyd_child_no_keys()
91 * - ::lyd_parent()
92 * - ::lyd_owner_module()
93 * - ::lyd_find_xpath()
Michal Vasko3e1f6552021-01-14 09:27:55 +010094 * - ::lyd_find_path()
Radek Krejci8678fa42020-08-18 16:07:28 +020095 * - ::lyd_find_sibling_val()
96 * - ::lyd_find_sibling_first()
Michal Vasko1d4af6c2021-02-22 13:31:26 +010097 * - ::lyd_find_sibling_opaq_next()
Radek Krejci8678fa42020-08-18 16:07:28 +020098 * - ::lyd_find_meta()
99 *
100 * - ::lyd_path()
101 * - ::lyd_target()
102 *
103 * - ::lyd_lyb_data_length()
104 */
105
106/**
107 * @page howtoDataManipulation Manipulating Data
108 *
109 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
110 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
111 * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly
112 * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore,
113 * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure
114 * that the changed data tree is valid.
115 *
116 * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and
117 * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the
118 * nodes order from the YANG schema. So the node is not inserted to the end or beginning of the siblings list, but after the
119 * existing instance of the closest preceding sibling node from the schema. In case the node is opaq (it is not connected
120 * with any schema node), it is placed to the end of the sibling node in the order they are inserted in. The only situation
121 * when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list instances. In such
122 * a case the ::lyd_insert_after() or ::lyd_insert_before() can be used.
123 *
124 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
125 * the node name and/or its parent (::lyd_new_inner(), ::lyd_new_term(), ::lyd_new_any(), ::lyd_new_list(), ::lyd_new_list2()
Michal Vasko493900b2020-12-08 10:23:41 +0100126 * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path() and
127 * ::lyd_new_path2()). The latter enables to create a whole path of nodes, requires less information
Radek Krejci8678fa42020-08-18 16:07:28 +0200128 * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using
129 * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single().
130 *
131 * The [metadata](@ref howtoPluginsExtensionsMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta()
132 * and ::lyd_new_attr().
133 *
134 * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value
135 * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value
136 * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node
137 * (::lyd_value_validate()).
138 *
139 * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions.
140 * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when
141 * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more
142 * powerful insert.
143 *
144 * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose,
145 * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one
146 * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple
147 * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and
148 * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(),
149 * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used.
150 *
151 * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using
152 * ::lyd_free_all() (or other \b lyd_free_*() functions).
153 *
154 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
155 * same context.
156 *
157 * Modifying the single data tree in multiple threads is not safe.
158 *
159 * Functions List
160 * --------------
161 * - ::lyd_new_inner()
162 * - ::lyd_new_term()
163 * - ::lyd_new_list()
164 * - ::lyd_new_list2()
165 * - ::lyd_new_any()
166 * - ::lyd_new_opaq()
Michal Vasko8d65f852021-02-17 11:28:13 +0100167 * - ::lyd_new_opaq2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200168 * - ::lyd_new_attr()
Michal Vasko8d65f852021-02-17 11:28:13 +0100169 * - ::lyd_new_attr2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200170 * - ::lyd_new_meta()
171 * - ::lyd_new_path()
172 * - ::lyd_new_path2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200173 *
174 * - ::lyd_dup_single()
175 * - ::lyd_dup_siblings()
176 * - ::lyd_dup_meta_single()
177 *
178 * - ::lyd_insert_child()
179 * - ::lyd_insert_sibling()
180 * - ::lyd_insert_after()
181 * - ::lyd_insert_before()
182 *
183 * - ::lyd_value_compare()
184 * - ::lyd_value_validate()
185 *
186 * - ::lyd_change_term()
187 * - ::lyd_change_meta()
188 *
189 * - ::lyd_compare_single()
190 * - ::lyd_compare_siblings()
191 * - ::lyd_compare_meta()
192 * - ::lyd_diff_tree()
193 * - ::lyd_diff_siblings()
194 * - ::lyd_diff_apply_all()
195 * - ::lyd_diff_apply_module()
196 * - ::lyd_diff_reverse_all()
197 * - ::lyd_diff_merge_all()
198 * - ::lyd_diff_merge_module()
199 * - ::lyd_diff_merge_tree()
200 *
201 * - ::lyd_merge_tree()
202 * - ::lyd_merge_siblings()
203 *
204 * - ::lyd_unlink_tree()
205 *
206 * - ::lyd_free_all()
207 * - ::lyd_free_siblings()
208 * - ::lyd_free_tree()
209 * - ::lyd_free_meta_single()
210 * - ::lyd_free_meta_siblings()
211 * - ::lyd_free_attr_single()
212 * - ::lyd_free_attr_siblings()
213 *
Michal Vaskoa820c312021-02-05 16:33:00 +0100214 * - ::lyd_any_value_str()
Radek Krejci8678fa42020-08-18 16:07:28 +0200215 * - ::lyd_any_copy_value()
216 */
217
218/**
219 * @page howtoDataWD Default Values
220 *
221 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
222 * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to
223 * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the
224 * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata
225 * providing the information about the default values cannot be used. It means that when parsing data, the default nodes
226 * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected
227 * nodes are printed without the ietf-netconf-with-defaults metadata.
228 *
229 * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them
230 * via @ref dataprinterflags when printing data trees.
231 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
232 * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option.
233 * This is the default with-defaults mode of the printer. The data nodes do not contain any additional
234 * metadata information.
235 * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option.
236 * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or
237 * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by
238 * ::LYD_PRINT_WD_ALL option.
239 * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value
240 * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode.
241 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes
242 * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option.
243 *
244 * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation).
245 * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding
246 * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the
247 * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the
248 * appropriate metadata.
249 *
250 * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes
251 * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the
252 * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions.
253 *
254 * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member
255 * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container
256 * holds only a default node(s) or it is implicitly added empty container (according to YANG 1.1 spec, all such containers are part of
257 * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added
258 * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option.
259 *
260 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
261 * use ::lyd_is_default() function.
262 *
263 * Functions List
264 * --------------
265 * - ::lyd_is_default()
266 * - ::lyd_new_implicit_all()
267 * - ::lyd_new_implicit_module()
268 * - ::lyd_new_implicit_tree()
269 */
270
271/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200272 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200273 * @defgroup datatree Data Tree
Radek Krejcie7b95092019-05-15 11:03:07 +0200274 * @{
275 *
276 * Data structures and functions to manipulate and access instance data tree.
277 */
278
Michal Vasko64246d82020-08-19 12:35:00 +0200279/* *INDENT-OFF* */
280
Michal Vaskoa276cd92020-08-10 15:10:08 +0200281/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200282 * @brief Macro to iterate via all elements in a data tree. This is the opening part
283 * to the #LYD_TREE_DFS_END - they always have to be used together.
284 *
285 * The function follows deep-first search algorithm:
286 * <pre>
287 * 1
288 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100289 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +0200290 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100291 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +0200292 * </pre>
293 *
Radek Krejci0935f412019-08-20 16:15:18 +0200294 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200295 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
296 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200297 *
Michal Vasko56daf732020-08-10 10:57:18 +0200298 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
299 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200300 *
301 * Use with opening curly bracket '{' after the macro.
302 *
303 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200304 * @param ELEM Iterator intended for use in the block.
305 */
Michal Vasko56daf732020-08-10 10:57:18 +0200306#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200307 { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +0200308 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +0200309 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200310 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +0200311
312/**
313 * @brief Macro to iterate via all elements in a tree. This is the closing part
314 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
315 *
316 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200317 * START can be any of the lyd_node* types, ELEM variable must be a pointer
318 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200319 *
320 * Use with closing curly bracket '}' after the macro.
321 *
322 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200323 * @param ELEM Iterator intended for use in the block.
324 */
325
Michal Vasko56daf732020-08-10 10:57:18 +0200326#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200327 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200328 if (LYD_TREE_DFS_continue) { \
329 (LYD_TREE_DFS_next) = NULL; \
330 } else { \
Radek Krejcia1c1e542020-09-29 16:06:52 +0200331 (LYD_TREE_DFS_next) = lyd_child(ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200332 }\
333 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200334 /* no children */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100335 if ((ELEM) == (struct lyd_node *)(START)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200336 /* we are done, (START) has no children */ \
337 break; \
338 } \
339 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200340 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200341 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200342 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200343 /* parent is already processed, go to its sibling */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100344 (ELEM) = (struct lyd_node *)(ELEM)->parent; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200345 /* no siblings, go back through parents */ \
346 if ((ELEM)->parent == (START)->parent) { \
347 /* we are done, no next element to process */ \
348 break; \
349 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200350 (LYD_TREE_DFS_next) = (ELEM)->next; \
Christian Hopps59618972021-02-01 05:01:35 -0500351 } }
352
353/**
354 * @brief Macro to iterate via all schema node data instances in data siblings.
355 *
356 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
357 * @param SCHEMA Schema node of the searched instances.
358 * @param ELEM Iterator.
359 */
360#define LYD_LIST_FOR_INST(START, SCHEMA, ELEM) \
361 for (lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
362 (ELEM) && ((ELEM)->schema == (SCHEMA)); \
363 (ELEM) = (ELEM)->next)
364
365/**
366 * @brief Macro to iterate via all schema node data instances in data siblings allowing to modify the list itself.
367 *
368 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
369 * @param SCHEMA Schema node of the searched instances.
370 * @param NEXT Temporary storage to allow removing of the current iterator content.
371 * @param ELEM Iterator.
372 */
373#define LYD_LIST_FOR_INST_SAFE(START, SCHEMA, NEXT, ELEM) \
374 for (lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
375 (ELEM) && ((ELEM)->schema == (SCHEMA)) ? ((NEXT) = (ELEM)->next, 1) : 0; \
376 (ELEM) = (NEXT))
Radek Krejcie7b95092019-05-15 11:03:07 +0200377
Michal Vasko64246d82020-08-19 12:35:00 +0200378/* *INDENT-ON* */
379
Radek Krejcie7b95092019-05-15 11:03:07 +0200380/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200381 * @brief Macro to get context from a data tree node.
382 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200383#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200384
385/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200386 * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and
387 * [printer](@ref howtoDataPrinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200388 */
389typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200390 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
391 LYD_XML, /**< XML instance data format */
392 LYD_JSON, /**< JSON instance data format */
Michal Vasko69730152020-10-09 16:30:07 +0200393 LYD_LYB /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200394} LYD_FORMAT;
395
396/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200397 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200398 */
399typedef enum {
Radek Krejci8678fa42020-08-18 16:07:28 +0200400 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 +0200401 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
Radek Krejci8678fa42020-08-18 16:07:28 +0200402 with the data after a successful call (including calling ::lyd_free_all() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200403 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 +0200404 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
405 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200406 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
407 LYD_ANYDATA_JSON, /**< Value is a string containing the data modeled by YANG and encoded as I-JSON. */
Michal Vasko69730152020-10-09 16:30:07 +0200408 LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200409} LYD_ANYDATA_VALUETYPE;
410
411/** @} */
412
413/**
414 * @brief YANG data representation
415 */
416struct lyd_value {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200417 const char *canonical; /**< Canonical string representation of the value in the dictionary. It is never
418 NULL and in case of no canonical value, its JSON representation is used instead. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200419
Radek Krejcie7b95092019-05-15 11:03:07 +0200420 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200421 int8_t boolean; /**< 0 as false, 1 as true */
422 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200423 int8_t int8; /**< 8-bit signed integer */
424 int16_t int16; /**< 16-bit signed integer */
425 int32_t int32; /**< 32-bit signed integer */
426 int64_t int64; /**< 64-bit signed integer */
427 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200428 uint16_t uint16; /**< 16-bit unsigned integer */
429 uint32_t uint32; /**< 32-bit unsigned integer */
430 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200431 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200432 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 +0200433 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200434 struct ly_path *target; /**< Instance-identifier target path. */
435 struct lyd_value_subvalue *subvalue; /** Union value with some metadata. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200436 void *ptr; /**< generic data type structure used to store the data */
Radek Krejci8678fa42020-08-18 16:07:28 +0200437 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype
438 plugin's callbacks to work with the data.*/
Radek Krejci084289f2019-07-09 17:35:30 +0200439
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200440 const 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 Krejci8678fa42020-08-18 16:07:28 +0200441 in the schema node of the data node since the type's store plugin can use other types/plugins for
442 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
443 target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data
444 stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type.
445 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
446 the type used to store data directly in the same lyd_value instance. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200447};
448
449/**
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200450 * @brief Macro for getting the string canonical value from a term node.
451 *
452 * @param[in] node Term node with the value.
453 * @return Canonical value.
454 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200455#define LYD_CANON_VALUE(node) ((struct lyd_node_term *)(node))->value.canonical
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200456
457/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200458 * @brief Special lyd_value structure for union.
459 *
460 * Represents data with multiple types (union). Original value is stored in the main lyd_value:canonical_cache while
Radek Krejci8678fa42020-08-18 16:07:28 +0200461 * the ::lyd_value_subvalue.value contains representation according to one of the union's types.
462 * The ::lyd_value_subvalue.prefix_data provides (possible) mappings from prefixes in the original value to YANG modules.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200463 * These prefixes are necessary to parse original value to the union's subtypes.
464 */
465struct lyd_value_subvalue {
466 struct lyd_value value; /**< representation of the value according to the selected union's subtype
Radek Krejci8678fa42020-08-18 16:07:28 +0200467 (stored as ::lyd_value.realtype here, in subvalue structure */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200468 const char *original; /**< Original value in the dictionary. */
469 LY_PREFIX_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
470 whether a value is valid for the specific format or not on later validations
471 (instance-identifier in XML looks different than in JSON). */
Radek Krejci8678fa42020-08-18 16:07:28 +0200472 void *prefix_data; /**< Format-specific data for prefix resolution (see ::ly_type_store_resolve_prefix()) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200473 uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */
474 const struct lysc_node *ctx_node; /**< Context schema node. */
475};
476
477/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100478 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200479 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100480 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200481 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
482 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
483 * they are represented as JSON elements starting with the '@' character (for more information, see the
484 * YANG metadata RFC.
485 *
486 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100487struct lyd_meta {
488 struct lyd_node *parent; /**< data node where the metadata is placed */
489 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
490 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
491 const char *name; /**< metadata name */
492 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200493};
494
Michal Vasko52927e22020-03-16 17:26:14 +0100495/**
496 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200497 *
498 * The union is used as a reference to the data's module and according to the format, it can be used as a key for
Radek Krejci8678fa42020-08-18 16:07:28 +0200499 * ::ly_ctx_get_module_implemented_ns() or ::ly_ctx_get_module_implemented(). While the module reference is always present,
Michal Vaskoad92b672020-11-12 13:11:31 +0100500 * the prefix member can be omitted in case it is not present in the source data as a reference to the default module/namespace.
Michal Vasko52927e22020-03-16 17:26:14 +0100501 */
Michal Vaskoad92b672020-11-12 13:11:31 +0100502struct ly_opaq_name {
503 const char *name; /**< node name, without prefix if any was defined */
504 const char *prefix; /**< identifier used in the qualified name as the prefix, can be NULL */
Radek Krejci1798aae2020-07-14 13:26:06 +0200505 union {
Michal Vaskoad92b672020-11-12 13:11:31 +0100506 const char *module_ns; /**< format ::LY_PREF_XML - XML namespace of the node element */
507 const char *module_name; /**< format ::LY_PREF_JSON - (inherited) name of the module of the element */
Radek Krejci1798aae2020-07-14 13:26:06 +0200508 };
Michal Vasko52927e22020-03-16 17:26:14 +0100509};
510
511/**
512 * @brief Generic attribute structure.
513 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200514struct lyd_attr {
Michal Vasko52927e22020-03-16 17:26:14 +0100515 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100516 struct lyd_attr *next; /**< pointer to the next attribute */
Michal Vaskoad92b672020-11-12 13:11:31 +0100517 struct ly_opaq_name name; /**< attribute name with module information */
Michal Vasko501af032020-11-11 20:27:44 +0100518 const char *value; /**< attribute value */
519 LY_PREFIX_FORMAT format; /**< format of the attribute and any prefixes, ::LY_PREF_XML or ::LY_PREF_JSON */
Radek Krejciec9ad602021-01-04 10:46:30 +0100520 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko501af032020-11-11 20:27:44 +0100521 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100522};
Radek Krejcie7b95092019-05-15 11:03:07 +0200523
Michal Vasko1bf09392020-03-27 12:38:10 +0100524#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 +0200525#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
526#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
527
528/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200529 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200530 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200531 * @{
532 *
533 * Various flags of data nodes.
534 *
535 * 1 - container 5 - anydata/anyxml
536 * 2 - list 6 - rpc/action
537 * 3 - leaf 7 - notification
538 * 4 - leaflist
539 *
540 * bit name 1 2 3 4 5 6 7
541 * ---------------------+-+-+-+-+-+-+-+
542 * 1 LYD_DEFAULT |x| |x|x| | | |
543 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100544 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100545 * +-+-+-+-+-+-+-+
546 * 3 LYD_NEW |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200547 * ---------------------+-+-+-+-+-+-+-+
548 *
549 */
550
Michal Vasko5c4e5892019-11-14 12:31:38 +0100551#define LYD_DEFAULT 0x01 /**< default (implicit) node */
552#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
Michal Vasko9b368d32020-02-14 13:53:31 +0100553#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
Michal Vasko52927e22020-03-16 17:26:14 +0100554
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200555/** @} */
556
557/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200558 * @brief Generic structure for a data node.
559 */
560struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200561 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
562 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
563 used to get know that nodes are not equal, it cannot be used to decide that the
564 nodes are equal due to possible collisions. */
565 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100566 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200567 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
568 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
569 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
570 never NULL. If there is no sibling node, pointer points to the node
571 itself. In case of the first node, this pointer points to the last
572 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100573 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200574 void *priv; /**< private user data, not used by libyang */
Radek Krejcie7b95092019-05-15 11:03:07 +0200575};
576
577/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200578 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200579 */
580struct lyd_node_inner {
Michal Vasko9e685082021-01-29 14:49:09 +0100581 union {
582 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
583 struct {
584 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
585 values if list or hashes of all nodes of subtree in case of keyless
586 list). Note that while hash can be used to get know that nodes are
587 not equal, it cannot be used to decide that the nodes are equal due
588 to possible collisions. */
589 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
590 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
591 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
592 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
593 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
594 never NULL. If there is no sibling node, pointer points to the node
595 itself. In case of the first node, this pointer points to the last
596 node in the list. */
597 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
598 void *priv; /**< private user data, not used by libyang */
599 };
600 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200601
602 struct lyd_node *child; /**< pointer to the first child node. */
603 struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
Radek Krejci8678fa42020-08-18 16:07:28 +0200604#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 +0200605};
606
607/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100608 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200609 */
610struct lyd_node_term {
Michal Vasko9e685082021-01-29 14:49:09 +0100611 union {
612 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
613 struct {
614 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
615 values if list or hashes of all nodes of subtree in case of keyless
616 list). Note that while hash can be used to get know that nodes are
617 not equal, it cannot be used to decide that the nodes are equal due
618 to possible collisions. */
619 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
620 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
621 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
622 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
623 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
624 never NULL. If there is no sibling node, pointer points to the node
625 itself. In case of the first node, this pointer points to the last
626 node in the list. */
627 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
628 void *priv; /**< private user data, not used by libyang */
629 };
630 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200631
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200632 struct lyd_value value; /**< node's value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200633};
634
635/**
Michal Vasko9e685082021-01-29 14:49:09 +0100636 * @brief Data node structure for the anydata data tree nodes - anydata or anyxml.
Radek Krejcie7b95092019-05-15 11:03:07 +0200637 */
638struct lyd_node_any {
Michal Vasko9e685082021-01-29 14:49:09 +0100639 union {
640 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
641 struct {
642 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
643 values if list or hashes of all nodes of subtree in case of keyless
644 list). Note that while hash can be used to get know that nodes are
645 not equal, it cannot be used to decide that the nodes are equal due
646 to possible collisions. */
647 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
648 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
649 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
650 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
651 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
652 never NULL. If there is no sibling node, pointer points to the node
653 itself. In case of the first node, this pointer points to the last
654 node in the list. */
655 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
656 void *priv; /**< private user data, not used by libyang */
657 };
658 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200659
Michal Vasko00cbf532020-06-15 13:58:47 +0200660 union lyd_any_value {
Michal Vasko9e685082021-01-29 14:49:09 +0100661 struct lyd_node *tree; /**< data tree */
662 const char *str; /**< Generic string data */
663 const char *xml; /**< Serialized XML data */
664 const char *json; /**< I-JSON encoded string */
665 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
666 } value; /**< pointer to the stored value representation of the anydata/anyxml node */
667 LYD_ANYDATA_VALUETYPE value_type; /**< type of the data stored as ::lyd_node_any.value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200668};
669
670/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +0100671 * @brief Get the name (associated with) of a data node. Works for opaque nodes as well.
672 *
673 * @param[in] node Node to examine.
674 * @return Data node name.
675 */
676#define LYD_NAME(node) ((node)->schema ? (node)->schema->name : ((struct lyd_node_opaq *)node)->name.name)
677
678/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200679 * @ingroup datatree
680 * @defgroup lydvalhints Value format hints.
Radek Krejci1798aae2020-07-14 13:26:06 +0200681 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200682 *
683 * Hints for the type of the data value.
684 *
685 * Any information about value types encoded in the format is hinted by these values.
Radek Krejci1798aae2020-07-14 13:26:06 +0200686 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200687#define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */
688#define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */
689#define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */
690#define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */
691#define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */
692#define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */
693#define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */
694/**
695 * @} lydvalhints
696 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200697
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200698/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200699 * @ingroup datatree
700 * @defgroup lydnodehints Node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200701 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200702 *
703 * Hints for the type of the data node.
704 *
705 * Any information about node types encoded in the format is hinted by these values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200706 */
707#define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */
708#define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200709/**
710 * @} lydnodehints
711 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200712
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200713/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200714 * @ingroup datatree
715 * @defgroup lydhints Value and node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200716 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200717 *
718 * Hints for the types of data node and its value.
719 *
720 * Any information about value and node types encoded in the format is hinted by these values.
721 * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints).
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200722 */
723#define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when
724 there is no encoding or it does not provide any additional information about
725 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
726 or [node hints](@ref lydnodehints). */
727#define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when
728 there is no encoding or it does not provide any additional information about
729 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
730 or [node hints](@ref lydnodehints). */
731/**
732 * @} lydhints
733 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200734
735/**
Michal Vasko52927e22020-03-16 17:26:14 +0100736 * @brief Data node structure for unparsed (opaque) nodes.
737 */
738struct lyd_node_opaq {
Michal Vasko9e685082021-01-29 14:49:09 +0100739 union {
740 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
741 struct {
742 uint32_t hash; /**< always 0 */
743 uint32_t flags; /**< always 0 */
744 const struct lysc_node *schema; /**< always NULL */
745 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
746 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
747 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
748 never NULL. If there is no sibling node, pointer points to the node
749 itself. In case of the first node, this pointer points to the last
750 node in the list. */
751 struct lyd_meta *meta; /**< always NULL */
752 void *priv; /**< private user data, not used by libyang */
753 };
754 }; /**< common part corresponding to ::lyd_node */
Michal Vasko52927e22020-03-16 17:26:14 +0100755
Michal Vasko501af032020-11-11 20:27:44 +0100756 struct lyd_node *child; /**< pointer to the child node (compatible with ::lyd_node_inner) */
757
Michal Vaskoad92b672020-11-12 13:11:31 +0100758 struct ly_opaq_name name; /**< node name with module information */
Michal Vasko52927e22020-03-16 17:26:14 +0100759 const char *value; /**< original value */
Michal Vasko501af032020-11-11 20:27:44 +0100760 LY_PREFIX_FORMAT format; /**< format of the node and any prefixes, ::LY_PREF_XML or ::LY_PREF_JSON */
Radek Krejciec9ad602021-01-04 10:46:30 +0100761 void *val_prefix_data; /**< format-specific prefix data */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200762 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko501af032020-11-11 20:27:44 +0100763
Michal Vasko9e685082021-01-29 14:49:09 +0100764 struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */
Michal Vasko52927e22020-03-16 17:26:14 +0100765 const struct ly_ctx *ctx; /**< libyang context */
766};
767
768/**
Michal Vaskode0ec752021-03-02 16:10:06 +0100769 * @brief Macro for getting the value from an opaque node.
770 *
771 * @param[in] node Opaque node with the value.
772 * @return Node value.
773 */
774#define LYD_OPAQ_VALUE(node) ((struct lyd_node_opaq *)(node))->value
775
776/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200777 * @brief Get the generic parent pointer of a data node.
778 *
779 * @param[in] node Node whose parent pointer to get.
780 * @return Pointer to the parent node of the @p node.
781 * @return NULL in case of the top-level node or if the @p node is NULL itself.
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200782 */
Christian Hopps59618972021-02-01 05:01:35 -0500783static inline struct lyd_node *
784lyd_parent(const struct lyd_node *node)
785{
786 if (!node) {
787 return NULL;
788 }
789
790 return &node->parent->node;
791}
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200792
793/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200794 * @brief Get the child pointer of a generic data node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200795 *
Radek Krejcia1c1e542020-09-29 16:06:52 +0200796 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
797 *
798 * If you need to skip key children, use ::lyd_child_no_keys().
799 *
800 * @param[in] node Node to use.
801 * @return Pointer to the first child node (if any) of the @p node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200802 */
Christian Hopps59618972021-02-01 05:01:35 -0500803static inline struct lyd_node *
804lyd_child(const struct lyd_node *node)
805{
806 if (!node) {
807 return NULL;
808 }
809
810 if (!node->schema) {
811 /* opaq node */
812 return ((struct lyd_node_opaq *)node)->child;
813 }
814
815 switch (node->schema->nodetype) {
816 case LYS_CONTAINER:
817 case LYS_LIST:
818 case LYS_RPC:
819 case LYS_ACTION:
820 case LYS_NOTIF:
821 return ((struct lyd_node_inner *)node)->child;
822 default:
823 return NULL;
824 }
825}
Radek Krejcia1c1e542020-09-29 16:06:52 +0200826
827/**
828 * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST.
829 *
830 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
831 *
832 * If you need to take key children into account, use ::lyd_child().
833 *
834 * @param[in] node Node to use.
835 * @return Pointer to the first child node (if any) of the @p node.
836 */
837struct lyd_node *lyd_child_no_keys(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200838
839/**
Michal Vaskoc193ce92020-03-06 11:04:48 +0100840 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
841 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
842 *
Michal Vaskofcdf3012020-11-23 16:57:03 +0100843 * Also works for opaque nodes, if it is possible to resolve the module.
844 *
Michal Vaskoc193ce92020-03-06 11:04:48 +0100845 * @param[in] node Data node to examine.
846 * @return Module owner of the node.
847 */
848const struct lys_module *lyd_owner_module(const struct lyd_node *node);
849
850/**
Radek Krejci19611252020-10-04 13:54:53 +0200851 * @brief Check whether a node value equals to its default one.
852 *
853 * @param[in] node Term node to test.
854 * @return false (no, it is not a default node) or true (yes, it is default)
855 */
856ly_bool lyd_is_default(const struct lyd_node *node);
857
858/**
Radek Krejcica989142020-11-05 11:32:22 +0100859 * @brief Learn the relative position of a list or leaf-list instance within other instances of the same schema node.
860 *
861 * @param[in] instance List or leaf-list instance to get the position of.
862 * return 0 on error.
863 * return Positive integer of the @p instance position.
864 */
865uint32_t lyd_list_pos(const struct lyd_node *instance);
866
867/**
Radek Krejci4233f9b2020-11-05 12:38:35 +0100868 * @brief Get the first sibling of the given node.
869 *
870 * @param[in] node Node which first sibling is going to be the result.
871 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
872 */
Michal Vasko6ae16d62020-11-06 17:23:23 +0100873struct lyd_node *lyd_first_sibling(const struct lyd_node *node);
Radek Krejci4233f9b2020-11-05 12:38:35 +0100874
875/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200876 * @brief Learn the length of LYB data.
877 *
878 * @param[in] data LYB data to examine.
879 * @return Length of the LYB data chunk,
880 * @return -1 on error.
881 */
882int lyd_lyb_data_length(const char *data);
883
884/**
Michal Vaskoa820c312021-02-05 16:33:00 +0100885 * @brief Get anydata string value.
886 *
887 * @param[in] any Anyxml/anydata node to read from.
888 * @param[out] value_str String representation of the value.
889 * @return LY_ERR value.
890 */
891LY_ERR lyd_any_value_str(const struct lyd_node *any, char **value_str);
892
893/**
Michal Vaskoc0004272020-08-06 08:32:34 +0200894 * @brief Copy anydata value from one node to another. Target value is freed first.
895 *
896 * @param[in,out] trg Target node.
897 * @param[in] value Source value, may be NULL when the target value is only freed.
898 * @param[in] value_type Source value type.
899 * @return LY_ERR value.
900 */
901LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type);
902
903/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200904 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100905 *
906 * @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 +0100907 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100908 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
Radek Krejci41ac9942020-11-02 14:47:56 +0100909 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
910 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200911 * @param[out] node Optional created node.
912 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100913 */
Michal Vasko53587422021-02-05 16:34:13 +0100914LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
915 struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100916
917/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200918 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100919 *
920 * @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 +0100921 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100922 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Radek Krejci41ac9942020-11-02 14:47:56 +0100923 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
924 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200925 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +0100926 * @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 +0200927 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
928 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200929 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100930 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100931LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, struct lyd_node **node, ...);
Michal Vasko013a8182020-03-03 10:46:53 +0100932
933/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200934 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100935 *
936 * @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 +0100937 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100938 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
939 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
940 * 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 +0200941 * Use NULL or string of length 0 in case of key-less list.
Radek Krejci41ac9942020-11-02 14:47:56 +0100942 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
943 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200944 * @param[out] node Optional created node.
945 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100946 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200947LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +0100948 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100949
950/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200951 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100952 *
953 * @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 +0100954 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100955 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
956 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
957 * value, the JSON format is expected (module names instead of prefixes).
Radek Krejci41ac9942020-11-02 14:47:56 +0100958 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
959 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200960 * @param[out] node Optional created node.
961 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100962 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200963LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
Radek Krejci41ac9942020-11-02 14:47:56 +0100964 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100965
966/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200967 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100968 *
969 * @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 +0100970 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100971 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
Michal Vasko2a4ab2b2021-03-04 15:52:40 +0100972 * @param[in] value Value for the node. Expected type is determined by @p value_type.
973 * @param[in] use_value Whether to directly take @p value and assign it to the node or make a copy.
Michal Vasko013a8182020-03-03 10:46:53 +0100974 * @param[in] value_type Type of the provided value in @p value.
Radek Krejci41ac9942020-11-02 14:47:56 +0100975 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
976 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200977 * @param[out] node Optional created node.
978 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100979 */
Michal Vasko2a4ab2b2021-03-04 15:52:40 +0100980LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
981 ly_bool use_value, LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100982
983/**
Michal Vasko871a0252020-11-11 18:35:24 +0100984 * @brief Create new metadata.
Michal Vaskod86997b2020-05-26 15:19:54 +0200985 *
Michal Vasko871a0252020-11-11 18:35:24 +0100986 * @param[in] ctx libyang context,
987 * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL.
Michal Vasko00cbf532020-06-15 13:58:47 +0200988 * @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 +0200989 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
990 * 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 +0200991 * @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 +0200992 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko871a0252020-11-11 18:35:24 +0100993 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
994 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200995 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +0200996 */
Michal Vasko871a0252020-11-11 18:35:24 +0100997LY_ERR lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
998 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +0200999
1000/**
Michal Vaskoba696702020-11-11 19:12:45 +01001001 * @brief Create new metadata from an opaque node attribute if possible.
1002 *
1003 * @param[in] ctx libyang context.
1004 * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL.
1005 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
1006 * @param[in] attr Opaque node attribute to parse into metadata.
1007 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
1008 * @return LY_SUCCESS on success.
1009 * @return LY_ENOT if the attribute could not be parsed into any metadata.
1010 * @return LY_ERR on error.
1011 */
1012LY_ERR lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1013 struct lyd_meta **meta);
1014
1015/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001016 * @brief Create a new JSON opaque node in the data tree. To create an XML opaque node, use ::lyd_new_opaq2().
Michal Vasko00cbf532020-06-15 13:58:47 +02001017 *
1018 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
1019 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1020 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001021 * @param[in] value Optional node value.
1022 * @param[in] prefix Optional node prefix, must be equal to @p module_name if set.
Michal Vasko00cbf532020-06-15 13:58:47 +02001023 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001024 * @param[out] node Optional created node.
1025 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001026 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001027LY_ERR lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001028 const char *prefix, const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001029
1030/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001031 * @brief Create a new XML opaque node in the data tree. To create a JSON opaque node, use ::lyd_new_opaq().
1032 *
1033 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
1034 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1035 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001036 * @param[in] value Optional node value.
1037 * @param[in] prefix Optional node prefix.
Michal Vasko8d65f852021-02-17 11:28:13 +01001038 * @param[in] module_ns Node module namespace.
1039 * @param[out] node Optional created node.
1040 * @return LY_ERR value.
1041 */
1042LY_ERR lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001043 const char *prefix, const char *module_ns, struct lyd_node **node);
Michal Vasko8d65f852021-02-17 11:28:13 +01001044
1045/**
1046 * @brief Create new JSON attribute for an opaque data node. To create an XML attribute, use ::lyd_new_attr2().
Michal Vasko00cbf532020-06-15 13:58:47 +02001047 *
1048 * @param[in] parent Parent opaque node for the attribute being created.
Radek Krejci8678fa42020-08-18 16:07:28 +02001049 * @param[in] module_name Name of the module of the attribute being created. There may be none.
Michal Vasko00cbf532020-06-15 13:58:47 +02001050 * @param[in] name Attribute name. It can include the module name as the prefix.
Michal Vasko8d65f852021-02-17 11:28:13 +01001051 * @param[in] value Attribute value, may be NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001052 * @param[out] attr Optional created attribute.
1053 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001054 */
Michal Vasko8d65f852021-02-17 11:28:13 +01001055LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value,
1056 struct lyd_attr **attr);
1057
1058/**
1059 * @brief Create new XML attribute for an opaque data node. To create a JSON attribute, use ::lyd_new_attr().
1060 *
1061 * @param[in] parent Parent opaque node for the attribute being created.
1062 * @param[in] module_ns Namespace of the module of the attribute being created. There may be none.
1063 * @param[in] name Attribute name. It can include an XML prefix.
1064 * @param[in] value Attribute value, may be NULL.
1065 * @param[out] attr Optional created attribute.
1066 * @return LY_ERR value.
1067 */
1068LY_ERR lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001069 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +02001070
1071/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001072 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001073 * @defgroup pathoptions Data path creation options
Michal Vasko00cbf532020-06-15 13:58:47 +02001074 *
1075 * Various options to change lyd_new_path*() behavior.
1076 *
1077 * Default behavior:
1078 * - if the target node already exists (and is not default), an error is returned.
1079 * - the whole path to the target node is created (with any missing parents) if necessary.
1080 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
1081 * @{
1082 */
1083
Radek Krejci092e33c2020-10-12 15:33:10 +02001084#define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
1085 default flag is changed, it is returned. If the target node exists and is not
1086 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
1087 no error set. */
1088#define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
1089 output ones. */
1090#define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
1091 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
1092 invalid value (leaf/leaf-list), it is created as opaque. */
Michal Vasko00cbf532020-06-15 13:58:47 +02001093
1094/** @} pathoptions */
1095
1096/**
1097 * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes,
Michal Vasko493900b2020-12-08 10:23:41 +01001098 * for those use ::lyd_new_path2.
Michal Vasko00cbf532020-06-15 13:58:47 +02001099 *
1100 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
1101 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
1102 * and @p value is set, the predicate is preferred.
1103 *
Michal Vasko6741dc62021-02-04 09:27:45 +01001104 * For key-less lists and state leaf-lists, positional predicates can be used. If no preciate is used for these
1105 * nodes, they are always created.
1106 *
Michal Vasko104fe962020-11-06 17:23:44 +01001107 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1108 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1109 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001110 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001111 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vasko00cbf532020-06-15 13:58:47 +02001112 * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored.
1113 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001114 * @param[out] node Optional first created node.
1115 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001116 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001117LY_ERR lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001118 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001119
1120/**
1121 * @brief Create a new node in the data tree based on a path. All node types can be created.
1122 *
1123 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
1124 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
1125 * and @p value is set, the predicate is preferred.
1126 *
Michal Vasko6741dc62021-02-04 09:27:45 +01001127 * For key-less lists and state leaf-lists, positional predicates can be used. If no preciate is used for these
1128 * nodes, they are always created.
1129 *
Michal Vasko104fe962020-11-06 17:23:44 +01001130 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1131 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1132 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001133 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001134 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vasko90cdd762021-01-11 10:25:07 +01001135 * @param[in] value Value of the new leaf/leaf-list (const char *) or anyxml/anydata (expected type depends on @p value_type).
1136 * For other node types, it is ignored.
Michal Vasko00cbf532020-06-15 13:58:47 +02001137 * @param[in] value_type Anyxml/anydata node @p value type.
1138 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001139 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1140 * @param[out] new_node Optional last node created.
Michal Vasko00cbf532020-06-15 13:58:47 +02001141 * @return LY_ERR value.
1142 */
1143LY_ERR lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001144 LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, struct lyd_node **new_node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001145
1146/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001147 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001148 * @defgroup implicitoptions Implicit node creation options
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001149 *
1150 * Various options to change lyd_new_implicit*() behavior.
1151 *
1152 * Default behavior:
1153 * - both configuration and state missing implicit nodes are added.
Michal Vasko630d9892020-12-08 17:11:08 +01001154 * - for existing RPC/action nodes, input implicit nodes are added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001155 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
1156 * @{
1157 */
1158
Michal Vasko44b19a12020-08-07 09:21:30 +02001159#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
1160#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
Michal Vasko630d9892020-12-08 17:11:08 +01001161#define LYD_IMPLICIT_OUTPUT 0x04 /**< For RPC/action nodes, add output implicit nodes instead of input. */
1162#define LYD_IMPLICIT_NO_DEFAULTS 0x08 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001163 containers. */
1164
1165/** @} implicitoptions */
1166
1167/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001168 * @brief Add any missing implicit nodes into a data subtree. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001169 *
1170 * @param[in] tree Tree to add implicit nodes into.
1171 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1172 * @param[out] diff Optional diff with any created nodes.
1173 * @return LY_ERR value.
1174 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001175LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001176
1177/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001178 * @brief Add any missing implicit nodes. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001179 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001180 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1181 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1182 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001183 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
1184 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1185 * @param[out] diff Optional diff with any created nodes.
1186 * @return LY_ERR value.
1187 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001188LY_ERR lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001189
1190/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001191 * @brief Add any missing implicit nodes of one module. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001192 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001193 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1194 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1195 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001196 * @param[in] module Module whose implicit nodes to create.
1197 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1198 * @param[out] diff Optional diff with any created nodes.
1199 * @return LY_ERR value.
1200 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001201LY_ERR lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options,
Radek Krejci0f969882020-08-21 16:56:47 +02001202 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001203
1204/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001205 * @brief Change the value of a term (leaf or leaf-list) node.
1206 *
1207 * Node changed this way is always considered explicitly set, meaning its default flag
1208 * is always cleared.
1209 *
1210 * @param[in] term Term node to change.
1211 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1212 * @return LY_SUCCESS if value was changed,
1213 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1214 * @return LY_ENOT if the values were equal and no change occured,
1215 * @return LY_ERR value on other errors.
1216 */
1217LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
1218
1219/**
Michal Vasko41586352020-07-13 13:54:25 +02001220 * @brief Change the value of a metadata instance.
1221 *
Michal Vasko41586352020-07-13 13:54:25 +02001222 * @param[in] meta Metadata to change.
1223 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1224 * @return LY_SUCCESS if value was changed,
1225 * @return LY_ENOT if the values were equal and no change occured,
1226 * @return LY_ERR value on other errors.
1227 */
1228LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
1229
1230/**
Michal Vaskob104f112020-07-17 09:54:54 +02001231 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +01001232 *
1233 * - if the node is part of some other tree, it is automatically unlinked.
1234 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1235 *
1236 * @param[in] parent Parent node to insert into.
1237 * @param[in] node Node to insert.
1238 * @return LY_SUCCESS on success.
1239 * @return LY_ERR error on error.
1240 */
Michal Vaskob104f112020-07-17 09:54:54 +02001241LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001242
1243/**
Michal Vaskob104f112020-07-17 09:54:54 +02001244 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001245 *
1246 * - if the node is part of some other tree, it is automatically unlinked.
1247 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1248 *
Michal Vaskob104f112020-07-17 09:54:54 +02001249 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001250 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +02001251 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001252 * @return LY_SUCCESS on success.
1253 * @return LY_ERR error on error.
1254 */
Michal Vaskob104f112020-07-17 09:54:54 +02001255LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001256
1257/**
Michal Vaskob104f112020-07-17 09:54:54 +02001258 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001259 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001260 *
1261 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001262 *
1263 * @param[in] sibling Sibling node to insert before.
1264 * @param[in] node Node to insert.
1265 * @return LY_SUCCESS on success.
1266 * @return LY_ERR error on error.
1267 */
1268LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
1269
1270/**
Michal Vaskob104f112020-07-17 09:54:54 +02001271 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001272 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001273 *
1274 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001275 *
1276 * @param[in] sibling Sibling node to insert after.
1277 * @param[in] node Node to insert.
1278 * @return LY_SUCCESS on success.
1279 * @return LY_ERR error on error.
1280 */
1281LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
1282
1283/**
1284 * @brief Unlink the specified data subtree.
1285 *
1286 * @param[in] node Data tree node to be unlinked (together with all the children).
1287 */
1288void lyd_unlink_tree(struct lyd_node *node);
1289
1290/**
Radek Krejcib0849a22019-07-25 12:31:04 +02001291 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +02001292 *
1293 * @param[in] node Any of the nodes inside the tree.
1294 */
1295void lyd_free_all(struct lyd_node *node);
1296
1297/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001298 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +02001299 *
1300 * @param[in] node Any of the sibling nodes to free.
1301 */
Michal Vaskof03ed032020-03-04 13:31:44 +01001302void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +02001303
1304/**
Radek Krejcie7b95092019-05-15 11:03:07 +02001305 * @brief Free (and unlink) the specified data (sub)tree.
1306 *
Radek Krejcie7b95092019-05-15 11:03:07 +02001307 * @param[in] node Root of the (sub)tree to be freed.
1308 */
1309void lyd_free_tree(struct lyd_node *node);
1310
1311/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001312 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +02001313 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001314 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +02001315 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001316void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +01001317
1318/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001319 * @brief Free the metadata instance with any following instances.
1320 *
1321 * @param[in] meta Metadata to free.
1322 */
1323void lyd_free_meta_siblings(struct lyd_meta *meta);
1324
1325/**
1326 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +01001327 *
1328 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001329 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +01001330 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001331void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001332
1333/**
1334 * @brief Free the attribute with any following attributes.
1335 *
1336 * @param[in] ctx Context where the attributes were created.
1337 * @param[in] attr First attribute to free.
1338 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001339void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +02001340
Radek Krejci084289f2019-07-09 17:35:30 +02001341/**
1342 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1343 *
1344 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
1345 *
1346 * If there is no data node instance and you are fine with checking just the type's restrictions without the
Radek Krejci8678fa42020-08-18 16:07:28 +02001347 * data tree context (e.g. for the case of require-instance restriction), use ::lys_value_validate().
Radek Krejci084289f2019-07-09 17:35:30 +02001348 *
1349 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
1350 * @param[in] node Data node for the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02001351 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001352 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskof03ed032020-03-04 13:31:44 +01001353 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
1354 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
1355 * then LY_EINCOMPLETE can be returned.
Michal Vasko3701af52020-08-03 14:29:38 +02001356 * @param[out] realtype Optional real type of the value.
Radek Krejci084289f2019-07-09 17:35:30 +02001357 * @return LY_SUCCESS on success
1358 * @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).
1359 * @return LY_ERR value if an error occurred.
1360 */
Michal Vasko44685da2020-03-17 15:38:06 +01001361LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len,
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001362 const struct lyd_node *tree, const struct lysc_type **realtype);
Radek Krejci084289f2019-07-09 17:35:30 +02001363
1364/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001365 * @brief Compare the node's value with the given string value. The string value is first validated according to
1366 * the (current) node's type.
Radek Krejci084289f2019-07-09 17:35:30 +02001367 *
1368 * @param[in] node Data node to compare.
1369 * @param[in] value String value to be compared. It does not need to be in a canonical form - as part of the process,
Michal Vaskof937cfe2020-08-03 16:07:12 +02001370 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001371 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001372 * @return LY_SUCCESS on success,
1373 * @return LY_ENOT if the values do not match,
Radek Krejci084289f2019-07-09 17:35:30 +02001374 * @return LY_ERR value if an error occurred.
1375 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001376LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len);
Radek Krejci084289f2019-07-09 17:35:30 +02001377
Radek Krejci576b23f2019-07-12 14:06:32 +02001378/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001379 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001380 * @defgroup datacompareoptions Data compare options
1381 * @{
1382 * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001383 */
1384#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
1385 (subtree, so direct as well as indirect children) are the same. By default,
1386 containers are the same in case of the same schema node and lists are the same
1387 in case of equal keys (keyless lists do the full recursion comparison all the time). */
1388#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
1389 changes this behavior and implicit (automatically created default node) and explicit
1390 (explicitly created node with the default value) default nodes are considered different. */
Michal Vasko60ea6352020-06-29 13:39:39 +02001391/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001392
1393/**
1394 * @brief Compare 2 data nodes if they are equivalent.
1395 *
1396 * @param[in] node1 The first node to compare.
1397 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001398 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001399 * @return LY_SUCCESS if the nodes are equivalent.
1400 * @return LY_ENOT if the nodes are not equivalent.
1401 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001402LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Michal Vasko8f359bf2020-07-28 10:41:15 +02001403
1404/**
1405 * @brief Compare 2 lists of siblings if they are equivalent.
1406 *
1407 * @param[in] node1 The first sibling list to compare.
1408 * @param[in] node2 The second sibling list to compare.
1409 * @param[in] options Various @ref datacompareoptions.
1410 * @return LY_SUCCESS if all the siblings are equivalent.
1411 * @return LY_ENOT if the siblings are not equivalent.
1412 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001413LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001414
1415/**
Michal Vasko21725742020-06-29 11:49:25 +02001416 * @brief Compare 2 metadata.
1417 *
1418 * @param[in] meta1 First metadata.
1419 * @param[in] meta2 Second metadata.
1420 * @return LY_SUCCESS if the metadata are equivalent.
1421 * @return LY_ENOT if not.
1422 */
1423LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
1424
1425/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001426 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001427 * @defgroup dupoptions Data duplication options
Radek Krejci22ebdba2019-07-25 13:59:43 +02001428 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001429 * Various options to change ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single() behavior.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001430 *
1431 * Default behavior:
1432 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001433 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001434 * @{
1435 */
1436
1437#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1438 list's keys are always duplicated. */
Michal Vaskoa29a5762020-06-23 13:28:49 +02001439#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001440#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1441 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001442#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 +02001443 its validation/default node state. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001444
1445/** @} dupoptions */
1446
1447/**
1448 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
1449 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02001450 * @param[in] node Data tree node to be duplicated.
1451 * @param[in] parent Optional parent node where to connect the duplicated node(s).
Michal Vasko3a41dff2020-07-15 14:30:28 +02001452 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1453 * the @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001454 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001455 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1456 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1457 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001458 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001459LY_ERR lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001460
1461/**
1462 * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same.
1463 *
1464 * @param[in] node Data tree node to be duplicated.
1465 * @param[in] parent Optional parent node where to connect the duplicated node(s).
1466 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1467 * the @p parent.
1468 * @param[in] options Bitmask of options flags, see @ref dupoptions.
1469 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1470 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1471 * @return LY_ERR value.
1472 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001473LY_ERR lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup);
Radek Krejci22ebdba2019-07-25 13:59:43 +02001474
1475/**
Michal Vasko25a32822020-07-09 15:48:22 +02001476 * @brief Create a copy of the metadata.
1477 *
1478 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001479 * @param[in] parent Node where to append the new metadata.
1480 * @param[out] dup Optional created metadata copy.
1481 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02001482 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001483LY_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 +02001484
1485/**
Michal Vasko4490d312020-06-16 13:08:55 +02001486 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001487 * @defgroup mergeoptions Data merge options.
Radek Krejci576b23f2019-07-12 14:06:32 +02001488 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001489 * Various options to change ::lyd_merge_tree() and ::lyd_merge_siblings() behavior.
Michal Vasko4490d312020-06-16 13:08:55 +02001490 *
1491 * Default behavior:
1492 * - source data tree is not modified in any way,
Michal Vasko3a41dff2020-07-15 14:30:28 +02001493 * - any default nodes in the source are ignored if there are explicit nodes in the target.
Michal Vasko4490d312020-06-16 13:08:55 +02001494 * @{
1495 */
1496
1497#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001498#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 +02001499
1500/** @} mergeoptions */
1501
1502/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001503 * @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 +02001504 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
1505 *
Michal Vasko2f510942020-11-13 10:26:25 +01001506 * Example input:
1507 *
1508 * source (A1) - A2 - A3 target (B1) - B2 - B3
1509 * /\ /\ /\ /\ /\ /\
1510 * .... .... .... .... .... ....
1511 *
1512 * result target (A1) - B1 - B2 - B3
1513 * /\ /\ /\ /\
1514 * .... .... .... ....
1515 *
Michal Vasko4490d312020-06-16 13:08:55 +02001516 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1517 * @param[in] source Source data tree to merge, must be a top-level tree.
1518 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1519 * @return LY_SUCCESS on success,
1520 * @return LY_ERR value on error.
1521 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001522LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001523
1524/**
1525 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
1526 * complete until validation called on the resulting data tree (data from more cases may be present, default
1527 * and non-default values).
1528 *
Michal Vasko2f510942020-11-13 10:26:25 +01001529 * Example input:
1530 *
1531 * source (A1) - A2 - A3 target (B1) - B2 - B3
1532 * /\ /\ /\ /\ /\ /\
1533 * .... .... .... .... .... ....
1534 *
1535 * result target (A1) - A2 - A3 - B1 - B2 - B3
1536 * /\ /\ /\ /\ /\ /\
1537 * .... .... .... .... .... ....
1538 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001539 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1540 * @param[in] source Source data tree to merge, must be a top-level tree.
1541 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1542 * @return LY_SUCCESS on success,
1543 * @return LY_ERR value on error.
1544 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001545LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko4490d312020-06-16 13:08:55 +02001546
1547/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001548 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001549 * @defgroup diffoptions Data diff options.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001550 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001551 * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001552 *
1553 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001554 * - any default nodes are treated as non-existent and ignored.
1555 * @{
1556 */
1557
Michal Vasko3a41dff2020-07-15 14:30:28 +02001558#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
1559 nodes. Also, leaves and leaf-lists are added into diff even in case only their
1560 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001561
1562/** @} diffoptions */
1563
1564/**
1565 * @brief Learn the differences between 2 data trees.
1566 *
1567 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
1568 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
1569 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
1570 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
1571 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
1572 * or the second tree.
1573 *
1574 * The diff tree is completely independent on the @p first and @p second trees, meaning all
1575 * the information about the change is stored in the diff and the trees are not needed.
1576 *
1577 * !! Caution !!
1578 * The diff tree should never be validated because it may easily not be valid! For example,
1579 * when data from one case branch are deleted and data from another branch created - data from both
1580 * branches are then stored in the diff tree simultaneously.
1581 *
1582 * @param[in] first First data tree.
1583 * @param[in] second Second data tree.
1584 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1585 * @param[out] diff Generated diff.
1586 * @return LY_SUCCESS on success,
1587 * @return LY_ERR on error.
1588 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001589LY_ERR lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001590
1591/**
1592 * @brief Learn the differences between 2 data trees including all the following siblings.
1593 *
1594 * @param[in] first First data tree.
1595 * @param[in] second Second data tree.
1596 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1597 * @param[out] diff Generated diff.
1598 * @return LY_SUCCESS on success,
1599 * @return LY_ERR on error.
1600 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001601LY_ERR lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001602
1603/**
1604 * @brief Callback for diff nodes.
1605 *
1606 * @param[in] diff_node Diff node.
1607 * @param[in] data_node Matching node in data.
1608 * @param[in] cb_data Arbitrary callback data.
1609 * @return LY_ERR value.
1610 */
1611typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
1612
1613/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001614 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001615 *
1616 * @param[in,out] data Data to apply the diff on.
1617 * @param[in] diff Diff to apply.
1618 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
1619 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1620 * @param[in] cb_data Arbitrary callback data.
1621 * @return LY_SUCCESS on success,
1622 * @return LY_ERR on error.
1623 */
1624LY_ERR lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +02001625 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001626
1627/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001628 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001629 *
1630 * @param[in,out] data Data to apply the diff on.
1631 * @param[in] diff Diff to apply.
1632 * @return LY_SUCCESS on success,
1633 * @return LY_ERR on error.
1634 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001635LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001636
1637/**
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001638 * @ingroup datatree
1639 * @defgroup diffmergeoptions Data diff merge options.
1640 *
1641 * Various options to change ::lyd_diff_merge_module(), ::lyd_diff_merge_tree(), and ::lyd_diff_merge_all() behavior.
1642 *
1643 * Default behavior:
1644 * - any default nodes are expected to be a result of validation corrections and not explicitly modified.
1645 * @{
1646 */
1647
1648#define LYD_DIFF_MERGE_DEFAULTS 0x01 /**< Default nodes in the diffs are treated as possibly explicitly modified. */
1649
1650/** @} diffoptions */
1651
1652/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001653 * @brief Merge 2 diffs into each other but restrict the operation to one module.
1654 *
1655 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
1656 * created on data that had the target diff applied on them. In other words, this sequence is legal
1657 *
Michal Vasko04f85912020-08-07 12:14:58 +02001658 * 1) diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 ->
1659 * -> data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001660 *
1661 * and reusing these diffs
1662 *
Michal Vasko04f85912020-08-07 12:14:58 +02001663 * 2) diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001664 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02001665 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001666 * @param[in] src_diff Source diff.
1667 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
Michal Vaskoe2af8412020-12-03 14:11:38 +01001668 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
1669 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
1670 * called on the root with @p diff_node being NULL.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001671 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001672 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001673 * @return LY_SUCCESS on success,
1674 * @return LY_ERR on error.
1675 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001676LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001677 lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001678
1679/**
Michal Vasko04f85912020-08-07 12:14:58 +02001680 * @brief Merge 2 diff trees into each other.
1681 *
1682 * @param[in,out] diff_first Target diff first sibling to merge into.
1683 * @param[in] diff_parent Target diff parent to merge into.
1684 * @param[in] src_sibling Source diff sibling to merge.
Michal Vaskoe2af8412020-12-03 14:11:38 +01001685 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
1686 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
1687 * called on the root with @p diff_node being NULL.
Michal Vasko04f85912020-08-07 12:14:58 +02001688 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001689 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vasko04f85912020-08-07 12:14:58 +02001690 * @return LY_SUCCESS on success,
1691 * @return LY_ERR on error.
1692 */
1693LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001694 lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vasko04f85912020-08-07 12:14:58 +02001695
1696/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001697 * @brief Merge 2 diffs into each other.
1698 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02001699 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02001700 * @param[in] src_diff Source diff.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001701 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001702 * @return LY_SUCCESS on success,
1703 * @return LY_ERR on error.
1704 */
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001705LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001706
1707/**
Michal Vasko4231fb62020-07-13 13:54:47 +02001708 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
1709 * or move from place A to B to move from B to A and so on.
1710 *
1711 * @param[in] src_diff Diff to reverse.
1712 * @param[out] diff Reversed diff.
1713 * @return LY_SUCCESS on success.
1714 * @return LY_ERR on error.
1715 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001716LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02001717
1718/**
Radek Krejcifba9c622020-10-30 08:28:54 +01001719 * @brief Find the target in data of a compiled instance-identifier path (the target member in ::lyd_value).
Michal Vasko4490d312020-06-16 13:08:55 +02001720 *
1721 * @param[in] path Compiled path structure.
Michal Vaskof03ed032020-03-04 13:31:44 +01001722 * @param[in] tree Data tree to be searched.
Michal Vasko4490d312020-06-16 13:08:55 +02001723 * @return Found target node,
1724 * @return NULL if not found.
Radek Krejci576b23f2019-07-12 14:06:32 +02001725 */
Michal Vasko004d3152020-06-11 19:59:22 +02001726const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02001727
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001728/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001729 * @brief Types of the different data paths.
1730 */
1731typedef enum {
Radek Krejci635d2b82021-01-04 11:26:51 +01001732 LYD_PATH_STD, /**< Generic data path used for logging, node searching (::lyd_find_xpath(), ::lys_find_path()) as well as
1733 creating new nodes (::lyd_new_path(), ::lyd_new_path2()). */
1734 LYD_PATH_STD_NO_LAST_PRED /**< Similar to ::LYD_PATH_STD except there is never a predicate on the last node. While it
1735 can be used to search for nodes, do not use it to create new data nodes (lists). */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001736} LYD_PATH_TYPE;
1737
1738/**
1739 * @brief Generate path of the given node in the requested format.
1740 *
Radek Krejci635d2b82021-01-04 11:26:51 +01001741 * @param[in] node Data path of this node will be generated.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001742 * @param[in] pathtype Format of the path to generate.
1743 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1744 * If NULL, memory for the complete path is allocated.
1745 * @param[in] buflen Size of the provided @p buffer.
1746 * @return NULL in case of memory allocation error, path of the node otherwise.
1747 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1748 */
1749char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
1750
Michal Vaskoe444f752020-02-10 12:20:06 +01001751/**
Michal Vasko25a32822020-07-09 15:48:22 +02001752 * @brief Find a specific metadata.
1753 *
1754 * @param[in] first First metadata to consider.
1755 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
1756 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
1757 * @return Found metadata,
1758 * @return NULL if not found.
1759 */
1760struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name);
1761
1762/**
Michal Vaskoda859032020-07-14 12:20:14 +02001763 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01001764 * Uses hashes - should be used whenever possible for best performance.
1765 *
1766 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1767 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01001768 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001769 * @return LY_SUCCESS on success, @p match set.
1770 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1771 * @return LY_ERR value if another error occurred.
1772 */
1773LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
1774
1775/**
Michal Vaskoe444f752020-02-10 12:20:06 +01001776 * @brief Search in the given siblings for the first schema instance.
1777 * Uses hashes - should be used whenever possible for best performance.
1778 *
1779 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1780 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02001781 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
1782 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01001783 * LYS_LEAFLIST:
1784 * Searched instance value.
1785 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001786 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
1787 * The keys do not have to be ordered but all of them must be set.
1788 *
1789 * Note that any explicit values (leaf-list or list key values) will be canonized first
1790 * before comparison. But values that do not have a canonical value are expected to be in the
1791 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001792 * @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 +01001793 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001794 * @return LY_SUCCESS on success, @p match set.
1795 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1796 * @return LY_EINVAL if @p schema is a key-less list.
1797 * @return LY_ERR value if another error occurred.
1798 */
1799LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value,
Radek Krejci0f969882020-08-21 16:56:47 +02001800 size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01001801
Michal Vaskoccc02342020-05-21 10:09:21 +02001802/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +01001803 * @brief Search the given siblings for an opaque node with a specific name.
1804 *
1805 * @param[in] first First sibling to consider.
1806 * @param[in] name Opaque node name to find.
1807 * @param[out] match Can be NULL, otherwise the found data node.
1808 * @return LY_SUCCESS on success, @p match set.
1809 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1810 * @return LY_ERR value is an error occurred.
1811 */
1812LY_ERR lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match);
1813
1814/**
Michal Vaskoccc02342020-05-21 10:09:21 +02001815 * @brief Search in the given data for instances of nodes matching the provided XPath.
1816 *
Michal Vasko19a30602020-05-25 10:40:19 +02001817 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
1818 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
1819 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
1820 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
1821 *
Michal Vaskoccc02342020-05-21 10:09:21 +02001822 * @param[in] ctx_node XPath context node.
Michal Vasko3e1f6552021-01-14 09:27:55 +01001823 * @param[in] xpath [XPath](@ref howtoXPath) to select.
Michal Vaskoccc02342020-05-21 10:09:21 +02001824 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
1825 * the returned set is empty.
1826 * @return LY_SUCCESS on success, @p set is returned.
1827 * @return LY_ERR value if an error occurred.
1828 */
1829LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
1830
Michal Vasko3e1f6552021-01-14 09:27:55 +01001831/**
1832 * @brief Search in given data for a node uniquely identifier by a path.
1833 *
Michal Vasko257bdcf2021-01-14 13:15:30 +01001834 * Always works in constant (*O(1)*) complexity. To be exact, it is *O(n)* where *n* is the depth
1835 * of the path used.
1836 *
Michal Vasko3e1f6552021-01-14 09:27:55 +01001837 * @param[in] ctx_node Path context node.
1838 * @param[in] path [Path](@ref howtoXPath) to find.
1839 * @param[in] output Whether to search in RPC/action output nodes or in input nodes.
1840 * @param[out] match Can be NULL, otherwise the found data node.
1841 * @return LY_SUCCESS on success, @p match is set to the found node.
1842 * @return LY_EINCOMPLETE if only a parent of the node was found, @p match is set to this parent node.
1843 * @return LY_ENOTFOUND if no nodes in the path were found.
1844 * @return LY_ERR on other errors.
1845 */
1846LY_ERR lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match);
1847
Radek Krejcie7b95092019-05-15 11:03:07 +02001848#ifdef __cplusplus
1849}
1850#endif
1851
1852#endif /* LY_TREE_DATA_H_ */