blob: 4fb3b95fc29cdd28e3b30f6de71cd83685f0f2e7 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang representation of YANG data trees.
5 *
6 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_TREE_DATA_H_
16#define LY_TREE_DATA_H_
17
18#include <stddef.h>
19#include <stdint.h>
20
21#include "log.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020022
Radek Krejcica376bd2020-06-11 16:04:06 +020023#ifdef __cplusplus
24extern "C" {
25#endif
26
Radek Krejcie7b95092019-05-15 11:03:07 +020027struct ly_ctx;
Michal Vasko004d3152020-06-11 19:59:22 +020028struct ly_path;
Radek Krejci535ea9f2020-05-29 16:01:05 +020029struct ly_set;
30struct lyd_node;
31struct lyd_node_opaq;
32struct lys_module;
33struct lysc_node;
Radek Krejcie7b95092019-05-15 11:03:07 +020034
Radek Krejcie7b95092019-05-15 11:03:07 +020035/**
Radek Krejci8678fa42020-08-18 16:07:28 +020036 * @page howtoData Data Instances
37 *
38 * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema
39 * it can be cast to several other structures.
40 *
41 * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq.
42 * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the
43 * context. Such a node can appear in several places in the data tree.
44 * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were
45 * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can
46 * appear as a node's attributes.
47 * - As a representation of YANG anydata/anyxml content.
48 * - As envelopes of standard data tree instances (RPCs, actions or Notifications).
49 *
50 * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is
51 * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype).
52 * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide
53 * structure of the tree by having children nodes.
54 * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal
55 * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value
56 * structure with string representation of the value (::lyd_value.canonical) and the type specific data stored in the
57 * structure's union according to the real type of the value (::lyd_value.realtype). The string representation provides
58 * canonical representation of the value in case the type has the canonical representation specified. Otherwise, it is the
59 * original value or, in case the value can contain prefixes, the JSON format is used to make the value unambiguous.
60 * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes.
61 *
62 * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use
63 * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros
64 * and functions.
65 * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node.
66 * - ::LYD_CTX to get libyang context from a data node.
67 * - ::LYD_CANON_VALUE to get canonical string value from a terminal node.
68 * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first).
69 * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page.
70 *
71 * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of
72 * \b lyd_find_*() functions.
73 *
74 * More information about specific operations with data instances can be found on the following pages:
75 * - @subpage howtoDataParsers
76 * - @subpage howtoDataValidation
77 * - @subpage howtoDataWD
78 * - @subpage howtoDataManipulation
79 * - @subpage howtoDataPrinters
80 *
81 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
82 *
83 * Functions List (not assigned to above subsections)
84 * --------------------------------------------------
85 * - ::lyd_child()
86 * - ::lyd_child_no_keys()
87 * - ::lyd_parent()
88 * - ::lyd_owner_module()
89 * - ::lyd_find_xpath()
90 * - ::lyd_find_sibling_val()
91 * - ::lyd_find_sibling_first()
92 * - ::lyd_find_meta()
93 *
94 * - ::lyd_path()
95 * - ::lyd_target()
96 *
97 * - ::lyd_lyb_data_length()
98 */
99
100/**
101 * @page howtoDataManipulation Manipulating Data
102 *
103 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
104 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
105 * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly
106 * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore,
107 * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure
108 * that the changed data tree is valid.
109 *
110 * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and
111 * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the
112 * nodes order from the YANG schema. So the node is not inserted to the end or beginning of the siblings list, but after the
113 * existing instance of the closest preceding sibling node from the schema. In case the node is opaq (it is not connected
114 * with any schema node), it is placed to the end of the sibling node in the order they are inserted in. The only situation
115 * when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list instances. In such
116 * a case the ::lyd_insert_after() or ::lyd_insert_before() can be used.
117 *
118 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
119 * the node name and/or its parent (::lyd_new_inner(), ::lyd_new_term(), ::lyd_new_any(), ::lyd_new_list(), ::lyd_new_list2()
120 * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path(),
121 * ::lyd_new_path2() and ::lyd_new_path_any()). The latter enables to create a whole path of nodes, requires less information
122 * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using
123 * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single().
124 *
125 * The [metadata](@ref howtoPluginsExtensionsMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta()
126 * and ::lyd_new_attr().
127 *
128 * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value
129 * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value
130 * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node
131 * (::lyd_value_validate()).
132 *
133 * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions.
134 * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when
135 * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more
136 * powerful insert.
137 *
138 * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose,
139 * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one
140 * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple
141 * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and
142 * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(),
143 * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used.
144 *
145 * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using
146 * ::lyd_free_all() (or other \b lyd_free_*() functions).
147 *
148 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
149 * same context.
150 *
151 * Modifying the single data tree in multiple threads is not safe.
152 *
153 * Functions List
154 * --------------
155 * - ::lyd_new_inner()
156 * - ::lyd_new_term()
157 * - ::lyd_new_list()
158 * - ::lyd_new_list2()
159 * - ::lyd_new_any()
160 * - ::lyd_new_opaq()
161 * - ::lyd_new_attr()
162 * - ::lyd_new_meta()
163 * - ::lyd_new_path()
164 * - ::lyd_new_path2()
165 * - ::lyd_new_path_any()
166 *
167 * - ::lyd_dup_single()
168 * - ::lyd_dup_siblings()
169 * - ::lyd_dup_meta_single()
170 *
171 * - ::lyd_insert_child()
172 * - ::lyd_insert_sibling()
173 * - ::lyd_insert_after()
174 * - ::lyd_insert_before()
175 *
176 * - ::lyd_value_compare()
177 * - ::lyd_value_validate()
178 *
179 * - ::lyd_change_term()
180 * - ::lyd_change_meta()
181 *
182 * - ::lyd_compare_single()
183 * - ::lyd_compare_siblings()
184 * - ::lyd_compare_meta()
185 * - ::lyd_diff_tree()
186 * - ::lyd_diff_siblings()
187 * - ::lyd_diff_apply_all()
188 * - ::lyd_diff_apply_module()
189 * - ::lyd_diff_reverse_all()
190 * - ::lyd_diff_merge_all()
191 * - ::lyd_diff_merge_module()
192 * - ::lyd_diff_merge_tree()
193 *
194 * - ::lyd_merge_tree()
195 * - ::lyd_merge_siblings()
196 *
197 * - ::lyd_unlink_tree()
198 *
199 * - ::lyd_free_all()
200 * - ::lyd_free_siblings()
201 * - ::lyd_free_tree()
202 * - ::lyd_free_meta_single()
203 * - ::lyd_free_meta_siblings()
204 * - ::lyd_free_attr_single()
205 * - ::lyd_free_attr_siblings()
206 *
207 * - ::lyd_any_copy_value()
208 */
209
210/**
211 * @page howtoDataWD Default Values
212 *
213 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
214 * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to
215 * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the
216 * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata
217 * providing the information about the default values cannot be used. It means that when parsing data, the default nodes
218 * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected
219 * nodes are printed without the ietf-netconf-with-defaults metadata.
220 *
221 * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them
222 * via @ref dataprinterflags when printing data trees.
223 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
224 * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option.
225 * This is the default with-defaults mode of the printer. The data nodes do not contain any additional
226 * metadata information.
227 * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option.
228 * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or
229 * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by
230 * ::LYD_PRINT_WD_ALL option.
231 * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value
232 * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode.
233 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes
234 * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option.
235 *
236 * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation).
237 * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding
238 * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the
239 * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the
240 * appropriate metadata.
241 *
242 * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes
243 * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the
244 * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions.
245 *
246 * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member
247 * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container
248 * 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
249 * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added
250 * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option.
251 *
252 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
253 * use ::lyd_is_default() function.
254 *
255 * Functions List
256 * --------------
257 * - ::lyd_is_default()
258 * - ::lyd_new_implicit_all()
259 * - ::lyd_new_implicit_module()
260 * - ::lyd_new_implicit_tree()
261 */
262
263/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200264 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200265 * @defgroup datatree Data Tree
Radek Krejcie7b95092019-05-15 11:03:07 +0200266 * @{
267 *
268 * Data structures and functions to manipulate and access instance data tree.
269 */
270
Michal Vasko64246d82020-08-19 12:35:00 +0200271/* *INDENT-OFF* */
272
Michal Vaskoa276cd92020-08-10 15:10:08 +0200273/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200274 * @brief Macro to iterate via all elements in a data tree. This is the opening part
275 * to the #LYD_TREE_DFS_END - they always have to be used together.
276 *
277 * The function follows deep-first search algorithm:
278 * <pre>
279 * 1
280 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100281 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +0200282 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100283 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +0200284 * </pre>
285 *
Radek Krejci0935f412019-08-20 16:15:18 +0200286 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200287 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
288 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200289 *
Michal Vasko56daf732020-08-10 10:57:18 +0200290 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
291 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200292 *
293 * Use with opening curly bracket '{' after the macro.
294 *
295 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200296 * @param ELEM Iterator intended for use in the block.
297 */
Michal Vasko56daf732020-08-10 10:57:18 +0200298#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200299 { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +0200300 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +0200301 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200302 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +0200303
304/**
305 * @brief Macro to iterate via all elements in a tree. This is the closing part
306 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
307 *
308 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200309 * START can be any of the lyd_node* types, ELEM variable must be a pointer
310 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200311 *
312 * Use with closing curly bracket '}' after the macro.
313 *
314 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200315 * @param ELEM Iterator intended for use in the block.
316 */
317
Michal Vasko56daf732020-08-10 10:57:18 +0200318#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200319 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200320 if (LYD_TREE_DFS_continue) { \
321 (LYD_TREE_DFS_next) = NULL; \
322 } else { \
Radek Krejcia1c1e542020-09-29 16:06:52 +0200323 (LYD_TREE_DFS_next) = lyd_child(ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200324 }\
325 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200326 /* no children */ \
327 if ((ELEM) == (struct lyd_node*)(START)) { \
328 /* we are done, (START) has no children */ \
329 break; \
330 } \
331 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200332 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200333 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200334 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200335 /* parent is already processed, go to its sibling */ \
336 (ELEM) = (struct lyd_node*)(ELEM)->parent; \
337 /* no siblings, go back through parents */ \
338 if ((ELEM)->parent == (START)->parent) { \
339 /* we are done, no next element to process */ \
340 break; \
341 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200342 (LYD_TREE_DFS_next) = (ELEM)->next; \
343 } } \
Radek Krejcie7b95092019-05-15 11:03:07 +0200344
Michal Vasko64246d82020-08-19 12:35:00 +0200345/* *INDENT-ON* */
346
Radek Krejcie7b95092019-05-15 11:03:07 +0200347/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200348 * @brief Macro to get context from a data tree node.
349 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200350#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200351
352/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200353 * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and
354 * [printer](@ref howtoDataPrinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200355 */
356typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200357 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
358 LYD_XML, /**< XML instance data format */
359 LYD_JSON, /**< JSON instance data format */
Michal Vasko69730152020-10-09 16:30:07 +0200360 LYD_LYB /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200361} LYD_FORMAT;
362
363/**
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200364 * @brief All kinds of supported prefix mappings to modules.
365 */
366typedef enum {
367 LY_PREF_SCHEMA, /**< value prefixes map to YANG import prefixes */
Michal Vaskoc9795582020-10-08 16:22:17 +0200368 LY_PREF_SCHEMA_RESOLVED, /**< value prefixes map to module structures directly */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200369 LY_PREF_XML, /**< value prefixes map to XML namespace prefixes */
Michal Vasko69730152020-10-09 16:30:07 +0200370 LY_PREF_JSON /**< value prefixes map to module names */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200371} LY_PREFIX_FORMAT;
372
373/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200374 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200375 */
376typedef enum {
Radek Krejci8678fa42020-08-18 16:07:28 +0200377 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 +0200378 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
Radek Krejci8678fa42020-08-18 16:07:28 +0200379 with the data after a successful call (including calling ::lyd_free_all() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200380 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 +0200381 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
382 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200383 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
384 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 +0200385 LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200386} LYD_ANYDATA_VALUETYPE;
387
388/** @} */
389
390/**
391 * @brief YANG data representation
392 */
393struct lyd_value {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200394 const char *canonical; /**< Canonical string representation of the value in the dictionary. It is never
395 NULL and in case of no canonical value, its JSON representation is used instead. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200396
Radek Krejcie7b95092019-05-15 11:03:07 +0200397 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200398 int8_t boolean; /**< 0 as false, 1 as true */
399 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200400 int8_t int8; /**< 8-bit signed integer */
401 int16_t int16; /**< 16-bit signed integer */
402 int32_t int32; /**< 32-bit signed integer */
403 int64_t int64; /**< 64-bit signed integer */
404 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200405 uint16_t uint16; /**< 16-bit unsigned integer */
406 uint32_t uint32; /**< 32-bit unsigned integer */
407 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200408 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200409 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 +0200410 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200411 struct ly_path *target; /**< Instance-identifier target path. */
412 struct lyd_value_subvalue *subvalue; /** Union value with some metadata. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200413 void *ptr; /**< generic data type structure used to store the data */
Radek Krejci8678fa42020-08-18 16:07:28 +0200414 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype
415 plugin's callbacks to work with the data.*/
Radek Krejci084289f2019-07-09 17:35:30 +0200416
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200417 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 +0200418 in the schema node of the data node since the type's store plugin can use other types/plugins for
419 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
420 target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data
421 stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type.
422 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
423 the type used to store data directly in the same lyd_value instance. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200424};
425
426/**
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200427 * @brief Macro for getting the string canonical value from a term node.
428 *
429 * @param[in] node Term node with the value.
430 * @return Canonical value.
431 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200432#define LYD_CANON_VALUE(node) ((struct lyd_node_term *)(node))->value.canonical
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200433
434/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200435 * @brief Special lyd_value structure for union.
436 *
437 * 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 +0200438 * the ::lyd_value_subvalue.value contains representation according to one of the union's types.
439 * 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 +0200440 * These prefixes are necessary to parse original value to the union's subtypes.
441 */
442struct lyd_value_subvalue {
443 struct lyd_value value; /**< representation of the value according to the selected union's subtype
Radek Krejci8678fa42020-08-18 16:07:28 +0200444 (stored as ::lyd_value.realtype here, in subvalue structure */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200445 const char *original; /**< Original value in the dictionary. */
446 LY_PREFIX_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
447 whether a value is valid for the specific format or not on later validations
448 (instance-identifier in XML looks different than in JSON). */
Radek Krejci8678fa42020-08-18 16:07:28 +0200449 void *prefix_data; /**< Format-specific data for prefix resolution (see ::ly_type_store_resolve_prefix()) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200450 uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */
451 const struct lysc_node *ctx_node; /**< Context schema node. */
452};
453
454/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100455 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200456 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100457 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200458 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
459 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
460 * they are represented as JSON elements starting with the '@' character (for more information, see the
461 * YANG metadata RFC.
462 *
463 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100464struct lyd_meta {
465 struct lyd_node *parent; /**< data node where the metadata is placed */
466 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
467 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
468 const char *name; /**< metadata name */
469 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200470};
471
Michal Vasko52927e22020-03-16 17:26:14 +0100472/**
473 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200474 *
475 * 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 +0200476 * ::ly_ctx_get_module_implemented_ns() or ::ly_ctx_get_module_implemented(). While the module reference is always present,
Radek Krejci1798aae2020-07-14 13:26:06 +0200477 * the id member can be omitted in case it is not present in the source data as a reference to the default namespace.
Michal Vasko52927e22020-03-16 17:26:14 +0100478 */
479struct ly_prefix {
Radek Krejci1798aae2020-07-14 13:26:06 +0200480 const char *id; /**< identifier used in the qualified name of the item to reference data node namespace */
481 union {
482 const char *module_ns; /**< namespace of the module where the data are supposed to belongs to, used for LYD_XML format. */
483 const char *module_name; /**< name of the module where the data are supposed to belongs to, used for LYD_JSON format. */
484 };
Michal Vasko52927e22020-03-16 17:26:14 +0100485};
486
487/**
488 * @brief Generic attribute structure.
489 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200490struct lyd_attr {
Michal Vasko52927e22020-03-16 17:26:14 +0100491 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
Radek Krejci1798aae2020-07-14 13:26:06 +0200492 struct lyd_attr *next;
Michal Vasko52927e22020-03-16 17:26:14 +0100493 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
494 const char *name;
495 const char *value;
496
Radek Krejci5536d282020-08-04 23:27:44 +0200497 LYD_FORMAT format; /**< format of the prefixes, only LYD_XML and LYD_JSON values can appear at this place */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200498 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100499 struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */
500
501};
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) */
Michal Vaskoecd62de2019-11-13 12:35:11 +0100545 const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just
Radek Krejci8678fa42020-08-18 16:07:28 +0200546 ::lysc_node but ::lysc_action or ::lysc_notif as well */
Radek Krejcie7b95092019-05-15 11:03:07 +0200547 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
548 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
549 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
550 never NULL. If there is no sibling node, pointer points to the node
551 itself. In case of the first node, this pointer points to the last
552 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100553 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200554
555#ifdef LY_ENABLED_LYD_PRIV
556 void *priv; /**< private user data, not used by libyang */
557#endif
558};
559
560/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200561 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200562 */
563struct lyd_node_inner {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200564 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
565 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
566 used to get know that nodes are not equal, it cannot be used to decide that the
567 nodes are equal due to possible collisions. */
568 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200569 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. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100576 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200577
578#ifdef LY_ENABLED_LYD_PRIV
579 void *priv; /**< private user data, not used by libyang */
580#endif
581
582 struct lyd_node *child; /**< pointer to the first child node. */
583 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 +0200584#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 +0200585};
586
587/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100588 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200589 */
590struct lyd_node_term {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200591 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
592 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
593 used to get know that nodes are not equal, it cannot be used to decide that the
594 nodes are equal due to possible collisions. */
595 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200596 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
597 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
598 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
599 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
600 never NULL. If there is no sibling node, pointer points to the node
601 itself. In case of the first node, this pointer points to the last
602 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100603 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200604
605#ifdef LY_ENABLED_LYD_PRIV
606 void *priv; /**< private user data, not used by libyang */
607#endif
608
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200609 struct lyd_value value; /**< node's value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200610};
611
612/**
613 * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls.
614 */
615struct lyd_node_any {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200616 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
617 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
618 used to get know that nodes are not equal, it cannot be used to decide that the
619 nodes are equal due to possible collisions. */
620 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200621 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
622 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
623 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
624 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
625 never NULL. If there is no sibling node, pointer points to the node
626 itself. In case of the first node, this pointer points to the last
627 node in the list. */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200628 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200629
630#ifdef LY_ENABLED_LYD_PRIV
631 void *priv; /**< private user data, not used by libyang */
632#endif
633
Michal Vasko00cbf532020-06-15 13:58:47 +0200634 union lyd_any_value {
Radek Krejciee4cab22019-07-17 17:07:47 +0200635 struct lyd_node *tree; /**< data tree */
636 const char *str; /**< Generic string data */
637 const char *xml; /**< Serialized XML data */
638 const char *json; /**< I-JSON encoded string */
639 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
640 } value; /**< pointer to the stored value representation of the anydata/anyxml node */
Radek Krejci8678fa42020-08-18 16:07:28 +0200641 LYD_ANYDATA_VALUETYPE value_type;/**< type of the data stored as ::lyd_node_any.value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200642};
643
644/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200645 * @ingroup datatree
646 * @defgroup lydvalhints Value format hints.
Radek Krejci1798aae2020-07-14 13:26:06 +0200647 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200648 *
649 * Hints for the type of the data value.
650 *
651 * Any information about value types encoded in the format is hinted by these values.
Radek Krejci1798aae2020-07-14 13:26:06 +0200652 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200653#define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */
654#define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */
655#define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */
656#define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */
657#define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */
658#define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */
659#define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */
660/**
661 * @} lydvalhints
662 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200663
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200664/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200665 * @ingroup datatree
666 * @defgroup lydnodehints Node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200667 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200668 *
669 * Hints for the type of the data node.
670 *
671 * Any information about node types encoded in the format is hinted by these values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200672 */
673#define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */
674#define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */
675#define LYD_NODEHINT_ENVELOPE 0x8000 /**< only found in opaque node hints; node is a special protocol-dependent
676 RPC/Action/Notification envelope */
677/**
678 * @} lydnodehints
679 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200680
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200681/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200682 * @ingroup datatree
683 * @defgroup lydhints Value and node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200684 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200685 *
686 * Hints for the types of data node and its value.
687 *
688 * Any information about value and node types encoded in the format is hinted by these values.
689 * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints).
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200690 */
691#define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when
692 there is no encoding or it does not provide any additional information about
693 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
694 or [node hints](@ref lydnodehints). */
695#define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when
696 there is no encoding or it does not provide any additional information about
697 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
698 or [node hints](@ref lydnodehints). */
699/**
700 * @} lydhints
701 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200702
703/**
Michal Vasko52927e22020-03-16 17:26:14 +0100704 * @brief Data node structure for unparsed (opaque) nodes.
705 */
706struct lyd_node_opaq {
707 uint32_t hash; /**< always 0 */
708 uint32_t flags; /**< always 0 */
709 const struct lysc_node *schema; /**< always NULL */
710 struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */
711 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
712 struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200713 struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */
Michal Vasko52927e22020-03-16 17:26:14 +0100714
715#ifdef LY_ENABLED_LYD_PRIV
716 void *priv; /**< private user data, not used by libyang */
717#endif
718
719 struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */
720 const char *name;
721 LYD_FORMAT format;
722 struct ly_prefix prefix; /**< name prefix */
723 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
724 const char *value; /**< original value */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200725 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100726 const struct ly_ctx *ctx; /**< libyang context */
727};
728
729/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200730 * @brief Get the generic parent pointer of a data node.
731 *
732 * @param[in] node Node whose parent pointer to get.
733 * @return Pointer to the parent node of the @p node.
734 * @return NULL in case of the top-level node or if the @p node is NULL itself.
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200735 */
Radek Krejcia1c1e542020-09-29 16:06:52 +0200736struct lyd_node *lyd_parent(const struct lyd_node *node);
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200737
738/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200739 * @brief Get the child pointer of a generic data node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200740 *
Radek Krejcia1c1e542020-09-29 16:06:52 +0200741 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
742 *
743 * If you need to skip key children, use ::lyd_child_no_keys().
744 *
745 * @param[in] node Node to use.
746 * @return Pointer to the first child node (if any) of the @p node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200747 */
Radek Krejcia1c1e542020-09-29 16:06:52 +0200748struct lyd_node *lyd_child(const struct lyd_node *node);
749
750/**
751 * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST.
752 *
753 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
754 *
755 * If you need to take key children into account, use ::lyd_child().
756 *
757 * @param[in] node Node to use.
758 * @return Pointer to the first child node (if any) of the @p node.
759 */
760struct lyd_node *lyd_child_no_keys(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +0200761
762/**
Michal Vaskoc193ce92020-03-06 11:04:48 +0100763 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
764 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
765 *
766 * @param[in] node Data node to examine.
767 * @return Module owner of the node.
768 */
769const struct lys_module *lyd_owner_module(const struct lyd_node *node);
770
771/**
Radek Krejci19611252020-10-04 13:54:53 +0200772 * @brief Check whether a node value equals to its default one.
773 *
774 * @param[in] node Term node to test.
775 * @return false (no, it is not a default node) or true (yes, it is default)
776 */
777ly_bool lyd_is_default(const struct lyd_node *node);
778
779/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200780 * @brief Learn the length of LYB data.
781 *
782 * @param[in] data LYB data to examine.
783 * @return Length of the LYB data chunk,
784 * @return -1 on error.
785 */
786int lyd_lyb_data_length(const char *data);
787
788/**
Michal Vaskoc0004272020-08-06 08:32:34 +0200789 * @brief Copy anydata value from one node to another. Target value is freed first.
790 *
791 * @param[in,out] trg Target node.
792 * @param[in] value Source value, may be NULL when the target value is only freed.
793 * @param[in] value_type Source value type.
794 * @return LY_ERR value.
795 */
796LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type);
797
798/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200799 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100800 *
801 * @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 +0100802 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100803 * @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 +0100804 * @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
805 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200806 * @param[out] node Optional created node.
807 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100808 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100809LY_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 +0100810
811/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200812 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100813 *
814 * @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 +0100815 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100816 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Radek Krejci41ac9942020-11-02 14:47:56 +0100817 * @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
818 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200819 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +0100820 * @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 +0200821 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
822 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200823 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100824 */
Radek Krejci41ac9942020-11-02 14:47:56 +0100825LY_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 +0100826
827/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200828 * @brief Create a new list 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 must be #LYS_LIST.
833 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
834 * 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 +0200835 * Use NULL or string of length 0 in case of key-less list.
Radek Krejci41ac9942020-11-02 14:47:56 +0100836 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
837 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200838 * @param[out] node Optional created node.
839 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100840 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200841LY_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 +0100842 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100843
844/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200845 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100846 *
847 * @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 +0100848 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100849 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
850 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
851 * value, the JSON format is expected (module names instead of prefixes).
Radek Krejci41ac9942020-11-02 14:47:56 +0100852 * @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
853 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200854 * @param[out] node Optional created node.
855 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100856 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200857LY_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 +0100858 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100859
860/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200861 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100862 *
863 * @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 +0100864 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100865 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
866 * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type.
867 * @param[in] value_type Type of the provided value in @p value.
Radek Krejci41ac9942020-11-02 14:47:56 +0100868 * @param[in] output Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
869 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200870 * @param[out] node Optional created node.
871 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100872 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200873LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
Radek Krejci41ac9942020-11-02 14:47:56 +0100874 LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100875
876/**
Michal Vaskod86997b2020-05-26 15:19:54 +0200877 * @brief Create new metadata for a data node.
878 *
879 * @param[in] parent Parent node for the metadata being created.
Michal Vasko00cbf532020-06-15 13:58:47 +0200880 * @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 +0200881 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
882 * 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 +0200883 * @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 +0200884 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko3a41dff2020-07-15 14:30:28 +0200885 * @param[out] meta Optional created metadata.
886 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +0200887 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200888LY_ERR lyd_new_meta(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +0200889 struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +0200890
891/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200892 * @brief Create a new opaque node in the data tree.
893 *
894 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
895 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
896 * @param[in] name Node name.
897 * @param[in] value Node value, may be NULL.
898 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200899 * @param[out] node Optional created node.
900 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200901 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200902LY_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 +0200903 const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200904
905/**
906 * @brief Create new attribute for an opaque data node.
907 *
908 * @param[in] parent Parent opaque node for the attribute being created.
Radek Krejci8678fa42020-08-18 16:07:28 +0200909 * @param[in] module_name Name of the module of the attribute being created. There may be none.
Michal Vasko00cbf532020-06-15 13:58:47 +0200910 * @param[in] name Attribute name. It can include the module name as the prefix.
911 * @param[in] val_str String value of the attribute. Is stored directly.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200912 * @param[out] attr Optional created attribute.
913 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200914 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200915LY_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 +0200916 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +0200917
918/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200919 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200920 * @defgroup pathoptions Data path creation options
Michal Vasko00cbf532020-06-15 13:58:47 +0200921 *
922 * Various options to change lyd_new_path*() behavior.
923 *
924 * Default behavior:
925 * - if the target node already exists (and is not default), an error is returned.
926 * - the whole path to the target node is created (with any missing parents) if necessary.
927 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
928 * @{
929 */
930
Radek Krejci092e33c2020-10-12 15:33:10 +0200931#define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
932 default flag is changed, it is returned. If the target node exists and is not
933 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
934 no error set. */
935#define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
936 output ones. */
937#define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
938 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
939 invalid value (leaf/leaf-list), it is created as opaque. */
Michal Vasko00cbf532020-06-15 13:58:47 +0200940
941/** @} pathoptions */
942
943/**
944 * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes,
945 * for those use ::lyd_new_path_any.
946 *
947 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
948 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
949 * and @p value is set, the predicate is preferred.
950 *
951 * @param[in] parent Data parent to add to/modify, can be NULL.
952 * @param[in] ctx libyang context, must be set if @p parent is NULL.
953 * @param[in] path Path to create (TODO ref path).
954 * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored.
955 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200956 * @param[out] node Optional first created node.
957 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200958 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200959LY_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 +0200960 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200961
962/**
963 * @brief Create a new node in the data tree based on a path. All node types can be created.
964 *
965 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
966 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
967 * and @p value is set, the predicate is preferred.
968 *
969 * @param[in] parent Data parent to add to/modify, can be NULL.
970 * @param[in] ctx libyang context, must be set if @p parent is NULL.
971 * @param[in] path Path to create (TODO ref path).
972 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
973 * @param[in] value_type Anyxml/anydata node @p value type.
974 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200975 * @param[out] node Optional first created node.
976 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200977 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200978LY_ERR lyd_new_path_any(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +0200979 LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200980
981/**
982 * @brief Create a new node in the data tree based on a path. All node types can be created.
983 *
984 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
985 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
986 * and @p value is set, the predicate is preferred.
987 *
988 * @param[in] parent Data parent to add to/modify, can be NULL.
989 * @param[in] ctx libyang context, must be set if @p parent is NULL.
990 * @param[in] path Path to create (TODO ref path).
991 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
992 * @param[in] value_type Anyxml/anydata node @p value type.
993 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200994 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
995 * @param[out] new_node Optional last node created.
Michal Vasko00cbf532020-06-15 13:58:47 +0200996 * @return LY_ERR value.
997 */
998LY_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 +0200999 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 +02001000
1001/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001002 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001003 * @defgroup implicitoptions Implicit node creation options
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001004 *
1005 * Various options to change lyd_new_implicit*() behavior.
1006 *
1007 * Default behavior:
1008 * - both configuration and state missing implicit nodes are added.
1009 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
1010 * @{
1011 */
1012
Michal Vasko44b19a12020-08-07 09:21:30 +02001013#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
1014#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
1015#define LYD_IMPLICIT_NO_DEFAULTS 0x04 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001016 containers. */
1017
1018/** @} implicitoptions */
1019
1020/**
1021 * @brief Add any missing implicit nodes into a data subtree.
1022 *
1023 * @param[in] tree Tree to add implicit nodes into.
1024 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1025 * @param[out] diff Optional diff with any created nodes.
1026 * @return LY_ERR value.
1027 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001028LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001029
1030/**
1031 * @brief Add any missing implicit nodes.
1032 *
1033 * @param[in,out] tree Tree to add implicit nodes into.
1034 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
1035 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1036 * @param[out] diff Optional diff with any created nodes.
1037 * @return LY_ERR value.
1038 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001039LY_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 +02001040
1041/**
1042 * @brief Add any missing implicit nodes of one module.
1043 *
1044 * @param[in,out] tree Tree to add implicit nodes into.
1045 * @param[in] module Module whose implicit nodes to create.
1046 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1047 * @param[out] diff Optional diff with any created nodes.
1048 * @return LY_ERR value.
1049 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001050LY_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 +02001051 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001052
1053/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001054 * @brief Change the value of a term (leaf or leaf-list) node.
1055 *
1056 * Node changed this way is always considered explicitly set, meaning its default flag
1057 * is always cleared.
1058 *
1059 * @param[in] term Term node to change.
1060 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1061 * @return LY_SUCCESS if value was changed,
1062 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1063 * @return LY_ENOT if the values were equal and no change occured,
1064 * @return LY_ERR value on other errors.
1065 */
1066LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
1067
1068/**
Michal Vasko41586352020-07-13 13:54:25 +02001069 * @brief Change the value of a metadata instance.
1070 *
Michal Vasko41586352020-07-13 13:54:25 +02001071 * @param[in] meta Metadata to change.
1072 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1073 * @return LY_SUCCESS if value was changed,
1074 * @return LY_ENOT if the values were equal and no change occured,
1075 * @return LY_ERR value on other errors.
1076 */
1077LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
1078
1079/**
Michal Vaskob104f112020-07-17 09:54:54 +02001080 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +01001081 *
1082 * - if the node is part of some other tree, it is automatically unlinked.
1083 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1084 *
1085 * @param[in] parent Parent node to insert into.
1086 * @param[in] node Node to insert.
1087 * @return LY_SUCCESS on success.
1088 * @return LY_ERR error on error.
1089 */
Michal Vaskob104f112020-07-17 09:54:54 +02001090LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001091
1092/**
Michal Vaskob104f112020-07-17 09:54:54 +02001093 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001094 *
1095 * - if the node is part of some other tree, it is automatically unlinked.
1096 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1097 *
Michal Vaskob104f112020-07-17 09:54:54 +02001098 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001099 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +02001100 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001101 * @return LY_SUCCESS on success.
1102 * @return LY_ERR error on error.
1103 */
Michal Vaskob104f112020-07-17 09:54:54 +02001104LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001105
1106/**
Michal Vaskob104f112020-07-17 09:54:54 +02001107 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +01001108 *
1109 * - if the node is part of some other tree, it is automatically unlinked.
1110 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1111 *
1112 * @param[in] sibling Sibling node to insert before.
1113 * @param[in] node Node to insert.
1114 * @return LY_SUCCESS on success.
1115 * @return LY_ERR error on error.
1116 */
1117LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
1118
1119/**
Michal Vaskob104f112020-07-17 09:54:54 +02001120 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +01001121 *
1122 * - if the node is part of some other tree, it is automatically unlinked.
1123 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1124 *
1125 * @param[in] sibling Sibling node to insert after.
1126 * @param[in] node Node to insert.
1127 * @return LY_SUCCESS on success.
1128 * @return LY_ERR error on error.
1129 */
1130LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
1131
1132/**
1133 * @brief Unlink the specified data subtree.
1134 *
1135 * @param[in] node Data tree node to be unlinked (together with all the children).
1136 */
1137void lyd_unlink_tree(struct lyd_node *node);
1138
1139/**
Radek Krejcib0849a22019-07-25 12:31:04 +02001140 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +02001141 *
1142 * @param[in] node Any of the nodes inside the tree.
1143 */
1144void lyd_free_all(struct lyd_node *node);
1145
1146/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001147 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +02001148 *
1149 * @param[in] node Any of the sibling nodes to free.
1150 */
Michal Vaskof03ed032020-03-04 13:31:44 +01001151void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +02001152
1153/**
Radek Krejcie7b95092019-05-15 11:03:07 +02001154 * @brief Free (and unlink) the specified data (sub)tree.
1155 *
Radek Krejcie7b95092019-05-15 11:03:07 +02001156 * @param[in] node Root of the (sub)tree to be freed.
1157 */
1158void lyd_free_tree(struct lyd_node *node);
1159
1160/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001161 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +02001162 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001163 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +02001164 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001165void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +01001166
1167/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001168 * @brief Free the metadata instance with any following instances.
1169 *
1170 * @param[in] meta Metadata to free.
1171 */
1172void lyd_free_meta_siblings(struct lyd_meta *meta);
1173
1174/**
1175 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +01001176 *
1177 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001178 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +01001179 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001180void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001181
1182/**
1183 * @brief Free the attribute with any following attributes.
1184 *
1185 * @param[in] ctx Context where the attributes were created.
1186 * @param[in] attr First attribute to free.
1187 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001188void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +02001189
Radek Krejci084289f2019-07-09 17:35:30 +02001190/**
1191 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1192 *
1193 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
1194 *
1195 * 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 +02001196 * data tree context (e.g. for the case of require-instance restriction), use ::lys_value_validate().
Radek Krejci084289f2019-07-09 17:35:30 +02001197 *
1198 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
1199 * @param[in] node Data node for the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02001200 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001201 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskof03ed032020-03-04 13:31:44 +01001202 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
1203 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
1204 * then LY_EINCOMPLETE can be returned.
Michal Vasko3701af52020-08-03 14:29:38 +02001205 * @param[out] realtype Optional real type of the value.
Radek Krejci084289f2019-07-09 17:35:30 +02001206 * @return LY_SUCCESS on success
1207 * @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).
1208 * @return LY_ERR value if an error occurred.
1209 */
Michal Vasko44685da2020-03-17 15:38:06 +01001210LY_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 +02001211 const struct lyd_node *tree, const struct lysc_type **realtype);
Radek Krejci084289f2019-07-09 17:35:30 +02001212
1213/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001214 * @brief Compare the node's value with the given string value. The string value is first validated according to
1215 * the (current) node's type.
Radek Krejci084289f2019-07-09 17:35:30 +02001216 *
1217 * @param[in] node Data node to compare.
1218 * @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 +02001219 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001220 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001221 * @return LY_SUCCESS on success,
1222 * @return LY_ENOT if the values do not match,
Radek Krejci084289f2019-07-09 17:35:30 +02001223 * @return LY_ERR value if an error occurred.
1224 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001225LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len);
Radek Krejci084289f2019-07-09 17:35:30 +02001226
Radek Krejci576b23f2019-07-12 14:06:32 +02001227/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001228 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001229 * @defgroup datacompareoptions Data compare options
1230 * @{
1231 * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001232 */
1233#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
1234 (subtree, so direct as well as indirect children) are the same. By default,
1235 containers are the same in case of the same schema node and lists are the same
1236 in case of equal keys (keyless lists do the full recursion comparison all the time). */
1237#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
1238 changes this behavior and implicit (automatically created default node) and explicit
1239 (explicitly created node with the default value) default nodes are considered different. */
Michal Vasko60ea6352020-06-29 13:39:39 +02001240/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001241
1242/**
1243 * @brief Compare 2 data nodes if they are equivalent.
1244 *
1245 * @param[in] node1 The first node to compare.
1246 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001247 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001248 * @return LY_SUCCESS if the nodes are equivalent.
1249 * @return LY_ENOT if the nodes are not equivalent.
1250 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001251LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Michal Vasko8f359bf2020-07-28 10:41:15 +02001252
1253/**
1254 * @brief Compare 2 lists of siblings if they are equivalent.
1255 *
1256 * @param[in] node1 The first sibling list to compare.
1257 * @param[in] node2 The second sibling list to compare.
1258 * @param[in] options Various @ref datacompareoptions.
1259 * @return LY_SUCCESS if all the siblings are equivalent.
1260 * @return LY_ENOT if the siblings are not equivalent.
1261 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001262LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001263
1264/**
Michal Vasko21725742020-06-29 11:49:25 +02001265 * @brief Compare 2 metadata.
1266 *
1267 * @param[in] meta1 First metadata.
1268 * @param[in] meta2 Second metadata.
1269 * @return LY_SUCCESS if the metadata are equivalent.
1270 * @return LY_ENOT if not.
1271 */
1272LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
1273
1274/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001275 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001276 * @defgroup dupoptions Data duplication options
Radek Krejci22ebdba2019-07-25 13:59:43 +02001277 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001278 * Various options to change ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single() behavior.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001279 *
1280 * Default behavior:
1281 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001282 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001283 * @{
1284 */
1285
1286#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1287 list's keys are always duplicated. */
Michal Vaskoa29a5762020-06-23 13:28:49 +02001288#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001289#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1290 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001291#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 +02001292 its validation/default node state. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001293
1294/** @} dupoptions */
1295
1296/**
1297 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
1298 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02001299 * @param[in] node Data tree node to be duplicated.
1300 * @param[in] parent Optional parent node where to connect the duplicated node(s).
Michal Vasko3a41dff2020-07-15 14:30:28 +02001301 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1302 * the @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001303 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001304 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1305 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1306 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001307 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001308LY_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 +02001309
1310/**
1311 * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same.
1312 *
1313 * @param[in] node Data tree node to be duplicated.
1314 * @param[in] parent Optional parent node where to connect the duplicated node(s).
1315 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1316 * the @p parent.
1317 * @param[in] options Bitmask of options flags, see @ref dupoptions.
1318 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1319 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1320 * @return LY_ERR value.
1321 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001322LY_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 +02001323
1324/**
Michal Vasko25a32822020-07-09 15:48:22 +02001325 * @brief Create a copy of the metadata.
1326 *
1327 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001328 * @param[in] parent Node where to append the new metadata.
1329 * @param[out] dup Optional created metadata copy.
1330 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02001331 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001332LY_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 +02001333
1334/**
Michal Vasko4490d312020-06-16 13:08:55 +02001335 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001336 * @defgroup mergeoptions Data merge options.
Radek Krejci576b23f2019-07-12 14:06:32 +02001337 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001338 * Various options to change ::lyd_merge_tree() and ::lyd_merge_siblings() behavior.
Michal Vasko4490d312020-06-16 13:08:55 +02001339 *
1340 * Default behavior:
1341 * - source data tree is not modified in any way,
Michal Vasko3a41dff2020-07-15 14:30:28 +02001342 * - any default nodes in the source are ignored if there are explicit nodes in the target.
Michal Vasko4490d312020-06-16 13:08:55 +02001343 * @{
1344 */
1345
1346#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001347#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 +02001348
1349/** @} mergeoptions */
1350
1351/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001352 * @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 +02001353 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
1354 *
1355 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1356 * @param[in] source Source data tree to merge, must be a top-level tree.
1357 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1358 * @return LY_SUCCESS on success,
1359 * @return LY_ERR value on error.
1360 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001361LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001362
1363/**
1364 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
1365 * complete until validation called on the resulting data tree (data from more cases may be present, default
1366 * and non-default values).
1367 *
1368 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1369 * @param[in] source Source data tree to merge, must be a top-level tree.
1370 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1371 * @return LY_SUCCESS on success,
1372 * @return LY_ERR value on error.
1373 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001374LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko4490d312020-06-16 13:08:55 +02001375
1376/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001377 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001378 * @defgroup diffoptions Data diff options.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001379 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001380 * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001381 *
1382 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001383 * - any default nodes are treated as non-existent and ignored.
1384 * @{
1385 */
1386
Michal Vasko3a41dff2020-07-15 14:30:28 +02001387#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
1388 nodes. Also, leaves and leaf-lists are added into diff even in case only their
1389 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001390
1391/** @} diffoptions */
1392
1393/**
1394 * @brief Learn the differences between 2 data trees.
1395 *
1396 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
1397 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
1398 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
1399 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
1400 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
1401 * or the second tree.
1402 *
1403 * The diff tree is completely independent on the @p first and @p second trees, meaning all
1404 * the information about the change is stored in the diff and the trees are not needed.
1405 *
1406 * !! Caution !!
1407 * The diff tree should never be validated because it may easily not be valid! For example,
1408 * when data from one case branch are deleted and data from another branch created - data from both
1409 * branches are then stored in the diff tree simultaneously.
1410 *
1411 * @param[in] first First data tree.
1412 * @param[in] second Second data tree.
1413 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1414 * @param[out] diff Generated diff.
1415 * @return LY_SUCCESS on success,
1416 * @return LY_ERR on error.
1417 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001418LY_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 +02001419
1420/**
1421 * @brief Learn the differences between 2 data trees including all the following siblings.
1422 *
1423 * @param[in] first First data tree.
1424 * @param[in] second Second data tree.
1425 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1426 * @param[out] diff Generated diff.
1427 * @return LY_SUCCESS on success,
1428 * @return LY_ERR on error.
1429 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001430LY_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 +02001431
1432/**
1433 * @brief Callback for diff nodes.
1434 *
1435 * @param[in] diff_node Diff node.
1436 * @param[in] data_node Matching node in data.
1437 * @param[in] cb_data Arbitrary callback data.
1438 * @return LY_ERR value.
1439 */
1440typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
1441
1442/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001443 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001444 *
1445 * @param[in,out] data Data to apply the diff on.
1446 * @param[in] diff Diff to apply.
1447 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
1448 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1449 * @param[in] cb_data Arbitrary callback data.
1450 * @return LY_SUCCESS on success,
1451 * @return LY_ERR on error.
1452 */
1453LY_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 +02001454 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001455
1456/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001457 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001458 *
1459 * @param[in,out] data Data to apply the diff on.
1460 * @param[in] diff Diff to apply.
1461 * @return LY_SUCCESS on success,
1462 * @return LY_ERR on error.
1463 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001464LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001465
1466/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001467 * @brief Merge 2 diffs into each other but restrict the operation to one module.
1468 *
1469 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
1470 * created on data that had the target diff applied on them. In other words, this sequence is legal
1471 *
Michal Vasko04f85912020-08-07 12:14:58 +02001472 * 1) diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 ->
1473 * -> data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001474 *
1475 * and reusing these diffs
1476 *
Michal Vasko04f85912020-08-07 12:14:58 +02001477 * 2) diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001478 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02001479 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001480 * @param[in] src_diff Source diff.
1481 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
1482 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1483 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001484 * @return LY_SUCCESS on success,
1485 * @return LY_ERR on error.
1486 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001487LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +02001488 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001489
1490/**
Michal Vasko04f85912020-08-07 12:14:58 +02001491 * @brief Merge 2 diff trees into each other.
1492 *
1493 * @param[in,out] diff_first Target diff first sibling to merge into.
1494 * @param[in] diff_parent Target diff parent to merge into.
1495 * @param[in] src_sibling Source diff sibling to merge.
1496 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1497 * @param[in] cb_data Arbitrary callback data.
1498 * @return LY_SUCCESS on success,
1499 * @return LY_ERR on error.
1500 */
1501LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling,
Radek Krejci0f969882020-08-21 16:56:47 +02001502 lyd_diff_cb diff_cb, void *cb_data);
Michal Vasko04f85912020-08-07 12:14:58 +02001503
1504/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001505 * @brief Merge 2 diffs into each other.
1506 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02001507 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02001508 * @param[in] src_diff Source diff.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001509 * @return LY_SUCCESS on success,
1510 * @return LY_ERR on error.
1511 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001512LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001513
1514/**
Michal Vasko4231fb62020-07-13 13:54:47 +02001515 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
1516 * or move from place A to B to move from B to A and so on.
1517 *
1518 * @param[in] src_diff Diff to reverse.
1519 * @param[out] diff Reversed diff.
1520 * @return LY_SUCCESS on success.
1521 * @return LY_ERR on error.
1522 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001523LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02001524
1525/**
Michal Vasko4490d312020-06-16 13:08:55 +02001526 * @brief Find the target in data of a compiled ly_path structure (instance-identifier).
1527 *
1528 * @param[in] path Compiled path structure.
Michal Vaskof03ed032020-03-04 13:31:44 +01001529 * @param[in] tree Data tree to be searched.
Michal Vasko4490d312020-06-16 13:08:55 +02001530 * @return Found target node,
1531 * @return NULL if not found.
Radek Krejci576b23f2019-07-12 14:06:32 +02001532 */
Michal Vasko004d3152020-06-11 19:59:22 +02001533const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02001534
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001535/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001536 * @brief Types of the different data paths.
1537 */
1538typedef enum {
Michal Vasko14654712020-02-06 08:35:21 +01001539 LYD_PATH_LOG, /**< Descriptive path format used in log messages */
Michal Vasko69730152020-10-09 16:30:07 +02001540 LYD_PATH_LOG_NO_LAST_PRED /**< Similar to ::LYD_PATH_LOG except there is never a predicate on the last node */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001541} LYD_PATH_TYPE;
1542
1543/**
1544 * @brief Generate path of the given node in the requested format.
1545 *
1546 * @param[in] node Schema path of this node will be generated.
1547 * @param[in] pathtype Format of the path to generate.
1548 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1549 * If NULL, memory for the complete path is allocated.
1550 * @param[in] buflen Size of the provided @p buffer.
1551 * @return NULL in case of memory allocation error, path of the node otherwise.
1552 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1553 */
1554char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
1555
Michal Vaskoe444f752020-02-10 12:20:06 +01001556/**
Michal Vasko25a32822020-07-09 15:48:22 +02001557 * @brief Find a specific metadata.
1558 *
1559 * @param[in] first First metadata to consider.
1560 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
1561 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
1562 * @return Found metadata,
1563 * @return NULL if not found.
1564 */
1565struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name);
1566
1567/**
Michal Vaskoda859032020-07-14 12:20:14 +02001568 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01001569 * Uses hashes - should be used whenever possible for best performance.
1570 *
1571 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1572 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01001573 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001574 * @return LY_SUCCESS on success, @p match set.
1575 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1576 * @return LY_ERR value if another error occurred.
1577 */
1578LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
1579
1580/**
Michal Vaskoe444f752020-02-10 12:20:06 +01001581 * @brief Search in the given siblings for the first schema instance.
1582 * Uses hashes - should be used whenever possible for best performance.
1583 *
1584 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1585 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02001586 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
1587 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01001588 * LYS_LEAFLIST:
1589 * Searched instance value.
1590 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001591 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
1592 * The keys do not have to be ordered but all of them must be set.
1593 *
1594 * Note that any explicit values (leaf-list or list key values) will be canonized first
1595 * before comparison. But values that do not have a canonical value are expected to be in the
1596 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001597 * @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 +01001598 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001599 * @return LY_SUCCESS on success, @p match set.
1600 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1601 * @return LY_EINVAL if @p schema is a key-less list.
1602 * @return LY_ERR value if another error occurred.
1603 */
1604LY_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 +02001605 size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01001606
Michal Vaskoccc02342020-05-21 10:09:21 +02001607/**
1608 * @brief Search in the given data for instances of nodes matching the provided XPath.
1609 *
Michal Vaskob104f112020-07-17 09:54:54 +02001610 * The expected format of the expression is ::LYD_JSON, meaning the first node in every path
Michal Vasko61ac2f62020-05-25 12:39:51 +02001611 * must have its module name as prefix or be the special `*` value for all the nodes.
1612 *
Michal Vasko19a30602020-05-25 10:40:19 +02001613 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
1614 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
1615 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
1616 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
1617 *
Michal Vaskoccc02342020-05-21 10:09:21 +02001618 * @param[in] ctx_node XPath context node.
1619 * @param[in] xpath Data XPath expression filtering the matching nodes. ::LYD_JSON format is expected.
1620 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
1621 * the returned set is empty.
1622 * @return LY_SUCCESS on success, @p set is returned.
1623 * @return LY_ERR value if an error occurred.
1624 */
1625LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
1626
Radek Krejcie7b95092019-05-15 11:03:07 +02001627#ifdef __cplusplus
1628}
1629#endif
1630
1631#endif /* LY_TREE_DATA_H_ */