blob: 949faaae13e4b636f128e6ec06a05b054b047d12 [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()
91 * - ::lyd_find_xpath()
Michal Vasko3e1f6552021-01-14 09:27:55 +010092 * - ::lyd_find_path()
Radek Krejci8678fa42020-08-18 16:07:28 +020093 * - ::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()
Michal Vasko493900b2020-12-08 10:23:41 +0100123 * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path() and
124 * ::lyd_new_path2()). The latter enables to create a whole path of nodes, requires less information
Radek Krejci8678fa42020-08-18 16:07:28 +0200125 * 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()
Radek Krejci8678fa42020-08-18 16:07:28 +0200168 *
169 * - ::lyd_dup_single()
170 * - ::lyd_dup_siblings()
171 * - ::lyd_dup_meta_single()
172 *
173 * - ::lyd_insert_child()
174 * - ::lyd_insert_sibling()
175 * - ::lyd_insert_after()
176 * - ::lyd_insert_before()
177 *
178 * - ::lyd_value_compare()
179 * - ::lyd_value_validate()
180 *
181 * - ::lyd_change_term()
182 * - ::lyd_change_meta()
183 *
184 * - ::lyd_compare_single()
185 * - ::lyd_compare_siblings()
186 * - ::lyd_compare_meta()
187 * - ::lyd_diff_tree()
188 * - ::lyd_diff_siblings()
189 * - ::lyd_diff_apply_all()
190 * - ::lyd_diff_apply_module()
191 * - ::lyd_diff_reverse_all()
192 * - ::lyd_diff_merge_all()
193 * - ::lyd_diff_merge_module()
194 * - ::lyd_diff_merge_tree()
195 *
196 * - ::lyd_merge_tree()
197 * - ::lyd_merge_siblings()
198 *
199 * - ::lyd_unlink_tree()
200 *
201 * - ::lyd_free_all()
202 * - ::lyd_free_siblings()
203 * - ::lyd_free_tree()
204 * - ::lyd_free_meta_single()
205 * - ::lyd_free_meta_siblings()
206 * - ::lyd_free_attr_single()
207 * - ::lyd_free_attr_siblings()
208 *
209 * - ::lyd_any_copy_value()
210 */
211
212/**
213 * @page howtoDataWD Default Values
214 *
215 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
216 * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to
217 * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the
218 * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata
219 * providing the information about the default values cannot be used. It means that when parsing data, the default nodes
220 * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected
221 * nodes are printed without the ietf-netconf-with-defaults metadata.
222 *
223 * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them
224 * via @ref dataprinterflags when printing data trees.
225 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
226 * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option.
227 * This is the default with-defaults mode of the printer. The data nodes do not contain any additional
228 * metadata information.
229 * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option.
230 * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or
231 * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by
232 * ::LYD_PRINT_WD_ALL option.
233 * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value
234 * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode.
235 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes
236 * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option.
237 *
238 * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation).
239 * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding
240 * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the
241 * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the
242 * appropriate metadata.
243 *
244 * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes
245 * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the
246 * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions.
247 *
248 * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member
249 * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container
250 * 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
251 * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added
252 * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option.
253 *
254 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
255 * use ::lyd_is_default() function.
256 *
257 * Functions List
258 * --------------
259 * - ::lyd_is_default()
260 * - ::lyd_new_implicit_all()
261 * - ::lyd_new_implicit_module()
262 * - ::lyd_new_implicit_tree()
263 */
264
265/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200266 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200267 * @defgroup datatree Data Tree
Radek Krejcie7b95092019-05-15 11:03:07 +0200268 * @{
269 *
270 * Data structures and functions to manipulate and access instance data tree.
271 */
272
Michal Vasko64246d82020-08-19 12:35:00 +0200273/* *INDENT-OFF* */
274
Michal Vaskoa276cd92020-08-10 15:10:08 +0200275/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200276 * @brief Macro to iterate via all elements in a data tree. This is the opening part
277 * to the #LYD_TREE_DFS_END - they always have to be used together.
278 *
279 * The function follows deep-first search algorithm:
280 * <pre>
281 * 1
282 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100283 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +0200284 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100285 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +0200286 * </pre>
287 *
Radek Krejci0935f412019-08-20 16:15:18 +0200288 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200289 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
290 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200291 *
Michal Vasko56daf732020-08-10 10:57:18 +0200292 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
293 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200294 *
295 * Use with opening curly bracket '{' after the macro.
296 *
297 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200298 * @param ELEM Iterator intended for use in the block.
299 */
Michal Vasko56daf732020-08-10 10:57:18 +0200300#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200301 { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +0200302 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +0200303 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200304 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +0200305
306/**
307 * @brief Macro to iterate via all elements in a tree. This is the closing part
308 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
309 *
310 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200311 * START can be any of the lyd_node* types, ELEM variable must be a pointer
312 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200313 *
314 * Use with closing curly bracket '}' after the macro.
315 *
316 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200317 * @param ELEM Iterator intended for use in the block.
318 */
319
Michal Vasko56daf732020-08-10 10:57:18 +0200320#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200321 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200322 if (LYD_TREE_DFS_continue) { \
323 (LYD_TREE_DFS_next) = NULL; \
324 } else { \
Radek Krejcia1c1e542020-09-29 16:06:52 +0200325 (LYD_TREE_DFS_next) = lyd_child(ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200326 }\
327 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200328 /* no children */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100329 if ((ELEM) == (struct lyd_node *)(START)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200330 /* we are done, (START) has no children */ \
331 break; \
332 } \
333 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200334 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200335 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200336 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200337 /* parent is already processed, go to its sibling */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100338 (ELEM) = (struct lyd_node *)(ELEM)->parent; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200339 /* no siblings, go back through parents */ \
340 if ((ELEM)->parent == (START)->parent) { \
341 /* we are done, no next element to process */ \
342 break; \
343 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200344 (LYD_TREE_DFS_next) = (ELEM)->next; \
345 } } \
Radek Krejcie7b95092019-05-15 11:03:07 +0200346
Michal Vasko64246d82020-08-19 12:35:00 +0200347/* *INDENT-ON* */
348
Radek Krejcie7b95092019-05-15 11:03:07 +0200349/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200350 * @brief Macro to get context from a data tree node.
351 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200352#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200353
354/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200355 * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and
356 * [printer](@ref howtoDataPrinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200357 */
358typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200359 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
360 LYD_XML, /**< XML instance data format */
361 LYD_JSON, /**< JSON instance data format */
Michal Vasko69730152020-10-09 16:30:07 +0200362 LYD_LYB /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200363} LYD_FORMAT;
364
365/**
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200366 * @brief All kinds of supported prefix mappings to modules.
367 */
368typedef enum {
369 LY_PREF_SCHEMA, /**< value prefixes map to YANG import prefixes */
Michal Vaskoc9795582020-10-08 16:22:17 +0200370 LY_PREF_SCHEMA_RESOLVED, /**< value prefixes map to module structures directly */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200371 LY_PREF_XML, /**< value prefixes map to XML namespace prefixes */
Michal Vasko69730152020-10-09 16:30:07 +0200372 LY_PREF_JSON /**< value prefixes map to module names */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200373} LY_PREFIX_FORMAT;
374
375/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200376 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200377 */
378typedef enum {
Radek Krejci8678fa42020-08-18 16:07:28 +0200379 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 +0200380 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
Radek Krejci8678fa42020-08-18 16:07:28 +0200381 with the data after a successful call (including calling ::lyd_free_all() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200382 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 +0200383 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
384 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200385 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
386 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 +0200387 LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200388} LYD_ANYDATA_VALUETYPE;
389
390/** @} */
391
392/**
393 * @brief YANG data representation
394 */
395struct lyd_value {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200396 const char *canonical; /**< Canonical string representation of the value in the dictionary. It is never
397 NULL and in case of no canonical value, its JSON representation is used instead. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200398
Radek Krejcie7b95092019-05-15 11:03:07 +0200399 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200400 int8_t boolean; /**< 0 as false, 1 as true */
401 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200402 int8_t int8; /**< 8-bit signed integer */
403 int16_t int16; /**< 16-bit signed integer */
404 int32_t int32; /**< 32-bit signed integer */
405 int64_t int64; /**< 64-bit signed integer */
406 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200407 uint16_t uint16; /**< 16-bit unsigned integer */
408 uint32_t uint32; /**< 32-bit unsigned integer */
409 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200410 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200411 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 +0200412 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200413 struct ly_path *target; /**< Instance-identifier target path. */
414 struct lyd_value_subvalue *subvalue; /** Union value with some metadata. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200415 void *ptr; /**< generic data type structure used to store the data */
Radek Krejci8678fa42020-08-18 16:07:28 +0200416 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype
417 plugin's callbacks to work with the data.*/
Radek Krejci084289f2019-07-09 17:35:30 +0200418
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200419 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 +0200420 in the schema node of the data node since the type's store plugin can use other types/plugins for
421 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
422 target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data
423 stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type.
424 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
425 the type used to store data directly in the same lyd_value instance. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200426};
427
428/**
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200429 * @brief Macro for getting the string canonical value from a term node.
430 *
431 * @param[in] node Term node with the value.
432 * @return Canonical value.
433 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200434#define LYD_CANON_VALUE(node) ((struct lyd_node_term *)(node))->value.canonical
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200435
436/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200437 * @brief Special lyd_value structure for union.
438 *
439 * 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 +0200440 * the ::lyd_value_subvalue.value contains representation according to one of the union's types.
441 * 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 +0200442 * These prefixes are necessary to parse original value to the union's subtypes.
443 */
444struct lyd_value_subvalue {
445 struct lyd_value value; /**< representation of the value according to the selected union's subtype
Radek Krejci8678fa42020-08-18 16:07:28 +0200446 (stored as ::lyd_value.realtype here, in subvalue structure */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200447 const char *original; /**< Original value in the dictionary. */
448 LY_PREFIX_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
449 whether a value is valid for the specific format or not on later validations
450 (instance-identifier in XML looks different than in JSON). */
Radek Krejci8678fa42020-08-18 16:07:28 +0200451 void *prefix_data; /**< Format-specific data for prefix resolution (see ::ly_type_store_resolve_prefix()) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200452 uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */
453 const struct lysc_node *ctx_node; /**< Context schema node. */
454};
455
456/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100457 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200458 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100459 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200460 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
461 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
462 * they are represented as JSON elements starting with the '@' character (for more information, see the
463 * YANG metadata RFC.
464 *
465 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100466struct lyd_meta {
467 struct lyd_node *parent; /**< data node where the metadata is placed */
468 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
469 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
470 const char *name; /**< metadata name */
471 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200472};
473
Michal Vasko52927e22020-03-16 17:26:14 +0100474/**
475 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200476 *
477 * 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 +0200478 * ::ly_ctx_get_module_implemented_ns() or ::ly_ctx_get_module_implemented(). While the module reference is always present,
Michal Vaskoad92b672020-11-12 13:11:31 +0100479 * the prefix member can be omitted in case it is not present in the source data as a reference to the default module/namespace.
Michal Vasko52927e22020-03-16 17:26:14 +0100480 */
Michal Vaskoad92b672020-11-12 13:11:31 +0100481struct ly_opaq_name {
482 const char *name; /**< node name, without prefix if any was defined */
483 const char *prefix; /**< identifier used in the qualified name as the prefix, can be NULL */
Radek Krejci1798aae2020-07-14 13:26:06 +0200484 union {
Michal Vaskoad92b672020-11-12 13:11:31 +0100485 const char *module_ns; /**< format ::LY_PREF_XML - XML namespace of the node element */
486 const char *module_name; /**< format ::LY_PREF_JSON - (inherited) name of the module of the element */
Radek Krejci1798aae2020-07-14 13:26:06 +0200487 };
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 */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100495 struct lyd_attr *next; /**< pointer to the next attribute */
Michal Vaskoad92b672020-11-12 13:11:31 +0100496 struct ly_opaq_name name; /**< attribute name with module information */
Michal Vasko501af032020-11-11 20:27:44 +0100497 const char *value; /**< attribute value */
498 LY_PREFIX_FORMAT format; /**< format of the attribute and any prefixes, ::LY_PREF_XML or ::LY_PREF_JSON */
Radek Krejciec9ad602021-01-04 10:46:30 +0100499 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko501af032020-11-11 20:27:44 +0100500 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100501};
Radek Krejcie7b95092019-05-15 11:03:07 +0200502
Michal Vasko1bf09392020-03-27 12:38:10 +0100503#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 +0200504#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
505#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
506
507/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200508 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200509 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200510 * @{
511 *
512 * Various flags of data nodes.
513 *
514 * 1 - container 5 - anydata/anyxml
515 * 2 - list 6 - rpc/action
516 * 3 - leaf 7 - notification
517 * 4 - leaflist
518 *
519 * bit name 1 2 3 4 5 6 7
520 * ---------------------+-+-+-+-+-+-+-+
521 * 1 LYD_DEFAULT |x| |x|x| | | |
522 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100523 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100524 * +-+-+-+-+-+-+-+
525 * 3 LYD_NEW |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200526 * ---------------------+-+-+-+-+-+-+-+
527 *
528 */
529
Michal Vasko5c4e5892019-11-14 12:31:38 +0100530#define LYD_DEFAULT 0x01 /**< default (implicit) node */
531#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
Michal Vasko9b368d32020-02-14 13:53:31 +0100532#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
Michal Vasko52927e22020-03-16 17:26:14 +0100533
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200534/** @} */
535
536/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200537 * @brief Generic structure for a data node.
538 */
539struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200540 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
541 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
542 used to get know that nodes are not equal, it cannot be used to decide that the
543 nodes are equal due to possible collisions. */
544 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100545 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200546 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
547 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
548 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
549 never NULL. If there is no sibling node, pointer points to the node
550 itself. In case of the first node, this pointer points to the last
551 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100552 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200553 void *priv; /**< private user data, not used by libyang */
Radek Krejcie7b95092019-05-15 11:03:07 +0200554};
555
556/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200557 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200558 */
559struct lyd_node_inner {
Michal Vasko9e685082021-01-29 14:49:09 +0100560 union {
561 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
562 struct {
563 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
564 values if list or hashes of all nodes of subtree in case of keyless
565 list). Note that while hash can be used to get know that nodes are
566 not equal, it cannot be used to decide that the nodes are equal due
567 to possible collisions. */
568 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
569 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
570 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
571 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
572 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
573 never NULL. If there is no sibling node, pointer points to the node
574 itself. In case of the first node, this pointer points to the last
575 node in the list. */
576 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
577 void *priv; /**< private user data, not used by libyang */
578 };
579 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200580
581 struct lyd_node *child; /**< pointer to the first child node. */
582 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 +0200583#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 +0200584};
585
586/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100587 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200588 */
589struct lyd_node_term {
Michal Vasko9e685082021-01-29 14:49:09 +0100590 union {
591 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
592 struct {
593 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
594 values if list or hashes of all nodes of subtree in case of keyless
595 list). Note that while hash can be used to get know that nodes are
596 not equal, it cannot be used to decide that the nodes are equal due
597 to possible collisions. */
598 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
599 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. */
606 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
607 void *priv; /**< private user data, not used by libyang */
608 };
609 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200610
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200611 struct lyd_value value; /**< node's value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200612};
613
614/**
Michal Vasko9e685082021-01-29 14:49:09 +0100615 * @brief Data node structure for the anydata data tree nodes - anydata or anyxml.
Radek Krejcie7b95092019-05-15 11:03:07 +0200616 */
617struct lyd_node_any {
Michal Vasko9e685082021-01-29 14:49:09 +0100618 union {
619 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
620 struct {
621 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
622 values if list or hashes of all nodes of subtree in case of keyless
623 list). Note that while hash can be used to get know that nodes are
624 not equal, it cannot be used to decide that the nodes are equal due
625 to possible collisions. */
626 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
627 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
628 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
629 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
630 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
631 never NULL. If there is no sibling node, pointer points to the node
632 itself. In case of the first node, this pointer points to the last
633 node in the list. */
634 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
635 void *priv; /**< private user data, not used by libyang */
636 };
637 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200638
Michal Vasko00cbf532020-06-15 13:58:47 +0200639 union lyd_any_value {
Michal Vasko9e685082021-01-29 14:49:09 +0100640 struct lyd_node *tree; /**< data tree */
641 const char *str; /**< Generic string data */
642 const char *xml; /**< Serialized XML data */
643 const char *json; /**< I-JSON encoded string */
644 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
645 } value; /**< pointer to the stored value representation of the anydata/anyxml node */
646 LYD_ANYDATA_VALUETYPE value_type; /**< type of the data stored as ::lyd_node_any.value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200647};
648
649/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200650 * @ingroup datatree
651 * @defgroup lydvalhints Value format hints.
Radek Krejci1798aae2020-07-14 13:26:06 +0200652 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200653 *
654 * Hints for the type of the data value.
655 *
656 * Any information about value types encoded in the format is hinted by these values.
Radek Krejci1798aae2020-07-14 13:26:06 +0200657 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200658#define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */
659#define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */
660#define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */
661#define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */
662#define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */
663#define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */
664#define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */
665/**
666 * @} lydvalhints
667 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200668
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200669/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200670 * @ingroup datatree
671 * @defgroup lydnodehints Node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200672 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200673 *
674 * Hints for the type of the data node.
675 *
676 * Any information about node types encoded in the format is hinted by these values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200677 */
678#define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */
679#define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200680/**
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 {
Michal Vasko9e685082021-01-29 14:49:09 +0100710 union {
711 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
712 struct {
713 uint32_t hash; /**< always 0 */
714 uint32_t flags; /**< always 0 */
715 const struct lysc_node *schema; /**< always NULL */
716 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
717 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
718 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
719 never NULL. If there is no sibling node, pointer points to the node
720 itself. In case of the first node, this pointer points to the last
721 node in the list. */
722 struct lyd_meta *meta; /**< always NULL */
723 void *priv; /**< private user data, not used by libyang */
724 };
725 }; /**< common part corresponding to ::lyd_node */
Michal Vasko52927e22020-03-16 17:26:14 +0100726
Michal Vasko501af032020-11-11 20:27:44 +0100727 struct lyd_node *child; /**< pointer to the child node (compatible with ::lyd_node_inner) */
728
Michal Vaskoad92b672020-11-12 13:11:31 +0100729 struct ly_opaq_name name; /**< node name with module information */
Michal Vasko52927e22020-03-16 17:26:14 +0100730 const char *value; /**< original value */
Michal Vasko501af032020-11-11 20:27:44 +0100731 LY_PREFIX_FORMAT format; /**< format of the node and any prefixes, ::LY_PREF_XML or ::LY_PREF_JSON */
Radek Krejciec9ad602021-01-04 10:46:30 +0100732 void *val_prefix_data; /**< format-specific prefix data */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200733 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko501af032020-11-11 20:27:44 +0100734
Michal Vasko9e685082021-01-29 14:49:09 +0100735 struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */
Michal Vasko52927e22020-03-16 17:26:14 +0100736 const struct ly_ctx *ctx; /**< libyang context */
737};
738
739/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200740 * @brief Get the generic parent pointer of a data node.
741 *
742 * @param[in] node Node whose parent pointer to get.
743 * @return Pointer to the parent node of the @p node.
744 * @return NULL in case of the top-level node or if the @p node is NULL itself.
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200745 */
Radek Krejcia1c1e542020-09-29 16:06:52 +0200746struct lyd_node *lyd_parent(const struct lyd_node *node);
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200747
748/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200749 * @brief Get the child pointer of a generic data node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200750 *
Radek Krejcia1c1e542020-09-29 16:06:52 +0200751 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
752 *
753 * If you need to skip key children, use ::lyd_child_no_keys().
754 *
755 * @param[in] node Node to use.
756 * @return Pointer to the first child node (if any) of the @p node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200757 */
Radek Krejcia1c1e542020-09-29 16:06:52 +0200758struct lyd_node *lyd_child(const struct lyd_node *node);
759
760/**
761 * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST.
762 *
763 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
764 *
765 * If you need to take key children into account, use ::lyd_child().
766 *
767 * @param[in] node Node to use.
768 * @return Pointer to the first child node (if any) of the @p node.
769 */
770struct lyd_node *lyd_child_no_keys(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200771
772/**
Michal Vaskoc193ce92020-03-06 11:04:48 +0100773 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
774 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
775 *
Michal Vaskofcdf3012020-11-23 16:57:03 +0100776 * Also works for opaque nodes, if it is possible to resolve the module.
777 *
Michal Vaskoc193ce92020-03-06 11:04:48 +0100778 * @param[in] node Data node to examine.
779 * @return Module owner of the node.
780 */
781const struct lys_module *lyd_owner_module(const struct lyd_node *node);
782
783/**
Radek Krejci19611252020-10-04 13:54:53 +0200784 * @brief Check whether a node value equals to its default one.
785 *
786 * @param[in] node Term node to test.
787 * @return false (no, it is not a default node) or true (yes, it is default)
788 */
789ly_bool lyd_is_default(const struct lyd_node *node);
790
791/**
Radek Krejcica989142020-11-05 11:32:22 +0100792 * @brief Learn the relative position of a list or leaf-list instance within other instances of the same schema node.
793 *
794 * @param[in] instance List or leaf-list instance to get the position of.
795 * return 0 on error.
796 * return Positive integer of the @p instance position.
797 */
798uint32_t lyd_list_pos(const struct lyd_node *instance);
799
800/**
Radek Krejci4233f9b2020-11-05 12:38:35 +0100801 * @brief Get the first sibling of the given node.
802 *
803 * @param[in] node Node which first sibling is going to be the result.
804 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
805 */
Michal Vasko6ae16d62020-11-06 17:23:23 +0100806struct lyd_node *lyd_first_sibling(const struct lyd_node *node);
Radek Krejci4233f9b2020-11-05 12:38:35 +0100807
808/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200809 * @brief Learn the length of LYB data.
810 *
811 * @param[in] data LYB data to examine.
812 * @return Length of the LYB data chunk,
813 * @return -1 on error.
814 */
815int lyd_lyb_data_length(const char *data);
816
817/**
Michal Vaskoc0004272020-08-06 08:32:34 +0200818 * @brief Copy anydata value from one node to another. Target value is freed first.
819 *
820 * @param[in,out] trg Target node.
821 * @param[in] value Source value, may be NULL when the target value is only freed.
822 * @param[in] value_type Source value type.
823 * @return LY_ERR value.
824 */
825LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type);
826
827/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200828 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100829 *
830 * @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 +0100831 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100832 * @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 +0100833 * @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
834 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200835 * @param[out] node Optional created node.
836 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100837 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100838LY_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 +0100839
840/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200841 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100842 *
843 * @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 +0100844 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100845 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Radek Krejci41ac9942020-11-02 14:47:56 +0100846 * @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
847 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200848 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +0100849 * @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 +0200850 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
851 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200852 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100853 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100854LY_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 +0100855
856/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200857 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100858 *
859 * @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 +0100860 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100861 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
862 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
863 * 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 +0200864 * Use NULL or string of length 0 in case of key-less list.
Radek Krejci41ac9942020-11-02 14:47:56 +0100865 * @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
866 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200867 * @param[out] node Optional created node.
868 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100869 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200870LY_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 +0100871 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100872
873/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200874 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100875 *
876 * @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 +0100877 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100878 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
879 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
880 * value, the JSON format is expected (module names instead of prefixes).
Radek Krejci41ac9942020-11-02 14:47:56 +0100881 * @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
882 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200883 * @param[out] node Optional created node.
884 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100885 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200886LY_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 +0100887 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100888
889/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200890 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100891 *
892 * @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 +0100893 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100894 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
895 * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type.
896 * @param[in] value_type Type of the provided value in @p value.
Radek Krejci41ac9942020-11-02 14:47:56 +0100897 * @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
898 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200899 * @param[out] node Optional created node.
900 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100901 */
Michal Vasko219006c2020-12-04 16:26:52 +0100902LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100903 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100904
905/**
Michal Vasko871a0252020-11-11 18:35:24 +0100906 * @brief Create new metadata.
Michal Vaskod86997b2020-05-26 15:19:54 +0200907 *
Michal Vasko871a0252020-11-11 18:35:24 +0100908 * @param[in] ctx libyang context,
909 * @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 +0200910 * @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 +0200911 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
912 * 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 +0200913 * @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 +0200914 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko871a0252020-11-11 18:35:24 +0100915 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
916 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200917 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +0200918 */
Michal Vasko871a0252020-11-11 18:35:24 +0100919LY_ERR lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
920 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +0200921
922/**
Michal Vaskoba696702020-11-11 19:12:45 +0100923 * @brief Create new metadata from an opaque node attribute if possible.
924 *
925 * @param[in] ctx libyang context.
926 * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL.
927 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
928 * @param[in] attr Opaque node attribute to parse into metadata.
929 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
930 * @return LY_SUCCESS on success.
931 * @return LY_ENOT if the attribute could not be parsed into any metadata.
932 * @return LY_ERR on error.
933 */
934LY_ERR lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
935 struct lyd_meta **meta);
936
937/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200938 * @brief Create a new opaque node in the data tree.
939 *
940 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
941 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
942 * @param[in] name Node name.
943 * @param[in] value Node value, may be NULL.
944 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200945 * @param[out] node Optional created node.
946 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200947 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200948LY_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 +0200949 const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200950
951/**
952 * @brief Create new attribute for an opaque data node.
953 *
954 * @param[in] parent Parent opaque node for the attribute being created.
Radek Krejci8678fa42020-08-18 16:07:28 +0200955 * @param[in] module_name Name of the module of the attribute being created. There may be none.
Michal Vasko00cbf532020-06-15 13:58:47 +0200956 * @param[in] name Attribute name. It can include the module name as the prefix.
957 * @param[in] val_str String value of the attribute. Is stored directly.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200958 * @param[out] attr Optional created attribute.
959 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200960 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200961LY_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 +0200962 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +0200963
964/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200965 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200966 * @defgroup pathoptions Data path creation options
Michal Vasko00cbf532020-06-15 13:58:47 +0200967 *
968 * Various options to change lyd_new_path*() behavior.
969 *
970 * Default behavior:
971 * - if the target node already exists (and is not default), an error is returned.
972 * - the whole path to the target node is created (with any missing parents) if necessary.
973 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
974 * @{
975 */
976
Radek Krejci092e33c2020-10-12 15:33:10 +0200977#define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
978 default flag is changed, it is returned. If the target node exists and is not
979 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
980 no error set. */
981#define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
982 output ones. */
983#define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
984 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
985 invalid value (leaf/leaf-list), it is created as opaque. */
Michal Vasko00cbf532020-06-15 13:58:47 +0200986
987/** @} pathoptions */
988
989/**
990 * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes,
Michal Vasko493900b2020-12-08 10:23:41 +0100991 * for those use ::lyd_new_path2.
Michal Vasko00cbf532020-06-15 13:58:47 +0200992 *
993 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
994 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
995 * and @p value is set, the predicate is preferred.
996 *
Michal Vasko104fe962020-11-06 17:23:44 +0100997 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
998 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
999 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001000 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001001 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vasko00cbf532020-06-15 13:58:47 +02001002 * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored.
1003 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001004 * @param[out] node Optional first created node.
1005 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001006 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001007LY_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 +02001008 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001009
1010/**
1011 * @brief Create a new node in the data tree based on a path. All node types can be created.
1012 *
1013 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
1014 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
1015 * and @p value is set, the predicate is preferred.
1016 *
Michal Vasko104fe962020-11-06 17:23:44 +01001017 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1018 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1019 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001020 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001021 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vasko90cdd762021-01-11 10:25:07 +01001022 * @param[in] value Value of the new leaf/leaf-list (const char *) or anyxml/anydata (expected type depends on @p value_type).
1023 * For other node types, it is ignored.
Michal Vasko00cbf532020-06-15 13:58:47 +02001024 * @param[in] value_type Anyxml/anydata node @p value type.
1025 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001026 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1027 * @param[out] new_node Optional last node created.
Michal Vasko00cbf532020-06-15 13:58:47 +02001028 * @return LY_ERR value.
1029 */
1030LY_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 +02001031 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 +02001032
1033/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001034 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001035 * @defgroup implicitoptions Implicit node creation options
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001036 *
1037 * Various options to change lyd_new_implicit*() behavior.
1038 *
1039 * Default behavior:
1040 * - both configuration and state missing implicit nodes are added.
Michal Vasko630d9892020-12-08 17:11:08 +01001041 * - for existing RPC/action nodes, input implicit nodes are added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001042 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
1043 * @{
1044 */
1045
Michal Vasko44b19a12020-08-07 09:21:30 +02001046#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
1047#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
Michal Vasko630d9892020-12-08 17:11:08 +01001048#define LYD_IMPLICIT_OUTPUT 0x04 /**< For RPC/action nodes, add output implicit nodes instead of input. */
1049#define LYD_IMPLICIT_NO_DEFAULTS 0x08 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001050 containers. */
1051
1052/** @} implicitoptions */
1053
1054/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001055 * @brief Add any missing implicit nodes into a data subtree. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001056 *
1057 * @param[in] tree Tree to add implicit nodes into.
1058 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1059 * @param[out] diff Optional diff with any created nodes.
1060 * @return LY_ERR value.
1061 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001062LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001063
1064/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001065 * @brief Add any missing implicit nodes. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001066 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001067 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1068 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1069 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001070 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
1071 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1072 * @param[out] diff Optional diff with any created nodes.
1073 * @return LY_ERR value.
1074 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001075LY_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 +02001076
1077/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001078 * @brief Add any missing implicit nodes of one module. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001079 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001080 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1081 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1082 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001083 * @param[in] module Module whose implicit nodes to create.
1084 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1085 * @param[out] diff Optional diff with any created nodes.
1086 * @return LY_ERR value.
1087 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001088LY_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 +02001089 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001090
1091/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001092 * @brief Change the value of a term (leaf or leaf-list) node.
1093 *
1094 * Node changed this way is always considered explicitly set, meaning its default flag
1095 * is always cleared.
1096 *
1097 * @param[in] term Term node to change.
1098 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1099 * @return LY_SUCCESS if value was changed,
1100 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1101 * @return LY_ENOT if the values were equal and no change occured,
1102 * @return LY_ERR value on other errors.
1103 */
1104LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
1105
1106/**
Michal Vasko41586352020-07-13 13:54:25 +02001107 * @brief Change the value of a metadata instance.
1108 *
Michal Vasko41586352020-07-13 13:54:25 +02001109 * @param[in] meta Metadata to change.
1110 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1111 * @return LY_SUCCESS if value was changed,
1112 * @return LY_ENOT if the values were equal and no change occured,
1113 * @return LY_ERR value on other errors.
1114 */
1115LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
1116
1117/**
Michal Vaskob104f112020-07-17 09:54:54 +02001118 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +01001119 *
1120 * - if the node is part of some other tree, it is automatically unlinked.
1121 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1122 *
1123 * @param[in] parent Parent node to insert into.
1124 * @param[in] node Node to insert.
1125 * @return LY_SUCCESS on success.
1126 * @return LY_ERR error on error.
1127 */
Michal Vaskob104f112020-07-17 09:54:54 +02001128LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001129
1130/**
Michal Vaskob104f112020-07-17 09:54:54 +02001131 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001132 *
1133 * - if the node is part of some other tree, it is automatically unlinked.
1134 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1135 *
Michal Vaskob104f112020-07-17 09:54:54 +02001136 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001137 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +02001138 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001139 * @return LY_SUCCESS on success.
1140 * @return LY_ERR error on error.
1141 */
Michal Vaskob104f112020-07-17 09:54:54 +02001142LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001143
1144/**
Michal Vaskob104f112020-07-17 09:54:54 +02001145 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001146 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001147 *
1148 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001149 *
1150 * @param[in] sibling Sibling node to insert before.
1151 * @param[in] node Node to insert.
1152 * @return LY_SUCCESS on success.
1153 * @return LY_ERR error on error.
1154 */
1155LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
1156
1157/**
Michal Vaskob104f112020-07-17 09:54:54 +02001158 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001159 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001160 *
1161 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001162 *
1163 * @param[in] sibling Sibling node to insert after.
1164 * @param[in] node Node to insert.
1165 * @return LY_SUCCESS on success.
1166 * @return LY_ERR error on error.
1167 */
1168LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
1169
1170/**
1171 * @brief Unlink the specified data subtree.
1172 *
1173 * @param[in] node Data tree node to be unlinked (together with all the children).
1174 */
1175void lyd_unlink_tree(struct lyd_node *node);
1176
1177/**
Radek Krejcib0849a22019-07-25 12:31:04 +02001178 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +02001179 *
1180 * @param[in] node Any of the nodes inside the tree.
1181 */
1182void lyd_free_all(struct lyd_node *node);
1183
1184/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001185 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +02001186 *
1187 * @param[in] node Any of the sibling nodes to free.
1188 */
Michal Vaskof03ed032020-03-04 13:31:44 +01001189void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +02001190
1191/**
Radek Krejcie7b95092019-05-15 11:03:07 +02001192 * @brief Free (and unlink) the specified data (sub)tree.
1193 *
Radek Krejcie7b95092019-05-15 11:03:07 +02001194 * @param[in] node Root of the (sub)tree to be freed.
1195 */
1196void lyd_free_tree(struct lyd_node *node);
1197
1198/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001199 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +02001200 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001201 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +02001202 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001203void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +01001204
1205/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001206 * @brief Free the metadata instance with any following instances.
1207 *
1208 * @param[in] meta Metadata to free.
1209 */
1210void lyd_free_meta_siblings(struct lyd_meta *meta);
1211
1212/**
1213 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +01001214 *
1215 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001216 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +01001217 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001218void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001219
1220/**
1221 * @brief Free the attribute with any following attributes.
1222 *
1223 * @param[in] ctx Context where the attributes were created.
1224 * @param[in] attr First attribute to free.
1225 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001226void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +02001227
Radek Krejci084289f2019-07-09 17:35:30 +02001228/**
1229 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1230 *
1231 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
1232 *
1233 * 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 +02001234 * data tree context (e.g. for the case of require-instance restriction), use ::lys_value_validate().
Radek Krejci084289f2019-07-09 17:35:30 +02001235 *
1236 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
1237 * @param[in] node Data node for the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02001238 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001239 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskof03ed032020-03-04 13:31:44 +01001240 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
1241 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
1242 * then LY_EINCOMPLETE can be returned.
Michal Vasko3701af52020-08-03 14:29:38 +02001243 * @param[out] realtype Optional real type of the value.
Radek Krejci084289f2019-07-09 17:35:30 +02001244 * @return LY_SUCCESS on success
1245 * @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).
1246 * @return LY_ERR value if an error occurred.
1247 */
Michal Vasko44685da2020-03-17 15:38:06 +01001248LY_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 +02001249 const struct lyd_node *tree, const struct lysc_type **realtype);
Radek Krejci084289f2019-07-09 17:35:30 +02001250
1251/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001252 * @brief Compare the node's value with the given string value. The string value is first validated according to
1253 * the (current) node's type.
Radek Krejci084289f2019-07-09 17:35:30 +02001254 *
1255 * @param[in] node Data node to compare.
1256 * @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 +02001257 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001258 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001259 * @return LY_SUCCESS on success,
1260 * @return LY_ENOT if the values do not match,
Radek Krejci084289f2019-07-09 17:35:30 +02001261 * @return LY_ERR value if an error occurred.
1262 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001263LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len);
Radek Krejci084289f2019-07-09 17:35:30 +02001264
Radek Krejci576b23f2019-07-12 14:06:32 +02001265/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001266 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001267 * @defgroup datacompareoptions Data compare options
1268 * @{
1269 * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001270 */
1271#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
1272 (subtree, so direct as well as indirect children) are the same. By default,
1273 containers are the same in case of the same schema node and lists are the same
1274 in case of equal keys (keyless lists do the full recursion comparison all the time). */
1275#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
1276 changes this behavior and implicit (automatically created default node) and explicit
1277 (explicitly created node with the default value) default nodes are considered different. */
Michal Vasko60ea6352020-06-29 13:39:39 +02001278/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001279
1280/**
1281 * @brief Compare 2 data nodes if they are equivalent.
1282 *
1283 * @param[in] node1 The first node to compare.
1284 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001285 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001286 * @return LY_SUCCESS if the nodes are equivalent.
1287 * @return LY_ENOT if the nodes are not equivalent.
1288 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001289LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Michal Vasko8f359bf2020-07-28 10:41:15 +02001290
1291/**
1292 * @brief Compare 2 lists of siblings if they are equivalent.
1293 *
1294 * @param[in] node1 The first sibling list to compare.
1295 * @param[in] node2 The second sibling list to compare.
1296 * @param[in] options Various @ref datacompareoptions.
1297 * @return LY_SUCCESS if all the siblings are equivalent.
1298 * @return LY_ENOT if the siblings are not equivalent.
1299 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001300LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001301
1302/**
Michal Vasko21725742020-06-29 11:49:25 +02001303 * @brief Compare 2 metadata.
1304 *
1305 * @param[in] meta1 First metadata.
1306 * @param[in] meta2 Second metadata.
1307 * @return LY_SUCCESS if the metadata are equivalent.
1308 * @return LY_ENOT if not.
1309 */
1310LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
1311
1312/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001313 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001314 * @defgroup dupoptions Data duplication options
Radek Krejci22ebdba2019-07-25 13:59:43 +02001315 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001316 * Various options to change ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single() behavior.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001317 *
1318 * Default behavior:
1319 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001320 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001321 * @{
1322 */
1323
1324#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1325 list's keys are always duplicated. */
Michal Vaskoa29a5762020-06-23 13:28:49 +02001326#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001327#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1328 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001329#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 +02001330 its validation/default node state. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001331
1332/** @} dupoptions */
1333
1334/**
1335 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
1336 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02001337 * @param[in] node Data tree node to be duplicated.
1338 * @param[in] parent Optional parent node where to connect the duplicated node(s).
Michal Vasko3a41dff2020-07-15 14:30:28 +02001339 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1340 * the @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001341 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001342 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1343 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1344 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001345 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001346LY_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 +02001347
1348/**
1349 * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same.
1350 *
1351 * @param[in] node Data tree node to be duplicated.
1352 * @param[in] parent Optional parent node where to connect the duplicated node(s).
1353 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1354 * the @p parent.
1355 * @param[in] options Bitmask of options flags, see @ref dupoptions.
1356 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1357 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1358 * @return LY_ERR value.
1359 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001360LY_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 +02001361
1362/**
Michal Vasko25a32822020-07-09 15:48:22 +02001363 * @brief Create a copy of the metadata.
1364 *
1365 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001366 * @param[in] parent Node where to append the new metadata.
1367 * @param[out] dup Optional created metadata copy.
1368 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02001369 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001370LY_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 +02001371
1372/**
Michal Vasko4490d312020-06-16 13:08:55 +02001373 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001374 * @defgroup mergeoptions Data merge options.
Radek Krejci576b23f2019-07-12 14:06:32 +02001375 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001376 * Various options to change ::lyd_merge_tree() and ::lyd_merge_siblings() behavior.
Michal Vasko4490d312020-06-16 13:08:55 +02001377 *
1378 * Default behavior:
1379 * - source data tree is not modified in any way,
Michal Vasko3a41dff2020-07-15 14:30:28 +02001380 * - any default nodes in the source are ignored if there are explicit nodes in the target.
Michal Vasko4490d312020-06-16 13:08:55 +02001381 * @{
1382 */
1383
1384#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001385#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 +02001386
1387/** @} mergeoptions */
1388
1389/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001390 * @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 +02001391 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
1392 *
Michal Vasko2f510942020-11-13 10:26:25 +01001393 * Example input:
1394 *
1395 * source (A1) - A2 - A3 target (B1) - B2 - B3
1396 * /\ /\ /\ /\ /\ /\
1397 * .... .... .... .... .... ....
1398 *
1399 * result target (A1) - B1 - B2 - B3
1400 * /\ /\ /\ /\
1401 * .... .... .... ....
1402 *
Michal Vasko4490d312020-06-16 13:08:55 +02001403 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1404 * @param[in] source Source data tree to merge, must be a top-level tree.
1405 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1406 * @return LY_SUCCESS on success,
1407 * @return LY_ERR value on error.
1408 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001409LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001410
1411/**
1412 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
1413 * complete until validation called on the resulting data tree (data from more cases may be present, default
1414 * and non-default values).
1415 *
Michal Vasko2f510942020-11-13 10:26:25 +01001416 * Example input:
1417 *
1418 * source (A1) - A2 - A3 target (B1) - B2 - B3
1419 * /\ /\ /\ /\ /\ /\
1420 * .... .... .... .... .... ....
1421 *
1422 * result target (A1) - A2 - A3 - B1 - B2 - B3
1423 * /\ /\ /\ /\ /\ /\
1424 * .... .... .... .... .... ....
1425 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001426 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1427 * @param[in] source Source data tree to merge, must be a top-level tree.
1428 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1429 * @return LY_SUCCESS on success,
1430 * @return LY_ERR value on error.
1431 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001432LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko4490d312020-06-16 13:08:55 +02001433
1434/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001435 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001436 * @defgroup diffoptions Data diff options.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001437 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001438 * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001439 *
1440 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001441 * - any default nodes are treated as non-existent and ignored.
1442 * @{
1443 */
1444
Michal Vasko3a41dff2020-07-15 14:30:28 +02001445#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
1446 nodes. Also, leaves and leaf-lists are added into diff even in case only their
1447 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001448
1449/** @} diffoptions */
1450
1451/**
1452 * @brief Learn the differences between 2 data trees.
1453 *
1454 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
1455 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
1456 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
1457 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
1458 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
1459 * or the second tree.
1460 *
1461 * The diff tree is completely independent on the @p first and @p second trees, meaning all
1462 * the information about the change is stored in the diff and the trees are not needed.
1463 *
1464 * !! Caution !!
1465 * The diff tree should never be validated because it may easily not be valid! For example,
1466 * when data from one case branch are deleted and data from another branch created - data from both
1467 * branches are then stored in the diff tree simultaneously.
1468 *
1469 * @param[in] first First data tree.
1470 * @param[in] second Second data tree.
1471 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1472 * @param[out] diff Generated diff.
1473 * @return LY_SUCCESS on success,
1474 * @return LY_ERR on error.
1475 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001476LY_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 +02001477
1478/**
1479 * @brief Learn the differences between 2 data trees including all the following siblings.
1480 *
1481 * @param[in] first First data tree.
1482 * @param[in] second Second data tree.
1483 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1484 * @param[out] diff Generated diff.
1485 * @return LY_SUCCESS on success,
1486 * @return LY_ERR on error.
1487 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001488LY_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 +02001489
1490/**
1491 * @brief Callback for diff nodes.
1492 *
1493 * @param[in] diff_node Diff node.
1494 * @param[in] data_node Matching node in data.
1495 * @param[in] cb_data Arbitrary callback data.
1496 * @return LY_ERR value.
1497 */
1498typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
1499
1500/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001501 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001502 *
1503 * @param[in,out] data Data to apply the diff on.
1504 * @param[in] diff Diff to apply.
1505 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
1506 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1507 * @param[in] cb_data Arbitrary callback data.
1508 * @return LY_SUCCESS on success,
1509 * @return LY_ERR on error.
1510 */
1511LY_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 +02001512 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001513
1514/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001515 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001516 *
1517 * @param[in,out] data Data to apply the diff on.
1518 * @param[in] diff Diff to apply.
1519 * @return LY_SUCCESS on success,
1520 * @return LY_ERR on error.
1521 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001522LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001523
1524/**
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001525 * @ingroup datatree
1526 * @defgroup diffmergeoptions Data diff merge options.
1527 *
1528 * Various options to change ::lyd_diff_merge_module(), ::lyd_diff_merge_tree(), and ::lyd_diff_merge_all() behavior.
1529 *
1530 * Default behavior:
1531 * - any default nodes are expected to be a result of validation corrections and not explicitly modified.
1532 * @{
1533 */
1534
1535#define LYD_DIFF_MERGE_DEFAULTS 0x01 /**< Default nodes in the diffs are treated as possibly explicitly modified. */
1536
1537/** @} diffoptions */
1538
1539/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001540 * @brief Merge 2 diffs into each other but restrict the operation to one module.
1541 *
1542 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
1543 * created on data that had the target diff applied on them. In other words, this sequence is legal
1544 *
Michal Vasko04f85912020-08-07 12:14:58 +02001545 * 1) diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 ->
1546 * -> data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001547 *
1548 * and reusing these diffs
1549 *
Michal Vasko04f85912020-08-07 12:14:58 +02001550 * 2) diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001551 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02001552 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001553 * @param[in] src_diff Source diff.
1554 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
Michal Vaskoe2af8412020-12-03 14:11:38 +01001555 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
1556 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
1557 * called on the root with @p diff_node being NULL.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001558 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001559 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001560 * @return LY_SUCCESS on success,
1561 * @return LY_ERR on error.
1562 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001563LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001564 lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001565
1566/**
Michal Vasko04f85912020-08-07 12:14:58 +02001567 * @brief Merge 2 diff trees into each other.
1568 *
1569 * @param[in,out] diff_first Target diff first sibling to merge into.
1570 * @param[in] diff_parent Target diff parent to merge into.
1571 * @param[in] src_sibling Source diff sibling to merge.
Michal Vaskoe2af8412020-12-03 14:11:38 +01001572 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
1573 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
1574 * called on the root with @p diff_node being NULL.
Michal Vasko04f85912020-08-07 12:14:58 +02001575 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001576 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vasko04f85912020-08-07 12:14:58 +02001577 * @return LY_SUCCESS on success,
1578 * @return LY_ERR on error.
1579 */
1580LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001581 lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vasko04f85912020-08-07 12:14:58 +02001582
1583/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001584 * @brief Merge 2 diffs into each other.
1585 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02001586 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02001587 * @param[in] src_diff Source diff.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001588 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001589 * @return LY_SUCCESS on success,
1590 * @return LY_ERR on error.
1591 */
Michal Vaskoc0e58e82020-11-11 19:04:33 +01001592LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001593
1594/**
Michal Vasko4231fb62020-07-13 13:54:47 +02001595 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
1596 * or move from place A to B to move from B to A and so on.
1597 *
1598 * @param[in] src_diff Diff to reverse.
1599 * @param[out] diff Reversed diff.
1600 * @return LY_SUCCESS on success.
1601 * @return LY_ERR on error.
1602 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001603LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02001604
1605/**
Radek Krejcifba9c622020-10-30 08:28:54 +01001606 * @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 +02001607 *
1608 * @param[in] path Compiled path structure.
Michal Vaskof03ed032020-03-04 13:31:44 +01001609 * @param[in] tree Data tree to be searched.
Michal Vasko4490d312020-06-16 13:08:55 +02001610 * @return Found target node,
1611 * @return NULL if not found.
Radek Krejci576b23f2019-07-12 14:06:32 +02001612 */
Michal Vasko004d3152020-06-11 19:59:22 +02001613const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02001614
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001615/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001616 * @brief Types of the different data paths.
1617 */
1618typedef enum {
Radek Krejci635d2b82021-01-04 11:26:51 +01001619 LYD_PATH_STD, /**< Generic data path used for logging, node searching (::lyd_find_xpath(), ::lys_find_path()) as well as
1620 creating new nodes (::lyd_new_path(), ::lyd_new_path2()). */
1621 LYD_PATH_STD_NO_LAST_PRED /**< Similar to ::LYD_PATH_STD except there is never a predicate on the last node. While it
1622 can be used to search for nodes, do not use it to create new data nodes (lists). */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001623} LYD_PATH_TYPE;
1624
1625/**
1626 * @brief Generate path of the given node in the requested format.
1627 *
Radek Krejci635d2b82021-01-04 11:26:51 +01001628 * @param[in] node Data path of this node will be generated.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001629 * @param[in] pathtype Format of the path to generate.
1630 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1631 * If NULL, memory for the complete path is allocated.
1632 * @param[in] buflen Size of the provided @p buffer.
1633 * @return NULL in case of memory allocation error, path of the node otherwise.
1634 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1635 */
1636char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
1637
Michal Vaskoe444f752020-02-10 12:20:06 +01001638/**
Michal Vasko25a32822020-07-09 15:48:22 +02001639 * @brief Find a specific metadata.
1640 *
1641 * @param[in] first First metadata to consider.
1642 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
1643 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
1644 * @return Found metadata,
1645 * @return NULL if not found.
1646 */
1647struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name);
1648
1649/**
Michal Vaskoda859032020-07-14 12:20:14 +02001650 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01001651 * Uses hashes - should be used whenever possible for best performance.
1652 *
1653 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1654 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01001655 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001656 * @return LY_SUCCESS on success, @p match set.
1657 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1658 * @return LY_ERR value if another error occurred.
1659 */
1660LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
1661
1662/**
Michal Vaskoe444f752020-02-10 12:20:06 +01001663 * @brief Search in the given siblings for the first schema instance.
1664 * Uses hashes - should be used whenever possible for best performance.
1665 *
1666 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1667 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02001668 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
1669 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01001670 * LYS_LEAFLIST:
1671 * Searched instance value.
1672 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001673 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
1674 * The keys do not have to be ordered but all of them must be set.
1675 *
1676 * Note that any explicit values (leaf-list or list key values) will be canonized first
1677 * before comparison. But values that do not have a canonical value are expected to be in the
1678 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001679 * @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 +01001680 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001681 * @return LY_SUCCESS on success, @p match set.
1682 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1683 * @return LY_EINVAL if @p schema is a key-less list.
1684 * @return LY_ERR value if another error occurred.
1685 */
1686LY_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 +02001687 size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01001688
Michal Vaskoccc02342020-05-21 10:09:21 +02001689/**
1690 * @brief Search in the given data for instances of nodes matching the provided XPath.
1691 *
Michal Vasko19a30602020-05-25 10:40:19 +02001692 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
1693 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
1694 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
1695 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
1696 *
Michal Vaskoccc02342020-05-21 10:09:21 +02001697 * @param[in] ctx_node XPath context node.
Michal Vasko3e1f6552021-01-14 09:27:55 +01001698 * @param[in] xpath [XPath](@ref howtoXPath) to select.
Michal Vaskoccc02342020-05-21 10:09:21 +02001699 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
1700 * the returned set is empty.
1701 * @return LY_SUCCESS on success, @p set is returned.
1702 * @return LY_ERR value if an error occurred.
1703 */
1704LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
1705
Michal Vasko3e1f6552021-01-14 09:27:55 +01001706/**
1707 * @brief Search in given data for a node uniquely identifier by a path.
1708 *
Michal Vasko257bdcf2021-01-14 13:15:30 +01001709 * Always works in constant (*O(1)*) complexity. To be exact, it is *O(n)* where *n* is the depth
1710 * of the path used.
1711 *
Michal Vasko3e1f6552021-01-14 09:27:55 +01001712 * @param[in] ctx_node Path context node.
1713 * @param[in] path [Path](@ref howtoXPath) to find.
1714 * @param[in] output Whether to search in RPC/action output nodes or in input nodes.
1715 * @param[out] match Can be NULL, otherwise the found data node.
1716 * @return LY_SUCCESS on success, @p match is set to the found node.
1717 * @return LY_EINCOMPLETE if only a parent of the node was found, @p match is set to this parent node.
1718 * @return LY_ENOTFOUND if no nodes in the path were found.
1719 * @return LY_ERR on other errors.
1720 */
1721LY_ERR lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match);
1722
Radek Krejcie7b95092019-05-15 11:03:07 +02001723#ifdef __cplusplus
1724}
1725#endif
1726
1727#endif /* LY_TREE_DATA_H_ */