blob: 72a6118985adf7dfc413d869e65373d002de3c11 [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;
Radek Krejcie7b95092019-05-15 11:03:07 +020050
Radek Krejcie7b95092019-05-15 11:03:07 +020051/**
Radek Krejci8678fa42020-08-18 16:07:28 +020052 * @page howtoData Data Instances
53 *
54 * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema
55 * it can be cast to several other structures.
56 *
57 * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq.
58 * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the
59 * context. Such a node can appear in several places in the data tree.
60 * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were
61 * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can
62 * appear as a node's attributes.
63 * - As a representation of YANG anydata/anyxml content.
64 * - As envelopes of standard data tree instances (RPCs, actions or Notifications).
65 *
66 * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is
67 * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype).
68 * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide
69 * structure of the tree by having children nodes.
70 * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal
71 * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020072 * structure with string representation of the value (retrieved by ::lyd_get_value() and ::lyd_get_meta_value()) and
73 * the type specific data stored in the structure's union according to the real type of the value (::lyd_value.realtype).
74 * The string representation provides canonical representation of the value in case the type has the canonical
75 * representation specified. Otherwise, it is the original value or, in case the value can contain prefixes, the JSON
76 * format is used to make the value unambiguous.
Radek Krejci8678fa42020-08-18 16:07:28 +020077 * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes.
78 *
79 * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use
80 * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros
81 * and functions.
82 * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node.
83 * - ::LYD_CTX to get libyang context from a data node.
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020084 * - ::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 +020085 * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first).
86 * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page.
87 *
88 * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of
89 * \b lyd_find_*() functions.
90 *
91 * More information about specific operations with data instances can be found on the following pages:
92 * - @subpage howtoDataParsers
93 * - @subpage howtoDataValidation
94 * - @subpage howtoDataWD
95 * - @subpage howtoDataManipulation
96 * - @subpage howtoDataPrinters
Radek Krejcif9943642021-04-26 10:18:21 +020097 * - @subpage howtoDataLYB
Radek Krejci8678fa42020-08-18 16:07:28 +020098 *
99 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
100 *
101 * Functions List (not assigned to above subsections)
102 * --------------------------------------------------
103 * - ::lyd_child()
104 * - ::lyd_child_no_keys()
105 * - ::lyd_parent()
106 * - ::lyd_owner_module()
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200107 * - ::lyd_get_value()
108 * - ::lyd_get_meta_value()
Radek Krejci8678fa42020-08-18 16:07:28 +0200109 * - ::lyd_find_xpath()
Michal Vasko3e1f6552021-01-14 09:27:55 +0100110 * - ::lyd_find_path()
Michal Vaskobb22b182021-06-14 08:14:21 +0200111 * - ::lyd_find_target()
Radek Krejci8678fa42020-08-18 16:07:28 +0200112 * - ::lyd_find_sibling_val()
113 * - ::lyd_find_sibling_first()
Michal Vasko1d4af6c2021-02-22 13:31:26 +0100114 * - ::lyd_find_sibling_opaq_next()
Radek Krejci8678fa42020-08-18 16:07:28 +0200115 * - ::lyd_find_meta()
116 *
117 * - ::lyd_path()
Michal Vasko2c1f66d2024-01-22 14:36:13 +0100118 * - ::lyd_find_target()
Radek Krejci8678fa42020-08-18 16:07:28 +0200119 *
120 * - ::lyd_lyb_data_length()
Radek Krejci75104122021-04-01 15:37:45 +0200121 *
122 *
123 * @section howtoDataMetadata Metadata Support
124 *
125 * YANG Metadata annotations are defined in [RFC 7952](https://tools.ietf.org/html/rfc7952) as YANG extension (and libyang
126 * [implements them as internal extension plugin](@ref howtoPluginsExtensions)). In practice, it allows to have XML
127 * attributes (there is also a special encoding for JSON) in YANG modeled data. libyang does not allow to have any XML
128 * attribute without the appropriate annotation definition describing the data as it is done e.g. for leafs. When an
129 * attribute without a matching annotation definition is found in the input data, it is:
130 * - silently dropped (with warning) or
131 * - an error is reported in case the ::LYD_PARSE_STRICT parser option is provided to the
132 * [parser function](@ref howtoDataParsers) or
133 * - stored into a generic ::lyd_attr structure without a connection with any YANG module in case the ::LYD_PARSE_OPAQ
134 * parser options is provided to the [parser function](@ref howtoDataParsers).
135 *
136 * There are some XML attributes, described by [YANG](https://tools.ietf.org/html/rfc7950) and
137 * [NETCONF](https://tools.ietf.org/html/rfc6241) specifications, which are not defined as annotations, but libyang
138 * implements them this way. In case of attributes in the YANG namespace (`insert`, `value` and `key` attributes
139 * for the NETCONF edit-config operation), they are defined in special libyang's internal module `yang`, which is
140 * available in each context and the content of this schema can be printed via
141 * [schema printers](@ref howtoSchemaPrinters).
142 *
143 * In case of the attributes described in [NETCONF specification](https://tools.ietf.org/html/rfc6241), the libyang's
144 * annotations structures are hidden and cannot be printed despite, internally, they are part of the `ietf-netconf`'s
145 * schema structure. Therefore, these attributes are available only when the `ietf-netconf` schema is loaded in the
146 * context. The definitions of these annotations are as follows:
147 *
148 * md:annotation operation {
149 * type enumeration {
150 * enum merge;
151 * enum replace;
152 * enum create;
153 * enum delete;
154 * enum remove;
155 * }
156 * }
157 *
158 * md:annotation type {
159 * type enumeration {
160 * enum subtree;
161 * enum xpath {
162 * if-feature "nc:xpath";
163 * }
164 * }
165 * }
166 *
167 * md:annotation select {
168 * type string;
169 * }
170 *
171 * Note, that, following the specification,
172 * - the `type` and `select` XML attributes are supposed to be unqualified (without namespace) and that
173 * - the `select`'s content is XPath and it is internally transformed by libyang into the format where the
174 * XML namespace prefixes are replaced by the YANG module names.
175 *
176 *
177 * @section howtoDataYangdata yang-data Support
178 *
179 * [RFC 8040](https://tools.ietf.org/html/rfc8040) defines ietf-restconf module, which includes yang-data extension. Despite
180 * the definition in the RESTCONF YANG module, the yang-data concept is quite generic and used even in modules without a
181 * connection to RESTCONF protocol. The extension allows to define a separated YANG trees usable separately from any
182 * datastore.
183 *
184 * libyang implements support for yang-data internally as an [extension plugin](@ref howtoPluginsExtensions). To ease the
185 * use of yang-data with libyang, there are several generic functions, which are usable for yang-data:
186 *
187 * - ::lyd_parse_ext_data()
188 * - ::lyd_parse_ext_op()
189 *
190 * - ::lys_getnext_ext()
191 *
192 * - ::lyd_new_ext_inner()
193 * - ::lyd_new_ext_list()
194 * - ::lyd_new_ext_term()
195 * - ::lyd_new_ext_any()
196 * - ::lyd_new_ext_path()
Michal Vasko1fd27412022-02-11 10:04:50 +0100197 *
198 * @section howtoDataMountpoint mount-point Support
199 *
200 * [RFC 8528](https://tools.ietf.org/html/rfc8528) defines mount-point extension in ietf-yang-schema-mount YANG module.
201 * This extension is supported out-of-the-box but to be able to parse data in a mount point, additional run-time data
202 * need to be provided by a callback:
203 *
204 * - ::ly_ctx_set_ext_data_clb()
Michal Vasko1c47f5f2022-03-29 11:38:40 +0200205 *
Michal Vaskob09f3ec2022-04-05 12:26:24 +0200206 * The mounted data can be parsed directly from data files or created manually using the standard functions. However,
207 * note that the mounted data use **their own context** created as needed. For *inline* data this means that any new
208 * request for a mount-point schema node results in a new context creation because it is impossible to determine
209 * whether any existing context can be used. Also, all these contexts created for the mounted data are **never**
210 * freed automatically except when the parent context is being freed. So, to avoid redundant context creation, it is
211 * always advised to use *shared-schema* for mount-points.
212 *
213 * In case it is not possible and *inline* mount point must be defined, it is still possible to avoid creating
214 * additional contexts. When the top-level node right under a schema node with a mount-point is created, always use
215 * this node for creation of any descendants. So, when using ::lyd_new_path(), use the node as `parent` and specify
216 * relative `path`.
Radek Krejci8678fa42020-08-18 16:07:28 +0200217 */
218
219/**
220 * @page howtoDataManipulation Manipulating Data
221 *
222 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
223 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
224 * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly
225 * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore,
226 * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure
227 * that the changed data tree is valid.
228 *
229 * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and
230 * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the
231 * nodes order from the YANG schema. So the node is not inserted to the end or beginning of the siblings list, but after the
232 * existing instance of the closest preceding sibling node from the schema. In case the node is opaq (it is not connected
233 * with any schema node), it is placed to the end of the sibling node in the order they are inserted in. The only situation
234 * when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list instances. In such
235 * a case the ::lyd_insert_after() or ::lyd_insert_before() can be used.
236 *
237 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
238 * 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 +0100239 * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path() and
240 * ::lyd_new_path2()). The latter enables to create a whole path of nodes, requires less information
Radek Krejci8678fa42020-08-18 16:07:28 +0200241 * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using
242 * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single().
243 *
Radek Krejci8a5afc22021-03-12 11:10:47 +0100244 * Note, that in case the node is defined in an extension instance, the functions mentioned above do not work until you
245 * provide parent where the new node is supposed to be inserted. The reason is that all the functions searches for the
246 * 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 +0100247 * ::lyd_new_ext_inner(), ::lyd_new_ext_term(), ::lyd_new_ext_any(), ::lyd_new_ext_list() and ::lyd_new_ext_path()
248 * functions.
Radek Krejci8a5afc22021-03-12 11:10:47 +0100249 *
Radek Krejci75104122021-04-01 15:37:45 +0200250 * The [metadata](@ref howtoDataMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta()
Radek Krejci8678fa42020-08-18 16:07:28 +0200251 * and ::lyd_new_attr().
252 *
253 * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value
254 * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value
255 * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node
256 * (::lyd_value_validate()).
257 *
258 * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions.
259 * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when
260 * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more
261 * powerful insert.
262 *
263 * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose,
264 * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one
265 * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple
266 * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and
267 * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(),
268 * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used.
269 *
270 * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using
271 * ::lyd_free_all() (or other \b lyd_free_*() functions).
272 *
273 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
274 * same context.
275 *
276 * Modifying the single data tree in multiple threads is not safe.
277 *
278 * Functions List
279 * --------------
280 * - ::lyd_new_inner()
281 * - ::lyd_new_term()
Radek Krejci09c77442021-04-26 11:10:34 +0200282 * - ::lyd_new_term_bin()
283 * - ::lyd_new_term_canon()
Radek Krejci8678fa42020-08-18 16:07:28 +0200284 * - ::lyd_new_list()
Michal Vasko208e6d62021-06-28 11:23:50 +0200285 * - ::lyd_new_list_bin()
286 * - ::lyd_new_list_canon()
Radek Krejci8678fa42020-08-18 16:07:28 +0200287 * - ::lyd_new_list2()
288 * - ::lyd_new_any()
289 * - ::lyd_new_opaq()
Michal Vasko8d65f852021-02-17 11:28:13 +0100290 * - ::lyd_new_opaq2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200291 * - ::lyd_new_attr()
Michal Vasko8d65f852021-02-17 11:28:13 +0100292 * - ::lyd_new_attr2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200293 * - ::lyd_new_meta()
294 * - ::lyd_new_path()
295 * - ::lyd_new_path2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200296 *
Radek Krejcidd2a7662021-03-12 11:26:34 +0100297 * - ::lyd_new_ext_inner()
Radek Krejci8a5afc22021-03-12 11:10:47 +0100298 * - ::lyd_new_ext_term()
Radek Krejci8247bae2021-03-12 11:47:02 +0100299 * - ::lyd_new_ext_list()
Radek Krejci0b963da2021-03-12 13:23:44 +0100300 * - ::lyd_new_ext_any()
Radek Krejci95ccd1b2021-03-12 14:57:22 +0100301 * - ::lyd_new_ext_path()
Radek Krejci8a5afc22021-03-12 11:10:47 +0100302 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200303 * - ::lyd_dup_single()
304 * - ::lyd_dup_siblings()
305 * - ::lyd_dup_meta_single()
306 *
307 * - ::lyd_insert_child()
308 * - ::lyd_insert_sibling()
309 * - ::lyd_insert_after()
310 * - ::lyd_insert_before()
311 *
312 * - ::lyd_value_compare()
313 * - ::lyd_value_validate()
314 *
315 * - ::lyd_change_term()
Radek Krejci09c77442021-04-26 11:10:34 +0200316 * - ::lyd_change_term_bin()
317 * - ::lyd_change_term_canon()
Radek Krejci8678fa42020-08-18 16:07:28 +0200318 * - ::lyd_change_meta()
319 *
320 * - ::lyd_compare_single()
321 * - ::lyd_compare_siblings()
322 * - ::lyd_compare_meta()
323 * - ::lyd_diff_tree()
324 * - ::lyd_diff_siblings()
325 * - ::lyd_diff_apply_all()
326 * - ::lyd_diff_apply_module()
327 * - ::lyd_diff_reverse_all()
328 * - ::lyd_diff_merge_all()
329 * - ::lyd_diff_merge_module()
330 * - ::lyd_diff_merge_tree()
331 *
332 * - ::lyd_merge_tree()
333 * - ::lyd_merge_siblings()
Michal Vaskocd3f6172021-05-18 16:14:50 +0200334 * - ::lyd_merge_module()
Radek Krejci8678fa42020-08-18 16:07:28 +0200335 *
336 * - ::lyd_unlink_tree()
337 *
338 * - ::lyd_free_all()
339 * - ::lyd_free_siblings()
340 * - ::lyd_free_tree()
341 * - ::lyd_free_meta_single()
342 * - ::lyd_free_meta_siblings()
343 * - ::lyd_free_attr_single()
344 * - ::lyd_free_attr_siblings()
345 *
Michal Vaskoa820c312021-02-05 16:33:00 +0100346 * - ::lyd_any_value_str()
Radek Krejci8678fa42020-08-18 16:07:28 +0200347 * - ::lyd_any_copy_value()
348 */
349
350/**
351 * @page howtoDataWD Default Values
352 *
353 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
354 * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to
355 * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the
356 * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata
357 * providing the information about the default values cannot be used. It means that when parsing data, the default nodes
358 * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected
359 * nodes are printed without the ietf-netconf-with-defaults metadata.
360 *
361 * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them
362 * via @ref dataprinterflags when printing data trees.
363 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
364 * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option.
365 * This is the default with-defaults mode of the printer. The data nodes do not contain any additional
366 * metadata information.
367 * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option.
368 * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or
369 * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by
370 * ::LYD_PRINT_WD_ALL option.
371 * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value
372 * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode.
373 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes
374 * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option.
375 *
376 * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation).
377 * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding
378 * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the
379 * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the
380 * appropriate metadata.
381 *
382 * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes
383 * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the
384 * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions.
385 *
386 * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member
387 * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container
388 * 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
389 * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added
390 * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option.
391 *
392 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
393 * use ::lyd_is_default() function.
394 *
395 * Functions List
396 * --------------
397 * - ::lyd_is_default()
398 * - ::lyd_new_implicit_all()
399 * - ::lyd_new_implicit_module()
400 * - ::lyd_new_implicit_tree()
401 */
402
403/**
Radek Krejcif9943642021-04-26 10:18:21 +0200404 * @page howtoDataLYB LYB Binary Format
405 *
406 * LYB (LibYang Binary) is a proprietary libyang binary data and file format. Its primary purpose is efficient
407 * serialization (printing) and deserialization (parsing). With this goal in mind, every term node value is stored
408 * in its new binary format specification according to its type. Following is the format for all types with explicit
409 * support out-of-the-box (meaning that have a special type plugin). Any derived types inherit the format of its
410 * closest type with explicit support (up to a built-in type).
Radek Krejci09c77442021-04-26 11:10:34 +0200411 *
Michal Vaskof1bcb5c2021-04-30 09:21:25 +0200412 * @section howtoDataLYBTypes Format of specific data type values
Radek Krejcif9943642021-04-26 10:18:21 +0200413 */
414
415/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200416 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200417 * @defgroup datatree Data Tree
Radek Krejcie7b95092019-05-15 11:03:07 +0200418 * @{
419 *
420 * Data structures and functions to manipulate and access instance data tree.
421 */
422
Michal Vasko64246d82020-08-19 12:35:00 +0200423/* *INDENT-OFF* */
424
Michal Vaskoa276cd92020-08-10 15:10:08 +0200425/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200426 * @brief Macro to iterate via all elements in a data tree. This is the opening part
427 * to the #LYD_TREE_DFS_END - they always have to be used together.
428 *
429 * The function follows deep-first search algorithm:
430 * <pre>
431 * 1
432 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100433 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +0200434 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100435 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +0200436 * </pre>
437 *
Radek Krejci0935f412019-08-20 16:15:18 +0200438 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200439 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
440 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200441 *
Michal Vasko56daf732020-08-10 10:57:18 +0200442 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
443 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200444 *
445 * Use with opening curly bracket '{' after the macro.
446 *
447 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200448 * @param ELEM Iterator intended for use in the block.
449 */
Michal Vasko56daf732020-08-10 10:57:18 +0200450#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200451 { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +0200452 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +0200453 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200454 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +0200455
456/**
457 * @brief Macro to iterate via all elements in a tree. This is the closing part
458 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
459 *
460 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200461 * START can be any of the lyd_node* types, ELEM variable must be a pointer
462 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200463 *
464 * Use with closing curly bracket '}' after the macro.
465 *
466 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200467 * @param ELEM Iterator intended for use in the block.
468 */
469
Michal Vasko56daf732020-08-10 10:57:18 +0200470#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200471 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200472 if (LYD_TREE_DFS_continue) { \
473 (LYD_TREE_DFS_next) = NULL; \
474 } else { \
Radek Krejcia1c1e542020-09-29 16:06:52 +0200475 (LYD_TREE_DFS_next) = lyd_child(ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200476 }\
477 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200478 /* no children */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100479 if ((ELEM) == (struct lyd_node *)(START)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200480 /* we are done, (START) has no children */ \
481 break; \
482 } \
483 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200484 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200485 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200486 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200487 /* parent is already processed, go to its sibling */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100488 (ELEM) = (struct lyd_node *)(ELEM)->parent; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200489 /* no siblings, go back through parents */ \
490 if ((ELEM)->parent == (START)->parent) { \
491 /* we are done, no next element to process */ \
492 break; \
493 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200494 (LYD_TREE_DFS_next) = (ELEM)->next; \
Christian Hopps59618972021-02-01 05:01:35 -0500495 } }
496
497/**
498 * @brief Macro to iterate via all schema node data instances in data siblings.
499 *
500 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
501 * @param SCHEMA Schema node of the searched instances.
502 * @param ELEM Iterator.
503 */
504#define LYD_LIST_FOR_INST(START, SCHEMA, ELEM) \
505 for (lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
506 (ELEM) && ((ELEM)->schema == (SCHEMA)); \
507 (ELEM) = (ELEM)->next)
508
509/**
510 * @brief Macro to iterate via all schema node data instances in data siblings allowing to modify the list itself.
511 *
512 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
513 * @param SCHEMA Schema node of the searched instances.
514 * @param NEXT Temporary storage to allow removing of the current iterator content.
515 * @param ELEM Iterator.
516 */
517#define LYD_LIST_FOR_INST_SAFE(START, SCHEMA, NEXT, ELEM) \
Michal Vasko61ad1ff2022-02-10 15:48:39 +0100518 for ((NEXT) = (ELEM) = NULL, lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
Christian Hopps59618972021-02-01 05:01:35 -0500519 (ELEM) && ((ELEM)->schema == (SCHEMA)) ? ((NEXT) = (ELEM)->next, 1) : 0; \
520 (ELEM) = (NEXT))
Radek Krejcie7b95092019-05-15 11:03:07 +0200521
Michal Vasko64246d82020-08-19 12:35:00 +0200522/* *INDENT-ON* */
523
Radek Krejcie7b95092019-05-15 11:03:07 +0200524/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200525 * @brief Macro to get context from a data tree node.
526 */
Michal Vasko5c7a8322021-06-25 09:12:05 +0200527#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((const struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200528
529/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200530 * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and
531 * [printer](@ref howtoDataPrinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200532 */
533typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200534 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
535 LYD_XML, /**< XML instance data format */
536 LYD_JSON, /**< JSON instance data format */
Michal Vasko69730152020-10-09 16:30:07 +0200537 LYD_LYB /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200538} LYD_FORMAT;
539
540/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200541 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200542 */
543typedef enum {
Radek Krejci8678fa42020-08-18 16:07:28 +0200544 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 +0200545 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
Radek Krejci8678fa42020-08-18 16:07:28 +0200546 with the data after a successful call (including calling ::lyd_free_all() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200547 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 +0200548 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
549 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200550 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
551 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 +0200552 LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200553} LYD_ANYDATA_VALUETYPE;
554
555/** @} */
556
557/**
558 * @brief YANG data representation
559 */
560struct lyd_value {
Radek Krejci995784f2021-04-26 08:02:13 +0200561 const char *_canonical; /**< Should never be accessed directly, instead ::lyd_get_value() and ::lyd_get_meta_value()
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200562 should be used. Serves as a cache for the canonical value or the JSON
563 representation if no canonical value is defined. */
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200564 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
565 in the schema node of the data node since the type's store plugin can use other types/plugins for
566 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
567 target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data
568 stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type.
569 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
570 the type used to store data directly in the same lyd_value instance. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200571
Radek Krejcie7b95092019-05-15 11:03:07 +0200572 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200573 int8_t boolean; /**< 0 as false, 1 as true */
574 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200575 int8_t int8; /**< 8-bit signed integer */
576 int16_t int16; /**< 16-bit signed integer */
577 int32_t int32; /**< 32-bit signed integer */
578 int64_t int64; /**< 64-bit signed integer */
579 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200580 uint16_t uint16; /**< 16-bit unsigned integer */
581 uint32_t uint32; /**< 32-bit unsigned integer */
582 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200583 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
584 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskobb22b182021-06-14 08:14:21 +0200585 struct ly_path *target; /**< Instance-identifier target path, use ::lyd_find_target() to evaluate
586 it on data. */
Michal Vasko3ce79712021-05-04 11:44:20 +0200587 struct lyd_value_union *subvalue; /** Union value with some metadata. */
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200588
589 void *dyn_mem; /**< pointer to generic data type value stored in dynamic memory */
590 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 +0200591 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype
592 plugin's callbacks to work with the data.*/
Radek Krejcie7b95092019-05-15 11:03:07 +0200593};
594
595/**
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200596 * @brief Get the value in format specific to the type.
597 *
598 * Should be used for any types that do not have their specific representation in the ::lyd_value union.
599 *
600 * @param[in] value Pointer to the value structure to read from (struct ::lyd_value *).
601 * @param[out] type_val Pointer to the type-specific value structure.
602 */
603#define LYD_VALUE_GET(value, type_val) \
604 ((sizeof *(type_val) > LYD_VALUE_FIXED_MEM_SIZE) \
605 ? ((type_val) = (((value)->dyn_mem))) \
606 : ((type_val) = ((void *)((value)->fixed_mem))))
607
608/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200609 * @brief Special lyd_value structure for built-in union values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200610 *
Michal Vasko3ce79712021-05-04 11:44:20 +0200611 * Represents data with multiple types (union). The ::lyd_value_union.value contains representation according to
612 * 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 +0200613 * 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 +0200614 */
Michal Vasko3ce79712021-05-04 11:44:20 +0200615struct lyd_value_union {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200616 struct lyd_value value; /**< representation of the value according to the selected union's subtype
Michal Vasko3ce79712021-05-04 11:44:20 +0200617 (stored as ::lyd_value.realtype here) */
618 void *original; /**< Original value. */
619 size_t orig_len; /**< Original value length. */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200620 uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */
Radek Krejci8df109d2021-04-23 12:19:08 +0200621 LY_VALUE_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200622 whether a value is valid for the specific format or not on later validations
623 (instance-identifier in XML looks different than in JSON). */
Radek Krejci0b013302021-03-29 15:22:32 +0200624 void *prefix_data; /**< Format-specific data for prefix resolution (see ly_resolve_prefix()) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200625 const struct lysc_node *ctx_node; /**< Context schema node. */
626};
627
628/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200629 * @brief Special lyd_value structure for built-in bits values.
Michal Vasko2724b922021-04-28 13:46:31 +0200630 */
631struct lyd_value_bits {
632 char *bitmap; /**< bitmap of size ::lyplg_type_bits_bitmap_size(), if its value is
633 cast to an integer type of the corresponding size, can be used
634 directly as a bitmap */
635 struct lysc_type_bitenum_item **items; /**< list of set pointers to the specification of the set
636 bits ([sized array](@ref sizedarrays)) */
637};
638
639/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200640 * @brief Special lyd_value structure for built-in binary values.
Michal Vasko495f4502021-04-27 14:48:05 +0200641 */
642struct lyd_value_binary {
Michal Vasko74515d02021-06-11 11:13:11 +0200643 void *data; /**< pointer to the binary value */
644 size_t size; /**< size of @p data value in bytes */
Michal Vasko495f4502021-04-27 14:48:05 +0200645};
646
647/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200648 * @brief Special lyd_value structure for ietf-inet-types ipv4-address-no-zone values.
649 */
650struct lyd_value_ipv4_address_no_zone {
651 struct in_addr addr; /**< IPv4 address in binary */
652};
653
654/**
655 * @brief Special lyd_value structure for ietf-inet-types ipv4-address values.
656 */
657struct lyd_value_ipv4_address {
658 struct in_addr addr; /**< IPv4 address in binary */
659 const char *zone; /**< Optional address zone */
660};
661
662/**
663 * @brief Special lyd_value structure for ietf-inet-types ipv4-prefix values.
664 */
665struct lyd_value_ipv4_prefix {
666 struct in_addr addr; /**< IPv4 host address in binary */
667 uint8_t prefix; /**< prefix length (0 - 32) */
668};
669
670/**
671 * @brief Special lyd_value structure for ietf-inet-types ipv6-address-no-zone values.
672 */
673struct lyd_value_ipv6_address_no_zone {
674 struct in6_addr addr; /**< IPv6 address in binary */
675};
676
677/**
678 * @brief Special lyd_value structure for ietf-inet-types ipv6-address values.
679 */
680struct lyd_value_ipv6_address {
681 struct in6_addr addr; /**< IPv6 address in binary */
682 const char *zone; /**< Optional address zone */
683};
684
685/**
686 * @brief Special lyd_value structure for ietf-inet-types ipv6-prefix values.
687 */
688struct lyd_value_ipv6_prefix {
689 struct in6_addr addr; /**< IPv6 host address in binary */
690 uint8_t prefix; /**< prefix length (0 - 128) */
691};
692
693/**
694 * @brief Special lyd_value structure for ietf-yang-types date-and-time values.
695 */
696struct lyd_value_date_and_time {
697 time_t time; /**< UNIX timestamp */
698 char *fractions_s; /**< Optional fractions of a second */
Michal Vaskoc2dabc32021-11-22 14:01:41 +0100699 ly_bool unknown_tz; /**< Whether the value is in the special -00:00 timezone. */
Michal Vasko2b421d92021-05-18 16:33:36 +0200700};
701
702/**
Michal Vaskoddd76592022-01-17 13:34:48 +0100703 * @brief Special lyd_value structure for ietf-yang-types xpath1.0 values.
704 */
705struct lyd_value_xpath10 {
706 struct lyxp_expr *exp;
707 const struct ly_ctx *ctx;
708 void *prefix_data;
709 LY_VALUE_FORMAT format;
710};
711
712/**
Michal Vasko52927e22020-03-16 17:26:14 +0100713 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200714 *
715 * 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 +0200716 * ::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 +0100717 * 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 +0100718 */
Michal Vaskoad92b672020-11-12 13:11:31 +0100719struct ly_opaq_name {
720 const char *name; /**< node name, without prefix if any was defined */
721 const char *prefix; /**< identifier used in the qualified name as the prefix, can be NULL */
Michal Vasko26bbb272022-08-02 14:54:33 +0200722
Radek Krejci1798aae2020-07-14 13:26:06 +0200723 union {
Radek Krejci8df109d2021-04-23 12:19:08 +0200724 const char *module_ns; /**< format ::LY_VALUE_XML - XML namespace of the node element */
725 const char *module_name; /**< format ::LY_VALUE_JSON - (inherited) name of the module of the element */
Radek Krejci1798aae2020-07-14 13:26:06 +0200726 };
Michal Vasko52927e22020-03-16 17:26:14 +0100727};
728
729/**
730 * @brief Generic attribute structure.
731 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200732struct lyd_attr {
Michal Vasko52927e22020-03-16 17:26:14 +0100733 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100734 struct lyd_attr *next; /**< pointer to the next attribute */
Michal Vaskoad92b672020-11-12 13:11:31 +0100735 struct ly_opaq_name name; /**< attribute name with module information */
Michal Vasko501af032020-11-11 20:27:44 +0100736 const char *value; /**< attribute value */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200737 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Michal Vaskoddd76592022-01-17 13:34:48 +0100738 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 +0100739 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko52927e22020-03-16 17:26:14 +0100740};
Radek Krejcie7b95092019-05-15 11:03:07 +0200741
Michal Vasko1bf09392020-03-27 12:38:10 +0100742#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 +0200743#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
744#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
745
746/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200747 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200748 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200749 * @{
750 *
751 * Various flags of data nodes.
752 *
753 * 1 - container 5 - anydata/anyxml
754 * 2 - list 6 - rpc/action
755 * 3 - leaf 7 - notification
756 * 4 - leaflist
757 *
758 * bit name 1 2 3 4 5 6 7
759 * ---------------------+-+-+-+-+-+-+-+
760 * 1 LYD_DEFAULT |x| |x|x| | | |
761 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100762 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100763 * +-+-+-+-+-+-+-+
764 * 3 LYD_NEW |x|x|x|x|x|x|x|
Michal Vaskoa65c72c2022-02-17 16:20:18 +0100765 * +-+-+-+-+-+-+-+
766 * 4 LYD_EXT |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200767 * ---------------------+-+-+-+-+-+-+-+
768 *
769 */
770
Michal Vaskoddd76592022-01-17 13:34:48 +0100771#define LYD_DEFAULT 0x01 /**< default (implicit) node */
772#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
773#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
774#define LYD_EXT 0x08 /**< node is the first sibling parsed as extension instance data */
Michal Vasko52927e22020-03-16 17:26:14 +0100775
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200776/** @} */
777
778/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200779 * @brief Generic structure for a data node.
780 */
781struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200782 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
783 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
784 used to get know that nodes are not equal, it cannot be used to decide that the
785 nodes are equal due to possible collisions. */
786 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100787 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200788 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
789 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
790 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
791 never NULL. If there is no sibling node, pointer points to the node
792 itself. In case of the first node, this pointer points to the last
793 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100794 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200795 void *priv; /**< private user data, not used by libyang */
Radek Krejcie7b95092019-05-15 11:03:07 +0200796};
797
798/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200799 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200800 */
801struct lyd_node_inner {
Michal Vasko9e685082021-01-29 14:49:09 +0100802 union {
803 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200804
Michal Vasko9e685082021-01-29 14:49:09 +0100805 struct {
806 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
807 values if list or hashes of all nodes of subtree in case of keyless
808 list). Note that while hash can be used to get know that nodes are
809 not equal, it cannot be used to decide that the nodes are equal due
810 to possible collisions. */
811 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
812 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
813 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
814 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
815 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
816 never NULL. If there is no sibling node, pointer points to the node
817 itself. In case of the first node, this pointer points to the last
818 node in the list. */
819 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
820 void *priv; /**< private user data, not used by libyang */
821 };
822 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200823
824 struct lyd_node *child; /**< pointer to the first child node. */
Michal Vasko8efac242023-03-30 08:24:56 +0200825 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 +0200826
Radek Krejci8678fa42020-08-18 16:07:28 +0200827#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 +0200828};
829
830/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100831 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200832 */
833struct lyd_node_term {
Michal Vasko9e685082021-01-29 14:49:09 +0100834 union {
835 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200836
Michal Vasko9e685082021-01-29 14:49:09 +0100837 struct {
838 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
839 values if list or hashes of all nodes of subtree in case of keyless
840 list). Note that while hash can be used to get know that nodes are
841 not equal, it cannot be used to decide that the nodes are equal due
842 to possible collisions. */
843 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
844 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
845 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
846 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
847 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
848 never NULL. If there is no sibling node, pointer points to the node
849 itself. In case of the first node, this pointer points to the last
850 node in the list. */
851 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
852 void *priv; /**< private user data, not used by libyang */
853 };
854 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200855
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200856 struct lyd_value value; /**< node's value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200857};
858
859/**
Christian Hopps61213e02021-04-12 20:41:32 -0400860 * @brief union for anydata/anyxml value representation.
861 */
862union lyd_any_value {
863 struct lyd_node *tree; /**< data tree */
864 const char *str; /**< Generic string data */
865 const char *xml; /**< Serialized XML data */
866 const char *json; /**< I-JSON encoded string */
867 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
868};
869
870/**
871 * @brief Data node structure for the anydata data tree nodes - anydata or
872 * anyxml.
Radek Krejcie7b95092019-05-15 11:03:07 +0200873 */
874struct lyd_node_any {
Michal Vasko9e685082021-01-29 14:49:09 +0100875 union {
876 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200877
Michal Vasko9e685082021-01-29 14:49:09 +0100878 struct {
879 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
880 values if list or hashes of all nodes of subtree in case of keyless
881 list). Note that while hash can be used to get know that nodes are
882 not equal, it cannot be used to decide that the nodes are equal due
883 to possible collisions. */
884 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
885 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
886 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
887 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
888 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
889 never NULL. If there is no sibling node, pointer points to the node
890 itself. In case of the first node, this pointer points to the last
891 node in the list. */
892 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
893 void *priv; /**< private user data, not used by libyang */
894 };
895 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200896
Christian Hopps61213e02021-04-12 20:41:32 -0400897 union lyd_any_value value; /**< pointer to the stored value representation of the anydata/anyxml node */
Michal Vasko9e685082021-01-29 14:49:09 +0100898 LYD_ANYDATA_VALUETYPE value_type; /**< type of the data stored as ::lyd_node_any.value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200899};
900
901/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +0100902 * @brief Get the name (associated with) of a data node. Works for opaque nodes as well.
903 *
904 * @param[in] node Node to examine.
905 * @return Data node name.
906 */
907#define LYD_NAME(node) ((node)->schema ? (node)->schema->name : ((struct lyd_node_opaq *)node)->name.name)
908
909/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200910 * @ingroup datatree
911 * @defgroup lydvalhints Value format hints.
Radek Krejci1798aae2020-07-14 13:26:06 +0200912 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200913 *
914 * Hints for the type of the data value.
915 *
916 * Any information about value types encoded in the format is hinted by these values.
Radek Krejci1798aae2020-07-14 13:26:06 +0200917 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200918#define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */
919#define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */
920#define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */
921#define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */
922#define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */
923#define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */
924#define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */
925/**
926 * @} lydvalhints
927 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200928
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200929/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200930 * @ingroup datatree
931 * @defgroup lydnodehints Node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200932 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200933 *
934 * Hints for the type of the data node.
935 *
936 * Any information about node types encoded in the format is hinted by these values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200937 */
938#define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */
939#define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200940/**
941 * @} lydnodehints
942 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200943
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200944/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200945 * @ingroup datatree
946 * @defgroup lydhints Value and node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200947 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200948 *
949 * Hints for the types of data node and its value.
950 *
951 * Any information about value and node types encoded in the format is hinted by these values.
952 * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints).
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200953 */
954#define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when
955 there is no encoding or it does not provide any additional information about
956 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
957 or [node hints](@ref lydnodehints). */
958#define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when
959 there is no encoding or it does not provide any additional information about
960 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
961 or [node hints](@ref lydnodehints). */
962/**
963 * @} lydhints
964 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200965
966/**
Michal Vasko52927e22020-03-16 17:26:14 +0100967 * @brief Data node structure for unparsed (opaque) nodes.
968 */
969struct lyd_node_opaq {
Michal Vasko9e685082021-01-29 14:49:09 +0100970 union {
971 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
Michal Vasko26bbb272022-08-02 14:54:33 +0200972
Michal Vasko9e685082021-01-29 14:49:09 +0100973 struct {
974 uint32_t hash; /**< always 0 */
975 uint32_t flags; /**< always 0 */
976 const struct lysc_node *schema; /**< always NULL */
977 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
978 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
979 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
980 never NULL. If there is no sibling node, pointer points to the node
981 itself. In case of the first node, this pointer points to the last
982 node in the list. */
983 struct lyd_meta *meta; /**< always NULL */
984 void *priv; /**< private user data, not used by libyang */
985 };
986 }; /**< common part corresponding to ::lyd_node */
Michal Vasko52927e22020-03-16 17:26:14 +0100987
Michal Vasko501af032020-11-11 20:27:44 +0100988 struct lyd_node *child; /**< pointer to the child node (compatible with ::lyd_node_inner) */
989
Michal Vaskoad92b672020-11-12 13:11:31 +0100990 struct ly_opaq_name name; /**< node name with module information */
Michal Vasko52927e22020-03-16 17:26:14 +0100991 const char *value; /**< original value */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200992 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Radek Krejci8df109d2021-04-23 12:19:08 +0200993 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 +0100994 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko501af032020-11-11 20:27:44 +0100995
Michal Vasko9e685082021-01-29 14:49:09 +0100996 struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */
Michal Vasko52927e22020-03-16 17:26:14 +0100997 const struct ly_ctx *ctx; /**< libyang context */
998};
999
1000/**
stewegf9041a22024-01-18 13:29:12 +01001001 * @brief Structure of leafref links record.
1002 */
1003struct lyd_leafref_links_rec {
1004 const struct lyd_node_term *node; /** pointer to the data node itself */
1005 const struct lyd_node_term **leafref_nodes; /** list of the leafref pointing to this data node [sized array](@ref sizedarrays)),
1006 By default it is empty. It is filled automatically by validation function of
1007 leafref nodes, which are valid and are not using 'require-instance false;'.
1008 It can also be populated based on manual request using
1009 [link api](@ref lyd_leafref_link_node_tree). Freeing of the resources is
1010 automatic. */
steweg67388952024-01-25 12:14:50 +01001011 const struct lyd_node_term **target_nodes; /** list of leafref target data nodes [sized array](@ref sizedarrays)). Byt default
1012 it is empty. The logic is the same as for [leafref_nodes](@ref leafref_nodes) and
1013 is filled only for leafrefs */
stewegf9041a22024-01-18 13:29:12 +01001014};
1015
1016/**
Radek Krejcia1c1e542020-09-29 16:06:52 +02001017 * @brief Get the generic parent pointer of a data node.
1018 *
1019 * @param[in] node Node whose parent pointer to get.
1020 * @return Pointer to the parent node of the @p node.
1021 * @return NULL in case of the top-level node or if the @p node is NULL itself.
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001022 */
Michal Vasko4e947032024-01-22 12:17:51 +01001023static inline struct lyd_node *
1024lyd_parent(const struct lyd_node *node)
1025{
1026 return (node && node->parent) ? &node->parent->node : NULL;
1027}
Michal Vasko5bfd4be2020-06-23 13:26:19 +02001028
1029/**
Radek Krejcia1c1e542020-09-29 16:06:52 +02001030 * @brief Get the child pointer of a generic data node.
Radek Krejcie7b95092019-05-15 11:03:07 +02001031 *
Radek Krejcia1c1e542020-09-29 16:06:52 +02001032 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
1033 *
1034 * If you need to skip key children, use ::lyd_child_no_keys().
1035 *
1036 * @param[in] node Node to use.
1037 * @return Pointer to the first child node (if any) of the @p node.
Radek Krejcie7b95092019-05-15 11:03:07 +02001038 */
Michal Vasko4e947032024-01-22 12:17:51 +01001039static inline struct lyd_node *
1040lyd_child(const struct lyd_node *node)
1041{
1042 if (!node) {
1043 return NULL;
1044 }
1045
1046 if (!node->schema) {
1047 /* opaq node */
1048 return ((const struct lyd_node_opaq *)node)->child;
1049 }
1050
1051 if (node->schema->nodetype & (LYS_CONTAINER | LYS_LIST | LYS_RPC | LYS_ACTION | LYS_NOTIF)) {
1052 return ((const struct lyd_node_inner *)node)->child;
1053 }
1054
1055 return NULL;
1056}
Radek Krejcia1c1e542020-09-29 16:06:52 +02001057
1058/**
1059 * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST.
1060 *
1061 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
1062 *
1063 * If you need to take key children into account, use ::lyd_child().
1064 *
1065 * @param[in] node Node to use.
1066 * @return Pointer to the first child node (if any) of the @p node.
1067 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001068LIBYANG_API_DECL struct lyd_node *lyd_child_no_keys(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +02001069
1070/**
Michal Vaskoc193ce92020-03-06 11:04:48 +01001071 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
1072 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
1073 *
Michal Vaskofcdf3012020-11-23 16:57:03 +01001074 * Also works for opaque nodes, if it is possible to resolve the module.
1075 *
Michal Vaskoc193ce92020-03-06 11:04:48 +01001076 * @param[in] node Data node to examine.
1077 * @return Module owner of the node.
1078 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001079LIBYANG_API_DECL const struct lys_module *lyd_owner_module(const struct lyd_node *node);
Michal Vaskoc193ce92020-03-06 11:04:48 +01001080
1081/**
Michal Vasko420cc252023-08-24 08:14:24 +02001082 * @brief Get the module of a node. Useful mainly for opaque nodes.
1083 *
1084 * @param[in] node Node to examine.
1085 * @return Module of the node.
1086 */
1087LIBYANG_API_DECL const struct lys_module *lyd_node_module(const struct lyd_node *node);
1088
1089/**
Radek Krejci19611252020-10-04 13:54:53 +02001090 * @brief Check whether a node value equals to its default one.
1091 *
1092 * @param[in] node Term node to test.
1093 * @return false (no, it is not a default node) or true (yes, it is default)
1094 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001095LIBYANG_API_DECL ly_bool lyd_is_default(const struct lyd_node *node);
Radek Krejci19611252020-10-04 13:54:53 +02001096
1097/**
Radek Krejcica989142020-11-05 11:32:22 +01001098 * @brief Learn the relative position of a list or leaf-list instance within other instances of the same schema node.
1099 *
1100 * @param[in] instance List or leaf-list instance to get the position of.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001101 * @return 0 on error.
1102 * @return Positive integer of the @p instance position.
Radek Krejcica989142020-11-05 11:32:22 +01001103 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001104LIBYANG_API_DECL uint32_t lyd_list_pos(const struct lyd_node *instance);
Radek Krejcica989142020-11-05 11:32:22 +01001105
1106/**
Radek Krejci4233f9b2020-11-05 12:38:35 +01001107 * @brief Get the first sibling of the given node.
1108 *
1109 * @param[in] node Node which first sibling is going to be the result.
1110 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
1111 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001112LIBYANG_API_DECL struct lyd_node *lyd_first_sibling(const struct lyd_node *node);
Radek Krejci4233f9b2020-11-05 12:38:35 +01001113
1114/**
Michal Vasko60ea6352020-06-29 13:39:39 +02001115 * @brief Learn the length of LYB data.
1116 *
1117 * @param[in] data LYB data to examine.
1118 * @return Length of the LYB data chunk,
1119 * @return -1 on error.
1120 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001121LIBYANG_API_DECL int lyd_lyb_data_length(const char *data);
Michal Vasko60ea6352020-06-29 13:39:39 +02001122
1123/**
Michal Vaskobfff6ac2022-02-23 16:22:53 +01001124 * @brief Check node parsed into an opaque node for the reason (error) why it could not be parsed as data node.
1125 *
1126 * The node is expected to be produced by a parser and must either have no parent or a data node parent (not opaque).
1127 *
1128 * @param[in] node Opaque node to check.
1129 * @return LY_EINVAL if @p node is in some way unexpected (even valid);
1130 * @return LY_ERR value of the reason.
1131 */
1132LIBYANG_API_DECL LY_ERR lyd_parse_opaq_error(const struct lyd_node *node);
1133
1134/**
Christian Hopps46bd21b2021-04-27 09:43:58 -04001135 * @brief Get the (canonical) value of a lyd_value.
1136 *
Michal Vasko33876022021-04-27 16:42:24 +02001137 * Whenever possible, ::lyd_get_value() or ::lyd_get_meta_value() should be used instead.
1138 *
Christian Hopps46bd21b2021-04-27 09:43:58 -04001139 * @param[in] ctx Context for the value
Michal Vasko33876022021-04-27 16:42:24 +02001140 * @param[in] value Value structure to use.
Christian Hopps46bd21b2021-04-27 09:43:58 -04001141 * @return Canonical value.
1142 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001143LIBYANG_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 -04001144
1145/**
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001146 * @brief Get the (canonical) value of a data node.
1147 *
1148 * @param[in] node Data node to use.
1149 * @return Canonical value.
1150 */
Michal Vasko4e947032024-01-22 12:17:51 +01001151static inline const char *
1152lyd_get_value(const struct lyd_node *node)
1153{
1154 if (!node) {
1155 return NULL;
1156 }
1157
1158 if (!node->schema) {
1159 return ((const struct lyd_node_opaq *)node)->value;
1160 } else if (node->schema->nodetype & LYD_NODE_TERM) {
1161 const struct lyd_value *value = &((const struct lyd_node_term *)node)->value;
1162
1163 return value->_canonical ? value->_canonical : lyd_value_get_canonical(LYD_CTX(node), value);
1164 }
1165
1166 return NULL;
1167}
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001168
1169/**
Michal Vaskoa820c312021-02-05 16:33:00 +01001170 * @brief Get anydata string value.
1171 *
1172 * @param[in] any Anyxml/anydata node to read from.
1173 * @param[out] value_str String representation of the value.
1174 * @return LY_ERR value.
1175 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001176LIBYANG_API_DECL LY_ERR lyd_any_value_str(const struct lyd_node *any, char **value_str);
Michal Vaskoa820c312021-02-05 16:33:00 +01001177
1178/**
Michal Vaskoc0004272020-08-06 08:32:34 +02001179 * @brief Copy anydata value from one node to another. Target value is freed first.
1180 *
1181 * @param[in,out] trg Target node.
1182 * @param[in] value Source value, may be NULL when the target value is only freed.
1183 * @param[in] value_type Source value type.
1184 * @return LY_ERR value.
1185 */
Michal Vasko55896172022-02-17 10:47:21 +01001186LIBYANG_API_DECL LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value,
1187 LYD_ANYDATA_VALUETYPE value_type);
Michal Vaskoc0004272020-08-06 08:32:34 +02001188
1189/**
Michal Vasko21c11c22023-10-09 16:06:58 +02001190 * @brief Get schema node of a data node. Useful especially for opaque nodes.
1191 *
1192 * @param[in] node Data node to use.
1193 * @return Schema node represented by data @p node, NULL if there is none.
1194 */
Michal Vasko7e4a6c72023-10-09 16:23:40 +02001195LIBYANG_API_DECL const struct lysc_node *lyd_node_schema(const struct lyd_node *node);
Michal Vasko21c11c22023-10-09 16:06:58 +02001196
1197/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001198 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001199 *
Radek Krejcidd2a7662021-03-12 11:26:34 +01001200 * To create list, use ::lyd_new_list() or ::lyd_new_list2().
1201 *
1202 * To create a top-level inner node defined in an extension instance, use ::lyd_new_ext_inner().
1203 *
Michal Vasko013a8182020-03-03 10:46:53 +01001204 * @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 +01001205 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001206 * @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 +01001207 * @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
1208 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001209 * @param[out] node Optional created node.
1210 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001211 */
Michal Vasko55896172022-02-17 10:47:21 +01001212LIBYANG_API_DECL LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name,
1213 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001214
1215/**
Radek Krejcidd2a7662021-03-12 11:26:34 +01001216 * @brief Create a new top-level inner node defined in the given extension instance.
1217 *
1218 * To create list, use ::lyd_new_list() or ::lyd_new_list2().
1219 *
1220 * To create an inner node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1221 * node of a standard module's tree, use ::lyd_new_inner().
1222 *
1223 * @param[in] ext Extension instance where the inner node being created is defined.
1224 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
1225 * @param[out] node The created node.
1226 * @return LY_ERR value.
1227 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001228LIBYANG_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 +01001229
1230/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001231 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001232 *
1233 * @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 +01001234 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001235 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Radek Krejci41ac9942020-11-02 14:47:56 +01001236 * @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
1237 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001238 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +01001239 * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier
Michal Vasko004d3152020-06-11 19:59:22 +02001240 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
1241 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001242 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001243 */
Michal Vasko55896172022-02-17 10:47:21 +01001244LIBYANG_API_DECL LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name,
1245 ly_bool output, struct lyd_node **node, ...);
Michal Vasko013a8182020-03-03 10:46:53 +01001246
1247/**
Michal Vasko208e6d62021-06-28 11:23:50 +02001248 * @brief Create a new list node in the data tree.
1249 *
1250 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1251 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1252 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1253 * @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
1254 * taken into consideration. Otherwise, the output's data node is going to be created.
1255 * @param[out] node Optional created node.
1256 * @param[in] ... Ordered binary key values of the new list instance, all must be set. Every key value must be followed
1257 * by its length. No keys are expected for key-less lists.
1258 * @return LY_ERR value.
1259 */
Michal Vasko55896172022-02-17 10:47:21 +01001260LIBYANG_API_DECL LY_ERR lyd_new_list_bin(struct lyd_node *parent, const struct lys_module *module, const char *name,
1261 ly_bool output, struct lyd_node **node, ...);
Michal Vasko208e6d62021-06-28 11:23:50 +02001262
1263/**
1264 * @brief Create a new list node in the data tree.
1265 *
1266 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1267 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1268 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1269 * @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
1270 * taken into consideration. Otherwise, the output's data node is going to be created.
1271 * @param[out] node Optional created node.
1272 * @param[in] ... Ordered canonical key values of the new list instance, all must be set. No keys are expected for
1273 * key-less lists.
1274 * @return LY_ERR value.
1275 */
Michal Vasko55896172022-02-17 10:47:21 +01001276LIBYANG_API_DECL LY_ERR lyd_new_list_canon(struct lyd_node *parent, const struct lys_module *module, const char *name,
1277 ly_bool output, struct lyd_node **node, ...);
Michal Vasko208e6d62021-06-28 11:23:50 +02001278
1279/**
Radek Krejci8247bae2021-03-12 11:47:02 +01001280 * @brief Create a new top-level list node defined in the given extension instance.
1281 *
1282 * To create a list node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1283 * list node of a standard module's tree, use ::lyd_new_list() or ::lyd_new_list2().
1284 *
1285 * @param[in] ext Extension instance where the list node being created is defined.
1286 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1287 * @param[out] node The created node.
1288 * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier
1289 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
1290 * key-less lists.
1291 * @return LY_ERR value.
1292 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001293LIBYANG_API_DECL LY_ERR lyd_new_ext_list(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node, ...);
Radek Krejci8247bae2021-03-12 11:47:02 +01001294
1295/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001296 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001297 *
1298 * @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 +01001299 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001300 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1301 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
1302 * 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 +02001303 * Use NULL or string of length 0 in case of key-less list.
Radek Krejci41ac9942020-11-02 14:47:56 +01001304 * @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
1305 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001306 * @param[out] node Optional created node.
1307 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001308 */
Michal Vasko55896172022-02-17 10:47:21 +01001309LIBYANG_API_DECL LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name,
1310 const char *keys, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001311
1312/**
Michal Vasko2c1e3272023-10-17 14:08:35 +02001313 * @brief Create a new list node in the data tree.
1314 *
1315 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1316 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1317 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1318 * @param[in] format Format of key values.
1319 * @param[in] key_values Ordered key string values of the new list instance, all must be set.
1320 * @param[in] value_lengths Array of lengths of each @p key_values, may be NULL if @p key_values are 0-terminated strings.
1321 * @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
1322 * taken into consideration. Otherwise, the output's data node is going to be created.
1323 * @param[out] node Optional created node.
1324 * @return LY_ERR value.
1325 */
1326LIBYANG_API_DECL LY_ERR lyd_new_list3(struct lyd_node *parent, const struct lys_module *module, const char *name,
1327 const char **key_values, uint32_t *value_lengths, ly_bool output, struct lyd_node **node);
1328
1329/**
1330 * @brief Create a new list node in the data tree.
1331 *
1332 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1333 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1334 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1335 * @param[in] format Format of key values.
1336 * @param[in] key_values Ordered key binary (LYB) values of the new list instance, all must be set.
1337 * @param[in] value_lengths Array of lengths of each @p key_values.
1338 * @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
1339 * taken into consideration. Otherwise, the output's data node is going to be created.
1340 * @param[out] node Optional created node.
1341 * @return LY_ERR value.
1342 */
1343LIBYANG_API_DECL LY_ERR lyd_new_list3_bin(struct lyd_node *parent, const struct lys_module *module, const char *name,
1344 const void **key_values, uint32_t *value_lengths, ly_bool output, struct lyd_node **node);
1345
1346/**
1347 * @brief Create a new list node in the data tree.
1348 *
1349 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1350 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1351 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1352 * @param[in] format Format of key values.
1353 * @param[in] key_values Ordered key canonical values of the new list instance, all must be set.
1354 * @param[in] value_lengths Array of lengths of each @p key_values, may be NULL if @p key_values are 0-terminated strings.
1355 * @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
1356 * taken into consideration. Otherwise, the output's data node is going to be created.
1357 * @param[out] node Optional created node.
1358 * @return LY_ERR value.
1359 */
1360LIBYANG_API_DECL LY_ERR lyd_new_list3_canon(struct lyd_node *parent, const struct lys_module *module, const char *name,
1361 const char **key_values, uint32_t *value_lengths, ly_bool output, struct lyd_node **node);
1362
1363/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001364 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001365 *
Radek Krejci8a5afc22021-03-12 11:10:47 +01001366 * To create a top-level term node defined in an extension instance, use ::lyd_new_ext_term().
1367 *
Michal Vasko013a8182020-03-03 10:46:53 +01001368 * @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 +01001369 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001370 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
Radek Krejci09c77442021-04-26 11:10:34 +02001371 * @param[in] val_str String value of the node. If it varies based on the format, ::LY_VALUE_JSON is expected.
Radek Krejci41ac9942020-11-02 14:47:56 +01001372 * @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
1373 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001374 * @param[out] node Optional created node.
1375 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001376 */
Michal Vasko55896172022-02-17 10:47:21 +01001377LIBYANG_API_DECL LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name,
1378 const char *val_str, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001379
1380/**
Radek Krejci09c77442021-04-26 11:10:34 +02001381 * @brief Create a new term node in the data tree.
1382 *
1383 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1384 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1385 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
1386 * @param[in] value Binary value of the node. To learn what exactly is expected see @ref howtoDataLYB.
1387 * @param[in] value_len Length of @p value.
1388 * @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
1389 * taken into consideration. Otherwise, the output's data node is going to be created.
1390 * @param[out] node Optional created node.
1391 * @return LY_ERR value.
1392 */
Michal Vasko55896172022-02-17 10:47:21 +01001393LIBYANG_API_DECL LY_ERR lyd_new_term_bin(struct lyd_node *parent, const struct lys_module *module, const char *name,
1394 const void *value, size_t value_len, ly_bool output, struct lyd_node **node);
Radek Krejci09c77442021-04-26 11:10:34 +02001395
1396/**
1397 * @brief Create a new term node in the data tree.
1398 *
1399 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1400 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1401 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
1402 * @param[in] val_str Canonical string value of the node. If it is not, it may lead to unexpected behavior.
1403 * @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
1404 * taken into consideration. Otherwise, the output's data node is going to be created.
1405 * @param[out] node Optional created node.
1406 * @return LY_ERR value.
1407 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001408LIBYANG_API_DECL LY_ERR lyd_new_term_canon(struct lyd_node *parent, const struct lys_module *module, const char *name,
Radek Krejci09c77442021-04-26 11:10:34 +02001409 const char *val_str, ly_bool output, struct lyd_node **node);
1410
1411/**
Radek Krejci8a5afc22021-03-12 11:10:47 +01001412 * @brief Create a new top-level term node defined in the given extension instance.
1413 *
1414 * To create a term node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1415 * node of a standard module's tree, use ::lyd_new_term().
1416 *
1417 * @param[in] ext Extension instance where the term node being created is defined.
1418 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
1419 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
1420 * value, the JSON format is expected (module names instead of prefixes).
1421 * @param[out] node The created node.
1422 * @return LY_ERR value.
1423 */
Michal Vasko55896172022-02-17 10:47:21 +01001424LIBYANG_API_DECL LY_ERR lyd_new_ext_term(const struct lysc_ext_instance *ext, const char *name, const char *val_str,
1425 struct lyd_node **node);
Radek Krejci8a5afc22021-03-12 11:10:47 +01001426
1427/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001428 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001429 *
Radek Krejci0b963da2021-03-12 13:23:44 +01001430 * To create a top-level any node defined in an extension instance, use ::lyd_new_ext_any().
1431 *
Michal Vasko013a8182020-03-03 10:46:53 +01001432 * @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 +01001433 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001434 * @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 +01001435 * @param[in] value Value for the node. Expected type is determined by @p value_type.
Michal Vasko742a5b12022-02-24 16:07:27 +01001436 * @param[in] use_value Whether to use dynamic @p value or make a copy.
Michal Vasko013a8182020-03-03 10:46:53 +01001437 * @param[in] value_type Type of the provided value in @p value.
Radek Krejci41ac9942020-11-02 14:47:56 +01001438 * @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
1439 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001440 * @param[out] node Optional created node.
1441 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001442 */
Michal Vasko55896172022-02-17 10:47:21 +01001443LIBYANG_API_DECL LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name,
1444 const void *value, ly_bool use_value, LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001445
1446/**
Radek Krejci0b963da2021-03-12 13:23:44 +01001447 * @brief Create a new top-level any node defined in the given extension instance.
1448 *
1449 * To create an any node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1450 * any node of a standard module's tree, use ::lyd_new_any().
1451 *
1452 * @param[in] ext Extension instance where the any node being created is defined.
1453 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
1454 * @param[in] value Value for the node. Expected type is determined by @p value_type.
Michal Vasko742a5b12022-02-24 16:07:27 +01001455 * @param[in] use_value Whether to use dynamic @p value or make a copy.
Radek Krejci0b963da2021-03-12 13:23:44 +01001456 * @param[in] value_type Type of the provided value in @p value.
1457 * @param[out] node The created node.
1458 * @return LY_ERR value.
1459 */
Michal Vasko55896172022-02-17 10:47:21 +01001460LIBYANG_API_DECL LY_ERR lyd_new_ext_any(const struct lysc_ext_instance *ext, const char *name, const void *value,
1461 ly_bool use_value, LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node);
Radek Krejci0b963da2021-03-12 13:23:44 +01001462
1463/**
Michal Vasko871a0252020-11-11 18:35:24 +01001464 * @brief Create new metadata.
Michal Vaskod86997b2020-05-26 15:19:54 +02001465 *
Michal Vasko871a0252020-11-11 18:35:24 +01001466 * @param[in] ctx libyang context,
1467 * @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 +02001468 * @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 +02001469 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
1470 * 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 +02001471 * @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 +02001472 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko871a0252020-11-11 18:35:24 +01001473 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
1474 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001475 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +02001476 */
Michal Vasko55896172022-02-17 10:47:21 +01001477LIBYANG_API_DECL LY_ERR lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module,
1478 const char *name, const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +02001479
1480/**
Michal Vaskoba696702020-11-11 19:12:45 +01001481 * @brief Create new metadata from an opaque node attribute if possible.
1482 *
1483 * @param[in] ctx libyang context.
1484 * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL.
1485 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
1486 * @param[in] attr Opaque node attribute to parse into metadata.
1487 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
1488 * @return LY_SUCCESS on success.
1489 * @return LY_ENOT if the attribute could not be parsed into any metadata.
1490 * @return LY_ERR on error.
1491 */
Michal Vasko55896172022-02-17 10:47:21 +01001492LIBYANG_API_DECL LY_ERR lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt,
1493 const struct lyd_attr *attr, struct lyd_meta **meta);
Michal Vaskoba696702020-11-11 19:12:45 +01001494
1495/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001496 * @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 +02001497 *
aPiecekb0445f22021-06-24 11:34:07 +02001498 * @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 +02001499 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1500 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001501 * @param[in] value Optional node value.
1502 * @param[in] prefix Optional node prefix, must be equal to @p module_name if set.
Michal Vasko00cbf532020-06-15 13:58:47 +02001503 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001504 * @param[out] node Optional created node.
1505 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001506 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001507LIBYANG_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 +01001508 const char *prefix, const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001509
1510/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001511 * @brief Create a new XML opaque node in the data tree. To create a JSON opaque node, use ::lyd_new_opaq().
1512 *
aPiecekb0445f22021-06-24 11:34:07 +02001513 * @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 +01001514 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1515 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001516 * @param[in] value Optional node value.
1517 * @param[in] prefix Optional node prefix.
Michal Vasko8d65f852021-02-17 11:28:13 +01001518 * @param[in] module_ns Node module namespace.
1519 * @param[out] node Optional created node.
1520 * @return LY_ERR value.
1521 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001522LIBYANG_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 +01001523 const char *prefix, const char *module_ns, struct lyd_node **node);
Michal Vasko8d65f852021-02-17 11:28:13 +01001524
1525/**
1526 * @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 +02001527 *
Michal Vasko5e60e872021-11-09 09:49:27 +01001528 * Note that for an attribute to be later resolved as YANG metadata, it needs @p module_nane and a prefix in @p name.
1529 *
1530 * @param[in] parent Parent opaque node for the attribute.
1531 * @param[in] module_name Optional name of the module of the attribute.
1532 * @param[in] name Attribute name with optional prefix, which is a module name. If the prefix is set, it is also stored
1533 * as the explicit module name if @p module_name is not set.
1534 * @param[in] value Optional attribute value.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001535 * @param[out] attr Optional created attribute.
1536 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001537 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001538LIBYANG_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 +01001539 struct lyd_attr **attr);
1540
1541/**
1542 * @brief Create new XML attribute for an opaque data node. To create a JSON attribute, use ::lyd_new_attr().
1543 *
Michal Vasko5e60e872021-11-09 09:49:27 +01001544 * Note that for an attribute to be later resolved as YANG metadata, it needs @p module_ns and a prefix in @p name.
1545 *
Michal Vasko8d65f852021-02-17 11:28:13 +01001546 * @param[in] parent Parent opaque node for the attribute being created.
Michal Vasko5e60e872021-11-09 09:49:27 +01001547 * @param[in] module_ns Optional namespace of the module of the attribute.
1548 * @param[in] name Attribute name with optional prefix, which is an XML prefix.
1549 * @param[in] value Optional attribute value.
Michal Vasko8d65f852021-02-17 11:28:13 +01001550 * @param[out] attr Optional created attribute.
1551 * @return LY_ERR value.
1552 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001553LIBYANG_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 +02001554 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +02001555
1556/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001557 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001558 * @defgroup pathoptions Data path creation options
Michal Vasko00cbf532020-06-15 13:58:47 +02001559 *
1560 * Various options to change lyd_new_path*() behavior.
1561 *
1562 * Default behavior:
1563 * - if the target node already exists (and is not default), an error is returned.
1564 * - the whole path to the target node is created (with any missing parents) if necessary.
1565 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
1566 * @{
1567 */
1568
Radek Krejci09c77442021-04-26 11:10:34 +02001569#define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
1570 default flag is changed, it is returned. If the target node exists and is not
1571 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
1572 no error set. */
1573#define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
1574 output ones. */
1575#define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
1576 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
1577 invalid value (leaf/leaf-list), it is created as opaque. */
1578#define LYD_NEW_PATH_BIN_VALUE 0x08 /**< Interpret the provided leaf/leaf-list @p value as being in the binary
1579 ::LY_VALUE_LYB format, to learn what exactly is expected see @ref howtoDataLYB. */
1580#define LYD_NEW_PATH_CANON_VALUE 0x10 /**< Interpret the provided leaf/leaf-list @p value as being in the canonical
1581 (or JSON if no defined) ::LY_VALUE_CANON format. If it is not, it may lead
1582 to unexpected behavior. */
Michal Vasko838829d2023-10-09 16:06:43 +02001583#define LYD_NEW_PATH_WITH_OPAQ 0x20 /**< Consider opaque nodes normally when searching for existing nodes. */
Michal Vasko00cbf532020-06-15 13:58:47 +02001584
1585/** @} pathoptions */
1586
1587/**
Michal Vaskod5e67442021-03-04 15:56:31 +01001588 * @brief Create a new node in the data tree based on a path. If creating anyxml/anydata nodes, ::lyd_new_path2
1589 * should be used instead, this function expects the value as string.
Michal Vasko00cbf532020-06-15 13:58:47 +02001590 *
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001591 * If creating data nodes defined inside an extension instance, use ::lyd_new_ext_path().
1592 *
Michal Vaskoa918a632021-07-02 11:53:36 +02001593 * If @p path points to a list key, the key value from the predicate is used and @p value is ignored.
1594 * Also, if a leaf-list is being created and both a predicate is defined in @p path
Michal Vasko00cbf532020-06-15 13:58:47 +02001595 * and @p value is set, the predicate is preferred.
1596 *
Michal Vasko5de21542023-03-20 10:00:05 +01001597 * For key-less lists, positional predicates must be used (indices starting from 1). For non-configuration leaf-lists
1598 * 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 +02001599 * If no predicate is used for these nodes, they are always created.
Michal Vasko6741dc62021-02-04 09:27:45 +01001600 *
Michal Vasko104fe962020-11-06 17:23:44 +01001601 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1602 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1603 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001604 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001605 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001606 * @param[in] value String value of the new leaf/leaf-list. If it varies based on the format, ::LY_VALUE_JSON is expected.
1607 * For other node types, it should be NULL.
Michal Vasko00cbf532020-06-15 13:58:47 +02001608 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001609 * @param[out] node Optional first created node.
Michal Vasko0a8fcc22023-03-03 09:54:32 +01001610 * @return LY_SUCCESS on success.
1611 * @return LY_EEXIST if the final node to create exists (unless ::LYD_NEW_PATH_UPDATE is used).
1612 * @return LY_EINVAL on invalid arguments including invalid @p path.
1613 * @return LY_EVALID on invalid @p value.
1614 * @return LY_ERR on other errors.
Michal Vasko00cbf532020-06-15 13:58:47 +02001615 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001616LIBYANG_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 +02001617 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001618
1619/**
1620 * @brief Create a new node in the data tree based on a path. All node types can be created.
1621 *
Michal Vasko65591ab2021-04-09 14:29:34 +02001622 * Details are mentioned in ::lyd_new_path().
Michal Vasko6741dc62021-02-04 09:27:45 +01001623 *
Michal Vasko104fe962020-11-06 17:23:44 +01001624 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1625 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1626 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001627 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001628 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001629 * @param[in] value Value of the new leaf/leaf-list (const char *) in ::LY_VALUE_JSON format. If creating an
1630 * anyxml/anydata node, the expected type depends on @p value_type. For other node types, it should be NULL.
1631 * @param[in] value_len Length of @p value in bytes. May be 0 if @p value is a zero-terminated string. Ignored when
1632 * creating anyxml/anydata nodes.
Michal Vasko00cbf532020-06-15 13:58:47 +02001633 * @param[in] value_type Anyxml/anydata node @p value type.
1634 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001635 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1636 * @param[out] new_node Optional last node created.
Michal Vasko0a8fcc22023-03-03 09:54:32 +01001637 * @return LY_SUCCESS on success.
1638 * @return LY_EEXIST if the final node to create exists (unless ::LYD_NEW_PATH_UPDATE is used).
1639 * @return LY_EINVAL on invalid arguments including invalid @p path.
1640 * @return LY_EVALID on invalid @p value.
1641 * @return LY_ERR on other errors.
Michal Vasko00cbf532020-06-15 13:58:47 +02001642 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001643LIBYANG_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 +02001644 size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent,
1645 struct lyd_node **new_node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001646
1647/**
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001648 * @brief Create a new node defined in the given extension instance. In case of anyxml/anydata nodes, this function expects
1649 * the @p value as string.
1650 *
1651 * If creating data nodes defined in a module's standard tree, use ::lyd_new_path() or ::lyd_new_path2().
1652 *
Michal Vasko65591ab2021-04-09 14:29:34 +02001653 * Details are mentioned in ::lyd_new_path().
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001654 *
1655 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1656 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1657 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
1658 * @param[in] ext Extension instance where the node being created is defined.
1659 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001660 * @param[in] value Value of the new leaf/leaf-list. For other node types, it should be NULL.
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001661 * @param[in] options Bitmask of options, see @ref pathoptions.
1662 * @param[out] node Optional first created node.
Michal Vasko0a8fcc22023-03-03 09:54:32 +01001663 * @return LY_SUCCESS on success.
1664 * @return LY_EEXIST if the final node to create exists (unless ::LYD_NEW_PATH_UPDATE is used).
1665 * @return LY_EINVAL on invalid arguments including invalid @p path.
1666 * @return LY_EVALID on invalid @p value.
1667 * @return LY_ERR on other errors.
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001668 */
Michal Vasko55896172022-02-17 10:47:21 +01001669LIBYANG_API_DECL LY_ERR lyd_new_ext_path(struct lyd_node *parent, const struct lysc_ext_instance *ext, const char *path,
1670 const void *value, uint32_t options, struct lyd_node **node);
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001671
1672/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001673 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001674 * @defgroup implicitoptions Implicit node creation options
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001675 *
1676 * Various options to change lyd_new_implicit*() behavior.
1677 *
1678 * Default behavior:
1679 * - both configuration and state missing implicit nodes are added.
Michal Vasko630d9892020-12-08 17:11:08 +01001680 * - for existing RPC/action nodes, input implicit nodes are added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001681 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
1682 * @{
1683 */
1684
Michal Vasko44b19a12020-08-07 09:21:30 +02001685#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
1686#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
Michal Vasko630d9892020-12-08 17:11:08 +01001687#define LYD_IMPLICIT_OUTPUT 0x04 /**< For RPC/action nodes, add output implicit nodes instead of input. */
1688#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 +02001689 containers. */
1690
1691/** @} implicitoptions */
1692
1693/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001694 * @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 +02001695 *
1696 * @param[in] tree Tree to add implicit nodes into.
1697 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1698 * @param[out] diff Optional diff with any created nodes.
1699 * @return LY_ERR value.
1700 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001701LIBYANG_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 +02001702
1703/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001704 * @brief Add any missing implicit nodes. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001705 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001706 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1707 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1708 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001709 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
1710 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1711 * @param[out] diff Optional diff with any created nodes.
1712 * @return LY_ERR value.
1713 */
Michal Vasko55896172022-02-17 10:47:21 +01001714LIBYANG_API_DECL LY_ERR lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options,
1715 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001716
1717/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001718 * @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 +02001719 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001720 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1721 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1722 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001723 * @param[in] module Module whose implicit nodes to create.
1724 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1725 * @param[out] diff Optional diff with any created nodes.
1726 * @return LY_ERR value.
1727 */
Michal Vasko55896172022-02-17 10:47:21 +01001728LIBYANG_API_DECL LY_ERR lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module,
1729 uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001730
1731/**
Radek Krejci09c77442021-04-26 11:10:34 +02001732 * @brief Change the value of a term (leaf or leaf-list) node to a string value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001733 *
1734 * Node changed this way is always considered explicitly set, meaning its default flag
1735 * is always cleared.
1736 *
1737 * @param[in] term Term node to change.
1738 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1739 * @return LY_SUCCESS if value was changed,
1740 * @return LY_EEXIST if value was the same and only the default flag was cleared,
aPiecekb0445f22021-06-24 11:34:07 +02001741 * @return LY_ENOT if the values were equal and no change occurred,
Michal Vasko00cbf532020-06-15 13:58:47 +02001742 * @return LY_ERR value on other errors.
1743 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001744LIBYANG_API_DECL LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
Michal Vasko00cbf532020-06-15 13:58:47 +02001745
1746/**
Radek Krejci09c77442021-04-26 11:10:34 +02001747 * @brief Change the value of a term (leaf or leaf-list) node to a binary value.
1748 *
1749 * Node changed this way is always considered explicitly set, meaning its default flag
1750 * is always cleared.
1751 *
1752 * @param[in] term Term node to change.
Michal Vasko8193b072023-03-22 08:13:59 +01001753 * @param[in] value New value to set in binary format (usually a pointer), see @ref howtoDataLYB.
Radek Krejci09c77442021-04-26 11:10:34 +02001754 * @param[in] value_len Length of @p value.
1755 * @return LY_SUCCESS if value was changed,
1756 * @return LY_EEXIST if value was the same and only the default flag was cleared,
aPiecekb0445f22021-06-24 11:34:07 +02001757 * @return LY_ENOT if the values were equal and no change occurred,
Radek Krejci09c77442021-04-26 11:10:34 +02001758 * @return LY_ERR value on other errors.
1759 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001760LIBYANG_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 +02001761
1762/**
1763 * @brief Change the value of a term (leaf or leaf-list) node to a canonical string value.
1764 *
1765 * Node changed this way is always considered explicitly set, meaning its default flag
1766 * is always cleared.
1767 *
1768 * @param[in] term Term node to change.
1769 * @param[in] val_str New value to set in canonical (or JSON if no defined) format. If the value is not
1770 * canonical, it may lead to unexpected behavior.
1771 * @return LY_SUCCESS if value was changed,
1772 * @return LY_EEXIST if value was the same and only the default flag was cleared,
aPiecekb0445f22021-06-24 11:34:07 +02001773 * @return LY_ENOT if the values were equal and no change occurred,
Radek Krejci09c77442021-04-26 11:10:34 +02001774 * @return LY_ERR value on other errors.
1775 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001776LIBYANG_API_DECL LY_ERR lyd_change_term_canon(struct lyd_node *term, const char *val_str);
Radek Krejci09c77442021-04-26 11:10:34 +02001777
1778/**
Michal Vasko41586352020-07-13 13:54:25 +02001779 * @brief Change the value of a metadata instance.
1780 *
Michal Vasko41586352020-07-13 13:54:25 +02001781 * @param[in] meta Metadata to change.
1782 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1783 * @return LY_SUCCESS if value was changed,
aPiecekb0445f22021-06-24 11:34:07 +02001784 * @return LY_ENOT if the values were equal and no change occurred,
Michal Vasko41586352020-07-13 13:54:25 +02001785 * @return LY_ERR value on other errors.
1786 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001787LIBYANG_API_DECL LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
Michal Vasko41586352020-07-13 13:54:25 +02001788
1789/**
Michal Vaskob104f112020-07-17 09:54:54 +02001790 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +01001791 *
1792 * - if the node is part of some other tree, it is automatically unlinked.
1793 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1794 *
1795 * @param[in] parent Parent node to insert into.
1796 * @param[in] node Node to insert.
1797 * @return LY_SUCCESS on success.
1798 * @return LY_ERR error on error.
1799 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001800LIBYANG_API_DECL LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001801
1802/**
Michal Vaskob104f112020-07-17 09:54:54 +02001803 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001804 *
1805 * - if the node is part of some other tree, it is automatically unlinked.
1806 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1807 *
Michal Vaskob104f112020-07-17 09:54:54 +02001808 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001809 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +02001810 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001811 * @return LY_SUCCESS on success.
1812 * @return LY_ERR error on error.
1813 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001814LIBYANG_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 +01001815
1816/**
Michal Vaskob104f112020-07-17 09:54:54 +02001817 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001818 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001819 *
1820 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001821 *
1822 * @param[in] sibling Sibling node to insert before.
1823 * @param[in] node Node to insert.
1824 * @return LY_SUCCESS on success.
1825 * @return LY_ERR error on error.
1826 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001827LIBYANG_API_DECL LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001828
1829/**
Michal Vaskob104f112020-07-17 09:54:54 +02001830 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001831 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001832 *
1833 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001834 *
1835 * @param[in] sibling Sibling node to insert after.
1836 * @param[in] node Node to insert.
1837 * @return LY_SUCCESS on success.
1838 * @return LY_ERR error on error.
1839 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001840LIBYANG_API_DECL LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001841
1842/**
Michal Vasko66d508c2021-07-21 16:07:09 +02001843 * @brief Unlink the specified node with all the following siblings.
1844 *
1845 * @param[in] node Data tree node to be unlinked (together with all the children and following siblings).
1846 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001847LIBYANG_API_DECL void lyd_unlink_siblings(struct lyd_node *node);
Michal Vasko66d508c2021-07-21 16:07:09 +02001848
1849/**
Michal Vaskof03ed032020-03-04 13:31:44 +01001850 * @brief Unlink the specified data subtree.
1851 *
1852 * @param[in] node Data tree node to be unlinked (together with all the children).
1853 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001854LIBYANG_API_DECL void lyd_unlink_tree(struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001855
1856/**
Radek Krejcib0849a22019-07-25 12:31:04 +02001857 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +02001858 *
1859 * @param[in] node Any of the nodes inside the tree.
1860 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001861LIBYANG_API_DECL void lyd_free_all(struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +02001862
1863/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001864 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +02001865 *
1866 * @param[in] node Any of the sibling nodes to free.
1867 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001868LIBYANG_API_DECL void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +02001869
1870/**
Radek Krejcie7b95092019-05-15 11:03:07 +02001871 * @brief Free (and unlink) the specified data (sub)tree.
1872 *
Radek Krejcie7b95092019-05-15 11:03:07 +02001873 * @param[in] node Root of the (sub)tree to be freed.
1874 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001875LIBYANG_API_DECL void lyd_free_tree(struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +02001876
1877/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001878 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +02001879 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001880 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +02001881 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001882LIBYANG_API_DECL void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +01001883
1884/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001885 * @brief Free the metadata instance with any following instances.
1886 *
1887 * @param[in] meta Metadata to free.
1888 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001889LIBYANG_API_DECL void lyd_free_meta_siblings(struct lyd_meta *meta);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001890
1891/**
1892 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +01001893 *
1894 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001895 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +01001896 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001897LIBYANG_API_DECL void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001898
1899/**
1900 * @brief Free the attribute with any following attributes.
1901 *
1902 * @param[in] ctx Context where the attributes were created.
1903 * @param[in] attr First attribute to free.
1904 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001905LIBYANG_API_DECL void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +02001906
Radek Krejci084289f2019-07-09 17:35:30 +02001907/**
1908 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1909 *
1910 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
1911 *
Radek Krejci084289f2019-07-09 17:35:30 +02001912 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
Michal Vaskoaebbce02021-04-06 09:23:37 +02001913 * @param[in] schema Schema node of the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02001914 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001915 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskoaebbce02021-04-06 09:23:37 +02001916 * @param[in] ctx_node Optional data tree context node for the value (leafref target, instance-identifier).
1917 * If not set and is required for the validation to complete, ::LY_EINCOMPLETE is be returned.
1918 * @param[out] realtype Optional real type of @p value.
1919 * @param[out] canonical Optional canonical value of @p value (in the dictionary).
Radek Krejci084289f2019-07-09 17:35:30 +02001920 * @return LY_SUCCESS on success
Michal Vaskoaebbce02021-04-06 09:23:37 +02001921 * @return LY_EINCOMPLETE in case the @p ctx_node is not provided and it was needed to finish the validation
1922 * (e.g. due to require-instance).
Radek Krejci084289f2019-07-09 17:35:30 +02001923 * @return LY_ERR value if an error occurred.
1924 */
Michal Vasko55896172022-02-17 10:47:21 +01001925LIBYANG_API_DECL LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lysc_node *schema, const char *value,
1926 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 +02001927
1928/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001929 * @brief Compare the node's value with the given string value. The string value is first validated according to
1930 * the (current) node's type.
Radek Krejci084289f2019-07-09 17:35:30 +02001931 *
1932 * @param[in] node Data node to compare.
1933 * @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 +02001934 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001935 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001936 * @return LY_SUCCESS on success,
1937 * @return LY_ENOT if the values do not match,
Radek Krejci084289f2019-07-09 17:35:30 +02001938 * @return LY_ERR value if an error occurred.
1939 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001940LIBYANG_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 +02001941
Radek Krejci576b23f2019-07-12 14:06:32 +02001942/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001943 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001944 * @defgroup datacompareoptions Data compare options
1945 * @{
1946 * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001947 */
Michal Vaskodf8ebf62022-11-10 10:33:28 +01001948#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 +02001949 (subtree, so direct as well as indirect children) are the same. By default,
1950 containers are the same in case of the same schema node and lists are the same
1951 in case of equal keys (keyless lists do the full recursion comparison all the time). */
1952#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
1953 changes this behavior and implicit (automatically created default node) and explicit
1954 (explicitly created node with the default value) default nodes are considered different. */
Michal Vaskodf8ebf62022-11-10 10:33:28 +01001955#define LYD_COMPARE_OPAQ 0x04 /* Opaque nodes can normally be never equal to data nodes. Using this flag even
1956 opaque nodes members are compared to data node schema and value and can result
1957 in a match. */
Michal Vasko60ea6352020-06-29 13:39:39 +02001958/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001959
1960/**
1961 * @brief Compare 2 data nodes if they are equivalent.
1962 *
Michal Vasko892f5bf2021-11-24 10:41:05 +01001963 * Works correctly even if @p node1 and @p node2 have different contexts.
1964 *
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001965 * @param[in] node1 The first node to compare.
1966 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001967 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001968 * @return LY_SUCCESS if the nodes are equivalent.
1969 * @return LY_ENOT if the nodes are not equivalent.
1970 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001971LIBYANG_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 +02001972
1973/**
1974 * @brief Compare 2 lists of siblings if they are equivalent.
1975 *
Michal Vasko892f5bf2021-11-24 10:41:05 +01001976 * Works correctly even if @p node1 and @p node2 have different contexts.
1977 *
Michal Vasko8f359bf2020-07-28 10:41:15 +02001978 * @param[in] node1 The first sibling list to compare.
1979 * @param[in] node2 The second sibling list to compare.
1980 * @param[in] options Various @ref datacompareoptions.
1981 * @return LY_SUCCESS if all the siblings are equivalent.
1982 * @return LY_ENOT if the siblings are not equivalent.
1983 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001984LIBYANG_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 +02001985
1986/**
Michal Vasko21725742020-06-29 11:49:25 +02001987 * @brief Compare 2 metadata.
1988 *
Michal Vasko892f5bf2021-11-24 10:41:05 +01001989 * If @p meta1 and @p meta2 have different contexts, they are never equivalent.
1990 *
Michal Vasko21725742020-06-29 11:49:25 +02001991 * @param[in] meta1 First metadata.
1992 * @param[in] meta2 Second metadata.
1993 * @return LY_SUCCESS if the metadata are equivalent.
1994 * @return LY_ENOT if not.
1995 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01001996LIBYANG_API_DECL LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
Michal Vasko21725742020-06-29 11:49:25 +02001997
1998/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001999 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02002000 * @defgroup dupoptions Data duplication options
Radek Krejci22ebdba2019-07-25 13:59:43 +02002001 *
Michal Vaskoe78faec2021-04-08 17:24:43 +02002002 * Various options to change ::lyd_dup_single() and ::lyd_dup_siblings() behavior.
Radek Krejci22ebdba2019-07-25 13:59:43 +02002003 *
2004 * Default behavior:
2005 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002006 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02002007 * @{
2008 */
2009
2010#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
2011 list's keys are always duplicated. */
Michal Vasko9cf62422021-07-01 13:29:32 +02002012#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata (or attributes) of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002013#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
2014 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002015#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 +02002016 its validation/default node state. */
Michal Vasko53ac4dd2022-06-07 10:56:08 +02002017#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 +02002018#define LYD_DUP_WITH_PRIV 0x20 /**< Also copy data node private pointer. Only the pointer is copied, it still points
2019 to the same data. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02002020
2021/** @} dupoptions */
2022
2023/**
Michal Vaskoddd76592022-01-17 13:34:48 +01002024 * @brief Create a copy of the specified data tree @p node. Schema references are kept the same.
Radek Krejci22ebdba2019-07-25 13:59:43 +02002025 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02002026 * @param[in] node Data tree node to be duplicated.
Michal Vaskoddd76592022-01-17 13:34:48 +01002027 * @param[in] parent Optional parent node where to connect the duplicated node(s). If set in combination with
2028 * ::LYD_DUP_WITH_PARENTS, the missing parents' chain is duplicated and connected with @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02002029 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002030 * @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 +01002031 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002032 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02002033 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002034LIBYANG_API_DECL LY_ERR lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options,
2035 struct lyd_node **dup);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002036
2037/**
Michal Vaskoddd76592022-01-17 13:34:48 +01002038 * @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 +02002039 *
2040 * @param[in] node Data tree node to be duplicated.
Michal Vaskoddd76592022-01-17 13:34:48 +01002041 * @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.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002044 * @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
Michal Vaskoddd76592022-01-17 13:34:48 +01002046 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002047 * @return LY_ERR value.
2048 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002049LIBYANG_API_DECL LY_ERR lyd_dup_single_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);
2051
2052/**
2053 * @brief Create a copy of the specified data tree @p node with any following siblings. Schema references are kept the same.
2054 *
2055 * @param[in] node Data tree node to be duplicated.
2056 * @param[in] parent Optional parent node where to connect the duplicated node(s). If set in combination with
2057 * ::LYD_DUP_WITH_PARENTS, the missing parents' chain is duplicated and connected with @p parent.
2058 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2059 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
2060 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
2061 * @return LY_ERR value.
2062 */
2063LIBYANG_API_DECL LY_ERR lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options,
2064 struct lyd_node **dup);
2065
2066/**
2067 * @brief Create a copy of the specified data tree @p node with any following siblings. Schema references are assigned
2068 * from @p trg_ctx.
2069 *
2070 * @param[in] node Data tree node to be duplicated.
2071 * @param[in] trg_ctx Target context for duplicated nodes.
2072 * @param[in] parent Optional parent node where to connect the duplicated node(s). If set in combination with
2073 * ::LYD_DUP_WITH_PARENTS, the missing parents' chain is duplicated and connected with @p parent.
2074 * @param[in] options Bitmask of options flags, see @ref dupoptions.
2075 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
2076 * node(s) (when ::LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
2077 * @return LY_ERR value.
2078 */
2079LIBYANG_API_DECL LY_ERR lyd_dup_siblings_to_ctx(const struct lyd_node *node, const struct ly_ctx *trg_ctx,
2080 struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup);
Radek Krejci22ebdba2019-07-25 13:59:43 +02002081
2082/**
Michal Vasko25a32822020-07-09 15:48:22 +02002083 * @brief Create a copy of the metadata.
2084 *
2085 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002086 * @param[in] parent Node where to append the new metadata.
2087 * @param[out] dup Optional created metadata copy.
2088 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02002089 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002090LIBYANG_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 +02002091
2092/**
Michal Vasko4490d312020-06-16 13:08:55 +02002093 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02002094 * @defgroup mergeoptions Data merge options.
Radek Krejci576b23f2019-07-12 14:06:32 +02002095 *
Michal Vaskocd3f6172021-05-18 16:14:50 +02002096 * Various options to change ::lyd_merge_tree(), ::lyd_merge_siblings(), and ::lyd_merge_module() behavior.
Michal Vasko4490d312020-06-16 13:08:55 +02002097 *
2098 * Default behavior:
2099 * - source data tree is not modified in any way,
Michal Vasko745d6f62021-04-12 16:55:23 +02002100 * - any default nodes in the source are ignored if there are explicit nodes in the target,
2101 * - 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 +02002102 * - any merged nodes flags are set as non-validated.
Michal Vasko4490d312020-06-16 13:08:55 +02002103 * @{
2104 */
2105
2106#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002107#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 +02002108#define LYD_MERGE_WITH_FLAGS 0x04 /**< Merged nodes (those missing in the source) keep their exact flags. */
Michal Vasko4490d312020-06-16 13:08:55 +02002109
2110/** @} mergeoptions */
2111
2112/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002113 * @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 +02002114 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
2115 *
Michal Vasko2f510942020-11-13 10:26:25 +01002116 * Example input:
2117 *
2118 * source (A1) - A2 - A3 target (B1) - B2 - B3
2119 * /\ /\ /\ /\ /\ /\
2120 * .... .... .... .... .... ....
2121 *
2122 * result target (A1) - B1 - B2 - B3
2123 * /\ /\ /\ /\
2124 * .... .... .... ....
2125 *
Michal Vaskof922e8f2021-10-21 15:38:06 +02002126 * @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 +02002127 * @param[in] source Source data tree to merge, must be a top-level tree.
2128 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
2129 * @return LY_SUCCESS on success,
2130 * @return LY_ERR value on error.
2131 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002132LIBYANG_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 +02002133
2134/**
2135 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
2136 * complete until validation called on the resulting data tree (data from more cases may be present, default
2137 * and non-default values).
2138 *
Michal Vasko2f510942020-11-13 10:26:25 +01002139 * Example input:
2140 *
2141 * source (A1) - A2 - A3 target (B1) - B2 - B3
2142 * /\ /\ /\ /\ /\ /\
2143 * .... .... .... .... .... ....
2144 *
2145 * result target (A1) - A2 - A3 - B1 - B2 - B3
2146 * /\ /\ /\ /\ /\ /\
2147 * .... .... .... .... .... ....
2148 *
Michal Vaskof922e8f2021-10-21 15:38:06 +02002149 * @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 +02002150 * @param[in] source Source data tree to merge, must be a top-level tree.
2151 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
2152 * @return LY_SUCCESS on success,
2153 * @return LY_ERR value on error.
2154 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002155LIBYANG_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 +02002156
2157/**
Michal Vaskocd3f6172021-05-18 16:14:50 +02002158 * @brief Callback for matching merge nodes.
2159 *
2160 * @param[in] trg_node Target data node.
2161 * @param[in] src_node Source data node, is NULL if it was actually duplicated (no target node found) and
2162 * its copy is @p trg_node.
2163 * @param[in] cb_data Arbitrary callback data.
2164 * @return LY_ERR value.
2165 */
2166typedef LY_ERR (*lyd_merge_cb)(struct lyd_node *trg_node, const struct lyd_node *src_node, void *cb_data);
2167
2168/**
2169 * @brief Merge all the nodes of a module from source data tree into the target data tree. Merge may not be
2170 * complete until validation called on the resulting data tree (data from more cases may be present, default
2171 * and non-default values).
2172 *
Michal Vaskof922e8f2021-10-21 15:38:06 +02002173 * @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 +02002174 * @param[in] source Source data tree to merge, must be a top-level tree.
2175 * @param[in] mod Module, whose source data only to consider, NULL for all modules.
Michal Vasko807557c2021-05-25 08:50:52 +02002176 * @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 +02002177 * If a subtree is being added into target (no matching node found), callback is called only once with the subtree root.
2178 * @param[in] cb_data Arbitrary callback data.
2179 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
2180 * @return LY_SUCCESS on success,
2181 * @return LY_ERR value on error.
2182 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002183LIBYANG_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 +02002184 lyd_merge_cb merge_cb, void *cb_data, uint16_t options);
2185
2186/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002187 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02002188 * @defgroup diffoptions Data diff options.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002189 *
Radek Krejci8678fa42020-08-18 16:07:28 +02002190 * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002191 *
2192 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002193 * - any default nodes are treated as non-existent and ignored.
2194 * @{
2195 */
2196
Michal Vasko3a41dff2020-07-15 14:30:28 +02002197#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
2198 nodes. Also, leaves and leaf-lists are added into diff even in case only their
2199 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002200
2201/** @} diffoptions */
2202
2203/**
2204 * @brief Learn the differences between 2 data trees.
2205 *
2206 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
2207 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
2208 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
2209 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
2210 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
2211 * or the second tree.
2212 *
2213 * The diff tree is completely independent on the @p first and @p second trees, meaning all
2214 * the information about the change is stored in the diff and the trees are not needed.
2215 *
Michal Vaskoff857812021-03-05 17:03:52 +01002216 * __!! Caution !!__
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002217 * The diff tree should never be validated because it may easily not be valid! For example,
2218 * when data from one case branch are deleted and data from another branch created - data from both
2219 * branches are then stored in the diff tree simultaneously.
2220 *
2221 * @param[in] first First data tree.
2222 * @param[in] second Second data tree.
2223 * @param[in] options Bitmask of options flags, see @ref diffoptions.
Michal Vaskoe2d52df2023-06-02 09:10:28 +02002224 * @param[out] diff Generated diff, NULL if there are no differences.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002225 * @return LY_SUCCESS on success,
2226 * @return LY_ERR on error.
2227 */
Michal Vasko55896172022-02-17 10:47:21 +01002228LIBYANG_API_DECL LY_ERR lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, uint16_t options,
2229 struct lyd_node **diff);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002230
2231/**
2232 * @brief Learn the differences between 2 data trees including all the following siblings.
2233 *
Michal Vaskoff857812021-03-05 17:03:52 +01002234 * Details are mentioned in ::lyd_diff_tree().
2235 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02002236 * @param[in] first First data tree.
2237 * @param[in] second Second data tree.
2238 * @param[in] options Bitmask of options flags, see @ref diffoptions.
Michal Vaskoe2d52df2023-06-02 09:10:28 +02002239 * @param[out] diff Generated diff, NULL if there are no differences.
Michal Vasko3a41dff2020-07-15 14:30:28 +02002240 * @return LY_SUCCESS on success,
2241 * @return LY_ERR on error.
2242 */
Michal Vasko55896172022-02-17 10:47:21 +01002243LIBYANG_API_DECL LY_ERR lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, uint16_t options,
2244 struct lyd_node **diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002245
2246/**
2247 * @brief Callback for diff nodes.
2248 *
2249 * @param[in] diff_node Diff node.
2250 * @param[in] data_node Matching node in data.
2251 * @param[in] cb_data Arbitrary callback data.
2252 * @return LY_ERR value.
2253 */
2254typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
2255
2256/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002257 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002258 *
Michal Vaskoa98dcba2021-03-05 17:04:14 +01002259 * __!! Caution !!__
2260 * If applying a diff that was created __without__ the ::LYD_DIFF_DEFAULTS flag, there may be some duplicate values
2261 * created. Unless the resulting tree is validated (and default values thus consolidated), using it further
2262 * (such as applying another diff) may cause unexpected results or errors.
2263 *
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002264 * @param[in,out] data Data to apply the diff on.
2265 * @param[in] diff Diff to apply.
2266 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
2267 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
2268 * @param[in] cb_data Arbitrary callback data.
2269 * @return LY_SUCCESS on success,
2270 * @return LY_ERR on error.
2271 */
Michal Vasko55896172022-02-17 10:47:21 +01002272LIBYANG_API_DECL LY_ERR lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff,
2273 const struct lys_module *mod, lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002274
2275/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002276 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002277 *
Michal Vaskoff857812021-03-05 17:03:52 +01002278 * Details are mentioned in ::lyd_diff_apply_module().
2279 *
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002280 * @param[in,out] data Data to apply the diff on.
2281 * @param[in] diff Diff to apply.
2282 * @return LY_SUCCESS on success,
2283 * @return LY_ERR on error.
2284 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002285LIBYANG_API_DECL LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002286
2287/**
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002288 * @ingroup datatree
2289 * @defgroup diffmergeoptions Data diff merge options.
2290 *
2291 * Various options to change ::lyd_diff_merge_module(), ::lyd_diff_merge_tree(), and ::lyd_diff_merge_all() behavior.
2292 *
2293 * Default behavior:
2294 * - any default nodes are expected to be a result of validation corrections and not explicitly modified.
2295 * @{
2296 */
2297
2298#define LYD_DIFF_MERGE_DEFAULTS 0x01 /**< Default nodes in the diffs are treated as possibly explicitly modified. */
2299
Michal Vaskoff857812021-03-05 17:03:52 +01002300/** @} diffmergeoptions */
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002301
2302/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02002303 * @brief Merge 2 diffs into each other but restrict the operation to one module.
2304 *
2305 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
2306 * created on data that had the target diff applied on them. In other words, this sequence is legal
2307 *
Michal Vaskoff857812021-03-05 17:03:52 +01002308 * 1) get diff1 from data1 and data2 -> get data11 from apply diff1 on data1 -> get diff2 from data11 and data3 ->
2309 * -> get data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02002310 *
2311 * and reusing these diffs
2312 *
Michal Vaskoff857812021-03-05 17:03:52 +01002313 * 2) get diff11 from merge diff1 and diff2 -> get data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02002314 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02002315 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002316 * @param[in] src_diff Source diff.
2317 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
Michal Vaskoe2af8412020-12-03 14:11:38 +01002318 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
2319 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
2320 * called on the root with @p diff_node being NULL.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002321 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002322 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002323 * @return LY_SUCCESS on success,
2324 * @return LY_ERR on error.
2325 */
Michal Vasko55896172022-02-17 10:47:21 +01002326LIBYANG_API_DECL LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff,
2327 const struct lys_module *mod, lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02002328
2329/**
Michal Vasko04f85912020-08-07 12:14:58 +02002330 * @brief Merge 2 diff trees into each other.
2331 *
Michal Vaskoff857812021-03-05 17:03:52 +01002332 * Details are mentioned in ::lyd_diff_merge_module().
2333 *
Michal Vasko04f85912020-08-07 12:14:58 +02002334 * @param[in,out] diff_first Target diff first sibling to merge into.
2335 * @param[in] diff_parent Target diff parent to merge into.
2336 * @param[in] src_sibling Source diff sibling to merge.
Michal Vaskoe2af8412020-12-03 14:11:38 +01002337 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
2338 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
2339 * called on the root with @p diff_node being NULL.
Michal Vasko04f85912020-08-07 12:14:58 +02002340 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002341 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vasko04f85912020-08-07 12:14:58 +02002342 * @return LY_SUCCESS on success,
2343 * @return LY_ERR on error.
2344 */
Michal Vasko55896172022-02-17 10:47:21 +01002345LIBYANG_API_DECL LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent,
2346 const struct lyd_node *src_sibling, lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vasko04f85912020-08-07 12:14:58 +02002347
2348/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02002349 * @brief Merge 2 diffs into each other.
2350 *
Michal Vaskoff857812021-03-05 17:03:52 +01002351 * Details are mentioned in ::lyd_diff_merge_module().
2352 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02002353 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02002354 * @param[in] src_diff Source diff.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002355 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002356 * @return LY_SUCCESS on success,
2357 * @return LY_ERR on error.
2358 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002359LIBYANG_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 +02002360
2361/**
Michal Vasko4231fb62020-07-13 13:54:47 +02002362 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
2363 * or move from place A to B to move from B to A and so on.
2364 *
2365 * @param[in] src_diff Diff to reverse.
2366 * @param[out] diff Reversed diff.
2367 * @return LY_SUCCESS on success.
2368 * @return LY_ERR on error.
2369 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002370LIBYANG_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 +02002371
2372/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002373 * @brief Types of the different data paths.
2374 */
2375typedef enum {
Radek Krejci635d2b82021-01-04 11:26:51 +01002376 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 +01002377 creating new nodes (::lyd_new_path(), ::lyd_new_path2(), ::lyd_new_ext_path()). */
Radek Krejci635d2b82021-01-04 11:26:51 +01002378 LYD_PATH_STD_NO_LAST_PRED /**< Similar to ::LYD_PATH_STD except there is never a predicate on the last node. While it
2379 can be used to search for nodes, do not use it to create new data nodes (lists). */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002380} LYD_PATH_TYPE;
2381
2382/**
2383 * @brief Generate path of the given node in the requested format.
2384 *
Jan Kundrátb5a113c2023-03-01 16:30:46 +01002385 * The path is constructed based on the parent node(s) of this node. When run on a node which is disconnected
2386 * from its parent(s), this function might yield unexpected results such as `/example:b` instead of the expected
2387 * `/example:a/b`.
2388 *
Radek Krejci635d2b82021-01-04 11:26:51 +01002389 * @param[in] node Data path of this node will be generated.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002390 * @param[in] pathtype Format of the path to generate.
2391 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
2392 * If NULL, memory for the complete path is allocated.
2393 * @param[in] buflen Size of the provided @p buffer.
2394 * @return NULL in case of memory allocation error, path of the node otherwise.
2395 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
2396 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002397LIBYANG_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 +02002398
Michal Vaskoe444f752020-02-10 12:20:06 +01002399/**
Michal Vasko25a32822020-07-09 15:48:22 +02002400 * @brief Find a specific metadata.
2401 *
2402 * @param[in] first First metadata to consider.
2403 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
2404 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
2405 * @return Found metadata,
2406 * @return NULL if not found.
2407 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002408LIBYANG_API_DECL struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module,
2409 const char *name);
Michal Vasko25a32822020-07-09 15:48:22 +02002410
2411/**
Michal Vaskoda859032020-07-14 12:20:14 +02002412 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01002413 * Uses hashes - should be used whenever possible for best performance.
2414 *
2415 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2416 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01002417 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01002418 * @return LY_SUCCESS on success, @p match set.
2419 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2420 * @return LY_ERR value if another error occurred.
2421 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002422LIBYANG_API_DECL LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target,
2423 struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01002424
2425/**
Michal Vaskoe444f752020-02-10 12:20:06 +01002426 * @brief Search in the given siblings for the first schema instance.
2427 * Uses hashes - should be used whenever possible for best performance.
2428 *
2429 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2430 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02002431 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
2432 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01002433 * LYS_LEAFLIST:
2434 * Searched instance value.
2435 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01002436 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
2437 * The keys do not have to be ordered but all of them must be set.
2438 *
2439 * Note that any explicit values (leaf-list or list key values) will be canonized first
2440 * before comparison. But values that do not have a canonical value are expected to be in the
2441 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01002442 * @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 +01002443 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01002444 * @return LY_SUCCESS on success, @p match set.
2445 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2446 * @return LY_EINVAL if @p schema is a key-less list.
2447 * @return LY_ERR value if another error occurred.
2448 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002449LIBYANG_API_DECL LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema,
2450 const char *key_or_value, size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01002451
Michal Vaskoccc02342020-05-21 10:09:21 +02002452/**
Michal Vasko83ae7772022-06-08 10:01:55 +02002453 * @brief Search the given siblings for all the exact same instances of a specific node instance.
2454 * Uses hashes to whatever extent possible.
Michal Vaskoe78faec2021-04-08 17:24:43 +02002455 *
2456 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2457 * @param[in] target Target node instance to find.
2458 * @param[out] set Set with all the found instances. The first item is always the first instance.
2459 * @return LY_SUCCESS on success, @p set returned.
2460 * @return LY_ENOTFOUND if not found, empty @p set returned.
2461 * @return LY_ERR value if another error occurred.
2462 */
Michal Vaskoddd76592022-01-17 13:34:48 +01002463LIBYANG_API_DECL LY_ERR lyd_find_sibling_dup_inst_set(const struct lyd_node *siblings, const struct lyd_node *target,
2464 struct ly_set **set);
Michal Vaskoe78faec2021-04-08 17:24:43 +02002465
2466/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +01002467 * @brief Search the given siblings for an opaque node with a specific name.
2468 *
2469 * @param[in] first First sibling to consider.
2470 * @param[in] name Opaque node name to find.
2471 * @param[out] match Can be NULL, otherwise the found data node.
2472 * @return LY_SUCCESS on success, @p match set.
2473 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2474 * @return LY_ERR value is an error occurred.
2475 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002476LIBYANG_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 +01002477
2478/**
aPiecekdf23eee2021-10-07 12:21:50 +02002479 * @brief Set a new XPath variable to @p vars.
2480 *
2481 * @param[in,out] vars Pointer to [sized array](@ref sizedarrays) of XPath variables.
2482 * To create a new array, set the @p vars target pointer to NULL.
2483 * Otherwise variable named @p name with a value @p value will be added to the @p vars
2484 * or its value will be changed if the variable is already defined.
2485 * @param[in] name Name of the added/edited variable.
2486 * @param[in] value Value of the variable.
2487 * @return LY_ERR value.
2488 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002489LIBYANG_API_DECL LY_ERR lyxp_vars_set(struct lyxp_var **vars, const char *name, const char *value);
aPiecekdf23eee2021-10-07 12:21:50 +02002490
2491/**
2492 * @brief Free the XPath variables.
2493 *
2494 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2495 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002496LIBYANG_API_DECL void lyxp_vars_free(struct lyxp_var *vars);
aPiecekdf23eee2021-10-07 12:21:50 +02002497
2498/**
Michal Vaskoccc02342020-05-21 10:09:21 +02002499 * @brief Search in the given data for instances of nodes matching the provided XPath.
2500 *
Michal Vasko3f631cd2022-08-08 14:35:32 +02002501 * If a list instance is being selected with all its key values specified and ordered
2502 * in the form `list[key1=...][key2=...][key3=...]` or a leaf-list instance in the form
2503 * `leaf-list[.=...]`, these instances are found using hashes with constant (*O(1)*) complexity
Michal Vasko19a30602020-05-25 10:40:19 +02002504 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
2505 *
Michal Vaskofbd0da42023-08-17 14:57:44 +02002506 * Opaque nodes are part of the evaluation.
2507 *
Michal Vaskoccc02342020-05-21 10:09:21 +02002508 * @param[in] ctx_node XPath context node.
Michal Vaskoc0d91642022-11-03 13:56:29 +01002509 * @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 +02002510 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
2511 * the returned set is empty.
2512 * @return LY_SUCCESS on success, @p set is returned.
2513 * @return LY_ERR value if an error occurred.
2514 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002515LIBYANG_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 +02002516
Michal Vasko3e1f6552021-01-14 09:27:55 +01002517/**
aPiecekfba75362021-10-07 12:39:48 +02002518 * @brief Search in the given data for instances of nodes matching the provided XPath.
2519 *
Michal Vasko10fabfc2022-08-09 08:55:43 +02002520 * It is ::lyd_find_xpath() with @p vars added.
aPiecekfba75362021-10-07 12:39:48 +02002521 *
2522 * @param[in] ctx_node XPath context node.
Michal Vaskoddd76592022-01-17 13:34:48 +01002523 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
aPiecekfba75362021-10-07 12:39:48 +02002524 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2525 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
2526 * the returned set is empty.
2527 * @return LY_SUCCESS on success, @p set is returned.
2528 * @return LY_ERR value if an error occurred.
2529 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002530LIBYANG_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 +01002531 struct ly_set **set);
2532
2533/**
2534 * @brief Search in the given data for instances of nodes matching the provided XPath.
2535 *
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002536 * It is ::lyd_find_xpath2() with @p tree added so that @p ctx_node may be the root and
2537 * also @p format and @p prefix_data added for expressions in different formats than JSON.
Michal Vaskoe3716b32021-12-13 16:58:25 +01002538 *
2539 * @param[in] ctx_node XPath context node, NULL for the root node.
2540 * @param[in] tree Data tree to evaluate on.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002541 * @param[in] xpath [XPath](@ref howtoXPath) to select with prefixes in @p format.
Michal Vaskoddd76592022-01-17 13:34:48 +01002542 * @param[in] format Format of any prefixes in @p xpath.
2543 * @param[in] prefix_data Format-specific prefix data.
2544 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2545 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
2546 * the returned set is empty.
2547 * @return LY_SUCCESS on success, @p set is returned.
2548 * @return LY_ERR value if an error occurred.
2549 */
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002550LIBYANG_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 +01002551 LY_VALUE_FORMAT format, void *prefix_data, const struct lyxp_var *vars, struct ly_set **set);
2552
2553/**
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02002554 * @brief Evaluate an XPath on data and return the result converted to boolean.
2555 *
2556 * Optimizations similar as in ::lyd_find_xpath().
2557 *
2558 * @param[in] ctx_node XPath context node.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002559 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
Michal Vasko080155c2021-10-14 09:22:16 +02002560 * @param[out] result Expression result converted to boolean.
Michal Vaskoc9eb3ca2021-07-16 10:20:37 +02002561 * @return LY_SUCCESS on success, @p result is returned.
2562 * @return LY_ERR value if an error occurred.
2563 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002564LIBYANG_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 +02002565
2566/**
aPiecekfba75362021-10-07 12:39:48 +02002567 * @brief Evaluate an XPath on data and return the result converted to boolean.
2568 *
Michal Vasko10fabfc2022-08-09 08:55:43 +02002569 * It is ::lyd_eval_xpath() with @p vars added.
aPiecekfba75362021-10-07 12:39:48 +02002570 *
2571 * @param[in] ctx_node XPath context node.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002572 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
aPiecekfba75362021-10-07 12:39:48 +02002573 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
Michal Vasko080155c2021-10-14 09:22:16 +02002574 * @param[out] result Expression result converted to boolean.
aPiecekfba75362021-10-07 12:39:48 +02002575 * @return LY_SUCCESS on success, @p result is returned.
2576 * @return LY_ERR value if an error occurred.
2577 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002578LIBYANG_API_DECL LY_ERR lyd_eval_xpath2(const struct lyd_node *ctx_node, const char *xpath,
aPiecekfba75362021-10-07 12:39:48 +02002579 const struct lyxp_var *vars, ly_bool *result);
2580
2581/**
Michal Vasko10fabfc2022-08-09 08:55:43 +02002582 * @brief Evaluate an XPath on data and return the result converted to boolean.
2583 *
2584 * It is ::lyd_eval_xpath2() with @p format and @p prefix_data added for special use-cases.
2585 *
2586 * @param[in] ctx_node XPath context node.
2587 * @param[in] cur_mod Current module of @p xpath, needed for some kinds of @p format.
Michal Vaskobe1b0cb2024-01-22 14:32:15 +01002588 * @param[in] xpath [XPath](@ref howtoXPath) to select with prefixes in in @p format.
Michal Vasko10fabfc2022-08-09 08:55:43 +02002589 * @param[in] format Format of any prefixes in @p xpath.
2590 * @param[in] prefix_data Format-specific prefix data.
2591 * @param[in] vars [Sized array](@ref sizedarrays) of XPath variables.
2592 * @param[out] result Expression result converted to boolean.
2593 * @return LY_SUCCESS on success, @p result is returned.
2594 * @return LY_ERR value if an error occurred.
2595 */
2596LIBYANG_API_DECL LY_ERR lyd_eval_xpath3(const struct lyd_node *ctx_node, const struct lys_module *cur_mod,
2597 const char *xpath, LY_VALUE_FORMAT format, void *prefix_data, const struct lyxp_var *vars, ly_bool *result);
2598
2599/**
Michal Vaskod96e2372023-02-24 16:07:51 +01002600 * @brief XPath result type.
2601 */
2602typedef enum {
2603 LY_XPATH_NODE_SET, /**< XPath node set */
2604 LY_XPATH_STRING, /**< XPath string */
2605 LY_XPATH_NUMBER, /**< XPath number */
2606 LY_XPATH_BOOLEAN /**< XPath boolean */
2607} LY_XPATH_TYPE;
2608
2609/**
2610 * @brief Evaluate an XPath on data and return the result or convert it first to an expected result type.
2611 *
2612 * Either all return type parameters @p node_set, @p string, @p number, and @p boolean with @p ret_type
2613 * are provided or exactly one of @p node_set, @p string, @p number, and @p boolean is provided with @p ret_type
2614 * being obvious and hence optional.
2615 *
2616 * @param[in] ctx_node XPath context node, NULL for the root node.
2617 * @param[in] tree Data tree to evaluate on.
2618 * @param[in] cur_mod Current module of @p xpath, needed for some kinds of @p format.
2619 * @param[in] xpath [XPath](@ref howtoXPath) to select.
2620 * @param[in] format Format of any prefixes in @p xpath.
2621 * @param[in] prefix_data Format-specific prefix data.
2622 * @param[in] vars Optional [sized array](@ref sizedarrays) of XPath variables.
2623 * @param[out] ret_type XPath type of the result selecting which of @p node_set, @p string, @p number, and @p boolean to use.
2624 * @param[out] node_set XPath node set result.
2625 * @param[out] string XPath string result.
2626 * @param[out] number XPath number result.
2627 * @param[out] boolean XPath boolean result.
2628 * @return LY_SUCCESS on success.
2629 * @return LY_ERR value on error.
2630 */
2631LIBYANG_API_DECL LY_ERR lyd_eval_xpath4(const struct lyd_node *ctx_node, const struct lyd_node *tree,
2632 const struct lys_module *cur_mod, const char *xpath, LY_VALUE_FORMAT format, void *prefix_data,
2633 const struct lyxp_var *vars, LY_XPATH_TYPE *ret_type, struct ly_set **node_set, char **string,
2634 long double *number, ly_bool *boolean);
2635
2636/**
Michal Vasko99a77882024-01-04 14:50:51 +01002637 * @brief Evaluate an XPath on data and free all the nodes except the subtrees selected by the expression.
2638 *
2639 * @param[in,out] tree Data tree to evaluate on and trim.
2640 * @param[in] xpath [XPath](@ref howtoXPath) to select in JSON format.
2641 * @param[in] vars Optional [sized array](@ref sizedarrays) of XPath variables.
2642 * @return LY_SUCCESS on success.
2643 * @return LY_ERR value on error.
2644 */
2645LIBYANG_API_DEF LY_ERR lyd_trim_xpath(struct lyd_node **tree, const char *xpath, const struct lyxp_var *vars);
2646
2647/**
Michal Vaskoc84c9962021-05-18 16:16:29 +02002648 * @brief Search in given data for a node uniquely identified by a path.
Michal Vasko3e1f6552021-01-14 09:27:55 +01002649 *
Michal Vasko257bdcf2021-01-14 13:15:30 +01002650 * Always works in constant (*O(1)*) complexity. To be exact, it is *O(n)* where *n* is the depth
2651 * of the path used.
2652 *
Michal Vaskofbd0da42023-08-17 14:57:44 +02002653 * Opaque nodes are NEVER found/traversed.
2654 *
Michal Vasko3e1f6552021-01-14 09:27:55 +01002655 * @param[in] ctx_node Path context node.
2656 * @param[in] path [Path](@ref howtoXPath) to find.
2657 * @param[in] output Whether to search in RPC/action output nodes or in input nodes.
2658 * @param[out] match Can be NULL, otherwise the found data node.
2659 * @return LY_SUCCESS on success, @p match is set to the found node.
2660 * @return LY_EINCOMPLETE if only a parent of the node was found, @p match is set to this parent node.
2661 * @return LY_ENOTFOUND if no nodes in the path were found.
2662 * @return LY_ERR on other errors.
2663 */
Michal Vasko55896172022-02-17 10:47:21 +01002664LIBYANG_API_DECL LY_ERR lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output,
2665 struct lyd_node **match);
Michal Vasko3e1f6552021-01-14 09:27:55 +01002666
Michal Vasko43297a02021-05-19 11:12:37 +02002667/**
Michal Vaskobb22b182021-06-14 08:14:21 +02002668 * @brief Find the target node of a compiled path (::lyd_value instance-identifier).
2669 *
2670 * @param[in] path Compiled path structure.
2671 * @param[in] tree Data tree to be searched.
2672 * @param[out] match Can be NULL, otherwise the found data node.
2673 * @return LY_SUCCESS on success, @p match is set to the found node.
2674 * @return LY_ENOTFOUND if no match was found.
2675 * @return LY_ERR on other errors.
2676 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002677LIBYANG_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 +02002678
2679/**
Michal Vasko9b560332023-04-24 15:43:56 +02002680 * @brief Get current timezone (including DST setting) UTC (GMT) time offset in seconds.
Michal Vaskof17bb2a2023-02-10 11:34:55 +01002681 *
2682 * @return Timezone shift in seconds.
2683 */
2684LIBYANG_API_DECL int ly_time_tz_offset(void);
2685
2686/**
Michal Vasko9b560332023-04-24 15:43:56 +02002687 * @brief Get UTC (GMT) timezone offset in seconds at a specific timestamp (including DST setting).
2688 *
2689 * @param[in] time Timestamp to get the offset at.
2690 * @return Timezone shift in seconds.
2691 */
2692LIBYANG_API_DECL int ly_time_tz_offset_at(time_t time);
2693
2694/**
Michal Vasko43297a02021-05-19 11:12:37 +02002695 * @brief Convert date-and-time from string to UNIX timestamp and fractions of a second.
2696 *
2697 * @param[in] value Valid string date-and-time value.
2698 * @param[out] time UNIX timestamp.
2699 * @param[out] fractions_s Optional fractions of a second, set to NULL if none.
2700 * @return LY_ERR value.
2701 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002702LIBYANG_API_DECL LY_ERR ly_time_str2time(const char *value, time_t *time, char **fractions_s);
Michal Vasko43297a02021-05-19 11:12:37 +02002703
2704/**
2705 * @brief Convert UNIX timestamp and fractions of a second into canonical date-and-time string value.
2706 *
2707 * @param[in] time UNIX timestamp.
2708 * @param[in] fractions_s Fractions of a second, if any.
Michal Vaskoc515a2b2021-05-19 11:55:00 +02002709 * @param[out] str String date-and-time value in the local timezone.
Michal Vasko43297a02021-05-19 11:12:37 +02002710 * @return LY_ERR value.
2711 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002712LIBYANG_API_DECL LY_ERR ly_time_time2str(time_t time, const char *fractions_s, char **str);
Michal Vasko43297a02021-05-19 11:12:37 +02002713
2714/**
2715 * @brief Convert date-and-time from string to timespec.
2716 *
2717 * @param[in] value Valid string date-and-time value.
2718 * @param[out] ts Timespec.
2719 * @return LY_ERR value.
2720 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002721LIBYANG_API_DECL LY_ERR ly_time_str2ts(const char *value, struct timespec *ts);
Michal Vasko43297a02021-05-19 11:12:37 +02002722
2723/**
2724 * @brief Convert timespec into date-and-time string value.
2725 *
2726 * @param[in] ts Timespec.
Michal Vaskoc515a2b2021-05-19 11:55:00 +02002727 * @param[out] str String date-and-time value in the local timezone.
Michal Vasko43297a02021-05-19 11:12:37 +02002728 * @return LY_ERR value.
2729 */
Jan Kundrátc53a7ec2021-12-09 16:01:19 +01002730LIBYANG_API_DECL LY_ERR ly_time_ts2str(const struct timespec *ts, char **str);
Michal Vasko43297a02021-05-19 11:12:37 +02002731
stewegf9041a22024-01-18 13:29:12 +01002732/**
2733 * @brief Gets the leafref links record for given node
2734 *
Michal Vaskoeeec27a2024-01-22 14:32:34 +01002735 * This API requires usage of ::LY_CTX_LEAFREF_LINKING context flag.
stewegf9041a22024-01-18 13:29:12 +01002736 *
2737 * @param[in] node The term data node.
2738 * @param[out] record The leafref links record
2739 * @return LY_SUCCESS on success.
2740 * @return LY_ERR value on error.
2741 */
2742LIBYANG_API_DECL LY_ERR lyd_leafref_get_links(const struct lyd_node_term *node, const struct lyd_leafref_links_rec **record);
2743
2744/**
2745 * @brief Traverse through data tree including root node siblings and adds leafrefs links to the given nodes
2746 *
Michal Vaskoeeec27a2024-01-22 14:32:34 +01002747 * This API requires usage of ::LY_CTX_LEAFREF_LINKING context flag.
stewegf9041a22024-01-18 13:29:12 +01002748 *
2749 * @param[in] tree The data tree root node.
2750 * @return LY_SUCCESS on success.
2751 * @return LY_ERR value on error.
2752 */
2753LIBYANG_API_DECL LY_ERR lyd_leafref_link_node_tree(const struct lyd_node *tree);
2754
Radek Krejcie7b95092019-05-15 11:03:07 +02002755#ifdef __cplusplus
2756}
2757#endif
2758
2759#endif /* LY_TREE_DATA_H_ */