blob: 1fe05c90d438ae7a1c477466a0ed1591a5016586 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang representation of YANG data trees.
5 *
6 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_TREE_DATA_H_
16#define LY_TREE_DATA_H_
17
18#include <stddef.h>
19#include <stdint.h>
20
21#include "log.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020022
Radek Krejcica376bd2020-06-11 16:04:06 +020023#ifdef __cplusplus
24extern "C" {
25#endif
26
Radek Krejcie7b95092019-05-15 11:03:07 +020027struct ly_ctx;
Michal Vasko004d3152020-06-11 19:59:22 +020028struct ly_path;
Radek Krejci535ea9f2020-05-29 16:01:05 +020029struct ly_set;
30struct lyd_node;
31struct lyd_node_opaq;
Radek Krejci47fab892020-11-05 17:02:41 +010032struct lyd_node_term;
Radek Krejci535ea9f2020-05-29 16:01:05 +020033struct lys_module;
34struct lysc_node;
Radek Krejci47fab892020-11-05 17:02:41 +010035struct lysc_type;
Radek Krejcie7b95092019-05-15 11:03:07 +020036
Radek Krejcie7b95092019-05-15 11:03:07 +020037/**
Radek Krejci8678fa42020-08-18 16:07:28 +020038 * @page howtoData Data Instances
39 *
40 * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema
41 * it can be cast to several other structures.
42 *
43 * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq.
44 * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the
45 * context. Such a node can appear in several places in the data tree.
46 * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were
47 * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can
48 * appear as a node's attributes.
49 * - As a representation of YANG anydata/anyxml content.
50 * - As envelopes of standard data tree instances (RPCs, actions or Notifications).
51 *
52 * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is
53 * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype).
54 * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide
55 * structure of the tree by having children nodes.
56 * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal
57 * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value
58 * structure with string representation of the value (::lyd_value.canonical) and the type specific data stored in the
59 * structure's union according to the real type of the value (::lyd_value.realtype). The string representation provides
60 * canonical representation of the value in case the type has the canonical representation specified. Otherwise, it is the
61 * original value or, in case the value can contain prefixes, the JSON format is used to make the value unambiguous.
62 * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes.
63 *
64 * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use
65 * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros
66 * and functions.
67 * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node.
68 * - ::LYD_CTX to get libyang context from a data node.
69 * - ::LYD_CANON_VALUE to get canonical string value from a terminal node.
70 * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first).
71 * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page.
72 *
73 * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of
74 * \b lyd_find_*() functions.
75 *
76 * More information about specific operations with data instances can be found on the following pages:
77 * - @subpage howtoDataParsers
78 * - @subpage howtoDataValidation
79 * - @subpage howtoDataWD
80 * - @subpage howtoDataManipulation
81 * - @subpage howtoDataPrinters
82 *
83 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
84 *
85 * Functions List (not assigned to above subsections)
86 * --------------------------------------------------
87 * - ::lyd_child()
88 * - ::lyd_child_no_keys()
89 * - ::lyd_parent()
90 * - ::lyd_owner_module()
Michal Vasko8207e7e2020-11-09 21:03:54 +010091 * - ::lyd_has_when()
Radek Krejci8678fa42020-08-18 16:07:28 +020092 * - ::lyd_find_xpath()
93 * - ::lyd_find_sibling_val()
94 * - ::lyd_find_sibling_first()
95 * - ::lyd_find_meta()
96 *
97 * - ::lyd_path()
98 * - ::lyd_target()
99 *
100 * - ::lyd_lyb_data_length()
101 */
102
103/**
104 * @page howtoDataManipulation Manipulating Data
105 *
106 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
107 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
108 * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly
109 * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore,
110 * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure
111 * that the changed data tree is valid.
112 *
113 * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and
114 * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the
115 * nodes order from the YANG schema. So the node is not inserted to the end or beginning of the siblings list, but after the
116 * existing instance of the closest preceding sibling node from the schema. In case the node is opaq (it is not connected
117 * with any schema node), it is placed to the end of the sibling node in the order they are inserted in. The only situation
118 * when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list instances. In such
119 * a case the ::lyd_insert_after() or ::lyd_insert_before() can be used.
120 *
121 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
122 * the node name and/or its parent (::lyd_new_inner(), ::lyd_new_term(), ::lyd_new_any(), ::lyd_new_list(), ::lyd_new_list2()
123 * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path(),
124 * ::lyd_new_path2() and ::lyd_new_path_any()). The latter enables to create a whole path of nodes, requires less information
125 * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using
126 * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single().
127 *
128 * The [metadata](@ref howtoPluginsExtensionsMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta()
129 * and ::lyd_new_attr().
130 *
131 * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value
132 * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value
133 * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node
134 * (::lyd_value_validate()).
135 *
136 * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions.
137 * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when
138 * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more
139 * powerful insert.
140 *
141 * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose,
142 * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one
143 * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple
144 * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and
145 * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(),
146 * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used.
147 *
148 * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using
149 * ::lyd_free_all() (or other \b lyd_free_*() functions).
150 *
151 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
152 * same context.
153 *
154 * Modifying the single data tree in multiple threads is not safe.
155 *
156 * Functions List
157 * --------------
158 * - ::lyd_new_inner()
159 * - ::lyd_new_term()
160 * - ::lyd_new_list()
161 * - ::lyd_new_list2()
162 * - ::lyd_new_any()
163 * - ::lyd_new_opaq()
164 * - ::lyd_new_attr()
165 * - ::lyd_new_meta()
166 * - ::lyd_new_path()
167 * - ::lyd_new_path2()
168 * - ::lyd_new_path_any()
169 *
170 * - ::lyd_dup_single()
171 * - ::lyd_dup_siblings()
172 * - ::lyd_dup_meta_single()
173 *
174 * - ::lyd_insert_child()
175 * - ::lyd_insert_sibling()
176 * - ::lyd_insert_after()
177 * - ::lyd_insert_before()
178 *
179 * - ::lyd_value_compare()
180 * - ::lyd_value_validate()
181 *
182 * - ::lyd_change_term()
183 * - ::lyd_change_meta()
184 *
185 * - ::lyd_compare_single()
186 * - ::lyd_compare_siblings()
187 * - ::lyd_compare_meta()
188 * - ::lyd_diff_tree()
189 * - ::lyd_diff_siblings()
190 * - ::lyd_diff_apply_all()
191 * - ::lyd_diff_apply_module()
192 * - ::lyd_diff_reverse_all()
193 * - ::lyd_diff_merge_all()
194 * - ::lyd_diff_merge_module()
195 * - ::lyd_diff_merge_tree()
196 *
197 * - ::lyd_merge_tree()
198 * - ::lyd_merge_siblings()
199 *
200 * - ::lyd_unlink_tree()
201 *
202 * - ::lyd_free_all()
203 * - ::lyd_free_siblings()
204 * - ::lyd_free_tree()
205 * - ::lyd_free_meta_single()
206 * - ::lyd_free_meta_siblings()
207 * - ::lyd_free_attr_single()
208 * - ::lyd_free_attr_siblings()
209 *
210 * - ::lyd_any_copy_value()
211 */
212
213/**
214 * @page howtoDataWD Default Values
215 *
216 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
217 * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to
218 * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the
219 * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata
220 * providing the information about the default values cannot be used. It means that when parsing data, the default nodes
221 * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected
222 * nodes are printed without the ietf-netconf-with-defaults metadata.
223 *
224 * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them
225 * via @ref dataprinterflags when printing data trees.
226 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
227 * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option.
228 * This is the default with-defaults mode of the printer. The data nodes do not contain any additional
229 * metadata information.
230 * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option.
231 * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or
232 * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by
233 * ::LYD_PRINT_WD_ALL option.
234 * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value
235 * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode.
236 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes
237 * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option.
238 *
239 * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation).
240 * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding
241 * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the
242 * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the
243 * appropriate metadata.
244 *
245 * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes
246 * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the
247 * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions.
248 *
249 * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member
250 * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container
251 * 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
252 * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added
253 * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option.
254 *
255 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
256 * use ::lyd_is_default() function.
257 *
258 * Functions List
259 * --------------
260 * - ::lyd_is_default()
261 * - ::lyd_new_implicit_all()
262 * - ::lyd_new_implicit_module()
263 * - ::lyd_new_implicit_tree()
264 */
265
266/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200267 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200268 * @defgroup datatree Data Tree
Radek Krejcie7b95092019-05-15 11:03:07 +0200269 * @{
270 *
271 * Data structures and functions to manipulate and access instance data tree.
272 */
273
Michal Vasko64246d82020-08-19 12:35:00 +0200274/* *INDENT-OFF* */
275
Michal Vaskoa276cd92020-08-10 15:10:08 +0200276/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200277 * @brief Macro to iterate via all elements in a data tree. This is the opening part
278 * to the #LYD_TREE_DFS_END - they always have to be used together.
279 *
280 * The function follows deep-first search algorithm:
281 * <pre>
282 * 1
283 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100284 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +0200285 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100286 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +0200287 * </pre>
288 *
Radek Krejci0935f412019-08-20 16:15:18 +0200289 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200290 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
291 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200292 *
Michal Vasko56daf732020-08-10 10:57:18 +0200293 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
294 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200295 *
296 * Use with opening curly bracket '{' after the macro.
297 *
298 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200299 * @param ELEM Iterator intended for use in the block.
300 */
Michal Vasko56daf732020-08-10 10:57:18 +0200301#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200302 { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +0200303 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +0200304 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200305 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +0200306
307/**
308 * @brief Macro to iterate via all elements in a tree. This is the closing part
309 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
310 *
311 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200312 * START can be any of the lyd_node* types, ELEM variable must be a pointer
313 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200314 *
315 * Use with closing curly bracket '}' after the macro.
316 *
317 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200318 * @param ELEM Iterator intended for use in the block.
319 */
320
Michal Vasko56daf732020-08-10 10:57:18 +0200321#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200322 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200323 if (LYD_TREE_DFS_continue) { \
324 (LYD_TREE_DFS_next) = NULL; \
325 } else { \
Radek Krejcia1c1e542020-09-29 16:06:52 +0200326 (LYD_TREE_DFS_next) = lyd_child(ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200327 }\
328 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200329 /* no children */ \
330 if ((ELEM) == (struct lyd_node*)(START)) { \
331 /* we are done, (START) has no children */ \
332 break; \
333 } \
334 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200335 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200336 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200337 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200338 /* parent is already processed, go to its sibling */ \
339 (ELEM) = (struct lyd_node*)(ELEM)->parent; \
340 /* no siblings, go back through parents */ \
341 if ((ELEM)->parent == (START)->parent) { \
342 /* we are done, no next element to process */ \
343 break; \
344 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200345 (LYD_TREE_DFS_next) = (ELEM)->next; \
346 } } \
Radek Krejcie7b95092019-05-15 11:03:07 +0200347
Michal Vasko64246d82020-08-19 12:35:00 +0200348/* *INDENT-ON* */
349
Radek Krejcie7b95092019-05-15 11:03:07 +0200350/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200351 * @brief Macro to get context from a data tree node.
352 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200353#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200354
355/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200356 * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and
357 * [printer](@ref howtoDataPrinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200358 */
359typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200360 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
361 LYD_XML, /**< XML instance data format */
362 LYD_JSON, /**< JSON instance data format */
Michal Vasko69730152020-10-09 16:30:07 +0200363 LYD_LYB /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200364} LYD_FORMAT;
365
366/**
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200367 * @brief All kinds of supported prefix mappings to modules.
368 */
369typedef enum {
370 LY_PREF_SCHEMA, /**< value prefixes map to YANG import prefixes */
Michal Vaskoc9795582020-10-08 16:22:17 +0200371 LY_PREF_SCHEMA_RESOLVED, /**< value prefixes map to module structures directly */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200372 LY_PREF_XML, /**< value prefixes map to XML namespace prefixes */
Michal Vasko69730152020-10-09 16:30:07 +0200373 LY_PREF_JSON /**< value prefixes map to module names */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200374} LY_PREFIX_FORMAT;
375
376/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200377 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200378 */
379typedef enum {
Radek Krejci8678fa42020-08-18 16:07:28 +0200380 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 +0200381 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
Radek Krejci8678fa42020-08-18 16:07:28 +0200382 with the data after a successful call (including calling ::lyd_free_all() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200383 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 +0200384 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
385 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200386 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
387 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 +0200388 LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200389} LYD_ANYDATA_VALUETYPE;
390
391/** @} */
392
393/**
394 * @brief YANG data representation
395 */
396struct lyd_value {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200397 const char *canonical; /**< Canonical string representation of the value in the dictionary. It is never
398 NULL and in case of no canonical value, its JSON representation is used instead. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200399
Radek Krejcie7b95092019-05-15 11:03:07 +0200400 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200401 int8_t boolean; /**< 0 as false, 1 as true */
402 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200403 int8_t int8; /**< 8-bit signed integer */
404 int16_t int16; /**< 16-bit signed integer */
405 int32_t int32; /**< 32-bit signed integer */
406 int64_t int64; /**< 64-bit signed integer */
407 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200408 uint16_t uint16; /**< 16-bit unsigned integer */
409 uint32_t uint32; /**< 32-bit unsigned integer */
410 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200411 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200412 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 +0200413 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200414 struct ly_path *target; /**< Instance-identifier target path. */
415 struct lyd_value_subvalue *subvalue; /** Union value with some metadata. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200416 void *ptr; /**< generic data type structure used to store the data */
Radek Krejci8678fa42020-08-18 16:07:28 +0200417 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype
418 plugin's callbacks to work with the data.*/
Radek Krejci084289f2019-07-09 17:35:30 +0200419
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200420 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 +0200421 in the schema node of the data node since the type's store plugin can use other types/plugins for
422 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
423 target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data
424 stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type.
425 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
426 the type used to store data directly in the same lyd_value instance. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200427};
428
429/**
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200430 * @brief Macro for getting the string canonical value from a term node.
431 *
432 * @param[in] node Term node with the value.
433 * @return Canonical value.
434 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200435#define LYD_CANON_VALUE(node) ((struct lyd_node_term *)(node))->value.canonical
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200436
437/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200438 * @brief Special lyd_value structure for union.
439 *
440 * 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 +0200441 * the ::lyd_value_subvalue.value contains representation according to one of the union's types.
442 * 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 +0200443 * These prefixes are necessary to parse original value to the union's subtypes.
444 */
445struct lyd_value_subvalue {
446 struct lyd_value value; /**< representation of the value according to the selected union's subtype
Radek Krejci8678fa42020-08-18 16:07:28 +0200447 (stored as ::lyd_value.realtype here, in subvalue structure */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200448 const char *original; /**< Original value in the dictionary. */
449 LY_PREFIX_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
450 whether a value is valid for the specific format or not on later validations
451 (instance-identifier in XML looks different than in JSON). */
Radek Krejci8678fa42020-08-18 16:07:28 +0200452 void *prefix_data; /**< Format-specific data for prefix resolution (see ::ly_type_store_resolve_prefix()) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200453 uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */
454 const struct lysc_node *ctx_node; /**< Context schema node. */
455};
456
457/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100458 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200459 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100460 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200461 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
462 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
463 * they are represented as JSON elements starting with the '@' character (for more information, see the
464 * YANG metadata RFC.
465 *
466 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100467struct lyd_meta {
468 struct lyd_node *parent; /**< data node where the metadata is placed */
469 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
470 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
471 const char *name; /**< metadata name */
472 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200473};
474
Michal Vasko52927e22020-03-16 17:26:14 +0100475/**
476 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200477 *
478 * 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 +0200479 * ::ly_ctx_get_module_implemented_ns() or ::ly_ctx_get_module_implemented(). While the module reference is always present,
Radek Krejci1798aae2020-07-14 13:26:06 +0200480 * the id member can be omitted in case it is not present in the source data as a reference to the default namespace.
Michal Vasko52927e22020-03-16 17:26:14 +0100481 */
482struct ly_prefix {
Radek Krejci1798aae2020-07-14 13:26:06 +0200483 const char *id; /**< identifier used in the qualified name of the item to reference data node namespace */
484 union {
485 const char *module_ns; /**< namespace of the module where the data are supposed to belongs to, used for LYD_XML format. */
486 const char *module_name; /**< name of the module where the data are supposed to belongs to, used for LYD_JSON format. */
487 };
Michal Vasko52927e22020-03-16 17:26:14 +0100488};
489
490/**
491 * @brief Generic attribute structure.
492 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200493struct lyd_attr {
Michal Vasko52927e22020-03-16 17:26:14 +0100494 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
Radek Krejci1798aae2020-07-14 13:26:06 +0200495 struct lyd_attr *next;
Michal Vasko52927e22020-03-16 17:26:14 +0100496 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
497 const char *name;
498 const char *value;
499
Radek Krejci5536d282020-08-04 23:27:44 +0200500 LYD_FORMAT format; /**< format of the prefixes, only LYD_XML and LYD_JSON values can appear at this place */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200501 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100502 struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */
503
504};
Radek Krejcie7b95092019-05-15 11:03:07 +0200505
Michal Vasko1bf09392020-03-27 12:38:10 +0100506#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 +0200507#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
508#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
509
510/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200511 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200512 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200513 * @{
514 *
515 * Various flags of data nodes.
516 *
517 * 1 - container 5 - anydata/anyxml
518 * 2 - list 6 - rpc/action
519 * 3 - leaf 7 - notification
520 * 4 - leaflist
521 *
522 * bit name 1 2 3 4 5 6 7
523 * ---------------------+-+-+-+-+-+-+-+
524 * 1 LYD_DEFAULT |x| |x|x| | | |
525 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100526 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100527 * +-+-+-+-+-+-+-+
528 * 3 LYD_NEW |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200529 * ---------------------+-+-+-+-+-+-+-+
530 *
531 */
532
Michal Vasko5c4e5892019-11-14 12:31:38 +0100533#define LYD_DEFAULT 0x01 /**< default (implicit) node */
534#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
Michal Vasko9b368d32020-02-14 13:53:31 +0100535#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
Michal Vasko52927e22020-03-16 17:26:14 +0100536
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200537/** @} */
538
539/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200540 * @brief Generic structure for a data node.
541 */
542struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200543 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
544 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
545 used to get know that nodes are not equal, it cannot be used to decide that the
546 nodes are equal due to possible collisions. */
547 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Michal Vaskoecd62de2019-11-13 12:35:11 +0100548 const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just
Radek Krejci8678fa42020-08-18 16:07:28 +0200549 ::lysc_node but ::lysc_action or ::lysc_notif as well */
Radek Krejcie7b95092019-05-15 11:03:07 +0200550 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
551 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
552 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
553 never NULL. If there is no sibling node, pointer points to the node
554 itself. In case of the first node, this pointer points to the last
555 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100556 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200557
558#ifdef LY_ENABLED_LYD_PRIV
559 void *priv; /**< private user data, not used by libyang */
560#endif
561};
562
563/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200564 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200565 */
566struct lyd_node_inner {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200567 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
568 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
569 used to get know that nodes are not equal, it cannot be used to decide that the
570 nodes are equal due to possible collisions. */
571 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200572 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
573 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
574 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
575 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
576 never NULL. If there is no sibling node, pointer points to the node
577 itself. In case of the first node, this pointer points to the last
578 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100579 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200580
581#ifdef LY_ENABLED_LYD_PRIV
582 void *priv; /**< private user data, not used by libyang */
583#endif
584
585 struct lyd_node *child; /**< pointer to the first child node. */
586 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 +0200587#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 +0200588};
589
590/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100591 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200592 */
593struct lyd_node_term {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200594 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
595 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
596 used to get know that nodes are not equal, it cannot be used to decide that the
597 nodes are equal due to possible collisions. */
598 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200599 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
600 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
601 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
602 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
603 never NULL. If there is no sibling node, pointer points to the node
604 itself. In case of the first node, this pointer points to the last
605 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100606 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200607
608#ifdef LY_ENABLED_LYD_PRIV
609 void *priv; /**< private user data, not used by libyang */
610#endif
611
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200612 struct lyd_value value; /**< node's value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200613};
614
615/**
616 * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls.
617 */
618struct lyd_node_any {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200619 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
620 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
621 used to get know that nodes are not equal, it cannot be used to decide that the
622 nodes are equal due to possible collisions. */
623 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200624 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
625 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
626 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
627 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
628 never NULL. If there is no sibling node, pointer points to the node
629 itself. In case of the first node, this pointer points to the last
630 node in the list. */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200631 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200632
633#ifdef LY_ENABLED_LYD_PRIV
634 void *priv; /**< private user data, not used by libyang */
635#endif
636
Michal Vasko00cbf532020-06-15 13:58:47 +0200637 union lyd_any_value {
Radek Krejciee4cab22019-07-17 17:07:47 +0200638 struct lyd_node *tree; /**< data tree */
639 const char *str; /**< Generic string data */
640 const char *xml; /**< Serialized XML data */
641 const char *json; /**< I-JSON encoded string */
642 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
643 } value; /**< pointer to the stored value representation of the anydata/anyxml node */
Radek Krejci8678fa42020-08-18 16:07:28 +0200644 LYD_ANYDATA_VALUETYPE value_type;/**< type of the data stored as ::lyd_node_any.value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200645};
646
647/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200648 * @ingroup datatree
649 * @defgroup lydvalhints Value format hints.
Radek Krejci1798aae2020-07-14 13:26:06 +0200650 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200651 *
652 * Hints for the type of the data value.
653 *
654 * Any information about value types encoded in the format is hinted by these values.
Radek Krejci1798aae2020-07-14 13:26:06 +0200655 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200656#define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */
657#define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */
658#define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */
659#define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */
660#define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */
661#define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */
662#define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */
663/**
664 * @} lydvalhints
665 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200666
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200667/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200668 * @ingroup datatree
669 * @defgroup lydnodehints Node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200670 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200671 *
672 * Hints for the type of the data node.
673 *
674 * Any information about node types encoded in the format is hinted by these values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200675 */
676#define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */
677#define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */
678#define LYD_NODEHINT_ENVELOPE 0x8000 /**< only found in opaque node hints; node is a special protocol-dependent
679 RPC/Action/Notification envelope */
680/**
681 * @} lydnodehints
682 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200683
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200684/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200685 * @ingroup datatree
686 * @defgroup lydhints Value and node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200687 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200688 *
689 * Hints for the types of data node and its value.
690 *
691 * Any information about value and node types encoded in the format is hinted by these values.
692 * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints).
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200693 */
694#define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when
695 there is no encoding or it does not provide any additional information about
696 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
697 or [node hints](@ref lydnodehints). */
698#define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when
699 there is no encoding or it does not provide any additional information about
700 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
701 or [node hints](@ref lydnodehints). */
702/**
703 * @} lydhints
704 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200705
706/**
Michal Vasko52927e22020-03-16 17:26:14 +0100707 * @brief Data node structure for unparsed (opaque) nodes.
708 */
709struct lyd_node_opaq {
710 uint32_t hash; /**< always 0 */
711 uint32_t flags; /**< always 0 */
712 const struct lysc_node *schema; /**< always NULL */
713 struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */
714 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
715 struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200716 struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */
Michal Vasko52927e22020-03-16 17:26:14 +0100717
718#ifdef LY_ENABLED_LYD_PRIV
719 void *priv; /**< private user data, not used by libyang */
720#endif
721
722 struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */
723 const char *name;
724 LYD_FORMAT format;
725 struct ly_prefix prefix; /**< name prefix */
726 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
727 const char *value; /**< original value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200728 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100729 const struct ly_ctx *ctx; /**< libyang context */
730};
731
732/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200733 * @brief Get the generic parent pointer of a data node.
734 *
735 * @param[in] node Node whose parent pointer to get.
736 * @return Pointer to the parent node of the @p node.
737 * @return NULL in case of the top-level node or if the @p node is NULL itself.
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200738 */
Radek Krejcia1c1e542020-09-29 16:06:52 +0200739struct lyd_node *lyd_parent(const struct lyd_node *node);
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200740
741/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200742 * @brief Get the child pointer of a generic data node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200743 *
Radek Krejcia1c1e542020-09-29 16:06:52 +0200744 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
745 *
746 * If you need to skip key children, use ::lyd_child_no_keys().
747 *
748 * @param[in] node Node to use.
749 * @return Pointer to the first child node (if any) of the @p node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200750 */
Radek Krejcia1c1e542020-09-29 16:06:52 +0200751struct lyd_node *lyd_child(const struct lyd_node *node);
752
753/**
754 * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST.
755 *
756 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
757 *
758 * If you need to take key children into account, use ::lyd_child().
759 *
760 * @param[in] node Node to use.
761 * @return Pointer to the first child node (if any) of the @p node.
762 */
763struct lyd_node *lyd_child_no_keys(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200764
765/**
Michal Vaskoc193ce92020-03-06 11:04:48 +0100766 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
767 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
768 *
769 * @param[in] node Data node to examine.
770 * @return Module owner of the node.
771 */
772const struct lys_module *lyd_owner_module(const struct lyd_node *node);
773
774/**
Michal Vasko8207e7e2020-11-09 21:03:54 +0100775 * @brief Check whether this data node existence depends on any when conditions. This node's schema node and
776 * any direct parent choice and case schema nodes are also examined for when conditions.
777 *
778 * Be careful, this function is not recursive and checks only conditions that apply to this node directly.
779 * Meaning if there are any conditions associated with any parent of @p node, they are not returned.
780 *
781 * @param[in] node Data node to examine.
782 * @return When condition associated with the node, NULL if there is none.
783 */
784const struct lysc_when *lyd_has_when(const struct lyd_node *node);
785
786/**
Radek Krejci19611252020-10-04 13:54:53 +0200787 * @brief Check whether a node value equals to its default one.
788 *
789 * @param[in] node Term node to test.
790 * @return false (no, it is not a default node) or true (yes, it is default)
791 */
792ly_bool lyd_is_default(const struct lyd_node *node);
793
794/**
Radek Krejcica989142020-11-05 11:32:22 +0100795 * @brief Learn the relative position of a list or leaf-list instance within other instances of the same schema node.
796 *
797 * @param[in] instance List or leaf-list instance to get the position of.
798 * return 0 on error.
799 * return Positive integer of the @p instance position.
800 */
801uint32_t lyd_list_pos(const struct lyd_node *instance);
802
803/**
Radek Krejci4233f9b2020-11-05 12:38:35 +0100804 * @brief Get the first sibling of the given node.
805 *
806 * @param[in] node Node which first sibling is going to be the result.
807 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
808 */
Michal Vasko6ae16d62020-11-06 17:23:23 +0100809struct lyd_node *lyd_first_sibling(const struct lyd_node *node);
Radek Krejci4233f9b2020-11-05 12:38:35 +0100810
811/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200812 * @brief Learn the length of LYB data.
813 *
814 * @param[in] data LYB data to examine.
815 * @return Length of the LYB data chunk,
816 * @return -1 on error.
817 */
818int lyd_lyb_data_length(const char *data);
819
820/**
Michal Vaskoc0004272020-08-06 08:32:34 +0200821 * @brief Copy anydata value from one node to another. Target value is freed first.
822 *
823 * @param[in,out] trg Target node.
824 * @param[in] value Source value, may be NULL when the target value is only freed.
825 * @param[in] value_type Source value type.
826 * @return LY_ERR value.
827 */
828LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type);
829
830/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200831 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100832 *
833 * @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 +0100834 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100835 * @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 +0100836 * @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
837 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200838 * @param[out] node Optional created node.
839 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100840 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100841LY_ERR lyd_new_inner(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 +0100842
843/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200844 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100845 *
846 * @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 +0100847 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100848 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Radek Krejci41ac9942020-11-02 14:47:56 +0100849 * @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
850 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200851 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +0100852 * @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 +0200853 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
854 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200855 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100856 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100857LY_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 +0100858
859/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200860 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100861 *
862 * @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 +0100863 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100864 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
865 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
866 * 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 +0200867 * Use NULL or string of length 0 in case of key-less list.
Radek Krejci41ac9942020-11-02 14:47:56 +0100868 * @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
869 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200870 * @param[out] node Optional created node.
871 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100872 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200873LY_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 +0100874 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100875
876/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200877 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100878 *
879 * @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 +0100880 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100881 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
882 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
883 * value, the JSON format is expected (module names instead of prefixes).
Radek Krejci41ac9942020-11-02 14:47:56 +0100884 * @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
885 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200886 * @param[out] node Optional created node.
887 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100888 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200889LY_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 +0100890 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100891
892/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200893 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100894 *
895 * @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 +0100896 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100897 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
898 * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type.
899 * @param[in] value_type Type of the provided value in @p value.
Radek Krejci41ac9942020-11-02 14:47:56 +0100900 * @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
901 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200902 * @param[out] node Optional created node.
903 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100904 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200905LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100906 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100907
908/**
Michal Vasko871a0252020-11-11 18:35:24 +0100909 * @brief Create new metadata.
Michal Vaskod86997b2020-05-26 15:19:54 +0200910 *
Michal Vasko871a0252020-11-11 18:35:24 +0100911 * @param[in] ctx libyang context,
912 * @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 +0200913 * @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 +0200914 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
915 * 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 +0200916 * @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 +0200917 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko871a0252020-11-11 18:35:24 +0100918 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
919 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200920 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +0200921 */
Michal Vasko871a0252020-11-11 18:35:24 +0100922LY_ERR lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
923 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +0200924
925/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200926 * @brief Create a new opaque node in the data tree.
927 *
928 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
929 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
930 * @param[in] name Node name.
931 * @param[in] value Node value, may be NULL.
932 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200933 * @param[out] node Optional created node.
934 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200935 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200936LY_ERR lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +0200937 const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200938
939/**
940 * @brief Create new attribute for an opaque data node.
941 *
942 * @param[in] parent Parent opaque node for the attribute being created.
Radek Krejci8678fa42020-08-18 16:07:28 +0200943 * @param[in] module_name Name of the module of the attribute being created. There may be none.
Michal Vasko00cbf532020-06-15 13:58:47 +0200944 * @param[in] name Attribute name. It can include the module name as the prefix.
945 * @param[in] val_str String value of the attribute. Is stored directly.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200946 * @param[out] attr Optional created attribute.
947 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200948 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200949LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +0200950 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +0200951
952/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200953 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200954 * @defgroup pathoptions Data path creation options
Michal Vasko00cbf532020-06-15 13:58:47 +0200955 *
956 * Various options to change lyd_new_path*() behavior.
957 *
958 * Default behavior:
959 * - if the target node already exists (and is not default), an error is returned.
960 * - the whole path to the target node is created (with any missing parents) if necessary.
961 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
962 * @{
963 */
964
Radek Krejci092e33c2020-10-12 15:33:10 +0200965#define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
966 default flag is changed, it is returned. If the target node exists and is not
967 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
968 no error set. */
969#define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
970 output ones. */
971#define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
972 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
973 invalid value (leaf/leaf-list), it is created as opaque. */
Michal Vasko00cbf532020-06-15 13:58:47 +0200974
975/** @} pathoptions */
976
977/**
978 * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes,
979 * for those use ::lyd_new_path_any.
980 *
981 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
982 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
983 * and @p value is set, the predicate is preferred.
984 *
Michal Vasko104fe962020-11-06 17:23:44 +0100985 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
986 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
987 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +0200988 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +0100989 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vasko00cbf532020-06-15 13:58:47 +0200990 * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored.
991 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200992 * @param[out] node Optional first created node.
993 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200994 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200995LY_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 +0200996 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200997
998/**
999 * @brief Create a new node in the data tree based on a path. All node types can be created.
1000 *
1001 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
1002 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
1003 * and @p value is set, the predicate is preferred.
1004 *
Michal Vasko104fe962020-11-06 17:23:44 +01001005 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1006 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1007 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001008 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001009 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vasko00cbf532020-06-15 13:58:47 +02001010 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
1011 * @param[in] value_type Anyxml/anydata node @p value type.
1012 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001013 * @param[out] node Optional first created node.
1014 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001015 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001016LY_ERR lyd_new_path_any(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +02001017 LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001018
1019/**
1020 * @brief Create a new node in the data tree based on a path. All node types can be created.
1021 *
1022 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
1023 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
1024 * and @p value is set, the predicate is preferred.
1025 *
Michal Vasko104fe962020-11-06 17:23:44 +01001026 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1027 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1028 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001029 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001030 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vasko00cbf532020-06-15 13:58:47 +02001031 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
1032 * @param[in] value_type Anyxml/anydata node @p value type.
1033 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001034 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1035 * @param[out] new_node Optional last node created.
Michal Vasko00cbf532020-06-15 13:58:47 +02001036 * @return LY_ERR value.
1037 */
1038LY_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 +02001039 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 +02001040
1041/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001042 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001043 * @defgroup implicitoptions Implicit node creation options
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001044 *
1045 * Various options to change lyd_new_implicit*() behavior.
1046 *
1047 * Default behavior:
1048 * - both configuration and state missing implicit nodes are added.
1049 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
1050 * @{
1051 */
1052
Michal Vasko44b19a12020-08-07 09:21:30 +02001053#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
1054#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
1055#define LYD_IMPLICIT_NO_DEFAULTS 0x04 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001056 containers. */
1057
1058/** @} implicitoptions */
1059
1060/**
1061 * @brief Add any missing implicit nodes into a data subtree.
1062 *
1063 * @param[in] tree Tree to add implicit nodes into.
1064 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1065 * @param[out] diff Optional diff with any created nodes.
1066 * @return LY_ERR value.
1067 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001068LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001069
1070/**
1071 * @brief Add any missing implicit nodes.
1072 *
1073 * @param[in,out] tree Tree to add implicit nodes into.
1074 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
1075 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1076 * @param[out] diff Optional diff with any created nodes.
1077 * @return LY_ERR value.
1078 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001079LY_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 +02001080
1081/**
1082 * @brief Add any missing implicit nodes of one module.
1083 *
1084 * @param[in,out] tree Tree to add implicit nodes into.
1085 * @param[in] module Module whose implicit nodes to create.
1086 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1087 * @param[out] diff Optional diff with any created nodes.
1088 * @return LY_ERR value.
1089 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001090LY_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 +02001091 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001092
1093/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001094 * @brief Change the value of a term (leaf or leaf-list) node.
1095 *
1096 * Node changed this way is always considered explicitly set, meaning its default flag
1097 * is always cleared.
1098 *
1099 * @param[in] term Term node to change.
1100 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1101 * @return LY_SUCCESS if value was changed,
1102 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1103 * @return LY_ENOT if the values were equal and no change occured,
1104 * @return LY_ERR value on other errors.
1105 */
1106LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
1107
1108/**
Michal Vasko41586352020-07-13 13:54:25 +02001109 * @brief Change the value of a metadata instance.
1110 *
Michal Vasko41586352020-07-13 13:54:25 +02001111 * @param[in] meta Metadata to change.
1112 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1113 * @return LY_SUCCESS if value was changed,
1114 * @return LY_ENOT if the values were equal and no change occured,
1115 * @return LY_ERR value on other errors.
1116 */
1117LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
1118
1119/**
Michal Vaskob104f112020-07-17 09:54:54 +02001120 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +01001121 *
1122 * - if the node is part of some other tree, it is automatically unlinked.
1123 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1124 *
1125 * @param[in] parent Parent node to insert into.
1126 * @param[in] node Node to insert.
1127 * @return LY_SUCCESS on success.
1128 * @return LY_ERR error on error.
1129 */
Michal Vaskob104f112020-07-17 09:54:54 +02001130LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001131
1132/**
Michal Vaskob104f112020-07-17 09:54:54 +02001133 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001134 *
1135 * - if the node is part of some other tree, it is automatically unlinked.
1136 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1137 *
Michal Vaskob104f112020-07-17 09:54:54 +02001138 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001139 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +02001140 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001141 * @return LY_SUCCESS on success.
1142 * @return LY_ERR error on error.
1143 */
Michal Vaskob104f112020-07-17 09:54:54 +02001144LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001145
1146/**
Michal Vaskob104f112020-07-17 09:54:54 +02001147 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +01001148 *
1149 * - if the node is part of some other tree, it is automatically unlinked.
1150 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1151 *
1152 * @param[in] sibling Sibling node to insert before.
1153 * @param[in] node Node to insert.
1154 * @return LY_SUCCESS on success.
1155 * @return LY_ERR error on error.
1156 */
1157LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
1158
1159/**
Michal Vaskob104f112020-07-17 09:54:54 +02001160 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +01001161 *
1162 * - if the node is part of some other tree, it is automatically unlinked.
1163 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1164 *
1165 * @param[in] sibling Sibling node to insert after.
1166 * @param[in] node Node to insert.
1167 * @return LY_SUCCESS on success.
1168 * @return LY_ERR error on error.
1169 */
1170LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
1171
1172/**
1173 * @brief Unlink the specified data subtree.
1174 *
1175 * @param[in] node Data tree node to be unlinked (together with all the children).
1176 */
1177void lyd_unlink_tree(struct lyd_node *node);
1178
1179/**
Radek Krejcib0849a22019-07-25 12:31:04 +02001180 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +02001181 *
1182 * @param[in] node Any of the nodes inside the tree.
1183 */
1184void lyd_free_all(struct lyd_node *node);
1185
1186/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001187 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +02001188 *
1189 * @param[in] node Any of the sibling nodes to free.
1190 */
Michal Vaskof03ed032020-03-04 13:31:44 +01001191void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +02001192
1193/**
Radek Krejcie7b95092019-05-15 11:03:07 +02001194 * @brief Free (and unlink) the specified data (sub)tree.
1195 *
Radek Krejcie7b95092019-05-15 11:03:07 +02001196 * @param[in] node Root of the (sub)tree to be freed.
1197 */
1198void lyd_free_tree(struct lyd_node *node);
1199
1200/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001201 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +02001202 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001203 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +02001204 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001205void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +01001206
1207/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001208 * @brief Free the metadata instance with any following instances.
1209 *
1210 * @param[in] meta Metadata to free.
1211 */
1212void lyd_free_meta_siblings(struct lyd_meta *meta);
1213
1214/**
1215 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +01001216 *
1217 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001218 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +01001219 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001220void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001221
1222/**
1223 * @brief Free the attribute with any following attributes.
1224 *
1225 * @param[in] ctx Context where the attributes were created.
1226 * @param[in] attr First attribute to free.
1227 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001228void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +02001229
Radek Krejci084289f2019-07-09 17:35:30 +02001230/**
1231 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1232 *
1233 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
1234 *
1235 * 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 +02001236 * data tree context (e.g. for the case of require-instance restriction), use ::lys_value_validate().
Radek Krejci084289f2019-07-09 17:35:30 +02001237 *
1238 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
1239 * @param[in] node Data node for the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02001240 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001241 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskof03ed032020-03-04 13:31:44 +01001242 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
1243 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
1244 * then LY_EINCOMPLETE can be returned.
Michal Vasko3701af52020-08-03 14:29:38 +02001245 * @param[out] realtype Optional real type of the value.
Radek Krejci084289f2019-07-09 17:35:30 +02001246 * @return LY_SUCCESS on success
1247 * @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).
1248 * @return LY_ERR value if an error occurred.
1249 */
Michal Vasko44685da2020-03-17 15:38:06 +01001250LY_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 +02001251 const struct lyd_node *tree, const struct lysc_type **realtype);
Radek Krejci084289f2019-07-09 17:35:30 +02001252
1253/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001254 * @brief Compare the node's value with the given string value. The string value is first validated according to
1255 * the (current) node's type.
Radek Krejci084289f2019-07-09 17:35:30 +02001256 *
1257 * @param[in] node Data node to compare.
1258 * @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 +02001259 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001260 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001261 * @return LY_SUCCESS on success,
1262 * @return LY_ENOT if the values do not match,
Radek Krejci084289f2019-07-09 17:35:30 +02001263 * @return LY_ERR value if an error occurred.
1264 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001265LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len);
Radek Krejci084289f2019-07-09 17:35:30 +02001266
Radek Krejci576b23f2019-07-12 14:06:32 +02001267/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001268 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001269 * @defgroup datacompareoptions Data compare options
1270 * @{
1271 * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001272 */
1273#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
1274 (subtree, so direct as well as indirect children) are the same. By default,
1275 containers are the same in case of the same schema node and lists are the same
1276 in case of equal keys (keyless lists do the full recursion comparison all the time). */
1277#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
1278 changes this behavior and implicit (automatically created default node) and explicit
1279 (explicitly created node with the default value) default nodes are considered different. */
Michal Vasko60ea6352020-06-29 13:39:39 +02001280/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001281
1282/**
1283 * @brief Compare 2 data nodes if they are equivalent.
1284 *
1285 * @param[in] node1 The first node to compare.
1286 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001287 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001288 * @return LY_SUCCESS if the nodes are equivalent.
1289 * @return LY_ENOT if the nodes are not equivalent.
1290 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001291LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Michal Vasko8f359bf2020-07-28 10:41:15 +02001292
1293/**
1294 * @brief Compare 2 lists of siblings if they are equivalent.
1295 *
1296 * @param[in] node1 The first sibling list to compare.
1297 * @param[in] node2 The second sibling list to compare.
1298 * @param[in] options Various @ref datacompareoptions.
1299 * @return LY_SUCCESS if all the siblings are equivalent.
1300 * @return LY_ENOT if the siblings are not equivalent.
1301 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001302LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001303
1304/**
Michal Vasko21725742020-06-29 11:49:25 +02001305 * @brief Compare 2 metadata.
1306 *
1307 * @param[in] meta1 First metadata.
1308 * @param[in] meta2 Second metadata.
1309 * @return LY_SUCCESS if the metadata are equivalent.
1310 * @return LY_ENOT if not.
1311 */
1312LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
1313
1314/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001315 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001316 * @defgroup dupoptions Data duplication options
Radek Krejci22ebdba2019-07-25 13:59:43 +02001317 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001318 * Various options to change ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single() behavior.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001319 *
1320 * Default behavior:
1321 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001322 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001323 * @{
1324 */
1325
1326#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1327 list's keys are always duplicated. */
Michal Vaskoa29a5762020-06-23 13:28:49 +02001328#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001329#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1330 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001331#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 +02001332 its validation/default node state. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001333
1334/** @} dupoptions */
1335
1336/**
1337 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
1338 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02001339 * @param[in] node Data tree node to be duplicated.
1340 * @param[in] parent Optional parent node where to connect the duplicated node(s).
Michal Vasko3a41dff2020-07-15 14:30:28 +02001341 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1342 * the @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001343 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001344 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1345 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1346 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001347 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001348LY_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 +02001349
1350/**
1351 * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same.
1352 *
1353 * @param[in] node Data tree node to be duplicated.
1354 * @param[in] parent Optional parent node where to connect the duplicated node(s).
1355 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1356 * the @p parent.
1357 * @param[in] options Bitmask of options flags, see @ref dupoptions.
1358 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1359 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1360 * @return LY_ERR value.
1361 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001362LY_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 +02001363
1364/**
Michal Vasko25a32822020-07-09 15:48:22 +02001365 * @brief Create a copy of the metadata.
1366 *
1367 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001368 * @param[in] parent Node where to append the new metadata.
1369 * @param[out] dup Optional created metadata copy.
1370 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02001371 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001372LY_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 +02001373
1374/**
Michal Vasko4490d312020-06-16 13:08:55 +02001375 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001376 * @defgroup mergeoptions Data merge options.
Radek Krejci576b23f2019-07-12 14:06:32 +02001377 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001378 * Various options to change ::lyd_merge_tree() and ::lyd_merge_siblings() behavior.
Michal Vasko4490d312020-06-16 13:08:55 +02001379 *
1380 * Default behavior:
1381 * - source data tree is not modified in any way,
Michal Vasko3a41dff2020-07-15 14:30:28 +02001382 * - any default nodes in the source are ignored if there are explicit nodes in the target.
Michal Vasko4490d312020-06-16 13:08:55 +02001383 * @{
1384 */
1385
1386#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001387#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 +02001388
1389/** @} mergeoptions */
1390
1391/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001392 * @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 +02001393 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
1394 *
1395 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1396 * @param[in] source Source data tree to merge, must be a top-level tree.
1397 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1398 * @return LY_SUCCESS on success,
1399 * @return LY_ERR value on error.
1400 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001401LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001402
1403/**
1404 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
1405 * complete until validation called on the resulting data tree (data from more cases may be present, default
1406 * and non-default values).
1407 *
1408 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1409 * @param[in] source Source data tree to merge, must be a top-level tree.
1410 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1411 * @return LY_SUCCESS on success,
1412 * @return LY_ERR value on error.
1413 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001414LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko4490d312020-06-16 13:08:55 +02001415
1416/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001417 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001418 * @defgroup diffoptions Data diff options.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001419 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001420 * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001421 *
1422 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001423 * - any default nodes are treated as non-existent and ignored.
1424 * @{
1425 */
1426
Michal Vasko3a41dff2020-07-15 14:30:28 +02001427#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
1428 nodes. Also, leaves and leaf-lists are added into diff even in case only their
1429 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001430
1431/** @} diffoptions */
1432
1433/**
1434 * @brief Learn the differences between 2 data trees.
1435 *
1436 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
1437 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
1438 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
1439 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
1440 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
1441 * or the second tree.
1442 *
1443 * The diff tree is completely independent on the @p first and @p second trees, meaning all
1444 * the information about the change is stored in the diff and the trees are not needed.
1445 *
1446 * !! Caution !!
1447 * The diff tree should never be validated because it may easily not be valid! For example,
1448 * when data from one case branch are deleted and data from another branch created - data from both
1449 * branches are then stored in the diff tree simultaneously.
1450 *
1451 * @param[in] first First data tree.
1452 * @param[in] second Second data tree.
1453 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1454 * @param[out] diff Generated diff.
1455 * @return LY_SUCCESS on success,
1456 * @return LY_ERR on error.
1457 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001458LY_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 +02001459
1460/**
1461 * @brief Learn the differences between 2 data trees including all the following siblings.
1462 *
1463 * @param[in] first First data tree.
1464 * @param[in] second Second data tree.
1465 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1466 * @param[out] diff Generated diff.
1467 * @return LY_SUCCESS on success,
1468 * @return LY_ERR on error.
1469 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001470LY_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 +02001471
1472/**
1473 * @brief Callback for diff nodes.
1474 *
1475 * @param[in] diff_node Diff node.
1476 * @param[in] data_node Matching node in data.
1477 * @param[in] cb_data Arbitrary callback data.
1478 * @return LY_ERR value.
1479 */
1480typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
1481
1482/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001483 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001484 *
1485 * @param[in,out] data Data to apply the diff on.
1486 * @param[in] diff Diff to apply.
1487 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
1488 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1489 * @param[in] cb_data Arbitrary callback data.
1490 * @return LY_SUCCESS on success,
1491 * @return LY_ERR on error.
1492 */
1493LY_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 +02001494 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001495
1496/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001497 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001498 *
1499 * @param[in,out] data Data to apply the diff on.
1500 * @param[in] diff Diff to apply.
1501 * @return LY_SUCCESS on success,
1502 * @return LY_ERR on error.
1503 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001504LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001505
1506/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001507 * @brief Merge 2 diffs into each other but restrict the operation to one module.
1508 *
1509 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
1510 * created on data that had the target diff applied on them. In other words, this sequence is legal
1511 *
Michal Vasko04f85912020-08-07 12:14:58 +02001512 * 1) diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 ->
1513 * -> data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001514 *
1515 * and reusing these diffs
1516 *
Michal Vasko04f85912020-08-07 12:14:58 +02001517 * 2) diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001518 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02001519 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001520 * @param[in] src_diff Source diff.
1521 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
1522 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1523 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001524 * @return LY_SUCCESS on success,
1525 * @return LY_ERR on error.
1526 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001527LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +02001528 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001529
1530/**
Michal Vasko04f85912020-08-07 12:14:58 +02001531 * @brief Merge 2 diff trees into each other.
1532 *
1533 * @param[in,out] diff_first Target diff first sibling to merge into.
1534 * @param[in] diff_parent Target diff parent to merge into.
1535 * @param[in] src_sibling Source diff sibling to merge.
1536 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1537 * @param[in] cb_data Arbitrary callback data.
1538 * @return LY_SUCCESS on success,
1539 * @return LY_ERR on error.
1540 */
1541LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling,
Radek Krejci0f969882020-08-21 16:56:47 +02001542 lyd_diff_cb diff_cb, void *cb_data);
Michal Vasko04f85912020-08-07 12:14:58 +02001543
1544/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001545 * @brief Merge 2 diffs into each other.
1546 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02001547 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02001548 * @param[in] src_diff Source diff.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001549 * @return LY_SUCCESS on success,
1550 * @return LY_ERR on error.
1551 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001552LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001553
1554/**
Michal Vasko4231fb62020-07-13 13:54:47 +02001555 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
1556 * or move from place A to B to move from B to A and so on.
1557 *
1558 * @param[in] src_diff Diff to reverse.
1559 * @param[out] diff Reversed diff.
1560 * @return LY_SUCCESS on success.
1561 * @return LY_ERR on error.
1562 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001563LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02001564
1565/**
Radek Krejcifba9c622020-10-30 08:28:54 +01001566 * @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 +02001567 *
1568 * @param[in] path Compiled path structure.
Michal Vaskof03ed032020-03-04 13:31:44 +01001569 * @param[in] tree Data tree to be searched.
Michal Vasko4490d312020-06-16 13:08:55 +02001570 * @return Found target node,
1571 * @return NULL if not found.
Radek Krejci576b23f2019-07-12 14:06:32 +02001572 */
Michal Vasko004d3152020-06-11 19:59:22 +02001573const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02001574
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001575/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001576 * @brief Types of the different data paths.
1577 */
1578typedef enum {
Michal Vasko14654712020-02-06 08:35:21 +01001579 LYD_PATH_LOG, /**< Descriptive path format used in log messages */
Michal Vasko69730152020-10-09 16:30:07 +02001580 LYD_PATH_LOG_NO_LAST_PRED /**< Similar to ::LYD_PATH_LOG except there is never a predicate on the last node */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001581} LYD_PATH_TYPE;
1582
1583/**
1584 * @brief Generate path of the given node in the requested format.
1585 *
1586 * @param[in] node Schema path of this node will be generated.
1587 * @param[in] pathtype Format of the path to generate.
1588 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1589 * If NULL, memory for the complete path is allocated.
1590 * @param[in] buflen Size of the provided @p buffer.
1591 * @return NULL in case of memory allocation error, path of the node otherwise.
1592 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1593 */
1594char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
1595
Michal Vaskoe444f752020-02-10 12:20:06 +01001596/**
Michal Vasko25a32822020-07-09 15:48:22 +02001597 * @brief Find a specific metadata.
1598 *
1599 * @param[in] first First metadata to consider.
1600 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
1601 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
1602 * @return Found metadata,
1603 * @return NULL if not found.
1604 */
1605struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name);
1606
1607/**
Michal Vaskoda859032020-07-14 12:20:14 +02001608 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01001609 * Uses hashes - should be used whenever possible for best performance.
1610 *
1611 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1612 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01001613 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001614 * @return LY_SUCCESS on success, @p match set.
1615 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1616 * @return LY_ERR value if another error occurred.
1617 */
1618LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
1619
1620/**
Michal Vaskoe444f752020-02-10 12:20:06 +01001621 * @brief Search in the given siblings for the first schema instance.
1622 * Uses hashes - should be used whenever possible for best performance.
1623 *
1624 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1625 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02001626 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
1627 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01001628 * LYS_LEAFLIST:
1629 * Searched instance value.
1630 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001631 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
1632 * The keys do not have to be ordered but all of them must be set.
1633 *
1634 * Note that any explicit values (leaf-list or list key values) will be canonized first
1635 * before comparison. But values that do not have a canonical value are expected to be in the
1636 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001637 * @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 +01001638 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001639 * @return LY_SUCCESS on success, @p match set.
1640 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1641 * @return LY_EINVAL if @p schema is a key-less list.
1642 * @return LY_ERR value if another error occurred.
1643 */
1644LY_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 +02001645 size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01001646
Michal Vaskoccc02342020-05-21 10:09:21 +02001647/**
1648 * @brief Search in the given data for instances of nodes matching the provided XPath.
1649 *
Michal Vaskob104f112020-07-17 09:54:54 +02001650 * The expected format of the expression is ::LYD_JSON, meaning the first node in every path
Michal Vasko61ac2f62020-05-25 12:39:51 +02001651 * must have its module name as prefix or be the special `*` value for all the nodes.
1652 *
Michal Vasko19a30602020-05-25 10:40:19 +02001653 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
1654 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
1655 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
1656 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
1657 *
Michal Vaskoccc02342020-05-21 10:09:21 +02001658 * @param[in] ctx_node XPath context node.
1659 * @param[in] xpath Data XPath expression filtering the matching nodes. ::LYD_JSON format is expected.
1660 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
1661 * the returned set is empty.
1662 * @return LY_SUCCESS on success, @p set is returned.
1663 * @return LY_ERR value if an error occurred.
1664 */
1665LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
1666
Radek Krejcie7b95092019-05-15 11:03:07 +02001667#ifdef __cplusplus
1668}
1669#endif
1670
1671#endif /* LY_TREE_DATA_H_ */