blob: ed7b7daebb09e17685f668d8f7f5381e51acd05c [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 Vasko495f4502021-04-27 14:48:05 +02007 * Copyright (c) 2015 - 2021 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
Michal Vasko2b421d92021-05-18 16:33:36 +020019#include <arpa/inet.h>
20#if defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__)
21#include <netinet/in.h>
22#include <sys/socket.h>
23#endif
Radek Krejcie7b95092019-05-15 11:03:07 +020024#include <stddef.h>
25#include <stdint.h>
Michal Vasko2b421d92021-05-18 16:33:36 +020026#include <time.h>
Radek Krejcie7b95092019-05-15 11:03:07 +020027
Michal Vaskoaa0ee622021-05-11 09:29:25 +020028#include "config.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020029#include "log.h"
Christian Hopps59618972021-02-01 05:01:35 -050030#include "tree.h"
31#include "tree_schema.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020032
Radek Krejcica376bd2020-06-11 16:04:06 +020033#ifdef __cplusplus
34extern "C" {
35#endif
36
Radek Krejcie7b95092019-05-15 11:03:07 +020037struct ly_ctx;
Michal Vasko004d3152020-06-11 19:59:22 +020038struct ly_path;
Radek Krejci535ea9f2020-05-29 16:01:05 +020039struct ly_set;
40struct lyd_node;
41struct lyd_node_opaq;
Radek Krejci47fab892020-11-05 17:02:41 +010042struct lyd_node_term;
Michal Vasko43297a02021-05-19 11:12:37 +020043struct timespec;
Radek Krejcie7b95092019-05-15 11:03:07 +020044
Radek Krejcie7b95092019-05-15 11:03:07 +020045/**
Radek Krejci8678fa42020-08-18 16:07:28 +020046 * @page howtoData Data Instances
47 *
48 * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema
49 * it can be cast to several other structures.
50 *
51 * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq.
52 * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the
53 * context. Such a node can appear in several places in the data tree.
54 * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were
55 * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can
56 * appear as a node's attributes.
57 * - As a representation of YANG anydata/anyxml content.
58 * - As envelopes of standard data tree instances (RPCs, actions or Notifications).
59 *
60 * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is
61 * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype).
62 * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide
63 * structure of the tree by having children nodes.
64 * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal
65 * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020066 * structure with string representation of the value (retrieved by ::lyd_get_value() and ::lyd_get_meta_value()) and
67 * the type specific data stored in the structure's union according to the real type of the value (::lyd_value.realtype).
68 * The string representation provides canonical representation of the value in case the type has the canonical
69 * representation specified. Otherwise, it is the original value or, in case the value can contain prefixes, the JSON
70 * format is used to make the value unambiguous.
Radek Krejci8678fa42020-08-18 16:07:28 +020071 * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes.
72 *
73 * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use
74 * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros
75 * and functions.
76 * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node.
77 * - ::LYD_CTX to get libyang context from a data node.
Radek Krejci6d5ba0c2021-04-26 07:49:59 +020078 * - ::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 +020079 * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first).
80 * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page.
81 *
82 * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of
83 * \b lyd_find_*() functions.
84 *
85 * More information about specific operations with data instances can be found on the following pages:
86 * - @subpage howtoDataParsers
87 * - @subpage howtoDataValidation
88 * - @subpage howtoDataWD
89 * - @subpage howtoDataManipulation
90 * - @subpage howtoDataPrinters
Radek Krejcif9943642021-04-26 10:18:21 +020091 * - @subpage howtoDataLYB
Radek Krejci8678fa42020-08-18 16:07:28 +020092 *
93 * \note API for this group of functions is described in the [Data Instances module](@ref datatree).
94 *
95 * Functions List (not assigned to above subsections)
96 * --------------------------------------------------
97 * - ::lyd_child()
98 * - ::lyd_child_no_keys()
99 * - ::lyd_parent()
100 * - ::lyd_owner_module()
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200101 * - ::lyd_get_value()
102 * - ::lyd_get_meta_value()
Radek Krejci8678fa42020-08-18 16:07:28 +0200103 * - ::lyd_find_xpath()
Michal Vasko3e1f6552021-01-14 09:27:55 +0100104 * - ::lyd_find_path()
Radek Krejci8678fa42020-08-18 16:07:28 +0200105 * - ::lyd_find_sibling_val()
106 * - ::lyd_find_sibling_first()
Michal Vasko1d4af6c2021-02-22 13:31:26 +0100107 * - ::lyd_find_sibling_opaq_next()
Radek Krejci8678fa42020-08-18 16:07:28 +0200108 * - ::lyd_find_meta()
109 *
110 * - ::lyd_path()
111 * - ::lyd_target()
112 *
113 * - ::lyd_lyb_data_length()
Radek Krejci75104122021-04-01 15:37:45 +0200114 *
115 *
116 * @section howtoDataMetadata Metadata Support
117 *
118 * YANG Metadata annotations are defined in [RFC 7952](https://tools.ietf.org/html/rfc7952) as YANG extension (and libyang
119 * [implements them as internal extension plugin](@ref howtoPluginsExtensions)). In practice, it allows to have XML
120 * attributes (there is also a special encoding for JSON) in YANG modeled data. libyang does not allow to have any XML
121 * attribute without the appropriate annotation definition describing the data as it is done e.g. for leafs. When an
122 * attribute without a matching annotation definition is found in the input data, it is:
123 * - silently dropped (with warning) or
124 * - an error is reported in case the ::LYD_PARSE_STRICT parser option is provided to the
125 * [parser function](@ref howtoDataParsers) or
126 * - stored into a generic ::lyd_attr structure without a connection with any YANG module in case the ::LYD_PARSE_OPAQ
127 * parser options is provided to the [parser function](@ref howtoDataParsers).
128 *
129 * There are some XML attributes, described by [YANG](https://tools.ietf.org/html/rfc7950) and
130 * [NETCONF](https://tools.ietf.org/html/rfc6241) specifications, which are not defined as annotations, but libyang
131 * implements them this way. In case of attributes in the YANG namespace (`insert`, `value` and `key` attributes
132 * for the NETCONF edit-config operation), they are defined in special libyang's internal module `yang`, which is
133 * available in each context and the content of this schema can be printed via
134 * [schema printers](@ref howtoSchemaPrinters).
135 *
136 * In case of the attributes described in [NETCONF specification](https://tools.ietf.org/html/rfc6241), the libyang's
137 * annotations structures are hidden and cannot be printed despite, internally, they are part of the `ietf-netconf`'s
138 * schema structure. Therefore, these attributes are available only when the `ietf-netconf` schema is loaded in the
139 * context. The definitions of these annotations are as follows:
140 *
141 * md:annotation operation {
142 * type enumeration {
143 * enum merge;
144 * enum replace;
145 * enum create;
146 * enum delete;
147 * enum remove;
148 * }
149 * }
150 *
151 * md:annotation type {
152 * type enumeration {
153 * enum subtree;
154 * enum xpath {
155 * if-feature "nc:xpath";
156 * }
157 * }
158 * }
159 *
160 * md:annotation select {
161 * type string;
162 * }
163 *
164 * Note, that, following the specification,
165 * - the `type` and `select` XML attributes are supposed to be unqualified (without namespace) and that
166 * - the `select`'s content is XPath and it is internally transformed by libyang into the format where the
167 * XML namespace prefixes are replaced by the YANG module names.
168 *
169 *
170 * @section howtoDataYangdata yang-data Support
171 *
172 * [RFC 8040](https://tools.ietf.org/html/rfc8040) defines ietf-restconf module, which includes yang-data extension. Despite
173 * the definition in the RESTCONF YANG module, the yang-data concept is quite generic and used even in modules without a
174 * connection to RESTCONF protocol. The extension allows to define a separated YANG trees usable separately from any
175 * datastore.
176 *
177 * libyang implements support for yang-data internally as an [extension plugin](@ref howtoPluginsExtensions). To ease the
178 * use of yang-data with libyang, there are several generic functions, which are usable for yang-data:
179 *
180 * - ::lyd_parse_ext_data()
181 * - ::lyd_parse_ext_op()
182 *
183 * - ::lys_getnext_ext()
184 *
185 * - ::lyd_new_ext_inner()
186 * - ::lyd_new_ext_list()
187 * - ::lyd_new_ext_term()
188 * - ::lyd_new_ext_any()
189 * - ::lyd_new_ext_path()
Radek Krejci8678fa42020-08-18 16:07:28 +0200190 */
191
192/**
193 * @page howtoDataManipulation Manipulating Data
194 *
195 * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from
196 * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you
197 * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly
198 * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore,
199 * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure
200 * that the changed data tree is valid.
201 *
202 * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and
203 * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the
204 * nodes order from the YANG schema. So the node is not inserted to the end or beginning of the siblings list, but after the
205 * existing instance of the closest preceding sibling node from the schema. In case the node is opaq (it is not connected
206 * with any schema node), it is placed to the end of the sibling node in the order they are inserted in. The only situation
207 * when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list instances. In such
208 * a case the ::lyd_insert_after() or ::lyd_insert_before() can be used.
209 *
210 * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on
211 * 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 +0100212 * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path() and
213 * ::lyd_new_path2()). The latter enables to create a whole path of nodes, requires less information
Radek Krejci8678fa42020-08-18 16:07:28 +0200214 * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using
215 * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single().
216 *
Radek Krejci8a5afc22021-03-12 11:10:47 +0100217 * Note, that in case the node is defined in an extension instance, the functions mentioned above do not work until you
218 * provide parent where the new node is supposed to be inserted. The reason is that all the functions searches for the
219 * 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 +0100220 * ::lyd_new_ext_inner(), ::lyd_new_ext_term(), ::lyd_new_ext_any(), ::lyd_new_ext_list() and ::lyd_new_ext_path()
221 * functions.
Radek Krejci8a5afc22021-03-12 11:10:47 +0100222 *
Radek Krejci75104122021-04-01 15:37:45 +0200223 * The [metadata](@ref howtoDataMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta()
Radek Krejci8678fa42020-08-18 16:07:28 +0200224 * and ::lyd_new_attr().
225 *
226 * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value
227 * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value
228 * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node
229 * (::lyd_value_validate()).
230 *
231 * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions.
232 * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when
233 * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more
234 * powerful insert.
235 *
236 * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose,
237 * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one
238 * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple
239 * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and
240 * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(),
241 * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used.
242 *
243 * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using
244 * ::lyd_free_all() (or other \b lyd_free_*() functions).
245 *
246 * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the
247 * same context.
248 *
249 * Modifying the single data tree in multiple threads is not safe.
250 *
251 * Functions List
252 * --------------
253 * - ::lyd_new_inner()
254 * - ::lyd_new_term()
Radek Krejci09c77442021-04-26 11:10:34 +0200255 * - ::lyd_new_term_bin()
256 * - ::lyd_new_term_canon()
Radek Krejci8678fa42020-08-18 16:07:28 +0200257 * - ::lyd_new_list()
258 * - ::lyd_new_list2()
259 * - ::lyd_new_any()
260 * - ::lyd_new_opaq()
Michal Vasko8d65f852021-02-17 11:28:13 +0100261 * - ::lyd_new_opaq2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200262 * - ::lyd_new_attr()
Michal Vasko8d65f852021-02-17 11:28:13 +0100263 * - ::lyd_new_attr2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200264 * - ::lyd_new_meta()
265 * - ::lyd_new_path()
266 * - ::lyd_new_path2()
Radek Krejci8678fa42020-08-18 16:07:28 +0200267 *
Radek Krejcidd2a7662021-03-12 11:26:34 +0100268 * - ::lyd_new_ext_inner()
Radek Krejci8a5afc22021-03-12 11:10:47 +0100269 * - ::lyd_new_ext_term()
Radek Krejci8247bae2021-03-12 11:47:02 +0100270 * - ::lyd_new_ext_list()
Radek Krejci0b963da2021-03-12 13:23:44 +0100271 * - ::lyd_new_ext_any()
Radek Krejci95ccd1b2021-03-12 14:57:22 +0100272 * - ::lyd_new_ext_path()
Radek Krejci8a5afc22021-03-12 11:10:47 +0100273 *
Radek Krejci8678fa42020-08-18 16:07:28 +0200274 * - ::lyd_dup_single()
275 * - ::lyd_dup_siblings()
276 * - ::lyd_dup_meta_single()
277 *
278 * - ::lyd_insert_child()
279 * - ::lyd_insert_sibling()
280 * - ::lyd_insert_after()
281 * - ::lyd_insert_before()
282 *
283 * - ::lyd_value_compare()
284 * - ::lyd_value_validate()
285 *
286 * - ::lyd_change_term()
Radek Krejci09c77442021-04-26 11:10:34 +0200287 * - ::lyd_change_term_bin()
288 * - ::lyd_change_term_canon()
Radek Krejci8678fa42020-08-18 16:07:28 +0200289 * - ::lyd_change_meta()
290 *
291 * - ::lyd_compare_single()
292 * - ::lyd_compare_siblings()
293 * - ::lyd_compare_meta()
294 * - ::lyd_diff_tree()
295 * - ::lyd_diff_siblings()
296 * - ::lyd_diff_apply_all()
297 * - ::lyd_diff_apply_module()
298 * - ::lyd_diff_reverse_all()
299 * - ::lyd_diff_merge_all()
300 * - ::lyd_diff_merge_module()
301 * - ::lyd_diff_merge_tree()
302 *
303 * - ::lyd_merge_tree()
304 * - ::lyd_merge_siblings()
Michal Vaskocd3f6172021-05-18 16:14:50 +0200305 * - ::lyd_merge_module()
Radek Krejci8678fa42020-08-18 16:07:28 +0200306 *
307 * - ::lyd_unlink_tree()
308 *
309 * - ::lyd_free_all()
310 * - ::lyd_free_siblings()
311 * - ::lyd_free_tree()
312 * - ::lyd_free_meta_single()
313 * - ::lyd_free_meta_siblings()
314 * - ::lyd_free_attr_single()
315 * - ::lyd_free_attr_siblings()
316 *
Michal Vaskoa820c312021-02-05 16:33:00 +0100317 * - ::lyd_any_value_str()
Radek Krejci8678fa42020-08-18 16:07:28 +0200318 * - ::lyd_any_copy_value()
319 */
320
321/**
322 * @page howtoDataWD Default Values
323 *
324 * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243).
325 * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to
326 * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the
327 * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata
328 * providing the information about the default values cannot be used. It means that when parsing data, the default nodes
329 * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected
330 * nodes are printed without the ietf-netconf-with-defaults metadata.
331 *
332 * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them
333 * via @ref dataprinterflags when printing data trees.
334 * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default
335 * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option.
336 * This is the default with-defaults mode of the printer. The data nodes do not contain any additional
337 * metadata information.
338 * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option.
339 * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or
340 * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by
341 * ::LYD_PRINT_WD_ALL option.
342 * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value
343 * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode.
344 * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes
345 * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option.
346 *
347 * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation).
348 * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding
349 * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the
350 * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the
351 * appropriate metadata.
352 *
353 * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes
354 * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the
355 * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions.
356 *
357 * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member
358 * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container
359 * 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
360 * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added
361 * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option.
362 *
363 * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can
364 * use ::lyd_is_default() function.
365 *
366 * Functions List
367 * --------------
368 * - ::lyd_is_default()
369 * - ::lyd_new_implicit_all()
370 * - ::lyd_new_implicit_module()
371 * - ::lyd_new_implicit_tree()
372 */
373
374/**
Radek Krejcif9943642021-04-26 10:18:21 +0200375 * @page howtoDataLYB LYB Binary Format
376 *
377 * LYB (LibYang Binary) is a proprietary libyang binary data and file format. Its primary purpose is efficient
378 * serialization (printing) and deserialization (parsing). With this goal in mind, every term node value is stored
379 * in its new binary format specification according to its type. Following is the format for all types with explicit
380 * support out-of-the-box (meaning that have a special type plugin). Any derived types inherit the format of its
381 * closest type with explicit support (up to a built-in type).
Radek Krejci09c77442021-04-26 11:10:34 +0200382 *
Michal Vaskof1bcb5c2021-04-30 09:21:25 +0200383 * @section howtoDataLYBTypes Format of specific data type values
Radek Krejcif9943642021-04-26 10:18:21 +0200384 */
385
386/**
Radek Krejci2ff0d572020-05-21 15:27:28 +0200387 * @ingroup trees
Radek Krejci8678fa42020-08-18 16:07:28 +0200388 * @defgroup datatree Data Tree
Radek Krejcie7b95092019-05-15 11:03:07 +0200389 * @{
390 *
391 * Data structures and functions to manipulate and access instance data tree.
392 */
393
Michal Vasko64246d82020-08-19 12:35:00 +0200394/* *INDENT-OFF* */
395
Michal Vaskoa276cd92020-08-10 15:10:08 +0200396/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200397 * @brief Macro to iterate via all elements in a data tree. This is the opening part
398 * to the #LYD_TREE_DFS_END - they always have to be used together.
399 *
400 * The function follows deep-first search algorithm:
401 * <pre>
402 * 1
403 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100404 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +0200405 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +0100406 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +0200407 * </pre>
408 *
Radek Krejci0935f412019-08-20 16:15:18 +0200409 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200410 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
411 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200412 *
Michal Vasko56daf732020-08-10 10:57:18 +0200413 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
414 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +0200415 *
416 * Use with opening curly bracket '{' after the macro.
417 *
418 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200419 * @param ELEM Iterator intended for use in the block.
420 */
Michal Vasko56daf732020-08-10 10:57:18 +0200421#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci857189e2020-09-01 13:26:36 +0200422 { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +0200423 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +0200424 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200425 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +0200426
427/**
428 * @brief Macro to iterate via all elements in a tree. This is the closing part
429 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
430 *
431 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200432 * START can be any of the lyd_node* types, ELEM variable must be a pointer
433 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200434 *
435 * Use with closing curly bracket '}' after the macro.
436 *
437 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200438 * @param ELEM Iterator intended for use in the block.
439 */
440
Michal Vasko56daf732020-08-10 10:57:18 +0200441#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200442 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200443 if (LYD_TREE_DFS_continue) { \
444 (LYD_TREE_DFS_next) = NULL; \
445 } else { \
Radek Krejcia1c1e542020-09-29 16:06:52 +0200446 (LYD_TREE_DFS_next) = lyd_child(ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +0200447 }\
448 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200449 /* no children */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100450 if ((ELEM) == (struct lyd_node *)(START)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200451 /* we are done, (START) has no children */ \
452 break; \
453 } \
454 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200455 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200456 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200457 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200458 /* parent is already processed, go to its sibling */ \
Michal Vasko9e685082021-01-29 14:49:09 +0100459 (ELEM) = (struct lyd_node *)(ELEM)->parent; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200460 /* no siblings, go back through parents */ \
461 if ((ELEM)->parent == (START)->parent) { \
462 /* we are done, no next element to process */ \
463 break; \
464 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200465 (LYD_TREE_DFS_next) = (ELEM)->next; \
Christian Hopps59618972021-02-01 05:01:35 -0500466 } }
467
468/**
469 * @brief Macro to iterate via all schema node data instances in data siblings.
470 *
471 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
472 * @param SCHEMA Schema node of the searched instances.
473 * @param ELEM Iterator.
474 */
475#define LYD_LIST_FOR_INST(START, SCHEMA, ELEM) \
476 for (lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
477 (ELEM) && ((ELEM)->schema == (SCHEMA)); \
478 (ELEM) = (ELEM)->next)
479
480/**
481 * @brief Macro to iterate via all schema node data instances in data siblings allowing to modify the list itself.
482 *
483 * @param START Pointer to the starting sibling. Even if it is not first, all the siblings are searched.
484 * @param SCHEMA Schema node of the searched instances.
485 * @param NEXT Temporary storage to allow removing of the current iterator content.
486 * @param ELEM Iterator.
487 */
488#define LYD_LIST_FOR_INST_SAFE(START, SCHEMA, NEXT, ELEM) \
489 for (lyd_find_sibling_val(START, SCHEMA, NULL, 0, &(ELEM)); \
490 (ELEM) && ((ELEM)->schema == (SCHEMA)) ? ((NEXT) = (ELEM)->next, 1) : 0; \
491 (ELEM) = (NEXT))
Radek Krejcie7b95092019-05-15 11:03:07 +0200492
Michal Vasko64246d82020-08-19 12:35:00 +0200493/* *INDENT-ON* */
494
Radek Krejcie7b95092019-05-15 11:03:07 +0200495/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200496 * @brief Macro to get context from a data tree node.
497 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200498#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200499
500/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200501 * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and
502 * [printer](@ref howtoDataPrinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200503 */
504typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200505 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
506 LYD_XML, /**< XML instance data format */
507 LYD_JSON, /**< JSON instance data format */
Michal Vasko69730152020-10-09 16:30:07 +0200508 LYD_LYB /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200509} LYD_FORMAT;
510
511/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200512 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200513 */
514typedef enum {
Radek Krejci8678fa42020-08-18 16:07:28 +0200515 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 +0200516 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
Radek Krejci8678fa42020-08-18 16:07:28 +0200517 with the data after a successful call (including calling ::lyd_free_all() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200518 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 +0200519 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
520 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200521 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
522 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 +0200523 LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200524} LYD_ANYDATA_VALUETYPE;
525
526/** @} */
527
528/**
529 * @brief YANG data representation
530 */
531struct lyd_value {
Radek Krejci995784f2021-04-26 08:02:13 +0200532 const char *_canonical; /**< Should never be accessed directly, instead ::lyd_get_value() and ::lyd_get_meta_value()
Radek Krejci6d5ba0c2021-04-26 07:49:59 +0200533 should be used. Serves as a cache for the canonical value or the JSON
534 representation if no canonical value is defined. */
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200535 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
536 in the schema node of the data node since the type's store plugin can use other types/plugins for
537 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
538 target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data
539 stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type.
540 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
541 the type used to store data directly in the same lyd_value instance. */
Radek Krejci8678fa42020-08-18 16:07:28 +0200542
Radek Krejcie7b95092019-05-15 11:03:07 +0200543 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200544 int8_t boolean; /**< 0 as false, 1 as true */
545 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200546 int8_t int8; /**< 8-bit signed integer */
547 int16_t int16; /**< 16-bit signed integer */
548 int32_t int32; /**< 32-bit signed integer */
549 int64_t int64; /**< 64-bit signed integer */
550 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200551 uint16_t uint16; /**< 16-bit unsigned integer */
552 uint32_t uint32; /**< 32-bit unsigned integer */
553 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200554 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
555 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200556 struct ly_path *target; /**< Instance-identifier target path. */
Michal Vasko3ce79712021-05-04 11:44:20 +0200557 struct lyd_value_union *subvalue; /** Union value with some metadata. */
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200558
559 void *dyn_mem; /**< pointer to generic data type value stored in dynamic memory */
560 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 +0200561 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype
562 plugin's callbacks to work with the data.*/
Radek Krejcie7b95092019-05-15 11:03:07 +0200563};
564
565/**
Michal Vaskoaa0ee622021-05-11 09:29:25 +0200566 * @brief Get the value in format specific to the type.
567 *
568 * Should be used for any types that do not have their specific representation in the ::lyd_value union.
569 *
570 * @param[in] value Pointer to the value structure to read from (struct ::lyd_value *).
571 * @param[out] type_val Pointer to the type-specific value structure.
572 */
573#define LYD_VALUE_GET(value, type_val) \
574 ((sizeof *(type_val) > LYD_VALUE_FIXED_MEM_SIZE) \
575 ? ((type_val) = (((value)->dyn_mem))) \
576 : ((type_val) = ((void *)((value)->fixed_mem))))
577
578/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200579 * @brief Special lyd_value structure for built-in union values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200580 *
Michal Vasko3ce79712021-05-04 11:44:20 +0200581 * Represents data with multiple types (union). The ::lyd_value_union.value contains representation according to
582 * 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 +0200583 * 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 +0200584 */
Michal Vasko3ce79712021-05-04 11:44:20 +0200585struct lyd_value_union {
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200586 struct lyd_value value; /**< representation of the value according to the selected union's subtype
Michal Vasko3ce79712021-05-04 11:44:20 +0200587 (stored as ::lyd_value.realtype here) */
588 void *original; /**< Original value. */
589 size_t orig_len; /**< Original value length. */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200590 uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */
Radek Krejci8df109d2021-04-23 12:19:08 +0200591 LY_VALUE_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200592 whether a value is valid for the specific format or not on later validations
593 (instance-identifier in XML looks different than in JSON). */
Radek Krejci0b013302021-03-29 15:22:32 +0200594 void *prefix_data; /**< Format-specific data for prefix resolution (see ly_resolve_prefix()) */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200595 const struct lysc_node *ctx_node; /**< Context schema node. */
596};
597
598/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200599 * @brief Special lyd_value structure for built-in bits values.
Michal Vasko2724b922021-04-28 13:46:31 +0200600 */
601struct lyd_value_bits {
602 char *bitmap; /**< bitmap of size ::lyplg_type_bits_bitmap_size(), if its value is
603 cast to an integer type of the corresponding size, can be used
604 directly as a bitmap */
605 struct lysc_type_bitenum_item **items; /**< list of set pointers to the specification of the set
606 bits ([sized array](@ref sizedarrays)) */
607};
608
609/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200610 * @brief Special lyd_value structure for built-in binary values.
Michal Vasko495f4502021-04-27 14:48:05 +0200611 */
612struct lyd_value_binary {
613 void *data; /**< binary value itself */
614 size_t size; /**< size of the @p data value */
615};
616
617/**
Michal Vasko2b421d92021-05-18 16:33:36 +0200618 * @brief Special lyd_value structure for ietf-inet-types ipv4-address-no-zone values.
619 */
620struct lyd_value_ipv4_address_no_zone {
621 struct in_addr addr; /**< IPv4 address in binary */
622};
623
624/**
625 * @brief Special lyd_value structure for ietf-inet-types ipv4-address values.
626 */
627struct lyd_value_ipv4_address {
628 struct in_addr addr; /**< IPv4 address in binary */
629 const char *zone; /**< Optional address zone */
630};
631
632/**
633 * @brief Special lyd_value structure for ietf-inet-types ipv4-prefix values.
634 */
635struct lyd_value_ipv4_prefix {
636 struct in_addr addr; /**< IPv4 host address in binary */
637 uint8_t prefix; /**< prefix length (0 - 32) */
638};
639
640/**
641 * @brief Special lyd_value structure for ietf-inet-types ipv6-address-no-zone values.
642 */
643struct lyd_value_ipv6_address_no_zone {
644 struct in6_addr addr; /**< IPv6 address in binary */
645};
646
647/**
648 * @brief Special lyd_value structure for ietf-inet-types ipv6-address values.
649 */
650struct lyd_value_ipv6_address {
651 struct in6_addr addr; /**< IPv6 address in binary */
652 const char *zone; /**< Optional address zone */
653};
654
655/**
656 * @brief Special lyd_value structure for ietf-inet-types ipv6-prefix values.
657 */
658struct lyd_value_ipv6_prefix {
659 struct in6_addr addr; /**< IPv6 host address in binary */
660 uint8_t prefix; /**< prefix length (0 - 128) */
661};
662
663/**
664 * @brief Special lyd_value structure for ietf-yang-types date-and-time values.
665 */
666struct lyd_value_date_and_time {
667 time_t time; /**< UNIX timestamp */
668 char *fractions_s; /**< Optional fractions of a second */
669};
670
671/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100672 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200673 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100674 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200675 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
676 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
677 * they are represented as JSON elements starting with the '@' character (for more information, see the
678 * YANG metadata RFC.
679 *
680 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100681struct lyd_meta {
682 struct lyd_node *parent; /**< data node where the metadata is placed */
683 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
684 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
685 const char *name; /**< metadata name */
686 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200687};
688
Michal Vasko52927e22020-03-16 17:26:14 +0100689/**
690 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200691 *
692 * 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 +0200693 * ::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 +0100694 * 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 +0100695 */
Michal Vaskoad92b672020-11-12 13:11:31 +0100696struct ly_opaq_name {
697 const char *name; /**< node name, without prefix if any was defined */
698 const char *prefix; /**< identifier used in the qualified name as the prefix, can be NULL */
Radek Krejci1798aae2020-07-14 13:26:06 +0200699 union {
Radek Krejci8df109d2021-04-23 12:19:08 +0200700 const char *module_ns; /**< format ::LY_VALUE_XML - XML namespace of the node element */
701 const char *module_name; /**< format ::LY_VALUE_JSON - (inherited) name of the module of the element */
Radek Krejci1798aae2020-07-14 13:26:06 +0200702 };
Michal Vasko52927e22020-03-16 17:26:14 +0100703};
704
705/**
706 * @brief Generic attribute structure.
707 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200708struct lyd_attr {
Michal Vasko52927e22020-03-16 17:26:14 +0100709 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
Michal Vasko6b5cb2a2020-11-11 19:11:21 +0100710 struct lyd_attr *next; /**< pointer to the next attribute */
Michal Vaskoad92b672020-11-12 13:11:31 +0100711 struct ly_opaq_name name; /**< attribute name with module information */
Michal Vasko501af032020-11-11 20:27:44 +0100712 const char *value; /**< attribute value */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200713 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Radek Krejci8df109d2021-04-23 12:19:08 +0200714 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 +0100715 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko52927e22020-03-16 17:26:14 +0100716};
Radek Krejcie7b95092019-05-15 11:03:07 +0200717
Michal Vasko1bf09392020-03-27 12:38:10 +0100718#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 +0200719#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
720#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
721
722/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200723 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +0200724 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200725 * @{
726 *
727 * Various flags of data nodes.
728 *
729 * 1 - container 5 - anydata/anyxml
730 * 2 - list 6 - rpc/action
731 * 3 - leaf 7 - notification
732 * 4 - leaflist
733 *
734 * bit name 1 2 3 4 5 6 7
735 * ---------------------+-+-+-+-+-+-+-+
736 * 1 LYD_DEFAULT |x| |x|x| | | |
737 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100738 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100739 * +-+-+-+-+-+-+-+
740 * 3 LYD_NEW |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200741 * ---------------------+-+-+-+-+-+-+-+
742 *
743 */
744
Michal Vasko5c4e5892019-11-14 12:31:38 +0100745#define LYD_DEFAULT 0x01 /**< default (implicit) node */
746#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
Michal Vasko9b368d32020-02-14 13:53:31 +0100747#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
Michal Vasko52927e22020-03-16 17:26:14 +0100748
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200749/** @} */
750
751/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200752 * @brief Generic structure for a data node.
753 */
754struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200755 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
756 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
757 used to get know that nodes are not equal, it cannot be used to decide that the
758 nodes are equal due to possible collisions. */
759 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejci2a9fc652021-01-22 17:44:34 +0100760 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200761 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
762 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
763 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
764 never NULL. If there is no sibling node, pointer points to the node
765 itself. In case of the first node, this pointer points to the last
766 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100767 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200768 void *priv; /**< private user data, not used by libyang */
Radek Krejcie7b95092019-05-15 11:03:07 +0200769};
770
771/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200772 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200773 */
774struct lyd_node_inner {
Michal Vasko9e685082021-01-29 14:49:09 +0100775 union {
776 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
777 struct {
778 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
779 values if list or hashes of all nodes of subtree in case of keyless
780 list). Note that while hash can be used to get know that nodes are
781 not equal, it cannot be used to decide that the nodes are equal due
782 to possible collisions. */
783 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
784 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
785 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
786 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
787 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
788 never NULL. If there is no sibling node, pointer points to the node
789 itself. In case of the first node, this pointer points to the last
790 node in the list. */
791 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
792 void *priv; /**< private user data, not used by libyang */
793 };
794 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200795
796 struct lyd_node *child; /**< pointer to the first child node. */
797 struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
Radek Krejci8678fa42020-08-18 16:07:28 +0200798#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 +0200799};
800
801/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100802 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200803 */
804struct lyd_node_term {
Michal Vasko9e685082021-01-29 14:49:09 +0100805 union {
806 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
807 struct {
808 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
809 values if list or hashes of all nodes of subtree in case of keyless
810 list). Note that while hash can be used to get know that nodes are
811 not equal, it cannot be used to decide that the nodes are equal due
812 to possible collisions. */
813 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
814 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
815 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
816 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
817 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
818 never NULL. If there is no sibling node, pointer points to the node
819 itself. In case of the first node, this pointer points to the last
820 node in the list. */
821 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
822 void *priv; /**< private user data, not used by libyang */
823 };
824 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200825
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200826 struct lyd_value value; /**< node's value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200827};
828
829/**
Christian Hopps61213e02021-04-12 20:41:32 -0400830 * @brief union for anydata/anyxml value representation.
831 */
832union lyd_any_value {
833 struct lyd_node *tree; /**< data tree */
834 const char *str; /**< Generic string data */
835 const char *xml; /**< Serialized XML data */
836 const char *json; /**< I-JSON encoded string */
837 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
838};
839
840/**
841 * @brief Data node structure for the anydata data tree nodes - anydata or
842 * anyxml.
Radek Krejcie7b95092019-05-15 11:03:07 +0200843 */
844struct lyd_node_any {
Michal Vasko9e685082021-01-29 14:49:09 +0100845 union {
846 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
847 struct {
848 uint32_t hash; /**< hash of this particular node (module name + schema name + key string
849 values if list or hashes of all nodes of subtree in case of keyless
850 list). Note that while hash can be used to get know that nodes are
851 not equal, it cannot be used to decide that the nodes are equal due
852 to possible collisions. */
853 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
854 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
855 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
856 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
857 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
858 never NULL. If there is no sibling node, pointer points to the node
859 itself. In case of the first node, this pointer points to the last
860 node in the list. */
861 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
862 void *priv; /**< private user data, not used by libyang */
863 };
864 }; /**< common part corresponding to ::lyd_node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200865
Christian Hopps61213e02021-04-12 20:41:32 -0400866 union lyd_any_value value; /**< pointer to the stored value representation of the anydata/anyxml node */
Michal Vasko9e685082021-01-29 14:49:09 +0100867 LYD_ANYDATA_VALUETYPE value_type; /**< type of the data stored as ::lyd_node_any.value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200868};
869
870/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +0100871 * @brief Get the name (associated with) of a data node. Works for opaque nodes as well.
872 *
873 * @param[in] node Node to examine.
874 * @return Data node name.
875 */
876#define LYD_NAME(node) ((node)->schema ? (node)->schema->name : ((struct lyd_node_opaq *)node)->name.name)
877
878/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200879 * @ingroup datatree
880 * @defgroup lydvalhints Value format hints.
Radek Krejci1798aae2020-07-14 13:26:06 +0200881 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200882 *
883 * Hints for the type of the data value.
884 *
885 * Any information about value types encoded in the format is hinted by these values.
Radek Krejci1798aae2020-07-14 13:26:06 +0200886 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200887#define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */
888#define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */
889#define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */
890#define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */
891#define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */
892#define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */
893#define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */
894/**
895 * @} lydvalhints
896 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200897
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200898/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200899 * @ingroup datatree
900 * @defgroup lydnodehints Node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200901 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200902 *
903 * Hints for the type of the data node.
904 *
905 * Any information about node types encoded in the format is hinted by these values.
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200906 */
907#define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */
908#define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200909/**
910 * @} lydnodehints
911 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200912
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200913/**
Radek Krejci8678fa42020-08-18 16:07:28 +0200914 * @ingroup datatree
915 * @defgroup lydhints Value and node type format hints
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200916 * @{
Radek Krejci8678fa42020-08-18 16:07:28 +0200917 *
918 * Hints for the types of data node and its value.
919 *
920 * Any information about value and node types encoded in the format is hinted by these values.
921 * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints).
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200922 */
923#define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when
924 there is no encoding or it does not provide any additional information about
925 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
926 or [node hints](@ref lydnodehints). */
927#define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when
928 there is no encoding or it does not provide any additional information about
929 a node/value type); do not combine with specific [value hints](@ref lydvalhints)
930 or [node hints](@ref lydnodehints). */
931/**
932 * @} lydhints
933 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200934
935/**
Michal Vasko52927e22020-03-16 17:26:14 +0100936 * @brief Data node structure for unparsed (opaque) nodes.
937 */
938struct lyd_node_opaq {
Michal Vasko9e685082021-01-29 14:49:09 +0100939 union {
940 struct lyd_node node; /**< implicit cast for the members compatible with ::lyd_node */
941 struct {
942 uint32_t hash; /**< always 0 */
943 uint32_t flags; /**< always 0 */
944 const struct lysc_node *schema; /**< always NULL */
945 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
946 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
947 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
948 never NULL. If there is no sibling node, pointer points to the node
949 itself. In case of the first node, this pointer points to the last
950 node in the list. */
951 struct lyd_meta *meta; /**< always NULL */
952 void *priv; /**< private user data, not used by libyang */
953 };
954 }; /**< common part corresponding to ::lyd_node */
Michal Vasko52927e22020-03-16 17:26:14 +0100955
Michal Vasko501af032020-11-11 20:27:44 +0100956 struct lyd_node *child; /**< pointer to the child node (compatible with ::lyd_node_inner) */
957
Michal Vaskoad92b672020-11-12 13:11:31 +0100958 struct ly_opaq_name name; /**< node name with module information */
Michal Vasko52927e22020-03-16 17:26:14 +0100959 const char *value; /**< original value */
Michal Vaskod0c3bac2021-05-11 09:44:43 +0200960 uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */
Radek Krejci8df109d2021-04-23 12:19:08 +0200961 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 +0100962 void *val_prefix_data; /**< format-specific prefix data */
Michal Vasko501af032020-11-11 20:27:44 +0100963
Michal Vasko9e685082021-01-29 14:49:09 +0100964 struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */
Michal Vasko52927e22020-03-16 17:26:14 +0100965 const struct ly_ctx *ctx; /**< libyang context */
966};
967
968/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200969 * @brief Get the generic parent pointer of a data node.
970 *
971 * @param[in] node Node whose parent pointer to get.
972 * @return Pointer to the parent node of the @p node.
973 * @return NULL in case of the top-level node or if the @p node is NULL itself.
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200974 */
Christian Hopps59618972021-02-01 05:01:35 -0500975static inline struct lyd_node *
976lyd_parent(const struct lyd_node *node)
977{
978 if (!node) {
979 return NULL;
980 }
981
982 return &node->parent->node;
983}
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200984
985/**
Radek Krejcia1c1e542020-09-29 16:06:52 +0200986 * @brief Get the child pointer of a generic data node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200987 *
Radek Krejcia1c1e542020-09-29 16:06:52 +0200988 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
989 *
990 * If you need to skip key children, use ::lyd_child_no_keys().
991 *
992 * @param[in] node Node to use.
993 * @return Pointer to the first child node (if any) of the @p node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200994 */
Christian Hopps59618972021-02-01 05:01:35 -0500995static inline struct lyd_node *
996lyd_child(const struct lyd_node *node)
997{
998 if (!node) {
999 return NULL;
1000 }
1001
1002 if (!node->schema) {
1003 /* opaq node */
1004 return ((struct lyd_node_opaq *)node)->child;
1005 }
1006
1007 switch (node->schema->nodetype) {
1008 case LYS_CONTAINER:
1009 case LYS_LIST:
1010 case LYS_RPC:
1011 case LYS_ACTION:
1012 case LYS_NOTIF:
1013 return ((struct lyd_node_inner *)node)->child;
1014 default:
1015 return NULL;
1016 }
1017}
Radek Krejcia1c1e542020-09-29 16:06:52 +02001018
1019/**
1020 * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST.
1021 *
1022 * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq).
1023 *
1024 * If you need to take key children into account, use ::lyd_child().
1025 *
1026 * @param[in] node Node to use.
1027 * @return Pointer to the first child node (if any) of the @p node.
1028 */
1029struct lyd_node *lyd_child_no_keys(const struct lyd_node *node);
Radek Krejcie7b95092019-05-15 11:03:07 +02001030
1031/**
Michal Vaskoc193ce92020-03-06 11:04:48 +01001032 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
1033 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
1034 *
Michal Vaskofcdf3012020-11-23 16:57:03 +01001035 * Also works for opaque nodes, if it is possible to resolve the module.
1036 *
Michal Vaskoc193ce92020-03-06 11:04:48 +01001037 * @param[in] node Data node to examine.
1038 * @return Module owner of the node.
1039 */
1040const struct lys_module *lyd_owner_module(const struct lyd_node *node);
1041
1042/**
Radek Krejci19611252020-10-04 13:54:53 +02001043 * @brief Check whether a node value equals to its default one.
1044 *
1045 * @param[in] node Term node to test.
1046 * @return false (no, it is not a default node) or true (yes, it is default)
1047 */
1048ly_bool lyd_is_default(const struct lyd_node *node);
1049
1050/**
Radek Krejcica989142020-11-05 11:32:22 +01001051 * @brief Learn the relative position of a list or leaf-list instance within other instances of the same schema node.
1052 *
1053 * @param[in] instance List or leaf-list instance to get the position of.
Michal Vaskoe78faec2021-04-08 17:24:43 +02001054 * @return 0 on error.
1055 * @return Positive integer of the @p instance position.
Radek Krejcica989142020-11-05 11:32:22 +01001056 */
1057uint32_t lyd_list_pos(const struct lyd_node *instance);
1058
1059/**
Radek Krejci4233f9b2020-11-05 12:38:35 +01001060 * @brief Get the first sibling of the given node.
1061 *
1062 * @param[in] node Node which first sibling is going to be the result.
1063 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
1064 */
Michal Vasko6ae16d62020-11-06 17:23:23 +01001065struct lyd_node *lyd_first_sibling(const struct lyd_node *node);
Radek Krejci4233f9b2020-11-05 12:38:35 +01001066
1067/**
Michal Vasko60ea6352020-06-29 13:39:39 +02001068 * @brief Learn the length of LYB data.
1069 *
1070 * @param[in] data LYB data to examine.
1071 * @return Length of the LYB data chunk,
1072 * @return -1 on error.
1073 */
1074int lyd_lyb_data_length(const char *data);
1075
1076/**
Christian Hopps46bd21b2021-04-27 09:43:58 -04001077 * @brief Get the (canonical) value of a lyd_value.
1078 *
Michal Vasko33876022021-04-27 16:42:24 +02001079 * Whenever possible, ::lyd_get_value() or ::lyd_get_meta_value() should be used instead.
1080 *
Christian Hopps46bd21b2021-04-27 09:43:58 -04001081 * @param[in] ctx Context for the value
Michal Vasko33876022021-04-27 16:42:24 +02001082 * @param[in] value Value structure to use.
Christian Hopps46bd21b2021-04-27 09:43:58 -04001083 * @return Canonical value.
1084 */
1085const char *lyd_value_get_canonical(const struct ly_ctx *ctx, const struct lyd_value *value);
1086
1087/**
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001088 * @brief Get the (canonical) value of a data node.
1089 *
1090 * @param[in] node Data node to use.
1091 * @return Canonical value.
1092 */
Christian Hopps46bd21b2021-04-27 09:43:58 -04001093static inline const char *
1094lyd_get_value(const struct lyd_node *node)
1095{
1096 if (!node) {
1097 return NULL;
1098 }
1099
1100 if (!node->schema) {
1101 return ((struct lyd_node_opaq *)node)->value;
1102 } else if (node->schema->nodetype & LYD_NODE_TERM) {
1103 const struct lyd_value *value = &((struct lyd_node_term *)node)->value;
Michal Vasko33876022021-04-27 16:42:24 +02001104 return value->_canonical ? value->_canonical : lyd_value_get_canonical(LYD_CTX(node), value);
Christian Hopps46bd21b2021-04-27 09:43:58 -04001105 }
Michal Vasko33876022021-04-27 16:42:24 +02001106
Christian Hopps46bd21b2021-04-27 09:43:58 -04001107 return NULL;
1108}
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001109
1110/**
1111 * @brief Get the (canonical) value of a metadata node.
1112 *
1113 * @param[in] meta Metadata node to use.
1114 * @return Canonical value.
1115 */
Christian Hopps46bd21b2021-04-27 09:43:58 -04001116static inline const char *
1117lyd_get_meta_value(const struct lyd_meta *meta)
1118{
1119 if (meta) {
1120 const struct lyd_value *value = &meta->value;
Michal Vasko33876022021-04-27 16:42:24 +02001121 return value->_canonical ? value->_canonical : lyd_value_get_canonical(meta->annotation->module->ctx, value);
Christian Hopps46bd21b2021-04-27 09:43:58 -04001122 }
Michal Vasko33876022021-04-27 16:42:24 +02001123
Christian Hopps46bd21b2021-04-27 09:43:58 -04001124 return NULL;
1125}
Radek Krejci6d5ba0c2021-04-26 07:49:59 +02001126
1127/**
Michal Vaskoa820c312021-02-05 16:33:00 +01001128 * @brief Get anydata string value.
1129 *
1130 * @param[in] any Anyxml/anydata node to read from.
1131 * @param[out] value_str String representation of the value.
1132 * @return LY_ERR value.
1133 */
1134LY_ERR lyd_any_value_str(const struct lyd_node *any, char **value_str);
1135
1136/**
Michal Vaskoc0004272020-08-06 08:32:34 +02001137 * @brief Copy anydata value from one node to another. Target value is freed first.
1138 *
1139 * @param[in,out] trg Target node.
1140 * @param[in] value Source value, may be NULL when the target value is only freed.
1141 * @param[in] value_type Source value type.
1142 * @return LY_ERR value.
1143 */
1144LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type);
1145
1146/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001147 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001148 *
Radek Krejcidd2a7662021-03-12 11:26:34 +01001149 * To create list, use ::lyd_new_list() or ::lyd_new_list2().
1150 *
1151 * To create a top-level inner node defined in an extension instance, use ::lyd_new_ext_inner().
1152 *
Michal Vasko013a8182020-03-03 10:46:53 +01001153 * @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 +01001154 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001155 * @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 +01001156 * @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
1157 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001158 * @param[out] node Optional created node.
1159 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001160 */
Michal Vasko53587422021-02-05 16:34:13 +01001161LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
1162 struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001163
1164/**
Radek Krejcidd2a7662021-03-12 11:26:34 +01001165 * @brief Create a new top-level inner node defined in the given extension instance.
1166 *
1167 * To create list, use ::lyd_new_list() or ::lyd_new_list2().
1168 *
1169 * To create an inner node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1170 * node of a standard module's tree, use ::lyd_new_inner().
1171 *
1172 * @param[in] ext Extension instance where the inner node being created is defined.
1173 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
1174 * @param[out] node The created node.
1175 * @return LY_ERR value.
1176 */
1177LY_ERR lyd_new_ext_inner(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node);
1178
1179/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001180 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001181 *
1182 * @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 +01001183 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001184 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Radek Krejci41ac9942020-11-02 14:47:56 +01001185 * @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
1186 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001187 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +01001188 * @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 +02001189 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
1190 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001191 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001192 */
Radek Krejci55c4bd22021-04-26 08:09:04 +02001193LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output,
1194 struct lyd_node **node, ...);
Michal Vasko013a8182020-03-03 10:46:53 +01001195
1196/**
Radek Krejci8247bae2021-03-12 11:47:02 +01001197 * @brief Create a new top-level list node defined in the given extension instance.
1198 *
1199 * To create a list node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1200 * list node of a standard module's tree, use ::lyd_new_list() or ::lyd_new_list2().
1201 *
1202 * @param[in] ext Extension instance where the list node being created is defined.
1203 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1204 * @param[out] node The created node.
1205 * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier
1206 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
1207 * key-less lists.
1208 * @return LY_ERR value.
1209 */
1210LY_ERR lyd_new_ext_list(const struct lysc_ext_instance *ext, const char *name, struct lyd_node **node, ...);
1211
1212/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001213 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001214 *
1215 * @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 +01001216 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001217 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
1218 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
1219 * 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 +02001220 * Use NULL or string of length 0 in case of key-less list.
Radek Krejci41ac9942020-11-02 14:47:56 +01001221 * @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
1222 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001223 * @param[out] node Optional created node.
1224 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001225 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001226LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci41ac9942020-11-02 14:47:56 +01001227 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001228
1229/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001230 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001231 *
Radek Krejci8a5afc22021-03-12 11:10:47 +01001232 * To create a top-level term node defined in an extension instance, use ::lyd_new_ext_term().
1233 *
Michal Vasko013a8182020-03-03 10:46:53 +01001234 * @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 +01001235 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001236 * @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 +02001237 * @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 +01001238 * @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
1239 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001240 * @param[out] node Optional created node.
1241 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001242 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001243LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
Radek Krejci41ac9942020-11-02 14:47:56 +01001244 ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001245
1246/**
Radek Krejci09c77442021-04-26 11:10:34 +02001247 * @brief Create a new term node in the data tree.
1248 *
1249 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1250 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1251 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
1252 * @param[in] value Binary value of the node. To learn what exactly is expected see @ref howtoDataLYB.
1253 * @param[in] value_len Length of @p value.
1254 * @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
1255 * taken into consideration. Otherwise, the output's data node is going to be created.
1256 * @param[out] node Optional created node.
1257 * @return LY_ERR value.
1258 */
1259LY_ERR lyd_new_term_bin(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1260 size_t value_len, ly_bool output, struct lyd_node **node);
1261
1262/**
1263 * @brief Create a new term node in the data tree.
1264 *
1265 * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element.
1266 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
1267 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
1268 * @param[in] val_str Canonical string value of the node. If it is not, it may lead to unexpected behavior.
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 * @return LY_ERR value.
1273 */
1274LY_ERR lyd_new_term_canon(struct lyd_node *parent, const struct lys_module *module, const char *name,
1275 const char *val_str, ly_bool output, struct lyd_node **node);
1276
1277/**
Radek Krejci8a5afc22021-03-12 11:10:47 +01001278 * @brief Create a new top-level term node defined in the given extension instance.
1279 *
1280 * To create a term node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1281 * node of a standard module's tree, use ::lyd_new_term().
1282 *
1283 * @param[in] ext Extension instance where the term node being created is defined.
1284 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
1285 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
1286 * value, the JSON format is expected (module names instead of prefixes).
1287 * @param[out] node The created node.
1288 * @return LY_ERR value.
1289 */
1290LY_ERR lyd_new_ext_term(const struct lysc_ext_instance *ext, const char *name, const char *val_str, struct lyd_node **node);
1291
1292/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001293 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +01001294 *
Radek Krejci0b963da2021-03-12 13:23:44 +01001295 * To create a top-level any node defined in an extension instance, use ::lyd_new_ext_any().
1296 *
Michal Vasko013a8182020-03-03 10:46:53 +01001297 * @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 +01001298 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +01001299 * @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 +01001300 * @param[in] value Value for the node. Expected type is determined by @p value_type.
1301 * @param[in] use_value Whether to directly take @p value and assign it to the node or make a copy.
Michal Vasko013a8182020-03-03 10:46:53 +01001302 * @param[in] value_type Type of the provided value in @p value.
Radek Krejci41ac9942020-11-02 14:47:56 +01001303 * @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
1304 * taken into consideration. Otherwise, the output's data node is going to be created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001305 * @param[out] node Optional created node.
1306 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +01001307 */
Michal Vasko2a4ab2b2021-03-04 15:52:40 +01001308LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
1309 ly_bool use_value, LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +01001310
1311/**
Radek Krejci0b963da2021-03-12 13:23:44 +01001312 * @brief Create a new top-level any node defined in the given extension instance.
1313 *
1314 * To create an any node with parent (no matter if defined inside extension instance or a standard tree) or a top-level
1315 * any node of a standard module's tree, use ::lyd_new_any().
1316 *
1317 * @param[in] ext Extension instance where the any node being created is defined.
1318 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
1319 * @param[in] value Value for the node. Expected type is determined by @p value_type.
1320 * @param[in] use_value Whether to directly take @p value and assign it to the node or make a copy.
1321 * @param[in] value_type Type of the provided value in @p value.
1322 * @param[out] node The created node.
1323 * @return LY_ERR value.
1324 */
1325LY_ERR lyd_new_ext_any(const struct lysc_ext_instance *ext, const char *name, const void *value, ly_bool use_value,
1326 LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node);
1327
1328/**
Michal Vasko871a0252020-11-11 18:35:24 +01001329 * @brief Create new metadata.
Michal Vaskod86997b2020-05-26 15:19:54 +02001330 *
Michal Vasko871a0252020-11-11 18:35:24 +01001331 * @param[in] ctx libyang context,
1332 * @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 +02001333 * @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 +02001334 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
1335 * 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 +02001336 * @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 +02001337 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko871a0252020-11-11 18:35:24 +01001338 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
1339 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001340 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +02001341 */
Michal Vasko871a0252020-11-11 18:35:24 +01001342LY_ERR lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name,
1343 const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +02001344
1345/**
Michal Vaskoba696702020-11-11 19:12:45 +01001346 * @brief Create new metadata from an opaque node attribute if possible.
1347 *
1348 * @param[in] ctx libyang context.
1349 * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL.
1350 * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers.
1351 * @param[in] attr Opaque node attribute to parse into metadata.
1352 * @param[out] meta Optional created metadata. Must be set if @p parent is NULL.
1353 * @return LY_SUCCESS on success.
1354 * @return LY_ENOT if the attribute could not be parsed into any metadata.
1355 * @return LY_ERR on error.
1356 */
1357LY_ERR lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr,
1358 struct lyd_meta **meta);
1359
1360/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001361 * @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 +02001362 *
1363 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
1364 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1365 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001366 * @param[in] value Optional node value.
1367 * @param[in] prefix Optional node prefix, must be equal to @p module_name if set.
Michal Vasko00cbf532020-06-15 13:58:47 +02001368 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001369 * @param[out] node Optional created node.
1370 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001371 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001372LY_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 +01001373 const char *prefix, const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001374
1375/**
Michal Vasko8d65f852021-02-17 11:28:13 +01001376 * @brief Create a new XML opaque node in the data tree. To create a JSON opaque node, use ::lyd_new_opaq().
1377 *
1378 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
1379 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
1380 * @param[in] name Node name.
Michal Vasko0ab974d2021-02-24 13:18:26 +01001381 * @param[in] value Optional node value.
1382 * @param[in] prefix Optional node prefix.
Michal Vasko8d65f852021-02-17 11:28:13 +01001383 * @param[in] module_ns Node module namespace.
1384 * @param[out] node Optional created node.
1385 * @return LY_ERR value.
1386 */
1387LY_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 +01001388 const char *prefix, const char *module_ns, struct lyd_node **node);
Michal Vasko8d65f852021-02-17 11:28:13 +01001389
1390/**
1391 * @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 +02001392 *
1393 * @param[in] parent Parent opaque node for the attribute being created.
Radek Krejci8678fa42020-08-18 16:07:28 +02001394 * @param[in] module_name Name of the module of the attribute being created. There may be none.
Michal Vasko00cbf532020-06-15 13:58:47 +02001395 * @param[in] name Attribute name. It can include the module name as the prefix.
Michal Vasko8d65f852021-02-17 11:28:13 +01001396 * @param[in] value Attribute value, may be NULL.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001397 * @param[out] attr Optional created attribute.
1398 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001399 */
Michal Vasko8d65f852021-02-17 11:28:13 +01001400LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *value,
1401 struct lyd_attr **attr);
1402
1403/**
1404 * @brief Create new XML attribute for an opaque data node. To create a JSON attribute, use ::lyd_new_attr().
1405 *
1406 * @param[in] parent Parent opaque node for the attribute being created.
1407 * @param[in] module_ns Namespace of the module of the attribute being created. There may be none.
1408 * @param[in] name Attribute name. It can include an XML prefix.
1409 * @param[in] value Attribute value, may be NULL.
1410 * @param[out] attr Optional created attribute.
1411 * @return LY_ERR value.
1412 */
1413LY_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 +02001414 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +02001415
1416/**
Michal Vasko00cbf532020-06-15 13:58:47 +02001417 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001418 * @defgroup pathoptions Data path creation options
Michal Vasko00cbf532020-06-15 13:58:47 +02001419 *
1420 * Various options to change lyd_new_path*() behavior.
1421 *
1422 * Default behavior:
1423 * - if the target node already exists (and is not default), an error is returned.
1424 * - the whole path to the target node is created (with any missing parents) if necessary.
1425 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
1426 * @{
1427 */
1428
Radek Krejci09c77442021-04-26 11:10:34 +02001429#define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
1430 default flag is changed, it is returned. If the target node exists and is not
1431 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
1432 no error set. */
1433#define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
1434 output ones. */
1435#define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
1436 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
1437 invalid value (leaf/leaf-list), it is created as opaque. */
1438#define LYD_NEW_PATH_BIN_VALUE 0x08 /**< Interpret the provided leaf/leaf-list @p value as being in the binary
1439 ::LY_VALUE_LYB format, to learn what exactly is expected see @ref howtoDataLYB. */
1440#define LYD_NEW_PATH_CANON_VALUE 0x10 /**< Interpret the provided leaf/leaf-list @p value as being in the canonical
1441 (or JSON if no defined) ::LY_VALUE_CANON format. If it is not, it may lead
1442 to unexpected behavior. */
Michal Vasko00cbf532020-06-15 13:58:47 +02001443
1444/** @} pathoptions */
1445
1446/**
Michal Vaskod5e67442021-03-04 15:56:31 +01001447 * @brief Create a new node in the data tree based on a path. If creating anyxml/anydata nodes, ::lyd_new_path2
1448 * should be used instead, this function expects the value as string.
Michal Vasko00cbf532020-06-15 13:58:47 +02001449 *
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001450 * If creating data nodes defined inside an extension instance, use ::lyd_new_ext_path().
1451 *
Michal Vasko00cbf532020-06-15 13:58:47 +02001452 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
1453 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
1454 * and @p value is set, the predicate is preferred.
1455 *
Michal Vasko65591ab2021-04-09 14:29:34 +02001456 * For key-less lists and non-configuration leaf-lists, positional predicates should be used. If no predicate is used
1457 * for these nodes, they are always created.
Michal Vasko6741dc62021-02-04 09:27:45 +01001458 *
Michal Vasko104fe962020-11-06 17:23:44 +01001459 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1460 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1461 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001462 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001463 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001464 * @param[in] value String value of the new leaf/leaf-list. If it varies based on the format, ::LY_VALUE_JSON is expected.
1465 * For other node types, it should be NULL.
Michal Vasko00cbf532020-06-15 13:58:47 +02001466 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001467 * @param[out] node Optional first created node.
1468 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001469 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001470LY_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 +02001471 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001472
1473/**
1474 * @brief Create a new node in the data tree based on a path. All node types can be created.
1475 *
Michal Vasko65591ab2021-04-09 14:29:34 +02001476 * Details are mentioned in ::lyd_new_path().
Michal Vasko6741dc62021-02-04 09:27:45 +01001477 *
Michal Vasko104fe962020-11-06 17:23:44 +01001478 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1479 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1480 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
Michal Vasko00cbf532020-06-15 13:58:47 +02001481 * @param[in] ctx libyang context, must be set if @p parent is NULL.
Michal Vasko104fe962020-11-06 17:23:44 +01001482 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001483 * @param[in] value Value of the new leaf/leaf-list (const char *) in ::LY_VALUE_JSON format. If creating an
1484 * anyxml/anydata node, the expected type depends on @p value_type. For other node types, it should be NULL.
1485 * @param[in] value_len Length of @p value in bytes. May be 0 if @p value is a zero-terminated string. Ignored when
1486 * creating anyxml/anydata nodes.
Michal Vasko00cbf532020-06-15 13:58:47 +02001487 * @param[in] value_type Anyxml/anydata node @p value type.
1488 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001489 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
1490 * @param[out] new_node Optional last node created.
Michal Vasko00cbf532020-06-15 13:58:47 +02001491 * @return LY_ERR value.
1492 */
1493LY_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 +02001494 size_t value_len, LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent,
1495 struct lyd_node **new_node);
Michal Vasko00cbf532020-06-15 13:58:47 +02001496
1497/**
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001498 * @brief Create a new node defined in the given extension instance. In case of anyxml/anydata nodes, this function expects
1499 * the @p value as string.
1500 *
1501 * If creating data nodes defined in a module's standard tree, use ::lyd_new_path() or ::lyd_new_path2().
1502 *
Michal Vasko65591ab2021-04-09 14:29:34 +02001503 * Details are mentioned in ::lyd_new_path().
Radek Krejci95ccd1b2021-03-12 14:57:22 +01001504 *
1505 * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used,
1506 * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted
1507 * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases.
1508 * @param[in] ext Extension instance where the node being created is defined.
1509 * @param[in] path [Path](@ref howtoXPath) to create.
Radek Krejci09c77442021-04-26 11:10:34 +02001510 * @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 +01001511 * @param[in] options Bitmask of options, see @ref pathoptions.
1512 * @param[out] node Optional first created node.
1513 * @return LY_ERR value.
1514 */
1515LY_ERR lyd_new_ext_path(struct lyd_node *parent, const struct lysc_ext_instance *ext, const char *path, const void *value,
1516 uint32_t options, struct lyd_node **node);
1517
1518/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001519 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001520 * @defgroup implicitoptions Implicit node creation options
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001521 *
1522 * Various options to change lyd_new_implicit*() behavior.
1523 *
1524 * Default behavior:
1525 * - both configuration and state missing implicit nodes are added.
Michal Vasko630d9892020-12-08 17:11:08 +01001526 * - for existing RPC/action nodes, input implicit nodes are added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001527 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
1528 * @{
1529 */
1530
Michal Vasko44b19a12020-08-07 09:21:30 +02001531#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
1532#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
Michal Vasko630d9892020-12-08 17:11:08 +01001533#define LYD_IMPLICIT_OUTPUT 0x04 /**< For RPC/action nodes, add output implicit nodes instead of input. */
1534#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 +02001535 containers. */
1536
1537/** @} implicitoptions */
1538
1539/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001540 * @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 +02001541 *
1542 * @param[in] tree Tree to add implicit nodes into.
1543 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1544 * @param[out] diff Optional diff with any created nodes.
1545 * @return LY_ERR value.
1546 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001547LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001548
1549/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001550 * @brief Add any missing implicit nodes. Default nodes with a false "when" are not added.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001551 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001552 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1553 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1554 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001555 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
1556 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1557 * @param[out] diff Optional diff with any created nodes.
1558 * @return LY_ERR value.
1559 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001560LY_ERR lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001561
1562/**
Michal Vasko3488ada2020-12-03 14:18:19 +01001563 * @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 +02001564 *
Michal Vaskod3bb12f2020-12-04 14:33:09 +01001565 * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used,
1566 * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to
1567 * adjust @p tree in these cases.
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001568 * @param[in] module Module whose implicit nodes to create.
1569 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
1570 * @param[out] diff Optional diff with any created nodes.
1571 * @return LY_ERR value.
1572 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001573LY_ERR lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options,
Radek Krejci0f969882020-08-21 16:56:47 +02001574 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +02001575
1576/**
Radek Krejci09c77442021-04-26 11:10:34 +02001577 * @brief Change the value of a term (leaf or leaf-list) node to a string value.
Michal Vasko00cbf532020-06-15 13:58:47 +02001578 *
1579 * Node changed this way is always considered explicitly set, meaning its default flag
1580 * is always cleared.
1581 *
1582 * @param[in] term Term node to change.
1583 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1584 * @return LY_SUCCESS if value was changed,
1585 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1586 * @return LY_ENOT if the values were equal and no change occured,
1587 * @return LY_ERR value on other errors.
1588 */
1589LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
1590
1591/**
Radek Krejci09c77442021-04-26 11:10:34 +02001592 * @brief Change the value of a term (leaf or leaf-list) node to a binary value.
1593 *
1594 * Node changed this way is always considered explicitly set, meaning its default flag
1595 * is always cleared.
1596 *
1597 * @param[in] term Term node to change.
1598 * @param[in] value New value to set in binary format, see @ref howtoDataLYB.
1599 * @param[in] value_len Length of @p value.
1600 * @return LY_SUCCESS if value was changed,
1601 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1602 * @return LY_ENOT if the values were equal and no change occured,
1603 * @return LY_ERR value on other errors.
1604 */
1605LY_ERR lyd_change_term_bin(struct lyd_node *term, const void *value, size_t value_len);
1606
1607/**
1608 * @brief Change the value of a term (leaf or leaf-list) node to a canonical string value.
1609 *
1610 * Node changed this way is always considered explicitly set, meaning its default flag
1611 * is always cleared.
1612 *
1613 * @param[in] term Term node to change.
1614 * @param[in] val_str New value to set in canonical (or JSON if no defined) format. If the value is not
1615 * canonical, it may lead to unexpected behavior.
1616 * @return LY_SUCCESS if value was changed,
1617 * @return LY_EEXIST if value was the same and only the default flag was cleared,
1618 * @return LY_ENOT if the values were equal and no change occured,
1619 * @return LY_ERR value on other errors.
1620 */
1621LY_ERR lyd_change_term_canon(struct lyd_node *term, const char *val_str);
1622
1623/**
Michal Vasko41586352020-07-13 13:54:25 +02001624 * @brief Change the value of a metadata instance.
1625 *
Michal Vasko41586352020-07-13 13:54:25 +02001626 * @param[in] meta Metadata to change.
1627 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
1628 * @return LY_SUCCESS if value was changed,
1629 * @return LY_ENOT if the values were equal and no change occured,
1630 * @return LY_ERR value on other errors.
1631 */
1632LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
1633
1634/**
Michal Vaskob104f112020-07-17 09:54:54 +02001635 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +01001636 *
1637 * - if the node is part of some other tree, it is automatically unlinked.
1638 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1639 *
1640 * @param[in] parent Parent node to insert into.
1641 * @param[in] node Node to insert.
1642 * @return LY_SUCCESS on success.
1643 * @return LY_ERR error on error.
1644 */
Michal Vaskob104f112020-07-17 09:54:54 +02001645LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +01001646
1647/**
Michal Vaskob104f112020-07-17 09:54:54 +02001648 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001649 *
1650 * - if the node is part of some other tree, it is automatically unlinked.
1651 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1652 *
Michal Vaskob104f112020-07-17 09:54:54 +02001653 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001654 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +02001655 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +01001656 * @return LY_SUCCESS on success.
1657 * @return LY_ERR error on error.
1658 */
Michal Vaskob104f112020-07-17 09:54:54 +02001659LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +01001660
1661/**
Michal Vaskob104f112020-07-17 09:54:54 +02001662 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001663 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001664 *
1665 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001666 *
1667 * @param[in] sibling Sibling node to insert before.
1668 * @param[in] node Node to insert.
1669 * @return LY_SUCCESS on success.
1670 * @return LY_ERR error on error.
1671 */
1672LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
1673
1674/**
Michal Vaskob104f112020-07-17 09:54:54 +02001675 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vasko4bc2ce32020-12-08 10:06:16 +01001676 * If inserting several siblings, each of them must be inserted individually.
Michal Vaskof03ed032020-03-04 13:31:44 +01001677 *
1678 * - if the node is part of some other tree, it is automatically unlinked.
Michal Vaskof03ed032020-03-04 13:31:44 +01001679 *
1680 * @param[in] sibling Sibling node to insert after.
1681 * @param[in] node Node to insert.
1682 * @return LY_SUCCESS on success.
1683 * @return LY_ERR error on error.
1684 */
1685LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
1686
1687/**
1688 * @brief Unlink the specified data subtree.
1689 *
1690 * @param[in] node Data tree node to be unlinked (together with all the children).
1691 */
1692void lyd_unlink_tree(struct lyd_node *node);
1693
1694/**
Radek Krejcib0849a22019-07-25 12:31:04 +02001695 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +02001696 *
1697 * @param[in] node Any of the nodes inside the tree.
1698 */
1699void lyd_free_all(struct lyd_node *node);
1700
1701/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001702 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +02001703 *
1704 * @param[in] node Any of the sibling nodes to free.
1705 */
Michal Vaskof03ed032020-03-04 13:31:44 +01001706void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +02001707
1708/**
Radek Krejcie7b95092019-05-15 11:03:07 +02001709 * @brief Free (and unlink) the specified data (sub)tree.
1710 *
Radek Krejcie7b95092019-05-15 11:03:07 +02001711 * @param[in] node Root of the (sub)tree to be freed.
1712 */
1713void lyd_free_tree(struct lyd_node *node);
1714
1715/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001716 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +02001717 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001718 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +02001719 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001720void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +01001721
1722/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001723 * @brief Free the metadata instance with any following instances.
1724 *
1725 * @param[in] meta Metadata to free.
1726 */
1727void lyd_free_meta_siblings(struct lyd_meta *meta);
1728
1729/**
1730 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +01001731 *
1732 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001733 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +01001734 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001735void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001736
1737/**
1738 * @brief Free the attribute with any following attributes.
1739 *
1740 * @param[in] ctx Context where the attributes were created.
1741 * @param[in] attr First attribute to free.
1742 */
Radek Krejci011e4aa2020-09-04 15:22:31 +02001743void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +02001744
Radek Krejci084289f2019-07-09 17:35:30 +02001745/**
1746 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
1747 *
1748 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
1749 *
Radek Krejci084289f2019-07-09 17:35:30 +02001750 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
Michal Vaskoaebbce02021-04-06 09:23:37 +02001751 * @param[in] schema Schema node of the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +02001752 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001753 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskoaebbce02021-04-06 09:23:37 +02001754 * @param[in] ctx_node Optional data tree context node for the value (leafref target, instance-identifier).
1755 * If not set and is required for the validation to complete, ::LY_EINCOMPLETE is be returned.
1756 * @param[out] realtype Optional real type of @p value.
1757 * @param[out] canonical Optional canonical value of @p value (in the dictionary).
Radek Krejci084289f2019-07-09 17:35:30 +02001758 * @return LY_SUCCESS on success
Michal Vaskoaebbce02021-04-06 09:23:37 +02001759 * @return LY_EINCOMPLETE in case the @p ctx_node is not provided and it was needed to finish the validation
1760 * (e.g. due to require-instance).
Radek Krejci084289f2019-07-09 17:35:30 +02001761 * @return LY_ERR value if an error occurred.
1762 */
Michal Vaskoaebbce02021-04-06 09:23:37 +02001763LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lysc_node *schema, const char *value, size_t value_len,
1764 const struct lyd_node *ctx_node, const struct lysc_type **realtype, const char **canonical);
Radek Krejci084289f2019-07-09 17:35:30 +02001765
1766/**
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001767 * @brief Compare the node's value with the given string value. The string value is first validated according to
1768 * the (current) node's type.
Radek Krejci084289f2019-07-09 17:35:30 +02001769 *
1770 * @param[in] node Data node to compare.
1771 * @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 +02001772 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +02001773 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001774 * @return LY_SUCCESS on success,
1775 * @return LY_ENOT if the values do not match,
Radek Krejci084289f2019-07-09 17:35:30 +02001776 * @return LY_ERR value if an error occurred.
1777 */
Michal Vaskofeca4fb2020-10-05 08:58:40 +02001778LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len);
Radek Krejci084289f2019-07-09 17:35:30 +02001779
Radek Krejci576b23f2019-07-12 14:06:32 +02001780/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001781 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001782 * @defgroup datacompareoptions Data compare options
1783 * @{
1784 * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001785 */
1786#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
1787 (subtree, so direct as well as indirect children) are the same. By default,
1788 containers are the same in case of the same schema node and lists are the same
1789 in case of equal keys (keyless lists do the full recursion comparison all the time). */
1790#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
1791 changes this behavior and implicit (automatically created default node) and explicit
1792 (explicitly created node with the default value) default nodes are considered different. */
Michal Vasko60ea6352020-06-29 13:39:39 +02001793/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001794
1795/**
1796 * @brief Compare 2 data nodes if they are equivalent.
1797 *
1798 * @param[in] node1 The first node to compare.
1799 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +02001800 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001801 * @return LY_SUCCESS if the nodes are equivalent.
1802 * @return LY_ENOT if the nodes are not equivalent.
1803 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001804LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Michal Vasko8f359bf2020-07-28 10:41:15 +02001805
1806/**
1807 * @brief Compare 2 lists of siblings if they are equivalent.
1808 *
1809 * @param[in] node1 The first sibling list to compare.
1810 * @param[in] node2 The second sibling list to compare.
1811 * @param[in] options Various @ref datacompareoptions.
1812 * @return LY_SUCCESS if all the siblings are equivalent.
1813 * @return LY_ENOT if the siblings are not equivalent.
1814 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001815LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +02001816
1817/**
Michal Vasko21725742020-06-29 11:49:25 +02001818 * @brief Compare 2 metadata.
1819 *
1820 * @param[in] meta1 First metadata.
1821 * @param[in] meta2 Second metadata.
1822 * @return LY_SUCCESS if the metadata are equivalent.
1823 * @return LY_ENOT if not.
1824 */
1825LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
1826
1827/**
Radek Krejci22ebdba2019-07-25 13:59:43 +02001828 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001829 * @defgroup dupoptions Data duplication options
Radek Krejci22ebdba2019-07-25 13:59:43 +02001830 *
Michal Vaskoe78faec2021-04-08 17:24:43 +02001831 * Various options to change ::lyd_dup_single() and ::lyd_dup_siblings() behavior.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001832 *
1833 * Default behavior:
1834 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001835 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001836 * @{
1837 */
1838
1839#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1840 list's keys are always duplicated. */
Michal Vaskoa29a5762020-06-23 13:28:49 +02001841#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001842#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1843 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001844#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 +02001845 its validation/default node state. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001846
1847/** @} dupoptions */
1848
1849/**
1850 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
1851 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02001852 * @param[in] node Data tree node to be duplicated.
1853 * @param[in] parent Optional parent node where to connect the duplicated node(s).
Michal Vasko3a41dff2020-07-15 14:30:28 +02001854 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1855 * the @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001856 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001857 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1858 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1859 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001860 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001861LY_ERR lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001862
1863/**
1864 * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same.
1865 *
1866 * @param[in] node Data tree node to be duplicated.
1867 * @param[in] parent Optional parent node where to connect the duplicated node(s).
1868 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1869 * the @p parent.
1870 * @param[in] options Bitmask of options flags, see @ref dupoptions.
1871 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1872 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1873 * @return LY_ERR value.
1874 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001875LY_ERR lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup);
Radek Krejci22ebdba2019-07-25 13:59:43 +02001876
1877/**
Michal Vasko25a32822020-07-09 15:48:22 +02001878 * @brief Create a copy of the metadata.
1879 *
1880 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001881 * @param[in] parent Node where to append the new metadata.
1882 * @param[out] dup Optional created metadata copy.
1883 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02001884 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001885LY_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 +02001886
1887/**
Michal Vasko4490d312020-06-16 13:08:55 +02001888 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001889 * @defgroup mergeoptions Data merge options.
Radek Krejci576b23f2019-07-12 14:06:32 +02001890 *
Michal Vaskocd3f6172021-05-18 16:14:50 +02001891 * Various options to change ::lyd_merge_tree(), ::lyd_merge_siblings(), and ::lyd_merge_module() behavior.
Michal Vasko4490d312020-06-16 13:08:55 +02001892 *
1893 * Default behavior:
1894 * - source data tree is not modified in any way,
Michal Vasko745d6f62021-04-12 16:55:23 +02001895 * - any default nodes in the source are ignored if there are explicit nodes in the target,
1896 * - any metadata are ignored - those present in the target are kept, those in the source are not merged.
Michal Vasko4490d312020-06-16 13:08:55 +02001897 * @{
1898 */
1899
1900#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001901#define LYD_MERGE_DEFAULTS 0x02 /**< Default nodes in the source tree replace even explicit nodes in the target. */
Michal Vasko4490d312020-06-16 13:08:55 +02001902
1903/** @} mergeoptions */
1904
1905/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001906 * @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 +02001907 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
1908 *
Michal Vasko2f510942020-11-13 10:26:25 +01001909 * Example input:
1910 *
1911 * source (A1) - A2 - A3 target (B1) - B2 - B3
1912 * /\ /\ /\ /\ /\ /\
1913 * .... .... .... .... .... ....
1914 *
1915 * result target (A1) - B1 - B2 - B3
1916 * /\ /\ /\ /\
1917 * .... .... .... ....
1918 *
Michal Vasko4490d312020-06-16 13:08:55 +02001919 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1920 * @param[in] source Source data tree to merge, must be a top-level tree.
1921 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1922 * @return LY_SUCCESS on success,
1923 * @return LY_ERR value on error.
1924 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001925LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001926
1927/**
1928 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
1929 * complete until validation called on the resulting data tree (data from more cases may be present, default
1930 * and non-default values).
1931 *
Michal Vasko2f510942020-11-13 10:26:25 +01001932 * Example input:
1933 *
1934 * source (A1) - A2 - A3 target (B1) - B2 - B3
1935 * /\ /\ /\ /\ /\ /\
1936 * .... .... .... .... .... ....
1937 *
1938 * result target (A1) - A2 - A3 - B1 - B2 - B3
1939 * /\ /\ /\ /\ /\ /\
1940 * .... .... .... .... .... ....
1941 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02001942 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1943 * @param[in] source Source data tree to merge, must be a top-level tree.
1944 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1945 * @return LY_SUCCESS on success,
1946 * @return LY_ERR value on error.
1947 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001948LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko4490d312020-06-16 13:08:55 +02001949
1950/**
Michal Vaskocd3f6172021-05-18 16:14:50 +02001951 * @brief Callback for matching merge nodes.
1952 *
1953 * @param[in] trg_node Target data node.
1954 * @param[in] src_node Source data node, is NULL if it was actually duplicated (no target node found) and
1955 * its copy is @p trg_node.
1956 * @param[in] cb_data Arbitrary callback data.
1957 * @return LY_ERR value.
1958 */
1959typedef LY_ERR (*lyd_merge_cb)(struct lyd_node *trg_node, const struct lyd_node *src_node, void *cb_data);
1960
1961/**
1962 * @brief Merge all the nodes of a module from source data tree into the target data tree. Merge may not be
1963 * complete until validation called on the resulting data tree (data from more cases may be present, default
1964 * and non-default values).
1965 *
1966 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1967 * @param[in] source Source data tree to merge, must be a top-level tree.
1968 * @param[in] mod Module, whose source data only to consider, NULL for all modules.
Michal Vasko807557c2021-05-25 08:50:52 +02001969 * @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 +02001970 * If a subtree is being added into target (no matching node found), callback is called only once with the subtree root.
1971 * @param[in] cb_data Arbitrary callback data.
1972 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1973 * @return LY_SUCCESS on success,
1974 * @return LY_ERR value on error.
1975 */
1976LY_ERR lyd_merge_module(struct lyd_node **target, const struct lyd_node *source, const struct lys_module *mod,
1977 lyd_merge_cb merge_cb, void *cb_data, uint16_t options);
1978
1979/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001980 * @ingroup datatree
Radek Krejci8678fa42020-08-18 16:07:28 +02001981 * @defgroup diffoptions Data diff options.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001982 *
Radek Krejci8678fa42020-08-18 16:07:28 +02001983 * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001984 *
1985 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001986 * - any default nodes are treated as non-existent and ignored.
1987 * @{
1988 */
1989
Michal Vasko3a41dff2020-07-15 14:30:28 +02001990#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
1991 nodes. Also, leaves and leaf-lists are added into diff even in case only their
1992 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001993
1994/** @} diffoptions */
1995
1996/**
1997 * @brief Learn the differences between 2 data trees.
1998 *
1999 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
2000 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
2001 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
2002 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
2003 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
2004 * or the second tree.
2005 *
2006 * The diff tree is completely independent on the @p first and @p second trees, meaning all
2007 * the information about the change is stored in the diff and the trees are not needed.
2008 *
Michal Vaskoff857812021-03-05 17:03:52 +01002009 * __!! Caution !!__
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002010 * The diff tree should never be validated because it may easily not be valid! For example,
2011 * when data from one case branch are deleted and data from another branch created - data from both
2012 * branches are then stored in the diff tree simultaneously.
2013 *
2014 * @param[in] first First data tree.
2015 * @param[in] second Second data tree.
2016 * @param[in] options Bitmask of options flags, see @ref diffoptions.
2017 * @param[out] diff Generated diff.
2018 * @return LY_SUCCESS on success,
2019 * @return LY_ERR on error.
2020 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02002021LY_ERR lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff);
Michal Vasko3a41dff2020-07-15 14:30:28 +02002022
2023/**
2024 * @brief Learn the differences between 2 data trees including all the following siblings.
2025 *
Michal Vaskoff857812021-03-05 17:03:52 +01002026 * Details are mentioned in ::lyd_diff_tree().
2027 *
Michal Vasko3a41dff2020-07-15 14:30:28 +02002028 * @param[in] first First data tree.
2029 * @param[in] second Second data tree.
2030 * @param[in] options Bitmask of options flags, see @ref diffoptions.
2031 * @param[out] diff Generated diff.
2032 * @return LY_SUCCESS on success,
2033 * @return LY_ERR on error.
2034 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02002035LY_ERR lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002036
2037/**
2038 * @brief Callback for diff nodes.
2039 *
2040 * @param[in] diff_node Diff node.
2041 * @param[in] data_node Matching node in data.
2042 * @param[in] cb_data Arbitrary callback data.
2043 * @return LY_ERR value.
2044 */
2045typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
2046
2047/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002048 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002049 *
Michal Vaskoa98dcba2021-03-05 17:04:14 +01002050 * __!! Caution !!__
2051 * If applying a diff that was created __without__ the ::LYD_DIFF_DEFAULTS flag, there may be some duplicate values
2052 * created. Unless the resulting tree is validated (and default values thus consolidated), using it further
2053 * (such as applying another diff) may cause unexpected results or errors.
2054 *
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002055 * @param[in,out] data Data to apply the diff on.
2056 * @param[in] diff Diff to apply.
2057 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
2058 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
2059 * @param[in] cb_data Arbitrary callback data.
2060 * @return LY_SUCCESS on success,
2061 * @return LY_ERR on error.
2062 */
2063LY_ERR lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +02002064 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002065
2066/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02002067 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002068 *
Michal Vaskoff857812021-03-05 17:03:52 +01002069 * Details are mentioned in ::lyd_diff_apply_module().
2070 *
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002071 * @param[in,out] data Data to apply the diff on.
2072 * @param[in] diff Diff to apply.
2073 * @return LY_SUCCESS on success,
2074 * @return LY_ERR on error.
2075 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002076LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02002077
2078/**
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002079 * @ingroup datatree
2080 * @defgroup diffmergeoptions Data diff merge options.
2081 *
2082 * Various options to change ::lyd_diff_merge_module(), ::lyd_diff_merge_tree(), and ::lyd_diff_merge_all() behavior.
2083 *
2084 * Default behavior:
2085 * - any default nodes are expected to be a result of validation corrections and not explicitly modified.
2086 * @{
2087 */
2088
2089#define LYD_DIFF_MERGE_DEFAULTS 0x01 /**< Default nodes in the diffs are treated as possibly explicitly modified. */
2090
Michal Vaskoff857812021-03-05 17:03:52 +01002091/** @} diffmergeoptions */
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002092
2093/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02002094 * @brief Merge 2 diffs into each other but restrict the operation to one module.
2095 *
2096 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
2097 * created on data that had the target diff applied on them. In other words, this sequence is legal
2098 *
Michal Vaskoff857812021-03-05 17:03:52 +01002099 * 1) get diff1 from data1 and data2 -> get data11 from apply diff1 on data1 -> get diff2 from data11 and data3 ->
2100 * -> get data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02002101 *
2102 * and reusing these diffs
2103 *
Michal Vaskoff857812021-03-05 17:03:52 +01002104 * 2) get diff11 from merge diff1 and diff2 -> get data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02002105 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02002106 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002107 * @param[in] src_diff Source diff.
2108 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
Michal Vaskoe2af8412020-12-03 14:11:38 +01002109 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
2110 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
2111 * called on the root with @p diff_node being NULL.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002112 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002113 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002114 * @return LY_SUCCESS on success,
2115 * @return LY_ERR on error.
2116 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02002117LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002118 lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vaskoe6323f62020-07-09 15:49:02 +02002119
2120/**
Michal Vasko04f85912020-08-07 12:14:58 +02002121 * @brief Merge 2 diff trees into each other.
2122 *
Michal Vaskoff857812021-03-05 17:03:52 +01002123 * Details are mentioned in ::lyd_diff_merge_module().
2124 *
Michal Vasko04f85912020-08-07 12:14:58 +02002125 * @param[in,out] diff_first Target diff first sibling to merge into.
2126 * @param[in] diff_parent Target diff parent to merge into.
2127 * @param[in] src_sibling Source diff sibling to merge.
Michal Vaskoe2af8412020-12-03 14:11:38 +01002128 * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source
2129 * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is
2130 * called on the root with @p diff_node being NULL.
Michal Vasko04f85912020-08-07 12:14:58 +02002131 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002132 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vasko04f85912020-08-07 12:14:58 +02002133 * @return LY_SUCCESS on success,
2134 * @return LY_ERR on error.
2135 */
2136LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling,
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002137 lyd_diff_cb diff_cb, void *cb_data, uint16_t options);
Michal Vasko04f85912020-08-07 12:14:58 +02002138
2139/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02002140 * @brief Merge 2 diffs into each other.
2141 *
Michal Vaskoff857812021-03-05 17:03:52 +01002142 * Details are mentioned in ::lyd_diff_merge_module().
2143 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02002144 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02002145 * @param[in] src_diff Source diff.
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002146 * @param[in] options Bitmask of options flags, see @ref diffmergeoptions.
Michal Vaskoe6323f62020-07-09 15:49:02 +02002147 * @return LY_SUCCESS on success,
2148 * @return LY_ERR on error.
2149 */
Michal Vaskoc0e58e82020-11-11 19:04:33 +01002150LY_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 +02002151
2152/**
Michal Vasko4231fb62020-07-13 13:54:47 +02002153 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
2154 * or move from place A to B to move from B to A and so on.
2155 *
2156 * @param[in] src_diff Diff to reverse.
2157 * @param[out] diff Reversed diff.
2158 * @return LY_SUCCESS on success.
2159 * @return LY_ERR on error.
2160 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02002161LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02002162
2163/**
Radek Krejcifba9c622020-10-30 08:28:54 +01002164 * @brief Find the target in data of a compiled instance-identifier path (the target member in ::lyd_value).
Michal Vasko4490d312020-06-16 13:08:55 +02002165 *
2166 * @param[in] path Compiled path structure.
Michal Vaskof03ed032020-03-04 13:31:44 +01002167 * @param[in] tree Data tree to be searched.
Michal Vasko4490d312020-06-16 13:08:55 +02002168 * @return Found target node,
2169 * @return NULL if not found.
Radek Krejci576b23f2019-07-12 14:06:32 +02002170 */
Michal Vasko004d3152020-06-11 19:59:22 +02002171const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02002172
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002173/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002174 * @brief Types of the different data paths.
2175 */
2176typedef enum {
Radek Krejci635d2b82021-01-04 11:26:51 +01002177 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 +01002178 creating new nodes (::lyd_new_path(), ::lyd_new_path2(), ::lyd_new_ext_path()). */
Radek Krejci635d2b82021-01-04 11:26:51 +01002179 LYD_PATH_STD_NO_LAST_PRED /**< Similar to ::LYD_PATH_STD except there is never a predicate on the last node. While it
2180 can be used to search for nodes, do not use it to create new data nodes (lists). */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002181} LYD_PATH_TYPE;
2182
2183/**
2184 * @brief Generate path of the given node in the requested format.
2185 *
Radek Krejci635d2b82021-01-04 11:26:51 +01002186 * @param[in] node Data path of this node will be generated.
Michal Vasko5ec7cda2019-09-11 13:43:08 +02002187 * @param[in] pathtype Format of the path to generate.
2188 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
2189 * If NULL, memory for the complete path is allocated.
2190 * @param[in] buflen Size of the provided @p buffer.
2191 * @return NULL in case of memory allocation error, path of the node otherwise.
2192 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
2193 */
2194char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
2195
Michal Vaskoe444f752020-02-10 12:20:06 +01002196/**
Michal Vasko25a32822020-07-09 15:48:22 +02002197 * @brief Find a specific metadata.
2198 *
2199 * @param[in] first First metadata to consider.
2200 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
2201 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
2202 * @return Found metadata,
2203 * @return NULL if not found.
2204 */
2205struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name);
2206
2207/**
Michal Vaskoda859032020-07-14 12:20:14 +02002208 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01002209 * Uses hashes - should be used whenever possible for best performance.
2210 *
2211 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2212 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01002213 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01002214 * @return LY_SUCCESS on success, @p match set.
2215 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2216 * @return LY_ERR value if another error occurred.
2217 */
2218LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
2219
2220/**
Michal Vaskoe444f752020-02-10 12:20:06 +01002221 * @brief Search in the given siblings for the first schema instance.
2222 * Uses hashes - should be used whenever possible for best performance.
2223 *
2224 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2225 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02002226 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
2227 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01002228 * LYS_LEAFLIST:
2229 * Searched instance value.
2230 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01002231 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
2232 * The keys do not have to be ordered but all of them must be set.
2233 *
2234 * Note that any explicit values (leaf-list or list key values) will be canonized first
2235 * before comparison. But values that do not have a canonical value are expected to be in the
2236 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01002237 * @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 +01002238 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01002239 * @return LY_SUCCESS on success, @p match set.
2240 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2241 * @return LY_EINVAL if @p schema is a key-less list.
2242 * @return LY_ERR value if another error occurred.
2243 */
2244LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value,
Radek Krejci0f969882020-08-21 16:56:47 +02002245 size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01002246
Michal Vaskoccc02342020-05-21 10:09:21 +02002247/**
Michal Vaskoe78faec2021-04-08 17:24:43 +02002248 * @brief Search the given siblings for all the exact same instances of a specific node instance. Accepts only nodes
2249 * that are allowed to have several exact same instances. Uses hashes to whatever extent possible.
2250 *
2251 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
2252 * @param[in] target Target node instance to find.
2253 * @param[out] set Set with all the found instances. The first item is always the first instance.
2254 * @return LY_SUCCESS on success, @p set returned.
2255 * @return LY_ENOTFOUND if not found, empty @p set returned.
2256 * @return LY_ERR value if another error occurred.
2257 */
2258LY_ERR lyd_find_sibling_dup_inst_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set);
2259
2260/**
Michal Vasko1d4af6c2021-02-22 13:31:26 +01002261 * @brief Search the given siblings for an opaque node with a specific name.
2262 *
2263 * @param[in] first First sibling to consider.
2264 * @param[in] name Opaque node name to find.
2265 * @param[out] match Can be NULL, otherwise the found data node.
2266 * @return LY_SUCCESS on success, @p match set.
2267 * @return LY_ENOTFOUND if not found, @p match set to NULL.
2268 * @return LY_ERR value is an error occurred.
2269 */
2270LY_ERR lyd_find_sibling_opaq_next(const struct lyd_node *first, const char *name, struct lyd_node **match);
2271
2272/**
Michal Vaskoccc02342020-05-21 10:09:21 +02002273 * @brief Search in the given data for instances of nodes matching the provided XPath.
2274 *
Michal Vasko19a30602020-05-25 10:40:19 +02002275 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
2276 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
2277 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
2278 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
2279 *
Michal Vaskoccc02342020-05-21 10:09:21 +02002280 * @param[in] ctx_node XPath context node.
Michal Vasko3e1f6552021-01-14 09:27:55 +01002281 * @param[in] xpath [XPath](@ref howtoXPath) to select.
Michal Vaskoccc02342020-05-21 10:09:21 +02002282 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
2283 * the returned set is empty.
2284 * @return LY_SUCCESS on success, @p set is returned.
2285 * @return LY_ERR value if an error occurred.
2286 */
2287LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
2288
Michal Vasko3e1f6552021-01-14 09:27:55 +01002289/**
Michal Vaskoc84c9962021-05-18 16:16:29 +02002290 * @brief Search in given data for a node uniquely identified by a path.
Michal Vasko3e1f6552021-01-14 09:27:55 +01002291 *
Michal Vasko257bdcf2021-01-14 13:15:30 +01002292 * Always works in constant (*O(1)*) complexity. To be exact, it is *O(n)* where *n* is the depth
2293 * of the path used.
2294 *
Michal Vasko3e1f6552021-01-14 09:27:55 +01002295 * @param[in] ctx_node Path context node.
2296 * @param[in] path [Path](@ref howtoXPath) to find.
2297 * @param[in] output Whether to search in RPC/action output nodes or in input nodes.
2298 * @param[out] match Can be NULL, otherwise the found data node.
2299 * @return LY_SUCCESS on success, @p match is set to the found node.
2300 * @return LY_EINCOMPLETE if only a parent of the node was found, @p match is set to this parent node.
2301 * @return LY_ENOTFOUND if no nodes in the path were found.
2302 * @return LY_ERR on other errors.
2303 */
2304LY_ERR lyd_find_path(const struct lyd_node *ctx_node, const char *path, ly_bool output, struct lyd_node **match);
2305
Michal Vasko43297a02021-05-19 11:12:37 +02002306/**
2307 * @brief Convert date-and-time from string to UNIX timestamp and fractions of a second.
2308 *
2309 * @param[in] value Valid string date-and-time value.
2310 * @param[out] time UNIX timestamp.
2311 * @param[out] fractions_s Optional fractions of a second, set to NULL if none.
2312 * @return LY_ERR value.
2313 */
2314LY_ERR ly_time_str2time(const char *value, time_t *time, char **fractions_s);
2315
2316/**
2317 * @brief Convert UNIX timestamp and fractions of a second into canonical date-and-time string value.
2318 *
2319 * @param[in] time UNIX timestamp.
2320 * @param[in] fractions_s Fractions of a second, if any.
Michal Vaskoc515a2b2021-05-19 11:55:00 +02002321 * @param[out] str String date-and-time value in the local timezone.
Michal Vasko43297a02021-05-19 11:12:37 +02002322 * @return LY_ERR value.
2323 */
2324LY_ERR ly_time_time2str(time_t time, const char *fractions_s, char **str);
2325
2326/**
2327 * @brief Convert date-and-time from string to timespec.
2328 *
2329 * @param[in] value Valid string date-and-time value.
2330 * @param[out] ts Timespec.
2331 * @return LY_ERR value.
2332 */
2333LY_ERR ly_time_str2ts(const char *value, struct timespec *ts);
2334
2335/**
2336 * @brief Convert timespec into date-and-time string value.
2337 *
2338 * @param[in] ts Timespec.
Michal Vaskoc515a2b2021-05-19 11:55:00 +02002339 * @param[out] str String date-and-time value in the local timezone.
Michal Vasko43297a02021-05-19 11:12:37 +02002340 * @return LY_ERR value.
2341 */
2342LY_ERR ly_time_ts2str(const struct timespec *ts, char **str);
2343
Radek Krejcie7b95092019-05-15 11:03:07 +02002344#ifdef __cplusplus
2345}
2346#endif
2347
2348#endif /* LY_TREE_DATA_H_ */