blob: ba33f26d945746091c6e0cb53accc3e8214312b9 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
Michal Vasko2b421d92021-05-18 16:33:36 +02004 * @author Michal Vasko <mvasko@cesnet.cz>
Radek Krejcie7b95092019-05-15 11:03:07 +02005 * @brief libyang representation of YANG data trees.
6 *
Michal Vasko4e947032024-01-22 12:17:51 +01007 * Copyright (c) 2015 - 2024 CESNET, z.s.p.o.
Radek Krejcie7b95092019-05-15 11:03:07 +02008 *
9 * This source code is licensed under BSD 3-Clause License (the "License").
10 * You may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * https://opensource.org/licenses/BSD-3-Clause
14 */
15
16#ifndef LY_TREE_DATA_H_
17#define LY_TREE_DATA_H_
18
Jan Kundráta3d248e2021-12-14 18:05:26 +010019#ifdef _WIN32
20# include <winsock2.h>
21# include <ws2tcpip.h>
22#else
23# include <arpa/inet.h>
24# if defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__)
25# include <netinet/in.h>
26# include <sys/socket.h>
27# endif
Michal Vasko2b421d92021-05-18 16:33:36 +020028#endif
Radek Krejcie7b95092019-05-15 11:03:07 +020029#include <stddef.h>
30#include <stdint.h>
Michal Vasko2b421d92021-05-18 16:33:36 +020031#include <time.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020032
33#include "log.h"
Michal Vasko8f702ee2024-02-20 15:44:24 +010034#include "ly_config.h"
Christian Hopps59618972021-02-01 05:01:35 -050035#include "tree.h"
36#include "tree_schema.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020037
Radek Krejcica376bd2020-06-11 16:04:06 +020038#ifdef __cplusplus
39extern "C" {
40#endif
41
Radek Krejcie7b95092019-05-15 11:03:07 +020042struct ly_ctx;
Michal Vasko004d3152020-06-11 19:59:22 +020043struct ly_path;
Radek Krejci535ea9f2020-05-29 16:01:05 +020044struct ly_set;
45struct lyd_node;
46struct lyd_node_opaq;
Radek Krejci47fab892020-11-05 17:02:41 +010047struct lyd_node_term;
Michal Vasko43297a02021-05-19 11:12:37 +020048struct timespec;
aPiecekdf23eee2021-10-07 12:21:50 +020049struct lyxp_var;
aPiecek6cf1d162023-11-08 16:07:00 +010050struct rb_node;
Radek Krejcie7b95092019-05-15 11:03:07 +020051
Radek Krejcie7b95092019-05-15 11:03:07 +020052/**
Radek Krejci8678fa42020-08-18 16:07:28 +020053 * @page howtoData Data Instances
54 *
55 * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema
56 * it can be cast to several other structures.
57 *
58 * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq.
59 * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the
60 * context. Such a node can appear in several places in the data tree.
61 * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were
62 * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can
63 * appear as a node's attributes.
64 * - As a representation of YANG anydata/anyxml content.
65 * - As envelopes of standard data tree instances (RPCs, actions or Notifications).
66 *
67 * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is
68 * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype).
69 * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide
70 * structure of the tree by having children nodes.
71 * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal
72 * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020073 * structure with string representation of the value (retrieved by ::lyd_get_value() and ::lyd_get_meta_value()) and
74 * the type specific data stored in the structure's union according to the real type of the value (::lyd_value.realtype).
75 * The string representation provides canonical representation of the value in case the type has the canonical
76 * representation specified. Otherwise, it is the original value or, in case the value can contain prefixes, the JSON
77 * format is used to make the value unambiguous.
Radek Krejci8678fa42020-08-18 16:07:28 +020078 * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes.
79 *
80 * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use
81 * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros
82 * and functions.
83 * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node.
84 * - ::LYD_CTX to get libyang context from a data node.
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020085 * - ::lyd_get_value()/::lyd_get_meta_value() to get canonical string value from a terminal node/metadata instance.
Radek Krejci8678fa42020-08-18 16:07:28 +020086 * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first).
87 * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page.
88 *
89 * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of
90 * \b lyd_find_*() functions.
91 *
92 * More information about specific operations with data instances can be found on the following pages:
93 * - @subpage howtoDataParsers
94 * - @subpage howtoDataValidation
95 * - @subpage howtoDataWD
96 * - @subpage howtoDataManipulation
97 * - @subpage howtoDataPrinters
Radek Krejcif9943642021-04-26 10:18:21 +020098 * - @subpage howtoDataLYB
Radek Krejci8678fa42020-08-18 16:07:28 +020099 *
100 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
101 *
102 * Functions List (not assigned to above subsections)
103 * --------------------------------------------------
104 * - ::lyd_child()
105 * - ::lyd_child_no_keys()
106 * - ::lyd_parent()
107 * - ::lyd_owner_module()
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200108 * - ::lyd_get_value()
109 * - ::lyd_get_meta_value()
Radek Krejci8678fa42020-08-18 16:07:28 +0200110 * - ::lyd_find_xpath()
Michal Vasko3e1f6552021-01-14 09:27:55 +0100111 * - ::lyd_find_path()
Michal Vaskobb22b182021-06-14 08:14:21 +0200112 * - ::lyd_find_target()
Radek Krejci8678fa42020-08-18 16:07:28 +0200113 * - ::lyd_find_sibling_val()
114 * - ::lyd_find_sibling_first()
Michal Vasko1d4af6c2021-02-22 13:31:26 +0100115 * - ::lyd_find_sibling_opaq_next()
Radek Krejci8678fa42020-08-18 16:07:28 +0200116 * - ::lyd_find_meta()
117 *
118 * - ::lyd_path()
Michal Vasko2c1f66d2024-01-22 14:36:13 +0100119 * - ::lyd_find_target()
Radek Krejci8678fa42020-08-18 16:07:28 +0200120 *
121 * - ::lyd_lyb_data_length()
Radek Krejci75104122021-04-01 15:37:45 +0200122 *
123 *
124 * @section howtoDataMetadata Metadata Support
125 *
126 * YANG Metadata annotations are defined in [RFC 7952](https://tools.ietf.org/html/rfc7952) as YANG extension (and libyang
127 * [implements them as internal extension plugin](@ref howtoPluginsExtensions)). In practice, it allows to have XML
128 * attributes (there is also a special encoding for JSON) in YANG modeled data. libyang does not allow to have any XML
129 * attribute without the appropriate annotation definition describing the data as it is done e.g. for leafs. When an
130 * attribute without a matching annotation definition is found in the input data, it is:
131 * - silently dropped (with warning) or
132 * - an error is reported in case the ::LYD_PARSE_STRICT parser option is provided to the
133 * [parser function](@ref howtoDataParsers) or
134 * - stored into a generic ::lyd_attr structure without a connection with any YANG module in case the ::LYD_PARSE_OPAQ
135 * parser options is provided to the [parser function](@ref howtoDataParsers).
136 *
137 * There are some XML attributes, described by [YANG](https://tools.ietf.org/html/rfc7950) and
138 * [NETCONF](https://tools.ietf.org/html/rfc6241) specifications, which are not defined as annotations, but libyang
139 * implements them this way. In case of attributes in the YANG namespace (`insert`, `value` and `key` attributes
140 * for the NETCONF edit-config operation), they are defined in special libyang's internal module `yang`, which is
141 * available in each context and the content of this schema can be printed via
142 * [schema printers](@ref howtoSchemaPrinters).
143 *
144 * In case of the attributes described in [NETCONF specification](https://tools.ietf.org/html/rfc6241), the libyang's
145 * annotations structures are hidden and cannot be printed despite, internally, they are part of the `ietf-netconf`'s
146 * schema structure. Therefore, these attributes are available only when the `ietf-netconf` schema is loaded in the
147 * context. The definitions of these annotations are as follows:
148 *
149 * md:annotation operation {
150 * type enumeration {
151 * enum merge;
152 * enum replace;
153 * enum create;
154 * enum delete;
155 * enum remove;
156 * }
157 * }
158 *
159 * md:annotation type {
160 * type enumeration {
161 * enum subtree;
162 * enum xpath {
163 * if-feature "nc:xpath";
164 * }
165 * }
166 * }
167 *
168 * md:annotation select {
169 * type string;
170 * }
171 *
172 * Note, that, following the specification,
173 * - the `type` and `select` XML attributes are supposed to be unqualified (without namespace) and that
174 * - the `select`'s content is XPath and it is internally transformed by libyang into the format where the
175 * XML namespace prefixes are replaced by the YANG module names.
176 *
177 *
178 * @section howtoDataYangdata yang-data Support
179 *
180 * [RFC 8040](https://tools.ietf.org/html/rfc8040) defines ietf-restconf module, which includes yang-data extension. Despite
181 * the definition in the RESTCONF YANG module, the yang-data concept is quite generic and used even in modules without a
182 * connection to RESTCONF protocol. The extension allows to define a separated YANG trees usable separately from any
183 * datastore.
184 *
185 * libyang implements support for yang-data internally as an [extension plugin](@ref howtoPluginsExtensions). To ease the
186 * use of yang-data with libyang, there are several generic functions, which are usable for yang-data:
187 *
188 * - ::lyd_parse_ext_data()
189 * - ::lyd_parse_ext_op()
190 *
191 * - ::lys_getnext_ext()
192 *
193 * - ::lyd_new_ext_inner()
194 * - ::lyd_new_ext_list()
195 * - ::lyd_new_ext_term()
196 * - ::lyd_new_ext_any()
197 * - ::lyd_new_ext_path()
Michal Vasko1fd27412022-02-11 10:04:50 +0100198 *
199 * @section howtoDataMountpoint mount-point Support
200 *
201 * [RFC 8528](https://tools.ietf.org/html/rfc8528) defines mount-point extension in ietf-yang-schema-mount YANG module.
202 * This extension is supported out-of-the-box but to be able to parse data in a mount point, additional run-time data
203 * need to be provided by a callback:
204 *
205 * - ::ly_ctx_set_ext_data_clb()
Michal Vasko1c47f5f2022-03-29 11:38:40 +0200206 *
Michal Vaskob09f3ec2022-04-05 12:26:24 +0200207 * The mounted data can be parsed directly from data files or created manually using the standard functions. However,
208 * note that the mounted data use **their own context** created as needed. For *inline* data this means that any new
209 * request for a mount-point schema node results in a new context creation because it is impossible to determine
210 * whether any existing context can be used. Also, all these contexts created for the mounted data are **never**
211 * freed automatically except when the parent context is being freed. So, to avoid redundant context creation, it is
212 * always advised to use *shared-schema* for mount-points.
213 *
214 * In case it is not possible and *inline* mount point must be defined, it is still possible to avoid creating
215 * additional contexts. When the top-level node right under a schema node with a mount-point is created, always use
216 * this node for creation of any descendants. So, when using ::lyd_new_path(), use the node as `parent` and specify
217 * relative `path`.
Radek Krejci8678fa42020-08-18 16:07:28 +0200218 */
219
220/**
221 * @page howtoDataManipulation Manipulating Data
222 *
223 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
224 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
225 * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly
226 * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore,
227 * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure
228 * that the changed data tree is valid.
229 *
230 * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and
231 * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the
aPiecek6cf1d162023-11-08 16:07:00 +0100232 * nodes order from the YANG schema. A leaf-list instances are sorted based on the value and the ::lyplg_type_sort_clb
233 * function defined in the given datatype. A list instances are ordered similarly based on keys. In case the node is opaq
234 * (it is not connected with any schema node), it is placed to the end of the sibling node in the order they are inserted in.
235 * The only situation when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list
236 * instances. In such a case the ::lyd_insert_after(), ::lyd_insert_before() can be used and ::lyd_insert_child(),
237 * ::lyd_insert_sibling() adds the node after the existing instance of the closest preceding sibling node from the schema.
Radek Krejci8678fa42020-08-18 16:07:28 +0200238 *
239 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
240 * the node name and/or its parent (::lyd_new_inner(), ::lyd_new_term(), ::lyd_new_any(), ::lyd_new_list(), ::lyd_new_list2()
Michal Vasko493900b2020-12-08 10:23:41 +0100241 * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path() and
242 * ::lyd_new_path2()). The latter enables to create a whole path of nodes, requires less information
Radek Krejci8678fa42020-08-18 16:07:28 +0200243 * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using
244 * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single().
245 *
Radek Krejci8a5afc22021-03-12 11:10:47 +0100246 * Note, that in case the node is defined in an extension instance, the functions mentioned above do not work until you
247 * provide parent where the new node is supposed to be inserted. The reason is that all the functions searches for the
248 * top-level nodes directly inside modules. To create a top-level node defined in an extension instance, use
Radek Krejci95ccd1b2021-03-12 14:57:22 +0100249 * ::lyd_new_ext_inner(), ::lyd_new_ext_term(), ::lyd_new_ext_any(), ::lyd_new_ext_list() and ::lyd_new_ext_path()
250 * functions.
Radek Krejci8a5afc22021-03-12 11:10:47 +0100251 *
Radek Krejci75104122021-04-01 15:37:45 +0200252 * The [metadata](@ref howtoDataMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta()
Radek Krejci8678fa42020-08-18 16:07:28 +0200253 * and ::lyd_new_attr().
254 *
255 * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value
256 * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value
257 * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node
258 * (::lyd_value_validate()).
259 *
260 * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions.
261 * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when
262 * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more
263 * powerful insert.
264 *
265 * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose,
266 * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one
267 * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple
268 * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and
269 * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(),
270 * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used.
271 *
272 * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using
273 * ::lyd_free_all() (or other \b lyd_free_*() functions).
274 *
275 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
276 * same context.
277 *
278 * Modifying the single data tree in multiple threads is not safe.
279 *
280 * Functions List
281 * --------------
282 * - ::lyd_new_inner()
283 * - ::lyd_new_term()
Radek Krejci09c77442021-04-26 11:10:34 +0200284 * - ::lyd_new_term_bin()
Radek Krejci8678fa42020-08-18 16:07:28 +0200285 * - ::lyd_new_list()
286 * - ::lyd_new_list2()
stewegd4cde642024-02-21 08:34:16 +0100287 * - ::lyd_new_list3()
288 * - ::lyd_new_list3_bin()
Radek Krejci8678fa42020-08-18 16:07:28 +0200289 * - ::lyd_new_any()
290 * - ::lyd_new_opaq()
Michal Vasko8d65f852021-02-17 11:28:13 +0100291 * - ::lyd_new_opaq2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200292 * - ::lyd_new_attr()
Michal Vasko8d65f852021-02-17 11:28:13 +0100293 * - ::lyd_new_attr2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200294 * - ::lyd_new_meta()
295 * - ::lyd_new_path()
296 * - ::lyd_new_path2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200297 *
Radek Krejcidd2a7662021-03-12 11:26:34 +0100298 * - ::lyd_new_ext_inner()
Radek Krejci8a5afc22021-03-12 11:10:47 +0100299 * - ::lyd_new_ext_term()
Radek Krejci8247bae2021-03-12 11:47:02 +0100300 * - ::lyd_new_ext_list()
Radek Krejci0b963da2021-03-12 13:23:44 +0100301 * - ::lyd_new_ext_any()
Radek Krejci95ccd1b2021-03-12 14:57:22 +0100302 * - ::lyd_new_ext_path()
Radek Krejci8a5afc22021-03-12 11:10:47 +0100303 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200304 * - ::lyd_dup_single()
305 * - ::lyd_dup_siblings()
306 * - ::lyd_dup_meta_single()
307 *
308 * - ::lyd_insert_child()
309 * - ::lyd_insert_sibling()
310 * - ::lyd_insert_after()
311 * - ::lyd_insert_before()
312 *
313 * - ::lyd_value_compare()
314 * - ::lyd_value_validate()
315 *
316 * - ::lyd_change_term()
Radek Krejci09c77442021-04-26 11:10:34 +0200317 * - ::lyd_change_term_bin()
318 * - ::lyd_change_term_canon()
Radek Krejci8678fa42020-08-18 16:07:28 +0200319 * - ::lyd_change_meta()
320 *
321 * - ::lyd_compare_single()
322 * - ::lyd_compare_siblings()
323 * - ::lyd_compare_meta()
324 * - ::lyd_diff_tree()
325 * - ::lyd_diff_siblings()
326 * - ::lyd_diff_apply_all()
327 * - ::lyd_diff_apply_module()
328 * - ::lyd_diff_reverse_all()
329 * - ::lyd_diff_merge_all()
330 * - ::lyd_diff_merge_module()
331 * - ::lyd_diff_merge_tree()
332 *
333 * - ::lyd_merge_tree()
334 * - ::lyd_merge_siblings()
Michal Vaskocd3f6172021-05-18 16:14:50 +0200335 * - ::lyd_merge_module()
Radek Krejci8678fa42020-08-18 16:07:28 +0200336 *
337 * - ::lyd_unlink_tree()
338 *
339 * - ::lyd_free_all()
340 * - ::lyd_free_siblings()
341 * - ::lyd_free_tree()
342 * - ::lyd_free_meta_single()
343 * - ::lyd_free_meta_siblings()
344 * - ::lyd_free_attr_single()
345 * - ::lyd_free_attr_siblings()
346 *
Michal Vaskoa820c312021-02-05 16:33:00 +0100347 * - ::lyd_any_value_str()
Radek Krejci8678fa42020-08-18 16:07:28 +0200348 * - ::lyd_any_copy_value()
349 */
350
351/**
352 * @page howtoDataWD Default Values
353 *
354 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
355 * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to
356 * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the
357 * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata
358 * providing the information about the default values cannot be used. It means that when parsing data, the default nodes
359 * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected
360 * nodes are printed without the ietf-netconf-with-defaults metadata.
361 *
362 * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them
363 * via @ref dataprinterflags when printing data trees.
364 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
365 * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option.
366 * This is the default with-defaults mode of the printer. The data nodes do not contain any additional
367 * metadata information.
368 * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option.
369 * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or
370 * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by
371 * ::LYD_PRINT_WD_ALL option.
372 * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value
373 * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode.
374 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes
375 * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option.
376 *
377 * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation).
378 * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding
379 * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the
380 * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the
381 * appropriate metadata.
382 *
383 * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes
384 * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the
385 * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions.
386 *
387 * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member
388 * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container
389 * 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
390 * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added
391 * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option.
392 *
393 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
394 * use ::lyd_is_default() function.
395 *
396 * Functions List
397 * --------------
398 * - ::lyd_is_default()
399 * - ::lyd_new_implicit_all()
400 * - ::lyd_new_implicit_module()
401 * - ::lyd_new_implicit_tree()
402 */
403
404/**
Radek Krejcif9943642021-04-26 10:18:21 +0200405 * @page howtoDataLYB LYB Binary Format
406 *
407 * LYB (LibYang Binary) is a proprietary libyang binary data and file format. Its primary purpose is efficient
408 * serialization (printing) and deserialization (parsing). With this goal in mind, every term node value is stored
409 * in its new binary format specification according to its type. Following is the format for all types with explicit
410 * support out-of-the-box (meaning that have a special type plugin). Any derived types inherit the format of its
411 * closest type with explicit support (up to a built-in type).
Radek Krejci09c77442021-04-26 11:10:34 +0200412 *
Michal Vaskof1bcb5c2021-04-30 09:21:25 +0200413 * @section howtoDataLYBTypes Format of specific data type values
Radek Krejcif9943642021-04-26 10:18:21 +0200414 */
415
416/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200417 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200418 * @defgroup datatree Data Tree
Radek Krejcie7b95092019-05-15 11:03:07 +0200419 * @{
420 *
421 * Data structures and functions to manipulate and access instance data tree.
422 */
423
Michal Vasko64246d82020-08-19 12:35:00 +0200424/* *INDENT-OFF* */
425
Michal Vaskoa276cd92020-08-10 15:10:08 +0200426/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200427 * @brief Macro to iterate via all elements in a data tree. This is the opening part
428 * to the #LYD_TREE_DFS_END - they always have to be used together.
429 *
430 * The function follows deep-first search algorithm:
431 * <pre>
432 * 1
433 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100434 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +0200435 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100436 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +0200437 * </pre>
438 *
Radek Krejci0935f412019-08-20 16:15:18 +0200439 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200440 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
441 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200442 *
Michal Vasko56daf732020-08-10 10:57:18 +0200443 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
444 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200445 *
446 * Use with opening curly bracket '{' after the macro.
447 *
448 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200449 * @param ELEM Iterator intended for use in the block.
450 */
Michal Vasko56daf732020-08-10 10:57:18 +0200451#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200452 { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +0200453 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +0200454 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200455 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +0200456
457/**
458 * @brief Macro to iterate via all elements in a tree. This is the closing part
459 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
460 *
461 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200462 * START can be any of the lyd_node* types, ELEM variable must be a pointer
463 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200464 *
465 * Use with closing curly bracket '}' after the macro.
466 *
467 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200468 * @param ELEM Iterator intended for use in the block.
469 */
470
Michal Vasko56daf732020-08-10 10:57:18 +0200471#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200472 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200473 if (LYD_TREE_DFS_continue) { \
474 (LYD_TREE_DFS_next) = NULL; \
475 } else { \
Radek Krejcia1c1e542020-09-29 16:06:52 +0200476 (LYD_TREE_DFS_next) = lyd_child(ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200477 }\
478 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200479 /* no children */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100480 if ((ELEM) == (struct lyd_node *)(START)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200481 /* we are done, (START) has no children */ \
482 break; \
483 } \
484 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200485 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200486 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200487 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200488 /* parent is already processed, go to its sibling */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100489 (ELEM) = (struct lyd_node *)(ELEM)->parent; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200490 /* no siblings, go back through parents */ \
491 if ((ELEM)->parent == (START)->parent) { \
492 /* we are done, no next element to process */ \
493 break; \
494 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200495 (LYD_TREE_DFS_next) = (ELEM)->next; \
Christian Hopps59618972021-02-01 05:01:35 -0500496 } }
497
498/**
499 * @brief Macro to iterate via all schema node data instances in data siblings.
500 *
501 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
502 * @param SCHEMA Schema node of the searched instances.
503 * @param ELEM Iterator.
504 */
505#define LYD_LIST_FOR_INST(START, SCHEMA, ELEM) \
506 for (lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
507 (ELEM) && ((ELEM)->schema == (SCHEMA)); \
508 (ELEM) = (ELEM)->next)
509
510/**
511 * @brief Macro to iterate via all schema node data instances in data siblings allowing to modify the list itself.
512 *
513 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
514 * @param SCHEMA Schema node of the searched instances.
515 * @param NEXT Temporary storage to allow removing of the current iterator content.
516 * @param ELEM Iterator.
517 */
518#define LYD_LIST_FOR_INST_SAFE(START, SCHEMA, NEXT, ELEM) \
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100519 for ((NEXT) = (ELEM) = NULL, lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
Christian Hopps59618972021-02-01 05:01:35 -0500520 (ELEM) && ((ELEM)->schema == (SCHEMA)) ? ((NEXT) = (ELEM)->next, 1) : 0; \
521 (ELEM) = (NEXT))
Radek Krejcie7b95092019-05-15 11:03:07 +0200522
Michal Vasko64246d82020-08-19 12:35:00 +0200523/* *INDENT-ON* */
524
Radek Krejcie7b95092019-05-15 11:03:07 +0200525/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200526 * @brief Macro to get context from a data tree node.
527 */
Michal Vasko5c7a8322021-06-25 09:12:05 +0200528#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((const struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200529
530/**
aPiecek6cf1d162023-11-08 16:07:00 +0100531 * @brief Find out if the node is the only instance, i.e. it has no siblings with the same schema.
532 *
533 * @param[in] NODE Pointer to the struct lyd_node.
534 * @return 1 @p NODE is a single instance (is alone).
535 * @return 0 @p NODE is not alone.
536 */
537#define LYD_NODE_IS_ALONE(NODE) \
538 (((NODE)->prev == NODE) || \
539 (((NODE)->prev->schema != (NODE)->schema) && (!(NODE)->next || ((NODE)->schema != (NODE)->next->schema))))
540
541/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200542 * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and
543 * [printer](@ref howtoDataPrinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200544 */
545typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200546 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
547 LYD_XML, /**< XML instance data format */
548 LYD_JSON, /**< JSON instance data format */
Michal Vasko69730152020-10-09 16:30:07 +0200549 LYD_LYB /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200550} LYD_FORMAT;
551
552/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200553 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200554 */
555typedef enum {
Radek Krejci8678fa42020-08-18 16:07:28 +0200556 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 +0200557 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
Radek Krejci8678fa42020-08-18 16:07:28 +0200558 with the data after a successful call (including calling ::lyd_free_all() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200559 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 +0200560 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
561 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200562 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
563 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 +0200564 LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200565} LYD_ANYDATA_VALUETYPE;
566
567/** @} */
568
569/**
570 * @brief YANG data representation
571 */
572struct lyd_value {
Radek Krejci995784f2021-04-26 08:02:13 +0200573 const char *_canonical; /**< Should never be accessed directly, instead ::lyd_get_value() and ::lyd_get_meta_value()
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200574 should be used. Serves as a cache for the canonical value or the JSON
575 representation if no canonical value is defined. */
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200576 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
577 in the schema node of the data node since the type's store plugin can use other types/plugins for
578 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
579 target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data
580 stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type.
581 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
582 the type used to store data directly in the same lyd_value instance. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200583
Radek Krejcie7b95092019-05-15 11:03:07 +0200584 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200585 int8_t boolean; /**< 0 as false, 1 as true */
586 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200587 int8_t int8; /**< 8-bit signed integer */
588 int16_t int16; /**< 16-bit signed integer */
589 int32_t int32; /**< 32-bit signed integer */
590 int64_t int64; /**< 64-bit signed integer */
591 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200592 uint16_t uint16; /**< 16-bit unsigned integer */
593 uint32_t uint32; /**< 32-bit unsigned integer */
594 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200595 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
596 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskobb22b182021-06-14 08:14:21 +0200597 struct ly_path *target; /**< Instance-identifier target path, use ::lyd_find_target() to evaluate
598 it on data. */
Michal Vasko3ce79712021-05-04 11:44:20 +0200599 struct lyd_value_union *subvalue; /** Union value with some metadata. */
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200600
601 void *dyn_mem; /**< pointer to generic data type value stored in dynamic memory */
602 uint8_t fixed_mem[LYD_VALUE_FIXED_MEM_SIZE]; /**< fixed-size buffer for a generic data type value */
Radek Krejci8678fa42020-08-18 16:07:28 +0200603 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype
604 plugin's callbacks to work with the data.*/
Radek Krejcie7b95092019-05-15 11:03:07 +0200605};
606
607/**
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200608 * @brief Get the value in format specific to the type.
609 *
610 * Should be used for any types that do not have their specific representation in the ::lyd_value union.
611 *
612 * @param[in] value Pointer to the value structure to read from (struct ::lyd_value *).
613 * @param[out] type_val Pointer to the type-specific value structure.
614 */
615#define LYD_VALUE_GET(value, type_val) \
616 ((sizeof *(type_val) > LYD_VALUE_FIXED_MEM_SIZE) \
617 ? ((type_val) = (((value)->dyn_mem))) \
618 : ((type_val) = ((void *)((value)->fixed_mem))))
619
620/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200621 * @brief Special lyd_value structure for built-in union values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200622 *
Michal Vasko3ce79712021-05-04 11:44:20 +0200623 * Represents data with multiple types (union). The ::lyd_value_union.value contains representation according to
624 * one of the union's types. The ::lyd_value_union.prefix_data provides (possible) mappings from prefixes in
Michal Vasko495f4502021-04-27 14:48:05 +0200625 * the original value to YANG modules. These prefixes are necessary to parse original value to the union's subtypes.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200626 */
Michal Vasko3ce79712021-05-04 11:44:20 +0200627struct lyd_value_union {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200628 struct lyd_value value; /**< representation of the value according to the selected union's subtype
Michal Vasko3ce79712021-05-04 11:44:20 +0200629 (stored as ::lyd_value.realtype here) */
630 void *original; /**< Original value. */
631 size_t orig_len; /**< Original value length. */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200632 uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */
Radek Krejci8df109d2021-04-23 12:19:08 +0200633 LY_VALUE_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200634 whether a value is valid for the specific format or not on later validations
635 (instance-identifier in XML looks different than in JSON). */
Radek Krejci0b013302021-03-29 15:22:32 +0200636 void *prefix_data; /**< Format-specific data for prefix resolution (see ly_resolve_prefix()) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200637 const struct lysc_node *ctx_node; /**< Context schema node. */
638};
639
640/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200641 * @brief Special lyd_value structure for built-in bits values.
Michal Vasko2724b922021-04-28 13:46:31 +0200642 */
643struct lyd_value_bits {
644 char *bitmap; /**< bitmap of size ::lyplg_type_bits_bitmap_size(), if its value is
645 cast to an integer type of the corresponding size, can be used
646 directly as a bitmap */
647 struct lysc_type_bitenum_item **items; /**< list of set pointers to the specification of the set
648 bits ([sized array](@ref sizedarrays)) */
649};
650
651/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200652 * @brief Special lyd_value structure for built-in binary values.
Michal Vasko495f4502021-04-27 14:48:05 +0200653 */
654struct lyd_value_binary {
Michal Vasko74515d02021-06-11 11:13:11 +0200655 void *data; /**< pointer to the binary value */
656 size_t size; /**< size of @p data value in bytes */
Michal Vasko495f4502021-04-27 14:48:05 +0200657};
658
659/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200660 * @brief Special lyd_value structure for ietf-inet-types ipv4-address-no-zone values.
661 */
662struct lyd_value_ipv4_address_no_zone {
663 struct in_addr addr; /**< IPv4 address in binary */
664};
665
666/**
667 * @brief Special lyd_value structure for ietf-inet-types ipv4-address values.
668 */
669struct lyd_value_ipv4_address {
670 struct in_addr addr; /**< IPv4 address in binary */
671 const char *zone; /**< Optional address zone */
672};
673
674/**
675 * @brief Special lyd_value structure for ietf-inet-types ipv4-prefix values.
676 */
677struct lyd_value_ipv4_prefix {
678 struct in_addr addr; /**< IPv4 host address in binary */
679 uint8_t prefix; /**< prefix length (0 - 32) */
680};
681
682/**
683 * @brief Special lyd_value structure for ietf-inet-types ipv6-address-no-zone values.
684 */
685struct lyd_value_ipv6_address_no_zone {
686 struct in6_addr addr; /**< IPv6 address in binary */
687};
688
689/**
690 * @brief Special lyd_value structure for ietf-inet-types ipv6-address values.
691 */
692struct lyd_value_ipv6_address {
693 struct in6_addr addr; /**< IPv6 address in binary */
694 const char *zone; /**< Optional address zone */
695};
696
697/**
698 * @brief Special lyd_value structure for ietf-inet-types ipv6-prefix values.
699 */
700struct lyd_value_ipv6_prefix {
701 struct in6_addr addr; /**< IPv6 host address in binary */
702 uint8_t prefix; /**< prefix length (0 - 128) */
703};
704
705/**
706 * @brief Special lyd_value structure for ietf-yang-types date-and-time values.
707 */
708struct lyd_value_date_and_time {
709 time_t time; /**< UNIX timestamp */
710 char *fractions_s; /**< Optional fractions of a second */
Michal Vaskoc2dabc32021-11-22 14:01:41 +0100711 ly_bool unknown_tz; /**< Whether the value is in the special -00:00 timezone. */
Michal Vasko2b421d92021-05-18 16:33:36 +0200712};
713
714/**
Michal Vaskoddd76592022-01-17 13:34:48 +0100715 * @brief Special lyd_value structure for ietf-yang-types xpath1.0 values.
716 */
717struct lyd_value_xpath10 {
718 struct lyxp_expr *exp;
719 const struct ly_ctx *ctx;
720 void *prefix_data;
721 LY_VALUE_FORMAT format;
722};
723
724/**
aPiecek6cf1d162023-11-08 16:07:00 +0100725 * @brief Special lyd_value structure for lyds tree value.
726 */
727struct lyd_value_lyds_tree {
728 struct rb_node *rbt; /**< Root of the Red-black tree. */
729};
730
731/**
Michal Vasko52927e22020-03-16 17:26:14 +0100732 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200733 *
734 * 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 +0200735 * ::ly_ctx_get_module_implemented_ns() or ::ly_ctx_get_module_implemented(). While the module reference is always present,
Michal Vaskoad92b672020-11-12 13:11:31 +0100736 * the prefix member can be omitted in case it is not present in the source data as a reference to the default module/namespace.
Michal Vasko52927e22020-03-16 17:26:14 +0100737 */
Michal Vaskoad92b672020-11-12 13:11:31 +0100738struct ly_opaq_name {
739 const char *name; /**< node name, without prefix if any was defined */
740 const char *prefix; /**< identifier used in the qualified name as the prefix, can be NULL */
Michal Vasko26bbb272022-08-02 14:54:33 +0200741
Radek Krejci1798aae2020-07-14 13:26:06 +0200742 union {
Radek Krejci8df109d2021-04-23 12:19:08 +0200743 const char *module_ns; /**< format ::LY_VALUE_XML - XML namespace of the node element */
744 const char *module_name; /**< format ::LY_VALUE_JSON - (inherited) name of the module of the element */
Radek Krejci1798aae2020-07-14 13:26:06 +0200745 };
Michal Vasko52927e22020-03-16 17:26:14 +0100746};
747
748/**
749 * @brief Generic attribute structure.
750 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200751struct lyd_attr {
Michal Vasko52927e22020-03-16 17:26:14 +0100752 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100753 struct lyd_attr *next; /**< pointer to the next attribute */
Michal Vaskoad92b672020-11-12 13:11:31 +0100754 struct ly_opaq_name name; /**< attribute name with module information */
Michal Vasko501af032020-11-11 20:27:44 +0100755 const char *value; /**< attribute value */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200756 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vaskoddd76592022-01-17 13:34:48 +0100757 LY_VALUE_FORMAT format; /**< format of the attribute and any prefixes, ::LY_VALUE_XML or ::LY_VALUE_JSON */
Radek Krejciec9ad602021-01-04 10:46:30 +0100758 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko52927e22020-03-16 17:26:14 +0100759};
Radek Krejcie7b95092019-05-15 11:03:07 +0200760
Michal Vasko1bf09392020-03-27 12:38:10 +0100761#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 +0200762#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
763#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
764
765/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200766 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200767 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200768 * @{
769 *
770 * Various flags of data nodes.
771 *
772 * 1 - container 5 - anydata/anyxml
773 * 2 - list 6 - rpc/action
774 * 3 - leaf 7 - notification
775 * 4 - leaflist
776 *
777 * bit name 1 2 3 4 5 6 7
778 * ---------------------+-+-+-+-+-+-+-+
779 * 1 LYD_DEFAULT |x| |x|x| | | |
780 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100781 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100782 * +-+-+-+-+-+-+-+
783 * 3 LYD_NEW |x|x|x|x|x|x|x|
Michal Vaskoa65c72c2022-02-17 16:20:18 +0100784 * +-+-+-+-+-+-+-+
785 * 4 LYD_EXT |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200786 * ---------------------+-+-+-+-+-+-+-+
787 *
788 */
789
Michal Vaskoddd76592022-01-17 13:34:48 +0100790#define LYD_DEFAULT 0x01 /**< default (implicit) node */
791#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
792#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
793#define LYD_EXT 0x08 /**< node is the first sibling parsed as extension instance data */
Michal Vasko52927e22020-03-16 17:26:14 +0100794
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200795/** @} */
796
797/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200798 * @brief Generic structure for a data node.
799 */
800struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200801 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
802 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
803 used to get know that nodes are not equal, it cannot be used to decide that the
804 nodes are equal due to possible collisions. */
805 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100806 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200807 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
808 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
809 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
810 never NULL. If there is no sibling node, pointer points to the node
811 itself. In case of the first node, this pointer points to the last
812 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100813 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200814 void *priv; /**< private user data, not used by libyang */
Radek Krejcie7b95092019-05-15 11:03:07 +0200815};
816
817/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200818 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200819 */
820struct lyd_node_inner {
Michal Vasko9e685082021-01-29 14:49:09 +0100821 union {
822 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200823
Michal Vasko9e685082021-01-29 14:49:09 +0100824 struct {
825 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
826 values if list or hashes of all nodes of subtree in case of keyless
827 list). Note that while hash can be used to get know that nodes are
828 not equal, it cannot be used to decide that the nodes are equal due
829 to possible collisions. */
830 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
831 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
832 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
833 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
834 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
835 never NULL. If there is no sibling node, pointer points to the node
836 itself. In case of the first node, this pointer points to the last
837 node in the list. */
838 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
839 void *priv; /**< private user data, not used by libyang */
840 };
841 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200842
843 struct lyd_node *child; /**< pointer to the first child node. */
Michal Vasko8efac242023-03-30 08:24:56 +0200844 struct ly_ht *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
Michal Vasko26bbb272022-08-02 14:54:33 +0200845
Radek Krejci8678fa42020-08-18 16:07:28 +0200846#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 +0200847};
848
849/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100850 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200851 */
852struct lyd_node_term {
Michal Vasko9e685082021-01-29 14:49:09 +0100853 union {
854 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200855
Michal Vasko9e685082021-01-29 14:49:09 +0100856 struct {
857 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
858 values if list or hashes of all nodes of subtree in case of keyless
859 list). Note that while hash can be used to get know that nodes are
860 not equal, it cannot be used to decide that the nodes are equal due
861 to possible collisions. */
862 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
863 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
864 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
865 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
866 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
867 never NULL. If there is no sibling node, pointer points to the node
868 itself. In case of the first node, this pointer points to the last
869 node in the list. */
870 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
871 void *priv; /**< private user data, not used by libyang */
872 };
873 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200874
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200875 struct lyd_value value; /**< node's value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200876};
877
878/**
Christian Hopps61213e02021-04-12 20:41:32 -0400879 * @brief union for anydata/anyxml value representation.
880 */
881union lyd_any_value {
882 struct lyd_node *tree; /**< data tree */
883 const char *str; /**< Generic string data */
884 const char *xml; /**< Serialized XML data */
885 const char *json; /**< I-JSON encoded string */
886 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
887};
888
889/**
890 * @brief Data node structure for the anydata data tree nodes - anydata or
891 * anyxml.
Radek Krejcie7b95092019-05-15 11:03:07 +0200892 */
893struct lyd_node_any {
Michal Vasko9e685082021-01-29 14:49:09 +0100894 union {
895 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200896
Michal Vasko9e685082021-01-29 14:49:09 +0100897 struct {
898 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
899 values if list or hashes of all nodes of subtree in case of keyless
900 list). Note that while hash can be used to get know that nodes are
901 not equal, it cannot be used to decide that the nodes are equal due
902 to possible collisions. */
903 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
904 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
905 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
906 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
907 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
908 never NULL. If there is no sibling node, pointer points to the node
909 itself. In case of the first node, this pointer points to the last
910 node in the list. */
911 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
912 void *priv; /**< private user data, not used by libyang */
913 };
914 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200915
Christian Hopps61213e02021-04-12 20:41:32 -0400916 union lyd_any_value value; /**< pointer to the stored value representation of the anydata/anyxml node */
Michal Vasko9e685082021-01-29 14:49:09 +0100917 LYD_ANYDATA_VALUETYPE value_type; /**< type of the data stored as ::lyd_node_any.value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200918};
919
920/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +0100921 * @brief Get the name (associated with) of a data node. Works for opaque nodes as well.
922 *
923 * @param[in] node Node to examine.
924 * @return Data node name.
925 */
926#define LYD_NAME(node) ((node)->schema ? (node)->schema->name : ((struct lyd_node_opaq *)node)->name.name)
927
928/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200929 * @ingroup datatree
930 * @defgroup lydvalhints Value format hints.
Radek Krejci1798aae2020-07-14 13:26:06 +0200931 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200932 *
933 * Hints for the type of the data value.
934 *
935 * Any information about value types encoded in the format is hinted by these values.
Radek Krejci1798aae2020-07-14 13:26:06 +0200936 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200937#define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */
938#define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */
939#define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */
940#define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */
941#define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */
942#define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */
943#define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */
944/**
945 * @} lydvalhints
946 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200947
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200948/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200949 * @ingroup datatree
950 * @defgroup lydnodehints Node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200951 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200952 *
953 * Hints for the type of the data node.
954 *
955 * Any information about node types encoded in the format is hinted by these values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200956 */
957#define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */
958#define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200959/**
960 * @} lydnodehints
961 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200962
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200963/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200964 * @ingroup datatree
965 * @defgroup lydhints Value and node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200966 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200967 *
968 * Hints for the types of data node and its value.
969 *
970 * Any information about value and node types encoded in the format is hinted by these values.
971 * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints).
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200972 */
973#define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when
974 there is no encoding or it does not provide any additional information about
975 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
976 or [node hints](@ref lydnodehints). */
977#define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when
978 there is no encoding or it does not provide any additional information about
979 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
980 or [node hints](@ref lydnodehints). */
981/**
982 * @} lydhints
983 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200984
985/**
Michal Vasko52927e22020-03-16 17:26:14 +0100986 * @brief Data node structure for unparsed (opaque) nodes.
987 */
988struct lyd_node_opaq {
Michal Vasko9e685082021-01-29 14:49:09 +0100989 union {
990 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200991
Michal Vasko9e685082021-01-29 14:49:09 +0100992 struct {
993 uint32_t hash; /**< always 0 */
994 uint32_t flags; /**< always 0 */
995 const struct lysc_node *schema; /**< always NULL */
996 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
997 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
998 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
999 never NULL. If there is no sibling node, pointer points to the node
1000 itself. In case of the first node, this pointer points to the last
1001 node in the list. */
1002 struct lyd_meta *meta; /**< always NULL */
1003 void *priv; /**< private user data, not used by libyang */
1004 };
1005 }; /**< common part corresponding to ::lyd_node */
Michal Vasko52927e22020-03-16 17:26:14 +01001006
Michal Vasko501af032020-11-11 20:27:44 +01001007 struct lyd_node *child; /**< pointer to the child node (compatible with ::lyd_node_inner) */
1008
Michal Vaskoad92b672020-11-12 13:11:31 +01001009 struct ly_opaq_name name; /**< node name with module information */
Michal Vasko52927e22020-03-16 17:26:14 +01001010 const char *value; /**< original value */
Michal Vaskod0c3bac2021-05-11 09:44:43 +02001011 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Radek Krejci8df109d2021-04-23 12:19:08 +02001012 LY_VALUE_FORMAT format; /**< format of the node and any prefixes, ::LY_VALUE_XML or ::LY_VALUE_JSON */
Radek Krejciec9ad602021-01-04 10:46:30 +01001013 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko501af032020-11-11 20:27:44 +01001014
Michal Vasko9e685082021-01-29 14:49:09 +01001015 struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */
Michal Vasko52927e22020-03-16 17:26:14 +01001016 const struct ly_ctx *ctx; /**< libyang context */
1017};
1018
1019/**
stewegf9041a22024-01-18 13:29:12 +01001020 * @brief Structure of leafref links record.
1021 */
1022struct lyd_leafref_links_rec {
1023 const struct lyd_node_term *node; /** pointer to the data node itself */
1024 const struct lyd_node_term **leafref_nodes; /** list of the leafref pointing to this data node [sized array](@ref sizedarrays)),
1025 By default it is empty. It is filled automatically by validation function of
1026 leafref nodes, which are valid and are not using 'require-instance false;'.
1027 It can also be populated based on manual request using
1028 [link api](@ref lyd_leafref_link_node_tree). Freeing of the resources is
1029 automatic. */
steweg67388952024-01-25 12:14:50 +01001030 const struct lyd_node_term **target_nodes; /** list of leafref target data nodes [sized array](@ref sizedarrays)). Byt default
1031 it is empty. The logic is the same as for [leafref_nodes](@ref leafref_nodes) and
1032 is filled only for leafrefs */
stewegf9041a22024-01-18 13:29:12 +01001033};
1034
1035/**
Radek Krejcia1c1e542020-09-29 16:06:52 +02001036 * @brief Get the generic parent pointer of a data node.
1037 *
1038 * @param[in] node Node whose parent pointer to get.
1039 * @return Pointer to the parent node of the @p node.
1040 * @return NULL in case of the top-level node or if the @p node is NULL itself.
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001041 */
Michal Vasko4e947032024-01-22 12:17:51 +01001042static inline struct lyd_node *
1043lyd_parent(const struct lyd_node *node)
1044{
1045 return (node && node->parent) ? &node->parent->node : NULL;
1046}
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001047
1048/**
Radek Krejcia1c1e542020-09-29 16:06:52 +02001049 * @brief Get the child pointer of a generic data node.
Radek Krejcie7b95092019-05-15 11:03:07 +02001050 *
Radek Krejcia1c1e542020-09-29 16:06:52 +02001051 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
1052 *
1053 * If you need to skip key children, use ::lyd_child_no_keys().
1054 *
1055 * @param[in] node Node to use.
1056 * @return Pointer to the first child node (if any) of the @p node.
Radek Krejcie7b95092019-05-15 11:03:07 +02001057 */
Michal Vasko4e947032024-01-22 12:17:51 +01001058static inline struct lyd_node *
1059lyd_child(const struct lyd_node *node)
1060{
1061 if (!node) {
1062 return NULL;
1063 }
1064
1065 if (!node->schema) {
1066 /* opaq node */
1067 return ((const struct lyd_node_opaq *)node)->child;
1068 }
1069
1070 if (node->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
1071 return ((const struct lyd_node_inner *)node)->child;
1072 }
1073
1074 return NULL;
1075}
Radek Krejcia1c1e542020-09-29 16:06:52 +02001076
1077/**
1078 * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST.
1079 *
1080 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
1081 *
1082 * If you need to take key children into account, use ::lyd_child().
1083 *
1084 * @param[in] node Node to use.
1085 * @return Pointer to the first child node (if any) of the @p node.
1086 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001087LIBYANG_API_DECL struct lyd_node *lyd_child_no_keys(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +02001088
1089/**
Michal Vaskoc193ce92020-03-06 11:04:48 +01001090 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
1091 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
1092 *
Michal Vaskofcdf3012020-11-23 16:57:03 +01001093 * Also works for opaque nodes, if it is possible to resolve the module.
1094 *
Michal Vaskoc193ce92020-03-06 11:04:48 +01001095 * @param[in] node Data node to examine.
1096 * @return Module owner of the node.
1097 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001098LIBYANG_API_DECL const struct lys_module *lyd_owner_module(const struct lyd_node *node);
Michal Vaskoc193ce92020-03-06 11:04:48 +01001099
1100/**
Michal Vasko420cc252023-08-24 08:14:24 +02001101 * @brief Get the module of a node. Useful mainly for opaque nodes.
1102 *
1103 * @param[in] node Node to examine.
1104 * @return Module of the node.
1105 */
1106LIBYANG_API_DECL const struct lys_module *lyd_node_module(const struct lyd_node *node);
1107
1108/**
Radek Krejci19611252020-10-04 13:54:53 +02001109 * @brief Check whether a node value equals to its default one.
1110 *
1111 * @param[in] node Term node to test.
1112 * @return false (no, it is not a default node) or true (yes, it is default)
1113 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001114LIBYANG_API_DECL ly_bool lyd_is_default(const struct lyd_node *node);
Radek Krejci19611252020-10-04 13:54:53 +02001115
1116/**
Radek Krejcica989142020-11-05 11:32:22 +01001117 * @brief Learn the relative position of a list or leaf-list instance within other instances of the same schema node.
1118 *
1119 * @param[in] instance List or leaf-list instance to get the position of.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001120 * @return 0 on error.
1121 * @return Positive integer of the @p instance position.
Radek Krejcica989142020-11-05 11:32:22 +01001122 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001123LIBYANG_API_DECL uint32_t lyd_list_pos(const struct lyd_node *instance);
Radek Krejcica989142020-11-05 11:32:22 +01001124
1125/**
Radek Krejci4233f9b2020-11-05 12:38:35 +01001126 * @brief Get the first sibling of the given node.
1127 *
1128 * @param[in] node Node which first sibling is going to be the result.
1129 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
1130 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001131LIBYANG_API_DECL struct lyd_node *lyd_first_sibling(const struct lyd_node *node);
Radek Krejci4233f9b2020-11-05 12:38:35 +01001132
1133/**
Michal Vasko60ea6352020-06-29 13:39:39 +02001134 * @brief Learn the length of LYB data.
1135 *
1136 * @param[in] data LYB data to examine.
1137 * @return Length of the LYB data chunk,
1138 * @return -1 on error.
1139 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001140LIBYANG_API_DECL int lyd_lyb_data_length(const char *data);
Michal Vasko60ea6352020-06-29 13:39:39 +02001141
1142/**
Michal Vaskobfff6ac2022-02-23 16:22:53 +01001143 * @brief Check node parsed into an opaque node for the reason (error) why it could not be parsed as data node.
1144 *
1145 * The node is expected to be produced by a parser and must either have no parent or a data node parent (not opaque).
1146 *
1147 * @param[in] node Opaque node to check.
1148 * @return LY_EINVAL if @p node is in some way unexpected (even valid);
1149 * @return LY_ERR value of the reason.
1150 */
1151LIBYANG_API_DECL LY_ERR lyd_parse_opaq_error(const struct lyd_node *node);
1152
1153/**
Christian Hopps46bd21b2021-04-27 09:43:58 -04001154 * @brief Get the (canonical) value of a lyd_value.
1155 *
Michal Vasko33876022021-04-27 16:42:24 +02001156 * Whenever possible, ::lyd_get_value() or ::lyd_get_meta_value() should be used instead.
1157 *
Christian Hopps46bd21b2021-04-27 09:43:58 -04001158 * @param[in] ctx Context for the value
Michal Vasko33876022021-04-27 16:42:24 +02001159 * @param[in] value Value structure to use.
Christian Hopps46bd21b2021-04-27 09:43:58 -04001160 * @return Canonical value.
1161 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001162LIBYANG_API_DECL const char *lyd_value_get_canonical(const struct ly_ctx *ctx, const struct lyd_value *value);
Christian Hopps46bd21b2021-04-27 09:43:58 -04001163
1164/**
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001165 * @brief Get the (canonical) value of a data node.
1166 *
1167 * @param[in] node Data node to use.
1168 * @return Canonical value.
1169 */
Michal Vasko4e947032024-01-22 12:17:51 +01001170static inline const char *
1171lyd_get_value(const struct lyd_node *node)
1172{
1173 if (!node) {
1174 return NULL;
1175 }
1176
1177 if (!node->schema) {
1178 return ((const struct lyd_node_opaq *)node)->value;
1179 } else if (node->schema->nodetype & LYD_NODE_TERM) {
1180 const struct lyd_value *value = &((const struct lyd_node_term *)node)->value;
1181
1182 return value->_canonical ? value->_canonical : lyd_value_get_canonical(LYD_CTX(node), value);
1183 }
1184
1185 return NULL;
1186}
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001187
1188/**
Michal Vaskoa820c312021-02-05 16:33:00 +01001189 * @brief Get anydata string value.
1190 *
1191 * @param[in] any Anyxml/anydata node to read from.
1192 * @param[out] value_str String representation of the value.
1193 * @return LY_ERR value.
1194 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001195LIBYANG_API_DECL LY_ERR lyd_any_value_str(const struct lyd_node *any, char **value_str);
Michal Vaskoa820c312021-02-05 16:33:00 +01001196
1197/**
Michal Vaskoc0004272020-08-06 08:32:34 +02001198 * @brief Copy anydata value from one node to another. Target value is freed first.
1199 *
1200 * @param[in,out] trg Target node.
1201 * @param[in] value Source value, may be NULL when the target value is only freed.
1202 * @param[in] value_type Source value type.
1203 * @return LY_ERR value.
1204 */
Michal Vasko55896172022-02-17 10:47:21 +01001205LIBYANG_API_DECL LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value,
1206 LYD_ANYDATA_VALUETYPE value_type);
Michal Vaskoc0004272020-08-06 08:32:34 +02001207
1208/**
Michal Vasko21c11c22023-10-09 16:06:58 +02001209 * @brief Get schema node of a data node. Useful especially for opaque nodes.
1210 *
1211 * @param[in] node Data node to use.
1212 * @return Schema node represented by data @p node, NULL if there is none.
1213 */
Michal Vasko7e4a6c72023-10-09 16:23:40 +02001214LIBYANG_API_DECL const struct lysc_node *lyd_node_schema(const struct lyd_node *node);
Michal Vasko21c11c22023-10-09 16:06:58 +02001215
1216/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001217 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001218 *
Radek Krejcidd2a7662021-03-12 11:26:34 +01001219 * To create list, use ::lyd_new_list() or ::lyd_new_list2().
1220 *
1221 * To create a top-level inner node defined in an extension instance, use ::lyd_new_ext_inner().
1222 *
Michal Vasko013a8182020-03-03 10:46:53 +01001223 * @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 +01001224 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001225 * @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 +01001226 * @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
1227 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001228 * @param[out] node Optional created node.
1229 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001230 */
Michal Vasko55896172022-02-17 10:47:21 +01001231LIBYANG_API_DECL LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name,
1232 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001233
1234/**
Radek Krejcidd2a7662021-03-12 11:26:34 +01001235 * @brief Create a new top-level inner node defined in the given extension instance.
1236 *
1237 * To create list, use ::lyd_new_list() or ::lyd_new_list2().
1238 *
1239 * To create an inner node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1240 * node of a standard module's tree, use ::lyd_new_inner().
1241 *
1242 * @param[in] ext Extension instance where the inner node being created is defined.
1243 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
1244 * @param[out] node The created node.
1245 * @return LY_ERR value.
1246 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001247LIBYANG_API_DECL LY_ERR lyd_new_ext_inner(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node);
Radek Krejcidd2a7662021-03-12 11:26:34 +01001248
1249/**
stewegd4cde642024-02-21 08:34:16 +01001250 * @ingroup datatree
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001251 * @defgroup newvaloptions New value creation options
stewegd4cde642024-02-21 08:34:16 +01001252 *
1253 * Various options to change lyd_new_*() behavior. The LYD_NEW_VAL* can be used within any API, others
1254 * are API specific
1255 *
1256 * Default behavior:
1257 * - the input data nodes or RPC/Action is taken into account
1258 * - the value is being validated with all possible validations, which doesn't require existence of any other data nodes
1259 * - the input value is expected to be in JSON format
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001260 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
1261 *
1262 * Default behavior specific for lyd_new_path*() functions:
stewegd4cde642024-02-21 08:34:16 +01001263 * - if the target node already exists (and is not default), an error is returned.
1264 * - the whole path to the target node is created (with any missing parents) if necessary.
stewegd4cde642024-02-21 08:34:16 +01001265 * - during creation of new metadata, the nodes will have default flag set
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001266 * - string value is copied and stored internally during any node creation
stewegd4cde642024-02-21 08:34:16 +01001267 * @{
1268 */
1269
1270#define LYD_NEW_VAL_OUTPUT 0x01 /**< Flag in case the @p parent is RPC/Action. If value is 0, the input's data nodes of the RPC/Action are
1271 taken into consideration. Otherwise, the output's data node is going to be created. */
1272#define LYD_NEW_VAL_STORE_ONLY 0x02 /**< Whether to perform only storing operation with no or minimum valitions */
1273#define LYD_NEW_VAL_BIN_VALUE 0x04 /**< Interpret the provided leaf/leaf-list @p value as being in the binary
1274 ::LY_VALUE_LYB format, to learn what exactly is expected see @ref howtoDataLYB. */
1275#define LYD_NEW_VAL_CANON_VALUE 0x08 /**< Interpret the provided leaf/leaf-list @p value as being in the canonical
1276 (or JSON if no defined) ::LY_VALUE_CANON format. If it is not, it may lead
1277 to unexpected behavior. */
1278#define LYD_NEW_META_CLEAR_DFLT 0x10 /**< Whether to clear the default flag starting from @p parent, recursively all NP containers. */
1279#define LYD_NEW_PATH_UPDATE 0x20 /**< If the target node exists, is a leaf, and it is updated with a new value or its
1280 default flag is changed, it is returned. If the target node exists and is not
1281 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
1282 no error set. */
1283#define LYD_NEW_PATH_OPAQ 0x40 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
1284 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
1285 invalid value (leaf/leaf-list), it is created as opaque. */
1286#define LYD_NEW_PATH_WITH_OPAQ 0x80 /**< Consider opaque nodes normally when searching for existing nodes. */
1287#define LYD_NEW_ANY_USE_VALUE 0x100 /**< Whether to use dynamic @p value or make a copy. */
1288
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001289/** @} newvaloptions */
stewegd4cde642024-02-21 08:34:16 +01001290
1291/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001292 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001293 *
1294 * @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 +01001295 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001296 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001297 * @param[in] options Bitmask of options, see @ref newvaloptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001298 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +01001299 * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier
stewegd4cde642024-02-21 08:34:16 +01001300 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for key-less lists.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001301 * In case options include ::LYD_NEW_VAL_BIN, every key value must be followed by its length.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001302 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001303 */
Michal Vasko55896172022-02-17 10:47:21 +01001304LIBYANG_API_DECL LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name,
stewegd4cde642024-02-21 08:34:16 +01001305 uint32_t options, struct lyd_node **node, ...);
Michal Vasko208e6d62021-06-28 11:23:50 +02001306
1307/**
Radek Krejci8247bae2021-03-12 11:47:02 +01001308 * @brief Create a new top-level list node defined in the given extension instance.
1309 *
1310 * To create a list node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1311 * list node of a standard module's tree, use ::lyd_new_list() or ::lyd_new_list2().
1312 *
1313 * @param[in] ext Extension instance where the list node being created is defined.
1314 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001315 * @param[in] options Bitmask of options, see @ref newvaloptions.
Radek Krejci8247bae2021-03-12 11:47:02 +01001316 * @param[out] node The created node.
1317 * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier
stewegd4cde642024-02-21 08:34:16 +01001318 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for key-less lists.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001319 * In case options include ::LYD_NEW_VAL_BIN, every key value must be followed by its length.
Radek Krejci8247bae2021-03-12 11:47:02 +01001320 * @return LY_ERR value.
1321 */
stewegd4cde642024-02-21 08:34:16 +01001322LIBYANG_API_DECL LY_ERR lyd_new_ext_list(const struct lysc_ext_instance *ext, const char *name, uint32_t options,
1323 struct lyd_node **node, ...);
Radek Krejci8247bae2021-03-12 11:47:02 +01001324
1325/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001326 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001327 *
1328 * @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 +01001329 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001330 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1331 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
1332 * 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 +02001333 * Use NULL or string of length 0 in case of key-less list.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001334 * @param[in] options Bitmask of options, see @ref newvaloptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001335 * @param[out] node Optional created node.
1336 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001337 */
Michal Vasko55896172022-02-17 10:47:21 +01001338LIBYANG_API_DECL LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name,
stewegd4cde642024-02-21 08:34:16 +01001339 const char *keys, uint32_t options, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001340
1341/**
Michal Vasko2c1e3272023-10-17 14:08:35 +02001342 * @brief Create a new list node in the data tree.
1343 *
stewegd4cde642024-02-21 08:34:16 +01001344 * To create a term node based on binary value, use ::lyd_new_list3_bin().
1345 *
Michal Vasko2c1e3272023-10-17 14:08:35 +02001346 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1347 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1348 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Michal Vasko2c1e3272023-10-17 14:08:35 +02001349 * @param[in] key_values Ordered key string values of the new list instance, all must be set.
1350 * @param[in] value_lengths Array of lengths of each @p key_values, may be NULL if @p key_values are 0-terminated strings.
stewegd4cde642024-02-21 08:34:16 +01001351 * @param[in] options Bitmask of options, see @ref newvalueoptions.
Michal Vasko2c1e3272023-10-17 14:08:35 +02001352 * @param[out] node Optional created node.
1353 * @return LY_ERR value.
1354 */
1355LIBYANG_API_DECL LY_ERR lyd_new_list3(struct lyd_node *parent, const struct lys_module *module, const char *name,
stewegd4cde642024-02-21 08:34:16 +01001356 const char **key_values, uint32_t *value_lengths, uint32_t options, struct lyd_node **node);
Michal Vasko2c1e3272023-10-17 14:08:35 +02001357
1358/**
stewegd4cde642024-02-21 08:34:16 +01001359 * @brief Create a new list node in the data tree based on binary value.
Michal Vasko2c1e3272023-10-17 14:08:35 +02001360 *
1361 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1362 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1363 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
stewegd4cde642024-02-21 08:34:16 +01001364 * @param[in] key_values Ordered key string values of the new list instance, all must be set.
1365 * @param[in] value_lengths Array of lengths of each @p key_values, may be NULL if @p key_values are 0-terminated strings.
1366 * @param[in] options Bitmask of options, see @ref newvalueoptions.
Michal Vasko2c1e3272023-10-17 14:08:35 +02001367 * @param[out] node Optional created node.
1368 * @return LY_ERR value.
1369 */
1370LIBYANG_API_DECL LY_ERR lyd_new_list3_bin(struct lyd_node *parent, const struct lys_module *module, const char *name,
stewegd4cde642024-02-21 08:34:16 +01001371 const void **key_values, uint32_t *value_lengths, uint32_t options, struct lyd_node **node);
Michal Vasko2c1e3272023-10-17 14:08:35 +02001372
1373/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001374 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001375 *
Radek Krejci8a5afc22021-03-12 11:10:47 +01001376 * To create a top-level term node defined in an extension instance, use ::lyd_new_ext_term().
stewegd4cde642024-02-21 08:34:16 +01001377 * To create a term node based on binary value, use ::lyd_new_term_bin().
Radek Krejci8a5afc22021-03-12 11:10:47 +01001378 *
Michal Vasko013a8182020-03-03 10:46:53 +01001379 * @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 +01001380 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001381 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001382 * @param[in] value Value of the node in JSON format unless changed by @p options.
1383 * @param[in] options Bitmask of options, see @ref newvaloptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001384 * @param[out] node Optional created node.
1385 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001386 */
Michal Vasko55896172022-02-17 10:47:21 +01001387LIBYANG_API_DECL LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name,
stewegd4cde642024-02-21 08:34:16 +01001388 const char *value, uint32_t options, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001389
1390/**
stewegd4cde642024-02-21 08:34:16 +01001391 * @brief Create a new term node in the data tree based on binary value.
Radek Krejci09c77442021-04-26 11:10:34 +02001392 *
1393 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1394 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1395 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
1396 * @param[in] value Binary value of the node. To learn what exactly is expected see @ref howtoDataLYB.
1397 * @param[in] value_len Length of @p value.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001398 * @param[in] options Bitmask of options, see @ref newvaloptions.
Radek Krejci09c77442021-04-26 11:10:34 +02001399 * @param[out] node Optional created node.
1400 * @return LY_ERR value.
1401 */
Michal Vasko55896172022-02-17 10:47:21 +01001402LIBYANG_API_DECL LY_ERR lyd_new_term_bin(struct lyd_node *parent, const struct lys_module *module, const char *name,
stewegd4cde642024-02-21 08:34:16 +01001403 const void *value, size_t value_len, uint32_t options, struct lyd_node **node);
Radek Krejci09c77442021-04-26 11:10:34 +02001404
1405/**
Radek Krejci8a5afc22021-03-12 11:10:47 +01001406 * @brief Create a new top-level term node defined in the given extension instance.
1407 *
1408 * To create a term node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1409 * node of a standard module's tree, use ::lyd_new_term().
1410 *
1411 * @param[in] ext Extension instance where the term node being created is defined.
1412 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001413 * @param[in] value Value of the node in JSON format unless changed by @p options.
1414 * @param[in] value_len Length of @p value.
1415 * @param[in] options Bitmask of options, see @ref newvaloptions.
Radek Krejci8a5afc22021-03-12 11:10:47 +01001416 * @param[out] node The created node.
1417 * @return LY_ERR value.
1418 */
stewegd4cde642024-02-21 08:34:16 +01001419LIBYANG_API_DECL LY_ERR lyd_new_ext_term(const struct lysc_ext_instance *ext, const char *name, const void *value,
1420 size_t value_len, uint32_t options, struct lyd_node **node);
Radek Krejci8a5afc22021-03-12 11:10:47 +01001421
1422/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001423 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001424 *
Radek Krejci0b963da2021-03-12 13:23:44 +01001425 * To create a top-level any node defined in an extension instance, use ::lyd_new_ext_any().
1426 *
Michal Vasko013a8182020-03-03 10:46:53 +01001427 * @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 +01001428 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001429 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
Michal Vasko2a4ab2b2021-03-04 15:52:40 +01001430 * @param[in] value Value for the node. Expected type is determined by @p value_type.
stewegd4cde642024-02-21 08:34:16 +01001431 * @param[in] options Bitmask of options, see @ref newvalueoptions.
Michal Vasko013a8182020-03-03 10:46:53 +01001432 * @param[in] value_type Type of the provided value in @p value.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001433 * @param[out] node Optional created node.
1434 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001435 */
Michal Vasko55896172022-02-17 10:47:21 +01001436LIBYANG_API_DECL LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name,
stewegd4cde642024-02-21 08:34:16 +01001437 const void *value, uint32_t options, LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001438
1439/**
Radek Krejci0b963da2021-03-12 13:23:44 +01001440 * @brief Create a new top-level any node defined in the given extension instance.
1441 *
1442 * To create an any node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1443 * any node of a standard module's tree, use ::lyd_new_any().
1444 *
1445 * @param[in] ext Extension instance where the any node being created is defined.
1446 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
1447 * @param[in] value Value for the node. Expected type is determined by @p value_type.
stewegd4cde642024-02-21 08:34:16 +01001448 * @param[in] options Bitmask of options, see @ref newvalueoptions.
Radek Krejci0b963da2021-03-12 13:23:44 +01001449 * @param[in] value_type Type of the provided value in @p value.
1450 * @param[out] node The created node.
1451 * @return LY_ERR value.
1452 */
Michal Vasko55896172022-02-17 10:47:21 +01001453LIBYANG_API_DECL LY_ERR lyd_new_ext_any(const struct lysc_ext_instance *ext, const char *name, const void *value,
stewegd4cde642024-02-21 08:34:16 +01001454 uint32_t options, LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node);
Radek Krejci0b963da2021-03-12 13:23:44 +01001455
1456/**
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001457 * @brief Create a new metadata.
Michal Vaskod86997b2020-05-26 15:19:54 +02001458 *
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001459 * @param[in] ctx libyang context.
Michal Vasko871a0252020-11-11 18:35:24 +01001460 * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL.
Michal Vasko00cbf532020-06-15 13:58:47 +02001461 * @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 +02001462 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001463 * 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 +02001464 * @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 +02001465 * value, the JSON format is expected (module names instead of prefixes).
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001466 * @param[in] options Bitmask of options, see @ref newvaloptions.
Michal Vasko871a0252020-11-11 18:35:24 +01001467 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001468 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +02001469 */
Michal Vasko55896172022-02-17 10:47:21 +01001470LIBYANG_API_DECL LY_ERR lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module,
stewegd4cde642024-02-21 08:34:16 +01001471 const char *name, const char *val_str, uint32_t options, struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +02001472
1473/**
Michal Vaskoba696702020-11-11 19:12:45 +01001474 * @brief Create new metadata from an opaque node attribute if possible.
1475 *
1476 * @param[in] ctx libyang context.
1477 * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001478 * @param[in] options Bitmask of options, see @ref newvaloptions.
Michal Vaskoba696702020-11-11 19:12:45 +01001479 * @param[in] attr Opaque node attribute to parse into metadata.
1480 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
1481 * @return LY_SUCCESS on success.
1482 * @return LY_ENOT if the attribute could not be parsed into any metadata.
1483 * @return LY_ERR on error.
1484 */
stewegd4cde642024-02-21 08:34:16 +01001485LIBYANG_API_DECL LY_ERR lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, uint32_t options,
Michal Vasko55896172022-02-17 10:47:21 +01001486 const struct lyd_attr *attr, struct lyd_meta **meta);
Michal Vaskoba696702020-11-11 19:12:45 +01001487
1488/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001489 * @brief Create a new JSON opaque node in the data tree. To create an XML opaque node, use ::lyd_new_opaq2().
Michal Vasko00cbf532020-06-15 13:58:47 +02001490 *
aPiecekb0445f22021-06-24 11:34:07 +02001491 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
Michal Vasko00cbf532020-06-15 13:58:47 +02001492 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1493 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001494 * @param[in] value Optional node value.
1495 * @param[in] prefix Optional node prefix, must be equal to @p module_name if set.
Michal Vasko00cbf532020-06-15 13:58:47 +02001496 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001497 * @param[out] node Optional created node.
1498 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001499 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001500LIBYANG_API_DECL LY_ERR lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001501 const char *prefix, const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001502
1503/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001504 * @brief Create a new XML opaque node in the data tree. To create a JSON opaque node, use ::lyd_new_opaq().
1505 *
aPiecekb0445f22021-06-24 11:34:07 +02001506 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
Michal Vasko8d65f852021-02-17 11:28:13 +01001507 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1508 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001509 * @param[in] value Optional node value.
1510 * @param[in] prefix Optional node prefix.
Michal Vasko8d65f852021-02-17 11:28:13 +01001511 * @param[in] module_ns Node module namespace.
1512 * @param[out] node Optional created node.
1513 * @return LY_ERR value.
1514 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001515LIBYANG_API_DECL LY_ERR lyd_new_opaq2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Michal Vasko0ab974d2021-02-24 13:18:26 +01001516 const char *prefix, const char *module_ns, struct lyd_node **node);
Michal Vasko8d65f852021-02-17 11:28:13 +01001517
1518/**
1519 * @brief Create new JSON attribute for an opaque data node. To create an XML attribute, use ::lyd_new_attr2().
Michal Vasko00cbf532020-06-15 13:58:47 +02001520 *
Michal Vasko5e60e872021-11-09 09:49:27 +01001521 * Note that for an attribute to be later resolved as YANG metadata, it needs @p module_nane and a prefix in @p name.
1522 *
1523 * @param[in] parent Parent opaque node for the attribute.
1524 * @param[in] module_name Optional name of the module of the attribute.
1525 * @param[in] name Attribute name with optional prefix, which is a module name. If the prefix is set, it is also stored
1526 * as the explicit module name if @p module_name is not set.
1527 * @param[in] value Optional attribute value.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001528 * @param[out] attr Optional created attribute.
1529 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001530 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001531LIBYANG_API_DECL LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value,
Michal Vasko8d65f852021-02-17 11:28:13 +01001532 struct lyd_attr **attr);
1533
1534/**
1535 * @brief Create new XML attribute for an opaque data node. To create a JSON attribute, use ::lyd_new_attr().
1536 *
Michal Vasko5e60e872021-11-09 09:49:27 +01001537 * Note that for an attribute to be later resolved as YANG metadata, it needs @p module_ns and a prefix in @p name.
1538 *
Michal Vasko8d65f852021-02-17 11:28:13 +01001539 * @param[in] parent Parent opaque node for the attribute being created.
Michal Vasko5e60e872021-11-09 09:49:27 +01001540 * @param[in] module_ns Optional namespace of the module of the attribute.
1541 * @param[in] name Attribute name with optional prefix, which is an XML prefix.
1542 * @param[in] value Optional attribute value.
Michal Vasko8d65f852021-02-17 11:28:13 +01001543 * @param[out] attr Optional created attribute.
1544 * @return LY_ERR value.
1545 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001546LIBYANG_API_DECL LY_ERR lyd_new_attr2(struct lyd_node *parent, const char *module_ns, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +02001547 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +02001548
1549/**
Michal Vaskod5e67442021-03-04 15:56:31 +01001550 * @brief Create a new node in the data tree based on a path. If creating anyxml/anydata nodes, ::lyd_new_path2
1551 * should be used instead, this function expects the value as string.
Michal Vasko00cbf532020-06-15 13:58:47 +02001552 *
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001553 * If creating data nodes defined inside an extension instance, use ::lyd_new_ext_path().
1554 *
Michal Vaskoa918a632021-07-02 11:53:36 +02001555 * If @p path points to a list key, the key value from the predicate is used and @p value is ignored.
1556 * Also, if a leaf-list is being created and both a predicate is defined in @p path
Michal Vasko00cbf532020-06-15 13:58:47 +02001557 * and @p value is set, the predicate is preferred.
1558 *
Michal Vasko5de21542023-03-20 10:00:05 +01001559 * For key-less lists, positional predicates must be used (indices starting from 1). For non-configuration leaf-lists
1560 * either positional predicate can be used or leaf-list predicate, when an instance is always created at the end.
Michal Vasko2261dfa2022-09-29 12:29:20 +02001561 * If no predicate is used for these nodes, they are always created.
Michal Vasko6741dc62021-02-04 09:27:45 +01001562 *
Michal Vasko104fe962020-11-06 17:23:44 +01001563 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1564 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1565 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001566 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001567 * @param[in] path [Path](@ref howtoXPath) to create.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001568 * @param[in] value String value of the new leaf/leaf-list in JSON format. For other node types it should be NULL.
stewegd4cde642024-02-21 08:34:16 +01001569 * @param[in] options Bitmask of options, see @ref newvaloptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001570 * @param[out] node Optional first created node.
Michal Vasko0a8fcc22023-03-03 09:54:32 +01001571 * @return LY_SUCCESS on success.
1572 * @return LY_EEXIST if the final node to create exists (unless ::LYD_NEW_PATH_UPDATE is used).
1573 * @return LY_EINVAL on invalid arguments including invalid @p path.
1574 * @return LY_EVALID on invalid @p value.
1575 * @return LY_ERR on other errors.
Michal Vasko00cbf532020-06-15 13:58:47 +02001576 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001577LIBYANG_API_DECL LY_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 +02001578 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001579
1580/**
1581 * @brief Create a new node in the data tree based on a path. All node types can be created.
1582 *
Michal Vasko65591ab2021-04-09 14:29:34 +02001583 * Details are mentioned in ::lyd_new_path().
Michal Vasko6741dc62021-02-04 09:27:45 +01001584 *
Michal Vasko104fe962020-11-06 17:23:44 +01001585 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1586 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1587 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001588 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001589 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001590 * @param[in] value Value of the new leaf/leaf-list (const char *) in ::LY_VALUE_JSON format. If creating an
1591 * anyxml/anydata node, the expected type depends on @p value_type. For other node types, it should be NULL.
1592 * @param[in] value_len Length of @p value in bytes. May be 0 if @p value is a zero-terminated string. Ignored when
1593 * creating anyxml/anydata nodes.
Michal Vasko00cbf532020-06-15 13:58:47 +02001594 * @param[in] value_type Anyxml/anydata node @p value type.
stewegd4cde642024-02-21 08:34:16 +01001595 * @param[in] options Bitmask of options, see @ref newvaloptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001596 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1597 * @param[out] new_node Optional last node created.
Michal Vasko0a8fcc22023-03-03 09:54:32 +01001598 * @return LY_SUCCESS on success.
1599 * @return LY_EEXIST if the final node to create exists (unless ::LYD_NEW_PATH_UPDATE is used).
1600 * @return LY_EINVAL on invalid arguments including invalid @p path.
1601 * @return LY_EVALID on invalid @p value.
1602 * @return LY_ERR on other errors.
Michal Vasko00cbf532020-06-15 13:58:47 +02001603 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001604LIBYANG_API_DECL LY_ERR lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci09c77442021-04-26 11:10:34 +02001605 size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent,
1606 struct lyd_node **new_node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001607
1608/**
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001609 * @brief Create a new node defined in the given extension instance. In case of anyxml/anydata nodes, this function expects
1610 * the @p value as string.
1611 *
1612 * If creating data nodes defined in a module's standard tree, use ::lyd_new_path() or ::lyd_new_path2().
1613 *
Michal Vasko65591ab2021-04-09 14:29:34 +02001614 * Details are mentioned in ::lyd_new_path().
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001615 *
1616 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1617 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1618 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
1619 * @param[in] ext Extension instance where the node being created is defined.
1620 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001621 * @param[in] value Value of the new leaf/leaf-list. For other node types, it should be NULL.
Michal Vaskoabd34fb2024-02-21 09:53:56 +01001622 * @param[in] options Bitmask of options, see @ref newvaloptions.
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001623 * @param[out] node Optional first created node.
Michal Vasko0a8fcc22023-03-03 09:54:32 +01001624 * @return LY_SUCCESS on success.
1625 * @return LY_EEXIST if the final node to create exists (unless ::LYD_NEW_PATH_UPDATE is used).
1626 * @return LY_EINVAL on invalid arguments including invalid @p path.
1627 * @return LY_EVALID on invalid @p value.
1628 * @return LY_ERR on other errors.
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001629 */
Michal Vasko55896172022-02-17 10:47:21 +01001630LIBYANG_API_DECL LY_ERR lyd_new_ext_path(struct lyd_node *parent, const struct lysc_ext_instance *ext, const char *path,
1631 const void *value, uint32_t options, struct lyd_node **node);
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001632
1633/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001634 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001635 * @defgroup implicitoptions Implicit node creation options
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001636 *
1637 * Various options to change lyd_new_implicit*() behavior.
1638 *
1639 * Default behavior:
1640 * - both configuration and state missing implicit nodes are added.
Michal Vasko630d9892020-12-08 17:11:08 +01001641 * - for existing RPC/action nodes, input implicit nodes are added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001642 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
1643 * @{
1644 */
1645
Michal Vasko44b19a12020-08-07 09:21:30 +02001646#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
1647#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
Michal Vasko630d9892020-12-08 17:11:08 +01001648#define LYD_IMPLICIT_OUTPUT 0x04 /**< For RPC/action nodes, add output implicit nodes instead of input. */
1649#define LYD_IMPLICIT_NO_DEFAULTS 0x08 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001650 containers. */
1651
1652/** @} implicitoptions */
1653
1654/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001655 * @brief Add any missing implicit nodes into a data subtree. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001656 *
1657 * @param[in] tree Tree to add implicit nodes into.
1658 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1659 * @param[out] diff Optional diff with any created nodes.
1660 * @return LY_ERR value.
1661 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001662LIBYANG_API_DECL LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001663
1664/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001665 * @brief Add any missing implicit nodes. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001666 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001667 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1668 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1669 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001670 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
1671 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1672 * @param[out] diff Optional diff with any created nodes.
1673 * @return LY_ERR value.
1674 */
Michal Vasko55896172022-02-17 10:47:21 +01001675LIBYANG_API_DECL LY_ERR lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options,
1676 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001677
1678/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001679 * @brief Add any missing implicit nodes of one module. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001680 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001681 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1682 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1683 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001684 * @param[in] module Module whose implicit nodes to create.
1685 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1686 * @param[out] diff Optional diff with any created nodes.
1687 * @return LY_ERR value.
1688 */
Michal Vasko55896172022-02-17 10:47:21 +01001689LIBYANG_API_DECL LY_ERR lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module,
1690 uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001691
1692/**
Radek Krejci09c77442021-04-26 11:10:34 +02001693 * @brief Change the value of a term (leaf or leaf-list) node to a string value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001694 *
1695 * Node changed this way is always considered explicitly set, meaning its default flag
1696 * is always cleared.
1697 *
1698 * @param[in] term Term node to change.
1699 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1700 * @return LY_SUCCESS if value was changed,
1701 * @return LY_EEXIST if value was the same and only the default flag was cleared,
aPiecekb0445f22021-06-24 11:34:07 +02001702 * @return LY_ENOT if the values were equal and no change occurred,
Michal Vasko00cbf532020-06-15 13:58:47 +02001703 * @return LY_ERR value on other errors.
1704 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001705LIBYANG_API_DECL LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
Michal Vasko00cbf532020-06-15 13:58:47 +02001706
1707/**
Radek Krejci09c77442021-04-26 11:10:34 +02001708 * @brief Change the value of a term (leaf or leaf-list) node to a binary value.
1709 *
1710 * Node changed this way is always considered explicitly set, meaning its default flag
1711 * is always cleared.
1712 *
1713 * @param[in] term Term node to change.
Michal Vasko8193b072023-03-22 08:13:59 +01001714 * @param[in] value New value to set in binary format (usually a pointer), see @ref howtoDataLYB.
Radek Krejci09c77442021-04-26 11:10:34 +02001715 * @param[in] value_len Length of @p value.
1716 * @return LY_SUCCESS if value was changed,
1717 * @return LY_EEXIST if value was the same and only the default flag was cleared,
aPiecekb0445f22021-06-24 11:34:07 +02001718 * @return LY_ENOT if the values were equal and no change occurred,
Radek Krejci09c77442021-04-26 11:10:34 +02001719 * @return LY_ERR value on other errors.
1720 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001721LIBYANG_API_DECL LY_ERR lyd_change_term_bin(struct lyd_node *term, const void *value, size_t value_len);
Radek Krejci09c77442021-04-26 11:10:34 +02001722
1723/**
1724 * @brief Change the value of a term (leaf or leaf-list) node to a canonical string value.
1725 *
1726 * Node changed this way is always considered explicitly set, meaning its default flag
1727 * is always cleared.
1728 *
1729 * @param[in] term Term node to change.
1730 * @param[in] val_str New value to set in canonical (or JSON if no defined) format. If the value is not
1731 * canonical, it may lead to unexpected behavior.
1732 * @return LY_SUCCESS if value was changed,
1733 * @return LY_EEXIST if value was the same and only the default flag was cleared,
aPiecekb0445f22021-06-24 11:34:07 +02001734 * @return LY_ENOT if the values were equal and no change occurred,
Radek Krejci09c77442021-04-26 11:10:34 +02001735 * @return LY_ERR value on other errors.
1736 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001737LIBYANG_API_DECL LY_ERR lyd_change_term_canon(struct lyd_node *term, const char *val_str);
Radek Krejci09c77442021-04-26 11:10:34 +02001738
1739/**
Michal Vasko41586352020-07-13 13:54:25 +02001740 * @brief Change the value of a metadata instance.
1741 *
Michal Vasko41586352020-07-13 13:54:25 +02001742 * @param[in] meta Metadata to change.
1743 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1744 * @return LY_SUCCESS if value was changed,
aPiecekb0445f22021-06-24 11:34:07 +02001745 * @return LY_ENOT if the values were equal and no change occurred,
Michal Vasko41586352020-07-13 13:54:25 +02001746 * @return LY_ERR value on other errors.
1747 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001748LIBYANG_API_DECL LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
Michal Vasko41586352020-07-13 13:54:25 +02001749
1750/**
Michal Vaskob104f112020-07-17 09:54:54 +02001751 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +01001752 *
1753 * - if the node is part of some other tree, it is automatically unlinked.
1754 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1755 *
1756 * @param[in] parent Parent node to insert into.
1757 * @param[in] node Node to insert.
1758 * @return LY_SUCCESS on success.
1759 * @return LY_ERR error on error.
1760 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001761LIBYANG_API_DECL LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001762
1763/**
Michal Vaskob104f112020-07-17 09:54:54 +02001764 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001765 *
1766 * - if the node is part of some other tree, it is automatically unlinked.
1767 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1768 *
Michal Vaskob104f112020-07-17 09:54:54 +02001769 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001770 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +02001771 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001772 * @return LY_SUCCESS on success.
1773 * @return LY_ERR error on error.
1774 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001775LIBYANG_API_DECL LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001776
1777/**
Michal Vaskob104f112020-07-17 09:54:54 +02001778 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001779 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001780 *
1781 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001782 *
1783 * @param[in] sibling Sibling node to insert before.
1784 * @param[in] node Node to insert.
1785 * @return LY_SUCCESS on success.
1786 * @return LY_ERR error on error.
1787 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001788LIBYANG_API_DECL LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001789
1790/**
Michal Vaskob104f112020-07-17 09:54:54 +02001791 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001792 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001793 *
1794 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001795 *
1796 * @param[in] sibling Sibling node to insert after.
1797 * @param[in] node Node to insert.
1798 * @return LY_SUCCESS on success.
1799 * @return LY_ERR error on error.
1800 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001801LIBYANG_API_DECL LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001802
1803/**
Michal Vasko66d508c2021-07-21 16:07:09 +02001804 * @brief Unlink the specified node with all the following siblings.
1805 *
1806 * @param[in] node Data tree node to be unlinked (together with all the children and following siblings).
aPiecekdfde77d2024-01-15 15:16:01 +01001807 * @return LYS_SUCCESS on success.
1808 * @return LY_ERR error on error.
Michal Vasko66d508c2021-07-21 16:07:09 +02001809 */
aPiecekdfde77d2024-01-15 15:16:01 +01001810LIBYANG_API_DECL LY_ERR lyd_unlink_siblings(struct lyd_node *node);
Michal Vasko66d508c2021-07-21 16:07:09 +02001811
1812/**
Michal Vaskof03ed032020-03-04 13:31:44 +01001813 * @brief Unlink the specified data subtree.
1814 *
1815 * @param[in] node Data tree node to be unlinked (together with all the children).
aPiecekdfde77d2024-01-15 15:16:01 +01001816 * @return LYS_SUCCESS on success.
1817 * @return LY_ERR error on error.
Michal Vaskof03ed032020-03-04 13:31:44 +01001818 */
aPiecekdfde77d2024-01-15 15:16:01 +01001819LIBYANG_API_DECL LY_ERR lyd_unlink_tree(struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001820
1821/**
Radek Krejcib0849a22019-07-25 12:31:04 +02001822 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +02001823 *
1824 * @param[in] node Any of the nodes inside the tree.
1825 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001826LIBYANG_API_DECL void lyd_free_all(struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +02001827
1828/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001829 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +02001830 *
1831 * @param[in] node Any of the sibling nodes to free.
1832 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001833LIBYANG_API_DECL void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +02001834
1835/**
Radek Krejcie7b95092019-05-15 11:03:07 +02001836 * @brief Free (and unlink) the specified data (sub)tree.
1837 *
Radek Krejcie7b95092019-05-15 11:03:07 +02001838 * @param[in] node Root of the (sub)tree to be freed.
1839 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001840LIBYANG_API_DECL void lyd_free_tree(struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +02001841
1842/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001843 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +02001844 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001845 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +02001846 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001847LIBYANG_API_DECL void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +01001848
1849/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001850 * @brief Free the metadata instance with any following instances.
1851 *
1852 * @param[in] meta Metadata to free.
1853 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001854LIBYANG_API_DECL void lyd_free_meta_siblings(struct lyd_meta *meta);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001855
1856/**
1857 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +01001858 *
1859 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001860 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +01001861 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001862LIBYANG_API_DECL void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001863
1864/**
1865 * @brief Free the attribute with any following attributes.
1866 *
1867 * @param[in] ctx Context where the attributes were created.
1868 * @param[in] attr First attribute to free.
1869 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001870LIBYANG_API_DECL void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +02001871
Radek Krejci084289f2019-07-09 17:35:30 +02001872/**
1873 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1874 *
1875 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
1876 *
Radek Krejci084289f2019-07-09 17:35:30 +02001877 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
Michal Vaskoaebbce02021-04-06 09:23:37 +02001878 * @param[in] schema Schema node of the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02001879 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001880 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskoaebbce02021-04-06 09:23:37 +02001881 * @param[in] ctx_node Optional data tree context node for the value (leafref target, instance-identifier).
1882 * If not set and is required for the validation to complete, ::LY_EINCOMPLETE is be returned.
1883 * @param[out] realtype Optional real type of @p value.
1884 * @param[out] canonical Optional canonical value of @p value (in the dictionary).
Radek Krejci084289f2019-07-09 17:35:30 +02001885 * @return LY_SUCCESS on success
Michal Vaskoaebbce02021-04-06 09:23:37 +02001886 * @return LY_EINCOMPLETE in case the @p ctx_node is not provided and it was needed to finish the validation
1887 * (e.g. due to require-instance).
Radek Krejci084289f2019-07-09 17:35:30 +02001888 * @return LY_ERR value if an error occurred.
1889 */
Michal Vasko55896172022-02-17 10:47:21 +01001890LIBYANG_API_DECL LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lysc_node *schema, const char *value,
1891 size_t value_len, const struct lyd_node *ctx_node, const struct lysc_type **realtype, const char **canonical);
Radek Krejci084289f2019-07-09 17:35:30 +02001892
1893/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001894 * @brief Compare the node's value with the given string value. The string value is first validated according to
1895 * the (current) node's type.
Radek Krejci084289f2019-07-09 17:35:30 +02001896 *
1897 * @param[in] node Data node to compare.
1898 * @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 +02001899 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001900 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001901 * @return LY_SUCCESS on success,
1902 * @return LY_ENOT if the values do not match,
Radek Krejci084289f2019-07-09 17:35:30 +02001903 * @return LY_ERR value if an error occurred.
1904 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001905LIBYANG_API_DECL LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len);
Radek Krejci084289f2019-07-09 17:35:30 +02001906
Radek Krejci576b23f2019-07-12 14:06:32 +02001907/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001908 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001909 * @defgroup datacompareoptions Data compare options
1910 * @{
1911 * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001912 */
Michal Vaskodf8ebf62022-11-10 10:33:28 +01001913#define LYD_COMPARE_FULL_RECURSION 0x01 /* Lists and containers are the same only in case all they children
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001914 (subtree, so direct as well as indirect children) are the same. By default,
1915 containers are the same in case of the same schema node and lists are the same
1916 in case of equal keys (keyless lists do the full recursion comparison all the time). */
1917#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
1918 changes this behavior and implicit (automatically created default node) and explicit
1919 (explicitly created node with the default value) default nodes are considered different. */
Michal Vaskodf8ebf62022-11-10 10:33:28 +01001920#define LYD_COMPARE_OPAQ 0x04 /* Opaque nodes can normally be never equal to data nodes. Using this flag even
1921 opaque nodes members are compared to data node schema and value and can result
1922 in a match. */
Michal Vasko60ea6352020-06-29 13:39:39 +02001923/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001924
1925/**
1926 * @brief Compare 2 data nodes if they are equivalent.
1927 *
Michal Vasko892f5bf2021-11-24 10:41:05 +01001928 * Works correctly even if @p node1 and @p node2 have different contexts.
1929 *
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001930 * @param[in] node1 The first node to compare.
1931 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001932 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001933 * @return LY_SUCCESS if the nodes are equivalent.
1934 * @return LY_ENOT if the nodes are not equivalent.
1935 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001936LIBYANG_API_DECL LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Michal Vasko8f359bf2020-07-28 10:41:15 +02001937
1938/**
1939 * @brief Compare 2 lists of siblings if they are equivalent.
1940 *
Michal Vasko892f5bf2021-11-24 10:41:05 +01001941 * Works correctly even if @p node1 and @p node2 have different contexts.
1942 *
Michal Vasko8f359bf2020-07-28 10:41:15 +02001943 * @param[in] node1 The first sibling list to compare.
1944 * @param[in] node2 The second sibling list to compare.
1945 * @param[in] options Various @ref datacompareoptions.
1946 * @return LY_SUCCESS if all the siblings are equivalent.
1947 * @return LY_ENOT if the siblings are not equivalent.
1948 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001949LIBYANG_API_DECL LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001950
1951/**
Michal Vasko21725742020-06-29 11:49:25 +02001952 * @brief Compare 2 metadata.
1953 *
Michal Vasko892f5bf2021-11-24 10:41:05 +01001954 * If @p meta1 and @p meta2 have different contexts, they are never equivalent.
1955 *
Michal Vasko21725742020-06-29 11:49:25 +02001956 * @param[in] meta1 First metadata.
1957 * @param[in] meta2 Second metadata.
1958 * @return LY_SUCCESS if the metadata are equivalent.
1959 * @return LY_ENOT if not.
1960 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001961LIBYANG_API_DECL LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
Michal Vasko21725742020-06-29 11:49:25 +02001962
1963/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001964 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001965 * @defgroup dupoptions Data duplication options
Radek Krejci22ebdba2019-07-25 13:59:43 +02001966 *
Michal Vaskoe78faec2021-04-08 17:24:43 +02001967 * Various options to change ::lyd_dup_single() and ::lyd_dup_siblings() behavior.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001968 *
1969 * Default behavior:
1970 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001971 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001972 * @{
1973 */
1974
1975#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1976 list's keys are always duplicated. */
aPiecek6cf1d162023-11-08 16:07:00 +01001977#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata (or attributes) of any node. Flag has no effect
1978 on 'lyds_tree' metadata. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001979#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1980 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001981#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 +02001982 its validation/default node state. */
Michal Vasko53ac4dd2022-06-07 10:56:08 +02001983#define LYD_DUP_NO_EXT 0x10 /**< Do not duplicate nodes with the ::LYD_EXT flag (nested extension instance data). */
Igor Ryzhov9e7af662023-10-31 13:27:56 +02001984#define LYD_DUP_WITH_PRIV 0x20 /**< Also copy data node private pointer. Only the pointer is copied, it still points
1985 to the same data. */
aPiecek1462ab12024-02-07 09:13:29 +01001986#define LYD_DUP_NO_LYDS 0x40 /**< The order of nodes is used the same as for copied nodes and a 'lyds_tree' is not
1987 created, so the flag is suitable for optimization. If a new node is inserted into
1988 such a (leaf-)list by default, the 'lyds_tree' will be created additionally and
1989 the sorting will work. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001990
1991/** @} dupoptions */
1992
1993/**
Michal Vaskoddd76592022-01-17 13:34:48 +01001994 * @brief Create a copy of the specified data tree @p node. Schema references are kept the same.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001995 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02001996 * @param[in] node Data tree node to be duplicated.
Michal Vaskoddd76592022-01-17 13:34:48 +01001997 * @param[in] parent Optional parent node where to connect the duplicated node(s). If set in combination with
1998 * ::LYD_DUP_WITH_PARENTS, the missing parents' chain is duplicated and connected with @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001999 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002000 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
Michal Vaskoddd76592022-01-17 13:34:48 +01002001 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002002 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02002003 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002004LIBYANG_API_DECL LY_ERR lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options,
2005 struct lyd_node **dup);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002006
2007/**
Michal Vaskoddd76592022-01-17 13:34:48 +01002008 * @brief Create a copy of the specified data tree @p node. Schema references are assigned from @p trg_ctx.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002009 *
2010 * @param[in] node Data tree node to be duplicated.
Michal Vaskoddd76592022-01-17 13:34:48 +01002011 * @param[in] trg_ctx Target context for duplicated nodes.
2012 * @param[in] parent Optional parent node where to connect the duplicated node(s). If set in combination with
2013 * ::LYD_DUP_WITH_PARENTS, the missing parents' chain is duplicated and connected with @p parent.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002014 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2015 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
Michal Vaskoddd76592022-01-17 13:34:48 +01002016 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002017 * @return LY_ERR value.
2018 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002019LIBYANG_API_DECL LY_ERR lyd_dup_single_to_ctx(const struct lyd_node *node, const struct ly_ctx *trg_ctx,
2020 struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup);
2021
2022/**
2023 * @brief Create a copy of the specified data tree @p node with any following siblings. Schema references are kept the same.
2024 *
2025 * @param[in] node Data tree node to be duplicated.
2026 * @param[in] parent Optional parent node where to connect the duplicated node(s). If set in combination with
2027 * ::LYD_DUP_WITH_PARENTS, the missing parents' chain is duplicated and connected with @p parent.
2028 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2029 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
2030 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
2031 * @return LY_ERR value.
2032 */
2033LIBYANG_API_DECL LY_ERR lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options,
2034 struct lyd_node **dup);
2035
2036/**
2037 * @brief Create a copy of the specified data tree @p node with any following siblings. Schema references are assigned
2038 * from @p trg_ctx.
2039 *
2040 * @param[in] node Data tree node to be duplicated.
2041 * @param[in] trg_ctx Target context for duplicated nodes.
2042 * @param[in] parent Optional parent node where to connect the duplicated node(s). If set in combination with
2043 * ::LYD_DUP_WITH_PARENTS, the missing parents' chain is duplicated and connected with @p parent.
2044 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2045 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
2046 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
2047 * @return LY_ERR value.
2048 */
2049LIBYANG_API_DECL LY_ERR lyd_dup_siblings_to_ctx(const struct lyd_node *node, const struct ly_ctx *trg_ctx,
2050 struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002051
2052/**
Michal Vasko25a32822020-07-09 15:48:22 +02002053 * @brief Create a copy of the metadata.
2054 *
2055 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002056 * @param[in] parent Node where to append the new metadata.
2057 * @param[out] dup Optional created metadata copy.
2058 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02002059 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002060LIBYANG_API_DECL LY_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 +02002061
2062/**
Michal Vasko4490d312020-06-16 13:08:55 +02002063 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02002064 * @defgroup mergeoptions Data merge options.
Radek Krejci576b23f2019-07-12 14:06:32 +02002065 *
Michal Vaskocd3f6172021-05-18 16:14:50 +02002066 * Various options to change ::lyd_merge_tree(), ::lyd_merge_siblings(), and ::lyd_merge_module() behavior.
Michal Vasko4490d312020-06-16 13:08:55 +02002067 *
2068 * Default behavior:
2069 * - source data tree is not modified in any way,
Michal Vasko745d6f62021-04-12 16:55:23 +02002070 * - any default nodes in the source are ignored if there are explicit nodes in the target,
2071 * - any metadata are ignored - those present in the target are kept, those in the source are not merged.
Michal Vasko7e8315b2021-08-03 17:01:06 +02002072 * - any merged nodes flags are set as non-validated.
Michal Vasko4490d312020-06-16 13:08:55 +02002073 * @{
2074 */
2075
2076#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002077#define LYD_MERGE_DEFAULTS 0x02 /**< Default nodes in the source tree replace even explicit nodes in the target. */
Michal Vasko7e8315b2021-08-03 17:01:06 +02002078#define LYD_MERGE_WITH_FLAGS 0x04 /**< Merged nodes (those missing in the source) keep their exact flags. */
Michal Vasko4490d312020-06-16 13:08:55 +02002079
2080/** @} mergeoptions */
2081
2082/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002083 * @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 +02002084 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
2085 *
Michal Vasko2f510942020-11-13 10:26:25 +01002086 * Example input:
2087 *
2088 * source (A1) - A2 - A3 target (B1) - B2 - B3
2089 * /\ /\ /\ /\ /\ /\
2090 * .... .... .... .... .... ....
2091 *
2092 * result target (A1) - B1 - B2 - B3
2093 * /\ /\ /\ /\
2094 * .... .... .... ....
2095 *
Michal Vaskof922e8f2021-10-21 15:38:06 +02002096 * @param[in,out] target Target data tree to merge into, must be a top-level tree. Always points to the first sibling.
Michal Vasko4490d312020-06-16 13:08:55 +02002097 * @param[in] source Source data tree to merge, must be a top-level tree.
2098 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
2099 * @return LY_SUCCESS on success,
2100 * @return LY_ERR value on error.
2101 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002102LIBYANG_API_DECL LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002103
2104/**
2105 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
2106 * complete until validation called on the resulting data tree (data from more cases may be present, default
2107 * and non-default values).
2108 *
Michal Vasko2f510942020-11-13 10:26:25 +01002109 * Example input:
2110 *
2111 * source (A1) - A2 - A3 target (B1) - B2 - B3
2112 * /\ /\ /\ /\ /\ /\
2113 * .... .... .... .... .... ....
2114 *
2115 * result target (A1) - A2 - A3 - B1 - B2 - B3
2116 * /\ /\ /\ /\ /\ /\
2117 * .... .... .... .... .... ....
2118 *
Michal Vaskof922e8f2021-10-21 15:38:06 +02002119 * @param[in,out] target Target data tree to merge into, must be a top-level tree. Always points to the first sibling.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002120 * @param[in] source Source data tree to merge, must be a top-level tree.
2121 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
2122 * @return LY_SUCCESS on success,
2123 * @return LY_ERR value on error.
2124 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002125LIBYANG_API_DECL LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko4490d312020-06-16 13:08:55 +02002126
2127/**
Michal Vaskocd3f6172021-05-18 16:14:50 +02002128 * @brief Callback for matching merge nodes.
2129 *
2130 * @param[in] trg_node Target data node.
2131 * @param[in] src_node Source data node, is NULL if it was actually duplicated (no target node found) and
2132 * its copy is @p trg_node.
2133 * @param[in] cb_data Arbitrary callback data.
2134 * @return LY_ERR value.
2135 */
2136typedef LY_ERR (*lyd_merge_cb)(struct lyd_node *trg_node, const struct lyd_node *src_node, void *cb_data);
2137
2138/**
2139 * @brief Merge all the nodes of a module from source data tree into the target data tree. Merge may not be
2140 * complete until validation called on the resulting data tree (data from more cases may be present, default
2141 * and non-default values).
2142 *
Michal Vaskof922e8f2021-10-21 15:38:06 +02002143 * @param[in,out] target Target data tree to merge into, must be a top-level tree. Always points to the first sibling.
Michal Vaskocd3f6172021-05-18 16:14:50 +02002144 * @param[in] source Source data tree to merge, must be a top-level tree.
2145 * @param[in] mod Module, whose source data only to consider, NULL for all modules.
Michal Vasko807557c2021-05-25 08:50:52 +02002146 * @param[in] merge_cb Optional merge callback that will be called for every merged node, before merging its descendants.
Michal Vaskocd3f6172021-05-18 16:14:50 +02002147 * If a subtree is being added into target (no matching node found), callback is called only once with the subtree root.
2148 * @param[in] cb_data Arbitrary callback data.
2149 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
2150 * @return LY_SUCCESS on success,
2151 * @return LY_ERR value on error.
2152 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002153LIBYANG_API_DECL LY_ERR lyd_merge_module(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod,
Michal Vaskocd3f6172021-05-18 16:14:50 +02002154 lyd_merge_cb merge_cb, void *cb_data, uint16_t options);
2155
2156/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002157 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02002158 * @defgroup diffoptions Data diff options.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002159 *
Radek Krejci8678fa42020-08-18 16:07:28 +02002160 * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002161 *
2162 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002163 * - any default nodes are treated as non-existent and ignored.
2164 * @{
2165 */
2166
Michal Vasko3a41dff2020-07-15 14:30:28 +02002167#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
2168 nodes. Also, leaves and leaf-lists are added into diff even in case only their
2169 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002170
2171/** @} diffoptions */
2172
2173/**
2174 * @brief Learn the differences between 2 data trees.
2175 *
2176 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
2177 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
2178 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
2179 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
2180 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
2181 * or the second tree.
2182 *
2183 * The diff tree is completely independent on the @p first and @p second trees, meaning all
2184 * the information about the change is stored in the diff and the trees are not needed.
2185 *
Michal Vaskoff857812021-03-05 17:03:52 +01002186 * __!! Caution !!__
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002187 * The diff tree should never be validated because it may easily not be valid! For example,
2188 * when data from one case branch are deleted and data from another branch created - data from both
2189 * branches are then stored in the diff tree simultaneously.
2190 *
2191 * @param[in] first First data tree.
2192 * @param[in] second Second data tree.
2193 * @param[in] options Bitmask of options flags, see @ref diffoptions.
Michal Vaskoe2d52df2023-06-02 09:10:28 +02002194 * @param[out] diff Generated diff, NULL if there are no differences.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002195 * @return LY_SUCCESS on success,
2196 * @return LY_ERR on error.
2197 */
Michal Vasko55896172022-02-17 10:47:21 +01002198LIBYANG_API_DECL LY_ERR lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, uint16_t options,
2199 struct lyd_node **diff);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002200
2201/**
2202 * @brief Learn the differences between 2 data trees including all the following siblings.
2203 *
Michal Vaskoff857812021-03-05 17:03:52 +01002204 * Details are mentioned in ::lyd_diff_tree().
2205 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02002206 * @param[in] first First data tree.
2207 * @param[in] second Second data tree.
2208 * @param[in] options Bitmask of options flags, see @ref diffoptions.
Michal Vaskoe2d52df2023-06-02 09:10:28 +02002209 * @param[out] diff Generated diff, NULL if there are no differences.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002210 * @return LY_SUCCESS on success,
2211 * @return LY_ERR on error.
2212 */
Michal Vasko55896172022-02-17 10:47:21 +01002213LIBYANG_API_DECL LY_ERR lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, uint16_t options,
2214 struct lyd_node **diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002215
2216/**
2217 * @brief Callback for diff nodes.
2218 *
2219 * @param[in] diff_node Diff node.
2220 * @param[in] data_node Matching node in data.
2221 * @param[in] cb_data Arbitrary callback data.
2222 * @return LY_ERR value.
2223 */
2224typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
2225
2226/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002227 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002228 *
Michal Vaskoa98dcba2021-03-05 17:04:14 +01002229 * __!! Caution !!__
2230 * If applying a diff that was created __without__ the ::LYD_DIFF_DEFAULTS flag, there may be some duplicate values
2231 * created. Unless the resulting tree is validated (and default values thus consolidated), using it further
2232 * (such as applying another diff) may cause unexpected results or errors.
2233 *
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002234 * @param[in,out] data Data to apply the diff on.
2235 * @param[in] diff Diff to apply.
2236 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
2237 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
2238 * @param[in] cb_data Arbitrary callback data.
2239 * @return LY_SUCCESS on success,
2240 * @return LY_ERR on error.
2241 */
Michal Vasko55896172022-02-17 10:47:21 +01002242LIBYANG_API_DECL LY_ERR lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff,
2243 const struct lys_module *mod, lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002244
2245/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002246 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002247 *
Michal Vaskoff857812021-03-05 17:03:52 +01002248 * Details are mentioned in ::lyd_diff_apply_module().
2249 *
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002250 * @param[in,out] data Data to apply the diff on.
2251 * @param[in] diff Diff to apply.
2252 * @return LY_SUCCESS on success,
2253 * @return LY_ERR on error.
2254 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002255LIBYANG_API_DECL LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002256
2257/**
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002258 * @ingroup datatree
2259 * @defgroup diffmergeoptions Data diff merge options.
2260 *
2261 * Various options to change ::lyd_diff_merge_module(), ::lyd_diff_merge_tree(), and ::lyd_diff_merge_all() behavior.
2262 *
2263 * Default behavior:
2264 * - any default nodes are expected to be a result of validation corrections and not explicitly modified.
2265 * @{
2266 */
2267
2268#define LYD_DIFF_MERGE_DEFAULTS 0x01 /**< Default nodes in the diffs are treated as possibly explicitly modified. */
2269
Michal Vaskoff857812021-03-05 17:03:52 +01002270/** @} diffmergeoptions */
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002271
2272/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02002273 * @brief Merge 2 diffs into each other but restrict the operation to one module.
2274 *
2275 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
2276 * created on data that had the target diff applied on them. In other words, this sequence is legal
2277 *
Michal Vaskoff857812021-03-05 17:03:52 +01002278 * 1) get diff1 from data1 and data2 -> get data11 from apply diff1 on data1 -> get diff2 from data11 and data3 ->
2279 * -> get data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02002280 *
2281 * and reusing these diffs
2282 *
Michal Vaskoff857812021-03-05 17:03:52 +01002283 * 2) get diff11 from merge diff1 and diff2 -> get data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02002284 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02002285 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002286 * @param[in] src_diff Source diff.
2287 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
Michal Vaskoe2af8412020-12-03 14:11:38 +01002288 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
2289 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
2290 * called on the root with @p diff_node being NULL.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002291 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002292 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002293 * @return LY_SUCCESS on success,
2294 * @return LY_ERR on error.
2295 */
Michal Vasko55896172022-02-17 10:47:21 +01002296LIBYANG_API_DECL LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff,
2297 const struct lys_module *mod, lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02002298
2299/**
Michal Vasko04f85912020-08-07 12:14:58 +02002300 * @brief Merge 2 diff trees into each other.
2301 *
Michal Vaskoff857812021-03-05 17:03:52 +01002302 * Details are mentioned in ::lyd_diff_merge_module().
2303 *
Michal Vasko04f85912020-08-07 12:14:58 +02002304 * @param[in,out] diff_first Target diff first sibling to merge into.
2305 * @param[in] diff_parent Target diff parent to merge into.
2306 * @param[in] src_sibling Source diff sibling to merge.
Michal Vaskoe2af8412020-12-03 14:11:38 +01002307 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
2308 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
2309 * called on the root with @p diff_node being NULL.
Michal Vasko04f85912020-08-07 12:14:58 +02002310 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002311 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vasko04f85912020-08-07 12:14:58 +02002312 * @return LY_SUCCESS on success,
2313 * @return LY_ERR on error.
2314 */
Michal Vasko55896172022-02-17 10:47:21 +01002315LIBYANG_API_DECL LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent,
2316 const struct lyd_node *src_sibling, lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vasko04f85912020-08-07 12:14:58 +02002317
2318/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02002319 * @brief Merge 2 diffs into each other.
2320 *
Michal Vaskoff857812021-03-05 17:03:52 +01002321 * Details are mentioned in ::lyd_diff_merge_module().
2322 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02002323 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02002324 * @param[in] src_diff Source diff.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002325 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002326 * @return LY_SUCCESS on success,
2327 * @return LY_ERR on error.
2328 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002329LIBYANG_API_DECL LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02002330
2331/**
Michal Vasko4231fb62020-07-13 13:54:47 +02002332 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
2333 * or move from place A to B to move from B to A and so on.
2334 *
2335 * @param[in] src_diff Diff to reverse.
2336 * @param[out] diff Reversed diff.
2337 * @return LY_SUCCESS on success.
2338 * @return LY_ERR on error.
2339 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002340LIBYANG_API_DECL LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02002341
2342/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002343 * @brief Types of the different data paths.
2344 */
2345typedef enum {
Radek Krejci635d2b82021-01-04 11:26:51 +01002346 LYD_PATH_STD, /**< Generic data path used for logging, node searching (::lyd_find_xpath(), ::lys_find_path()) as well as
Radek Krejci95ccd1b2021-03-12 14:57:22 +01002347 creating new nodes (::lyd_new_path(), ::lyd_new_path2(), ::lyd_new_ext_path()). */
Radek Krejci635d2b82021-01-04 11:26:51 +01002348 LYD_PATH_STD_NO_LAST_PRED /**< Similar to ::LYD_PATH_STD except there is never a predicate on the last node. While it
2349 can be used to search for nodes, do not use it to create new data nodes (lists). */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002350} LYD_PATH_TYPE;
2351
2352/**
2353 * @brief Generate path of the given node in the requested format.
2354 *
Jan Kundrátb5a113c2023-03-01 16:30:46 +01002355 * The path is constructed based on the parent node(s) of this node. When run on a node which is disconnected
2356 * from its parent(s), this function might yield unexpected results such as `/example:b` instead of the expected
2357 * `/example:a/b`.
2358 *
Radek Krejci635d2b82021-01-04 11:26:51 +01002359 * @param[in] node Data path of this node will be generated.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002360 * @param[in] pathtype Format of the path to generate.
2361 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
2362 * If NULL, memory for the complete path is allocated.
2363 * @param[in] buflen Size of the provided @p buffer.
2364 * @return NULL in case of memory allocation error, path of the node otherwise.
2365 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
2366 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002367LIBYANG_API_DECL char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002368
Michal Vaskoe444f752020-02-10 12:20:06 +01002369/**
Michal Vasko25a32822020-07-09 15:48:22 +02002370 * @brief Find a specific metadata.
2371 *
2372 * @param[in] first First metadata to consider.
2373 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
2374 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
2375 * @return Found metadata,
2376 * @return NULL if not found.
2377 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002378LIBYANG_API_DECL struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module,
2379 const char *name);
Michal Vasko25a32822020-07-09 15:48:22 +02002380
2381/**
Michal Vaskoda859032020-07-14 12:20:14 +02002382 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01002383 * Uses hashes - should be used whenever possible for best performance.
2384 *
2385 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2386 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01002387 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01002388 * @return LY_SUCCESS on success, @p match set.
2389 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2390 * @return LY_ERR value if another error occurred.
2391 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002392LIBYANG_API_DECL LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target,
2393 struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01002394
2395/**
Michal Vaskoe444f752020-02-10 12:20:06 +01002396 * @brief Search in the given siblings for the first schema instance.
2397 * Uses hashes - should be used whenever possible for best performance.
2398 *
2399 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2400 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02002401 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
2402 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01002403 * LYS_LEAFLIST:
2404 * Searched instance value.
2405 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01002406 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
2407 * The keys do not have to be ordered but all of them must be set.
2408 *
2409 * Note that any explicit values (leaf-list or list key values) will be canonized first
2410 * before comparison. But values that do not have a canonical value are expected to be in the
2411 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01002412 * @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 +01002413 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01002414 * @return LY_SUCCESS on success, @p match set.
2415 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2416 * @return LY_EINVAL if @p schema is a key-less list.
2417 * @return LY_ERR value if another error occurred.
2418 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002419LIBYANG_API_DECL LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema,
2420 const char *key_or_value, size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01002421
Michal Vaskoccc02342020-05-21 10:09:21 +02002422/**
Michal Vasko83ae7772022-06-08 10:01:55 +02002423 * @brief Search the given siblings for all the exact same instances of a specific node instance.
2424 * Uses hashes to whatever extent possible.
Michal Vaskoe78faec2021-04-08 17:24:43 +02002425 *
2426 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2427 * @param[in] target Target node instance to find.
2428 * @param[out] set Set with all the found instances. The first item is always the first instance.
2429 * @return LY_SUCCESS on success, @p set returned.
2430 * @return LY_ENOTFOUND if not found, empty @p set returned.
2431 * @return LY_ERR value if another error occurred.
2432 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002433LIBYANG_API_DECL LY_ERR lyd_find_sibling_dup_inst_set(const struct lyd_node *siblings, const struct lyd_node *target,
2434 struct ly_set **set);
Michal Vaskoe78faec2021-04-08 17:24:43 +02002435
2436/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +01002437 * @brief Search the given siblings for an opaque node with a specific name.
2438 *
2439 * @param[in] first First sibling to consider.
2440 * @param[in] name Opaque node name to find.
2441 * @param[out] match Can be NULL, otherwise the found data node.
2442 * @return LY_SUCCESS on success, @p match set.
2443 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2444 * @return LY_ERR value is an error occurred.
2445 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002446LIBYANG_API_DECL LY_ERR lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match);
Michal Vasko1d4af6c2021-02-22 13:31:26 +01002447
2448/**
aPiecekdf23eee2021-10-07 12:21:50 +02002449 * @brief Set a new XPath variable to @p vars.
2450 *
2451 * @param[in,out] vars Pointer to [sized array](@ref sizedarrays) of XPath variables.
2452 * To create a new array, set the @p vars target pointer to NULL.
2453 * Otherwise variable named @p name with a value @p value will be added to the @p vars
2454 * or its value will be changed if the variable is already defined.
2455 * @param[in] name Name of the added/edited variable.
2456 * @param[in] value Value of the variable.
2457 * @return LY_ERR value.
2458 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002459LIBYANG_API_DECL LY_ERR lyxp_vars_set(struct lyxp_var **vars, const char *name, const char *value);
aPiecekdf23eee2021-10-07 12:21:50 +02002460
2461/**
2462 * @brief Free the XPath variables.
2463 *
2464 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2465 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002466LIBYANG_API_DECL void lyxp_vars_free(struct lyxp_var *vars);
aPiecekdf23eee2021-10-07 12:21:50 +02002467
2468/**
Michal Vaskoccc02342020-05-21 10:09:21 +02002469 * @brief Search in the given data for instances of nodes matching the provided XPath.
2470 *
Michal Vasko3f631cd2022-08-08 14:35:32 +02002471 * If a list instance is being selected with all its key values specified and ordered
2472 * in the form `list[key1=...][key2=...][key3=...]` or a leaf-list instance in the form
2473 * `leaf-list[.=...]`, these instances are found using hashes with constant (*O(1)*) complexity
Michal Vasko19a30602020-05-25 10:40:19 +02002474 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
2475 *
Michal Vaskofbd0da42023-08-17 14:57:44 +02002476 * Opaque nodes are part of the evaluation.
2477 *
Michal Vaskoccc02342020-05-21 10:09:21 +02002478 * @param[in] ctx_node XPath context node.
Michal Vaskoc0d91642022-11-03 13:56:29 +01002479 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format. It must evaluate into a node set.
Michal Vaskoccc02342020-05-21 10:09:21 +02002480 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
2481 * the returned set is empty.
2482 * @return LY_SUCCESS on success, @p set is returned.
2483 * @return LY_ERR value if an error occurred.
2484 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002485LIBYANG_API_DECL LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
Michal Vaskoccc02342020-05-21 10:09:21 +02002486
Michal Vasko3e1f6552021-01-14 09:27:55 +01002487/**
aPiecekfba75362021-10-07 12:39:48 +02002488 * @brief Search in the given data for instances of nodes matching the provided XPath.
2489 *
Michal Vasko10fabfc2022-08-09 08:55:43 +02002490 * It is ::lyd_find_xpath() with @p vars added.
aPiecekfba75362021-10-07 12:39:48 +02002491 *
2492 * @param[in] ctx_node XPath context node.
Michal Vaskoddd76592022-01-17 13:34:48 +01002493 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
aPiecekfba75362021-10-07 12:39:48 +02002494 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2495 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
2496 * the returned set is empty.
2497 * @return LY_SUCCESS on success, @p set is returned.
2498 * @return LY_ERR value if an error occurred.
2499 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002500LIBYANG_API_DECL LY_ERR lyd_find_xpath2(const struct lyd_node *ctx_node, const char *xpath, const struct lyxp_var *vars,
Michal Vaskoe3716b32021-12-13 16:58:25 +01002501 struct ly_set **set);
2502
2503/**
2504 * @brief Search in the given data for instances of nodes matching the provided XPath.
2505 *
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002506 * It is ::lyd_find_xpath2() with @p tree added so that @p ctx_node may be the root and
2507 * also @p format and @p prefix_data added for expressions in different formats than JSON.
Michal Vaskoe3716b32021-12-13 16:58:25 +01002508 *
2509 * @param[in] ctx_node XPath context node, NULL for the root node.
2510 * @param[in] tree Data tree to evaluate on.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002511 * @param[in] xpath [XPath](@ref howtoXPath) to select with prefixes in @p format.
Michal Vaskoddd76592022-01-17 13:34:48 +01002512 * @param[in] format Format of any prefixes in @p xpath.
2513 * @param[in] prefix_data Format-specific prefix data.
2514 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2515 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
2516 * the returned set is empty.
2517 * @return LY_SUCCESS on success, @p set is returned.
2518 * @return LY_ERR value if an error occurred.
2519 */
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002520LIBYANG_API_DECL LY_ERR lyd_find_xpath3(const struct lyd_node *ctx_node, const struct lyd_node *tree, const char *xpath,
Michal Vaskoddd76592022-01-17 13:34:48 +01002521 LY_VALUE_FORMAT format, void *prefix_data, const struct lyxp_var *vars, struct ly_set **set);
2522
2523/**
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02002524 * @brief Evaluate an XPath on data and return the result converted to boolean.
2525 *
2526 * Optimizations similar as in ::lyd_find_xpath().
2527 *
2528 * @param[in] ctx_node XPath context node.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002529 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
Michal Vasko080155c2021-10-14 09:22:16 +02002530 * @param[out] result Expression result converted to boolean.
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02002531 * @return LY_SUCCESS on success, @p result is returned.
2532 * @return LY_ERR value if an error occurred.
2533 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002534LIBYANG_API_DECL LY_ERR lyd_eval_xpath(const struct lyd_node *ctx_node, const char *xpath, ly_bool *result);
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02002535
2536/**
aPiecekfba75362021-10-07 12:39:48 +02002537 * @brief Evaluate an XPath on data and return the result converted to boolean.
2538 *
Michal Vasko10fabfc2022-08-09 08:55:43 +02002539 * It is ::lyd_eval_xpath() with @p vars added.
aPiecekfba75362021-10-07 12:39:48 +02002540 *
2541 * @param[in] ctx_node XPath context node.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002542 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
aPiecekfba75362021-10-07 12:39:48 +02002543 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
Michal Vasko080155c2021-10-14 09:22:16 +02002544 * @param[out] result Expression result converted to boolean.
aPiecekfba75362021-10-07 12:39:48 +02002545 * @return LY_SUCCESS on success, @p result is returned.
2546 * @return LY_ERR value if an error occurred.
2547 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002548LIBYANG_API_DECL LY_ERR lyd_eval_xpath2(const struct lyd_node *ctx_node, const char *xpath,
aPiecekfba75362021-10-07 12:39:48 +02002549 const struct lyxp_var *vars, ly_bool *result);
2550
2551/**
Michal Vasko10fabfc2022-08-09 08:55:43 +02002552 * @brief Evaluate an XPath on data and return the result converted to boolean.
2553 *
2554 * It is ::lyd_eval_xpath2() with @p format and @p prefix_data added for special use-cases.
2555 *
2556 * @param[in] ctx_node XPath context node.
2557 * @param[in] cur_mod Current module of @p xpath, needed for some kinds of @p format.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002558 * @param[in] xpath [XPath](@ref howtoXPath) to select with prefixes in in @p format.
Michal Vasko10fabfc2022-08-09 08:55:43 +02002559 * @param[in] format Format of any prefixes in @p xpath.
2560 * @param[in] prefix_data Format-specific prefix data.
2561 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2562 * @param[out] result Expression result converted to boolean.
2563 * @return LY_SUCCESS on success, @p result is returned.
2564 * @return LY_ERR value if an error occurred.
2565 */
2566LIBYANG_API_DECL LY_ERR lyd_eval_xpath3(const struct lyd_node *ctx_node, const struct lys_module *cur_mod,
2567 const char *xpath, LY_VALUE_FORMAT format, void *prefix_data, const struct lyxp_var *vars, ly_bool *result);
2568
2569/**
Michal Vaskod96e2372023-02-24 16:07:51 +01002570 * @brief XPath result type.
2571 */
2572typedef enum {
2573 LY_XPATH_NODE_SET, /**< XPath node set */
2574 LY_XPATH_STRING, /**< XPath string */
2575 LY_XPATH_NUMBER, /**< XPath number */
2576 LY_XPATH_BOOLEAN /**< XPath boolean */
2577} LY_XPATH_TYPE;
2578
2579/**
2580 * @brief Evaluate an XPath on data and return the result or convert it first to an expected result type.
2581 *
2582 * Either all return type parameters @p node_set, @p string, @p number, and @p boolean with @p ret_type
2583 * are provided or exactly one of @p node_set, @p string, @p number, and @p boolean is provided with @p ret_type
2584 * being obvious and hence optional.
2585 *
2586 * @param[in] ctx_node XPath context node, NULL for the root node.
2587 * @param[in] tree Data tree to evaluate on.
2588 * @param[in] cur_mod Current module of @p xpath, needed for some kinds of @p format.
2589 * @param[in] xpath [XPath](@ref howtoXPath) to select.
2590 * @param[in] format Format of any prefixes in @p xpath.
2591 * @param[in] prefix_data Format-specific prefix data.
2592 * @param[in] vars Optional [sized array](@ref sizedarrays) of XPath variables.
2593 * @param[out] ret_type XPath type of the result selecting which of @p node_set, @p string, @p number, and @p boolean to use.
2594 * @param[out] node_set XPath node set result.
2595 * @param[out] string XPath string result.
2596 * @param[out] number XPath number result.
2597 * @param[out] boolean XPath boolean result.
2598 * @return LY_SUCCESS on success.
2599 * @return LY_ERR value on error.
2600 */
2601LIBYANG_API_DECL LY_ERR lyd_eval_xpath4(const struct lyd_node *ctx_node, const struct lyd_node *tree,
2602 const struct lys_module *cur_mod, const char *xpath, LY_VALUE_FORMAT format, void *prefix_data,
2603 const struct lyxp_var *vars, LY_XPATH_TYPE *ret_type, struct ly_set **node_set, char **string,
2604 long double *number, ly_bool *boolean);
2605
2606/**
Michal Vasko99a77882024-01-04 14:50:51 +01002607 * @brief Evaluate an XPath on data and free all the nodes except the subtrees selected by the expression.
2608 *
2609 * @param[in,out] tree Data tree to evaluate on and trim.
2610 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
2611 * @param[in] vars Optional [sized array](@ref sizedarrays) of XPath variables.
2612 * @return LY_SUCCESS on success.
2613 * @return LY_ERR value on error.
2614 */
2615LIBYANG_API_DEF LY_ERR lyd_trim_xpath(struct lyd_node **tree, const char *xpath, const struct lyxp_var *vars);
2616
2617/**
Michal Vaskoc84c9962021-05-18 16:16:29 +02002618 * @brief Search in given data for a node uniquely identified by a path.
Michal Vasko3e1f6552021-01-14 09:27:55 +01002619 *
Michal Vasko257bdcf2021-01-14 13:15:30 +01002620 * Always works in constant (*O(1)*) complexity. To be exact, it is *O(n)* where *n* is the depth
2621 * of the path used.
2622 *
Michal Vaskofbd0da42023-08-17 14:57:44 +02002623 * Opaque nodes are NEVER found/traversed.
2624 *
Michal Vasko3e1f6552021-01-14 09:27:55 +01002625 * @param[in] ctx_node Path context node.
2626 * @param[in] path [Path](@ref howtoXPath) to find.
2627 * @param[in] output Whether to search in RPC/action output nodes or in input nodes.
2628 * @param[out] match Can be NULL, otherwise the found data node.
2629 * @return LY_SUCCESS on success, @p match is set to the found node.
2630 * @return LY_EINCOMPLETE if only a parent of the node was found, @p match is set to this parent node.
2631 * @return LY_ENOTFOUND if no nodes in the path were found.
2632 * @return LY_ERR on other errors.
2633 */
Michal Vasko55896172022-02-17 10:47:21 +01002634LIBYANG_API_DECL LY_ERR lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output,
2635 struct lyd_node **match);
Michal Vasko3e1f6552021-01-14 09:27:55 +01002636
Michal Vasko43297a02021-05-19 11:12:37 +02002637/**
Michal Vaskobb22b182021-06-14 08:14:21 +02002638 * @brief Find the target node of a compiled path (::lyd_value instance-identifier).
2639 *
2640 * @param[in] path Compiled path structure.
2641 * @param[in] tree Data tree to be searched.
2642 * @param[out] match Can be NULL, otherwise the found data node.
2643 * @return LY_SUCCESS on success, @p match is set to the found node.
2644 * @return LY_ENOTFOUND if no match was found.
2645 * @return LY_ERR on other errors.
2646 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002647LIBYANG_API_DECL LY_ERR lyd_find_target(const struct ly_path *path, const struct lyd_node *tree, struct lyd_node **match);
Michal Vaskobb22b182021-06-14 08:14:21 +02002648
2649/**
Michal Vasko9b560332023-04-24 15:43:56 +02002650 * @brief Get current timezone (including DST setting) UTC (GMT) time offset in seconds.
Michal Vaskof17bb2a2023-02-10 11:34:55 +01002651 *
2652 * @return Timezone shift in seconds.
2653 */
2654LIBYANG_API_DECL int ly_time_tz_offset(void);
2655
2656/**
Michal Vasko9b560332023-04-24 15:43:56 +02002657 * @brief Get UTC (GMT) timezone offset in seconds at a specific timestamp (including DST setting).
2658 *
2659 * @param[in] time Timestamp to get the offset at.
2660 * @return Timezone shift in seconds.
2661 */
2662LIBYANG_API_DECL int ly_time_tz_offset_at(time_t time);
2663
2664/**
Michal Vasko43297a02021-05-19 11:12:37 +02002665 * @brief Convert date-and-time from string to UNIX timestamp and fractions of a second.
2666 *
2667 * @param[in] value Valid string date-and-time value.
2668 * @param[out] time UNIX timestamp.
2669 * @param[out] fractions_s Optional fractions of a second, set to NULL if none.
2670 * @return LY_ERR value.
2671 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002672LIBYANG_API_DECL LY_ERR ly_time_str2time(const char *value, time_t *time, char **fractions_s);
Michal Vasko43297a02021-05-19 11:12:37 +02002673
2674/**
2675 * @brief Convert UNIX timestamp and fractions of a second into canonical date-and-time string value.
2676 *
2677 * @param[in] time UNIX timestamp.
2678 * @param[in] fractions_s Fractions of a second, if any.
Michal Vaskoc515a2b2021-05-19 11:55:00 +02002679 * @param[out] str String date-and-time value in the local timezone.
Michal Vasko43297a02021-05-19 11:12:37 +02002680 * @return LY_ERR value.
2681 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002682LIBYANG_API_DECL LY_ERR ly_time_time2str(time_t time, const char *fractions_s, char **str);
Michal Vasko43297a02021-05-19 11:12:37 +02002683
2684/**
2685 * @brief Convert date-and-time from string to timespec.
2686 *
2687 * @param[in] value Valid string date-and-time value.
2688 * @param[out] ts Timespec.
2689 * @return LY_ERR value.
2690 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002691LIBYANG_API_DECL LY_ERR ly_time_str2ts(const char *value, struct timespec *ts);
Michal Vasko43297a02021-05-19 11:12:37 +02002692
2693/**
2694 * @brief Convert timespec into date-and-time string value.
2695 *
2696 * @param[in] ts Timespec.
Michal Vaskoc515a2b2021-05-19 11:55:00 +02002697 * @param[out] str String date-and-time value in the local timezone.
Michal Vasko43297a02021-05-19 11:12:37 +02002698 * @return LY_ERR value.
2699 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002700LIBYANG_API_DECL LY_ERR ly_time_ts2str(const struct timespec *ts, char **str);
Michal Vasko43297a02021-05-19 11:12:37 +02002701
stewegf9041a22024-01-18 13:29:12 +01002702/**
2703 * @brief Gets the leafref links record for given node
2704 *
Michal Vaskoeeec27a2024-01-22 14:32:34 +01002705 * This API requires usage of ::LY_CTX_LEAFREF_LINKING context flag.
stewegf9041a22024-01-18 13:29:12 +01002706 *
2707 * @param[in] node The term data node.
2708 * @param[out] record The leafref links record
2709 * @return LY_SUCCESS on success.
2710 * @return LY_ERR value on error.
2711 */
2712LIBYANG_API_DECL LY_ERR lyd_leafref_get_links(const struct lyd_node_term *node, const struct lyd_leafref_links_rec **record);
2713
2714/**
2715 * @brief Traverse through data tree including root node siblings and adds leafrefs links to the given nodes
2716 *
Michal Vaskoeeec27a2024-01-22 14:32:34 +01002717 * This API requires usage of ::LY_CTX_LEAFREF_LINKING context flag.
stewegf9041a22024-01-18 13:29:12 +01002718 *
2719 * @param[in] tree The data tree root node.
2720 * @return LY_SUCCESS on success.
2721 * @return LY_ERR value on error.
2722 */
2723LIBYANG_API_DECL LY_ERR lyd_leafref_link_node_tree(const struct lyd_node *tree);
2724
Radek Krejcie7b95092019-05-15 11:03:07 +02002725#ifdef __cplusplus
2726}
2727#endif
2728
2729#endif /* LY_TREE_DATA_H_ */