blob: e5d75d36d61ee3ac600ec24faae7b56d2b6d4c93 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang representation of YANG data trees.
5 *
6 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_TREE_DATA_H_
16#define LY_TREE_DATA_H_
17
18#include <stddef.h>
19#include <stdint.h>
20
21#include "log.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020022
Radek Krejcica376bd2020-06-11 16:04:06 +020023#ifdef __cplusplus
24extern "C" {
25#endif
26
Radek Krejcie7b95092019-05-15 11:03:07 +020027struct ly_ctx;
Michal Vasko004d3152020-06-11 19:59:22 +020028struct ly_path;
Radek Krejci535ea9f2020-05-29 16:01:05 +020029struct ly_set;
30struct lyd_node;
31struct lyd_node_opaq;
32struct lys_module;
33struct lysc_node;
Radek Krejcie7b95092019-05-15 11:03:07 +020034
Radek Krejcie7b95092019-05-15 11:03:07 +020035/**
36 * @defgroup datatree Data Tree
Radek Krejci2ff0d572020-05-21 15:27:28 +020037 * @ingroup trees
Radek Krejcie7b95092019-05-15 11:03:07 +020038 * @{
39 *
40 * Data structures and functions to manipulate and access instance data tree.
41 */
42
43/**
Michal Vaskobd755db2020-08-11 10:36:33 +020044 * @brief Macro for getting child pointer of a generic data node.
Michal Vaskoa276cd92020-08-10 15:10:08 +020045 *
Michal Vaskobd755db2020-08-11 10:36:33 +020046 * @param[in] node Node whose child pointer to get.
Michal Vaskoa276cd92020-08-10 15:10:08 +020047 */
Michal Vaskobd755db2020-08-11 10:36:33 +020048#define LYD_CHILD(node) ((node)->schema ? (lyd_node_children(node, 0)) : ((struct lyd_node_opaq *)(node))->child)
49
50/**
51 * @brief Macro for getting child pointer of a generic data node but skipping its keys in case it is ::LYS_LIST.
52 *
53 * @param[in] node Node whose child pointer to get.
54 */
55#define LYD_CHILD_NO_KEYS(node) ((node)->schema ? (lyd_node_children(node, LYD_CHILDREN_SKIP_KEYS)) : ((struct lyd_node_opaq *)(node))->child)
56
57/**
58 * @brief Macro for getting generic parent pointer of a node.
59 *
60 * @param[in] node Node whose parent pointer to get.
61 */
62#define LYD_PARENT(node) ((struct lyd_node *)(node)->parent)
Michal Vaskoa276cd92020-08-10 15:10:08 +020063
Michal Vasko64246d82020-08-19 12:35:00 +020064/* *INDENT-OFF* */
65
Michal Vaskoa276cd92020-08-10 15:10:08 +020066/**
Radek Krejcie7b95092019-05-15 11:03:07 +020067 * @brief Macro to iterate via all elements in a data tree. This is the opening part
68 * to the #LYD_TREE_DFS_END - they always have to be used together.
69 *
70 * The function follows deep-first search algorithm:
71 * <pre>
72 * 1
73 * / \
Michal Vaskoc193ce92020-03-06 11:04:48 +010074 * 2 4
Radek Krejcie7b95092019-05-15 11:03:07 +020075 * / / \
Michal Vaskoc193ce92020-03-06 11:04:48 +010076 * 3 5 6
Radek Krejcie7b95092019-05-15 11:03:07 +020077 * </pre>
78 *
Radek Krejci0935f412019-08-20 16:15:18 +020079 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +020080 * START can be any of the lyd_node* types, ELEM variable must be a pointer to
81 * the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +020082 *
Michal Vasko56daf732020-08-10 10:57:18 +020083 * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue
84 * variable to non-zero value.
Radek Krejcie7b95092019-05-15 11:03:07 +020085 *
86 * Use with opening curly bracket '{' after the macro.
87 *
88 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +020089 * @param ELEM Iterator intended for use in the block.
90 */
Michal Vasko56daf732020-08-10 10:57:18 +020091#define LYD_TREE_DFS_BEGIN(START, ELEM) \
Radek Krejci1deb5be2020-08-26 16:43:36 +020092 { uint8_t LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \
Michal Vasko56daf732020-08-10 10:57:18 +020093 for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \
Radek Krejcie7b95092019-05-15 11:03:07 +020094 (ELEM); \
Michal Vasko56daf732020-08-10 10:57:18 +020095 (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0)
Radek Krejcie7b95092019-05-15 11:03:07 +020096
97/**
98 * @brief Macro to iterate via all elements in a tree. This is the closing part
99 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
100 *
101 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
Michal Vasko56daf732020-08-10 10:57:18 +0200102 * START can be any of the lyd_node* types, ELEM variable must be a pointer
103 * to the generic struct lyd_node.
Radek Krejcie7b95092019-05-15 11:03:07 +0200104 *
105 * Use with closing curly bracket '}' after the macro.
106 *
107 * @param START Pointer to the starting element processed first.
Radek Krejcie7b95092019-05-15 11:03:07 +0200108 * @param ELEM Iterator intended for use in the block.
109 */
110
Michal Vasko56daf732020-08-10 10:57:18 +0200111#define LYD_TREE_DFS_END(START, ELEM) \
Radek Krejcie7b95092019-05-15 11:03:07 +0200112 /* select element for the next run - children first */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200113 if (LYD_TREE_DFS_continue) { \
114 (LYD_TREE_DFS_next) = NULL; \
115 } else { \
116 (LYD_TREE_DFS_next) = lyd_node_children(ELEM, 0); \
117 }\
118 if (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200119 /* no children */ \
120 if ((ELEM) == (struct lyd_node*)(START)) { \
121 /* we are done, (START) has no children */ \
122 break; \
123 } \
124 /* try siblings */ \
Michal Vasko56daf732020-08-10 10:57:18 +0200125 (LYD_TREE_DFS_next) = (ELEM)->next; \
Radek Krejcie7b95092019-05-15 11:03:07 +0200126 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200127 while (!(LYD_TREE_DFS_next)) { \
Radek Krejcie7b95092019-05-15 11:03:07 +0200128 /* parent is already processed, go to its sibling */ \
129 (ELEM) = (struct lyd_node*)(ELEM)->parent; \
130 /* no siblings, go back through parents */ \
131 if ((ELEM)->parent == (START)->parent) { \
132 /* we are done, no next element to process */ \
133 break; \
134 } \
Michal Vasko56daf732020-08-10 10:57:18 +0200135 (LYD_TREE_DFS_next) = (ELEM)->next; \
136 } } \
Radek Krejcie7b95092019-05-15 11:03:07 +0200137
Michal Vasko64246d82020-08-19 12:35:00 +0200138/* *INDENT-ON* */
139
Radek Krejcie7b95092019-05-15 11:03:07 +0200140/**
Michal Vasko03ff5a72019-09-11 13:49:33 +0200141 * @brief Macro to get context from a data tree node.
142 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200143#define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx)
Michal Vasko03ff5a72019-09-11 13:49:33 +0200144
145/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200146 * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200147 * [printer](@ref howtodataprinters) functions.
Radek Krejcie7b95092019-05-15 11:03:07 +0200148 */
149typedef enum {
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200150 LYD_UNKNOWN = 0, /**< unknown data format, invalid value */
151 LYD_XML, /**< XML instance data format */
152 LYD_JSON, /**< JSON instance data format */
153 LYD_LYB, /**< LYB instance data format */
Radek Krejcie7b95092019-05-15 11:03:07 +0200154} LYD_FORMAT;
155
156/**
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200157 * @brief All kinds of supported prefix mappings to modules.
158 */
159typedef enum {
160 LY_PREF_SCHEMA, /**< value prefixes map to YANG import prefixes */
161 LY_PREF_XML, /**< value prefixes map to XML namespace prefixes */
162 LY_PREF_JSON, /**< value prefixes map to module names */
163} LY_PREFIX_FORMAT;
164
165/**
Radek Krejci59583bb2019-09-11 12:57:55 +0200166 * @brief List of possible value types stored in ::lyd_node_any.
Radek Krejcie7b95092019-05-15 11:03:07 +0200167 */
168typedef enum {
Radek Krejci22ebdba2019-07-25 13:59:43 +0200169 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 +0200170 is directly connected into the anydata node without duplication, caller is supposed to not manipulate
171 with the data after a successful call (including calling lyd_free() on the provided data) */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200172 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 +0200173 as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata
174 is printed in XML format. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200175 LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */
176 LYD_ANYDATA_JSON, /**< Value is a string containing the data modeled by YANG and encoded as I-JSON. */
Radek Krejci22ebdba2019-07-25 13:59:43 +0200177 LYD_ANYDATA_LYB, /**< Value is a memory chunk with the serialized data tree in LYB format. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200178} LYD_ANYDATA_VALUETYPE;
179
180/** @} */
181
182/**
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200183 * @brief Special lyd_value structure for union.
184 *
185 * Represents data with multiple types (union). Original value is stored in the main lyd_value:canonical_cache while
186 * the lyd_value_subvalue::value contains representation according to one of the union's types.
187 * The lyd_value_subvalue:prefixes provides (possible) mappings from prefixes in the original value to YANG modules.
188 * These prefixes are necessary to parse original value to the union's subtypes.
189 */
190struct lyd_value_subvalue {
191 struct lyd_value *value; /**< representation of the value according to the selected union's subtype
192 (stored as lyd_value::realpath here, in subvalue structure */
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200193 const char *original; /**< Original value in the dictionary. */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200194 LY_PREFIX_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide
195 whether a value is valid for the specific format or not on later validations
196 (instance-identifier in XML looks different than in JSON). */
197 void *prefix_data; /**< Format-specific data for prefix resolution (see ::ly_resolve_prefix) */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200198 uint32_t parser_hint; /**< Hint options from the parser */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200199};
200
201/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200202 * @brief YANG data representation
203 */
204struct lyd_value {
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200205 const char *canonical; /**< Canonical string representation of the value in the dictionary. It is never
206 NULL and in case of no canonical value, its JSON representation is used instead. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200207 union {
Radek Krejcie7b95092019-05-15 11:03:07 +0200208 int8_t boolean; /**< 0 as false, 1 as true */
209 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200210 int8_t int8; /**< 8-bit signed integer */
211 int16_t int16; /**< 16-bit signed integer */
212 int32_t int32; /**< 32-bit signed integer */
213 int64_t int64; /**< 64-bit signed integer */
214 uint8_t uint8; /**< 8-bit unsigned integer */
Michal Vasko7c8439f2020-08-05 13:25:19 +0200215 uint16_t uint16; /**< 16-bit unsigned integer */
216 uint32_t uint32; /**< 32-bit unsigned integer */
217 uint64_t uint64; /**< 64-bit unsigned integer */
Radek Krejcie7b95092019-05-15 11:03:07 +0200218 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200219 struct lysc_type_bitenum_item **bits_items; /**< list of set pointers to the specification of the set bits ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200220 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Michal Vaskoc8a230d2020-08-14 12:17:10 +0200221 struct ly_path *target; /**< Instance-identifier target path. */
222 struct lyd_value_subvalue *subvalue; /** Union value with some metadata. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200223 void *ptr; /**< generic data type structure used to store the data */
Radek Krejci8dc4f2d2019-07-16 12:24:00 +0200224 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the lyd_value::realtype
225 plugin's callbacks to work with the data. */
Radek Krejci084289f2019-07-09 17:35:30 +0200226
Radek Krejci950f6a52019-09-12 17:15:32 +0200227 struct lysc_type *realtype; /**< pointer to the real type of the data stored in the value structure. This type can differ from the type
Radek Krejci62903c32019-07-15 14:42:05 +0200228 in the schema node of the data node since the type's store plugin can use other types/plugins for
229 storing data. Speaking about built-in types, this is the case of leafref which stores data as its
230 target type. In contrast, union type also use its subtype's callbacks, but inside an internal data
231 lyd_value::subvalue structure, so here is the pointer to the union type.
232 In general, this type is used to get free callback for this lyd_value structure, so it must reflect
233 the type used to store data directly in the same lyd_value instance. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200234};
235
236/**
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200237 * @brief Macro for getting the string canonical value from a term node.
238 *
239 * @param[in] node Term node with the value.
240 * @return Canonical value.
241 */
Michal Vaskob7be7a82020-08-20 09:09:04 +0200242#define LYD_CANON_VALUE(node) ((struct lyd_node_term *)(node))->value.canonical
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200243
244/**
Michal Vasko9f96a052020-03-10 09:41:45 +0100245 * @brief Metadata structure.
Radek Krejcie7b95092019-05-15 11:03:07 +0200246 *
Michal Vasko9f96a052020-03-10 09:41:45 +0100247 * The structure provides information about metadata of a data element. Such attributes must map to
Radek Krejcie7b95092019-05-15 11:03:07 +0200248 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
249 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
250 * they are represented as JSON elements starting with the '@' character (for more information, see the
251 * YANG metadata RFC.
252 *
253 */
Michal Vasko9f96a052020-03-10 09:41:45 +0100254struct lyd_meta {
255 struct lyd_node *parent; /**< data node where the metadata is placed */
256 struct lyd_meta *next; /**< pointer to the next metadata of the same element */
257 struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */
258 const char *name; /**< metadata name */
259 struct lyd_value value; /**< metadata value representation */
Radek Krejcie7b95092019-05-15 11:03:07 +0200260};
261
Michal Vasko52927e22020-03-16 17:26:14 +0100262/**
263 * @brief Generic prefix and namespace mapping, meaning depends on the format.
Radek Krejci1798aae2020-07-14 13:26:06 +0200264 *
265 * 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
266 * ly_ctx_get_module_implemented_ns() or ly_ctx_get_module_implemented(). While the module reference is always present,
267 * the id member can be omitted in case it is not present in the source data as a reference to the default namespace.
Michal Vasko52927e22020-03-16 17:26:14 +0100268 */
269struct ly_prefix {
Radek Krejci1798aae2020-07-14 13:26:06 +0200270 const char *id; /**< identifier used in the qualified name of the item to reference data node namespace */
271 union {
272 const char *module_ns; /**< namespace of the module where the data are supposed to belongs to, used for LYD_XML format. */
273 const char *module_name; /**< name of the module where the data are supposed to belongs to, used for LYD_JSON format. */
274 };
Michal Vasko52927e22020-03-16 17:26:14 +0100275};
276
277/**
278 * @brief Generic attribute structure.
279 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200280struct lyd_attr {
Michal Vasko52927e22020-03-16 17:26:14 +0100281 struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
Radek Krejci1798aae2020-07-14 13:26:06 +0200282 struct lyd_attr *next;
Michal Vasko52927e22020-03-16 17:26:14 +0100283 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
284 const char *name;
285 const char *value;
286
Radek Krejci5536d282020-08-04 23:27:44 +0200287 LYD_FORMAT format; /**< format of the prefixes, only LYD_XML and LYD_JSON values can appear at this place */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200288 uint32_t hint; /**< additional information about from the data source, see the [hints list](@ref lydopaqhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100289 struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */
290
291};
Radek Krejcie7b95092019-05-15 11:03:07 +0200292
Michal Vasko1bf09392020-03-27 12:38:10 +0100293#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 +0200294#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
295#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
296
297/**
Michal Vasko9b368d32020-02-14 13:53:31 +0100298 * @defgroup dnodeflags Data node flags
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200299 * @ingroup datatree
300 * @{
301 *
302 * Various flags of data nodes.
303 *
304 * 1 - container 5 - anydata/anyxml
305 * 2 - list 6 - rpc/action
306 * 3 - leaf 7 - notification
307 * 4 - leaflist
308 *
309 * bit name 1 2 3 4 5 6 7
310 * ---------------------+-+-+-+-+-+-+-+
311 * 1 LYD_DEFAULT |x| |x|x| | | |
312 * +-+-+-+-+-+-+-+
Michal Vasko5c4e5892019-11-14 12:31:38 +0100313 * 2 LYD_WHEN_TRUE |x|x|x|x|x| | |
Michal Vasko9b368d32020-02-14 13:53:31 +0100314 * +-+-+-+-+-+-+-+
315 * 3 LYD_NEW |x|x|x|x|x|x|x|
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200316 * ---------------------+-+-+-+-+-+-+-+
317 *
318 */
319
Michal Vasko5c4e5892019-11-14 12:31:38 +0100320#define LYD_DEFAULT 0x01 /**< default (implicit) node */
321#define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */
Michal Vasko9b368d32020-02-14 13:53:31 +0100322#define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */
Michal Vasko52927e22020-03-16 17:26:14 +0100323
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200324/** @} */
325
326/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200327 * @brief Generic structure for a data node.
328 */
329struct lyd_node {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200330 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
331 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
332 used to get know that nodes are not equal, it cannot be used to decide that the
333 nodes are equal due to possible collisions. */
334 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Michal Vaskoecd62de2019-11-13 12:35:11 +0100335 const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just
336 ::struct lysc_node but ::struct lysc_action or ::struct lysc_notif as well */
Radek Krejcie7b95092019-05-15 11:03:07 +0200337 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
338 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
339 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
340 never NULL. If there is no sibling node, pointer points to the node
341 itself. In case of the first node, this pointer points to the last
342 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100343 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200344
345#ifdef LY_ENABLED_LYD_PRIV
346 void *priv; /**< private user data, not used by libyang */
347#endif
348};
349
350/**
Radek Krejcif3b6fec2019-07-24 15:53:11 +0200351 * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications.
Radek Krejcie7b95092019-05-15 11:03:07 +0200352 */
353struct lyd_node_inner {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200354 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
355 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
356 used to get know that nodes are not equal, it cannot be used to decide that the
357 nodes are equal due to possible collisions. */
358 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200359 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
360 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
361 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
362 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
363 never NULL. If there is no sibling node, pointer points to the node
364 itself. In case of the first node, this pointer points to the last
365 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100366 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200367
368#ifdef LY_ENABLED_LYD_PRIV
369 void *priv; /**< private user data, not used by libyang */
370#endif
371
372 struct lyd_node *child; /**< pointer to the first child node. */
373 struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200374#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 +0200375};
376
377/**
Michal Vaskof03ed032020-03-04 13:31:44 +0100378 * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists.
Radek Krejcie7b95092019-05-15 11:03:07 +0200379 */
380struct lyd_node_term {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200381 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
382 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
383 used to get know that nodes are not equal, it cannot be used to decide that the
384 nodes are equal due to possible collisions. */
385 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200386 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
387 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
388 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
389 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
390 never NULL. If there is no sibling node, pointer points to the node
391 itself. In case of the first node, this pointer points to the last
392 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100393 struct lyd_meta *meta; /**< pointer to the list of metadata of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200394
395#ifdef LY_ENABLED_LYD_PRIV
396 void *priv; /**< private user data, not used by libyang */
397#endif
398
399 struct lyd_value value; /**< node's value representation */
400};
401
402/**
403 * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls.
404 */
405struct lyd_node_any {
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200406 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or
407 hashes of all nodes of subtree in case of keyless list). Note that while hash can be
408 used to get know that nodes are not equal, it cannot be used to decide that the
409 nodes are equal due to possible collisions. */
410 uint32_t flags; /**< [data node flags](@ref dnodeflags) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200411 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
412 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
413 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
414 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
415 never NULL. If there is no sibling node, pointer points to the node
416 itself. In case of the first node, this pointer points to the last
417 node in the list. */
Michal Vasko9f96a052020-03-10 09:41:45 +0100418 struct lyd_meta *meta; /**< pointer to the list of attributes of this node */
Radek Krejcie7b95092019-05-15 11:03:07 +0200419
420#ifdef LY_ENABLED_LYD_PRIV
421 void *priv; /**< private user data, not used by libyang */
422#endif
423
Michal Vasko00cbf532020-06-15 13:58:47 +0200424 union lyd_any_value {
Radek Krejciee4cab22019-07-17 17:07:47 +0200425 struct lyd_node *tree; /**< data tree */
426 const char *str; /**< Generic string data */
427 const char *xml; /**< Serialized XML data */
428 const char *json; /**< I-JSON encoded string */
429 char *mem; /**< LYD_ANYDATA_LYB memory chunk */
430 } value; /**< pointer to the stored value representation of the anydata/anyxml node */
431 LYD_ANYDATA_VALUETYPE value_type;/**< type of the data stored as lyd_node_any::value */
Radek Krejcie7b95092019-05-15 11:03:07 +0200432};
433
434/**
Radek Krejci1798aae2020-07-14 13:26:06 +0200435 * @defgroup lydopaqhints Opaq data node hints.
436 *
437 * Additional information about the opaq nodes from their source. The flags are stored in lyd_node_opaq::hint
438 * and they can have a slightly different meaning for the specific lyd_node_opaq::format.
439 * @{
440 */
441#define LYD_NODE_OPAQ_ISLIST 0x001 /**< LYD_JSON: node is expected to be a list or leaf-list */
442#define LYD_NODE_OPAQ_ISENVELOPE 0x002 /**< LYD_JSON, LYD_XML: RPC/Action/Notification envelope out of the YANG schemas */
443
444#define LYD_NODE_OPAQ_ISSTRING 0x100 /**< LYD_JSON: value is expected to be string as defined in JSON encoding. */
445#define LYD_NODE_OPAQ_ISNUMBER 0x200 /**< LYD_JSON: value is expected to be number as defined in JSON encoding. */
446#define LYD_NODE_OPAQ_ISBOOLEAN 0x400 /**< LYD_JSON: value is expected to be boolean as defined in JSON encoding. */
447#define LYD_NODE_OPAQ_ISEMPTY 0x800 /**< LYD_JSON: value is expected to be empty as defined in JSON encoding. */
448
449/** @} lydopaqhints */
450
451/**
Michal Vasko52927e22020-03-16 17:26:14 +0100452 * @brief Data node structure for unparsed (opaque) nodes.
453 */
454struct lyd_node_opaq {
455 uint32_t hash; /**< always 0 */
456 uint32_t flags; /**< always 0 */
457 const struct lysc_node *schema; /**< always NULL */
458 struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */
459 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
460 struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */
Radek Krejci1798aae2020-07-14 13:26:06 +0200461 struct lyd_attr *attr;
Michal Vasko52927e22020-03-16 17:26:14 +0100462
463#ifdef LY_ENABLED_LYD_PRIV
464 void *priv; /**< private user data, not used by libyang */
465#endif
466
467 struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */
468 const char *name;
469 LYD_FORMAT format;
470 struct ly_prefix prefix; /**< name prefix */
471 struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
472 const char *value; /**< original value */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200473 uint32_t hint; /**< additional information about from the data source, see the [hints list](@ref lydopaqhints) */
Michal Vasko52927e22020-03-16 17:26:14 +0100474 const struct ly_ctx *ctx; /**< libyang context */
475};
476
477/**
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200478 * @defgroup children_options Children traversal options.
479 * @ingroup datatree
480 */
481
482#define LYD_CHILDREN_SKIP_KEYS 0x01 /**< If list children are returned, skip its keys. */
483
484/** @} children_options */
485
486/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200487 * @brief Get the node's children list if any.
488 *
489 * Decides the node's type and in case it has a children list, returns it.
490 * @param[in] node Node to check.
Michal Vasko5bfd4be2020-06-23 13:26:19 +0200491 * @param[in] options Bitmask of options, see @ref
Radek Krejcie7b95092019-05-15 11:03:07 +0200492 * @return Pointer to the first child node (if any) of the \p node.
493 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200494struct lyd_node *lyd_node_children(const struct lyd_node *node, uint32_t options);
Radek Krejcie7b95092019-05-15 11:03:07 +0200495
496/**
Michal Vaskoc193ce92020-03-06 11:04:48 +0100497 * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally,
498 * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined.
499 *
500 * @param[in] node Data node to examine.
501 * @return Module owner of the node.
502 */
503const struct lys_module *lyd_owner_module(const struct lyd_node *node);
504
505/**
Michal Vasko60ea6352020-06-29 13:39:39 +0200506 * @brief Learn the length of LYB data.
507 *
508 * @param[in] data LYB data to examine.
509 * @return Length of the LYB data chunk,
510 * @return -1 on error.
511 */
512int lyd_lyb_data_length(const char *data);
513
514/**
Michal Vaskoc0004272020-08-06 08:32:34 +0200515 * @brief Copy anydata value from one node to another. Target value is freed first.
516 *
517 * @param[in,out] trg Target node.
518 * @param[in] value Source value, may be NULL when the target value is only freed.
519 * @param[in] value_type Source value type.
520 * @return LY_ERR value.
521 */
522LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type);
523
524/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200525 * @brief Create a new inner node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100526 *
527 * @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 +0100528 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100529 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200530 * @param[out] node Optional created node.
531 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100532 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200533LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100534
535/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200536 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100537 *
538 * @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 +0100539 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100540 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200541 * @param[out] node Optional created node.
Michal Vasko013a8182020-03-03 10:46:53 +0100542 * @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 +0200543 * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for
544 * key-less lists.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200545 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100546 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200547LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, struct lyd_node **node, ...);
Michal Vasko013a8182020-03-03 10:46:53 +0100548
549/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200550 * @brief Create a new list node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100551 *
552 * @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 +0100553 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100554 * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST.
555 * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered.
556 * 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 +0200557 * Use NULL or string of length 0 in case of key-less list.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200558 * @param[out] node Optional created node.
559 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100560 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200561LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys,
Radek Krejci0f969882020-08-21 16:56:47 +0200562 struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100563
564/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200565 * @brief Create a new term node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100566 *
567 * @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 +0100568 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100569 * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST.
570 * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref
571 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko3a41dff2020-07-15 14:30:28 +0200572 * @param[out] node Optional created node.
573 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100574 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200575LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +0200576 struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100577
578/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200579 * @brief Create a new any node in the data tree.
Michal Vasko013a8182020-03-03 10:46:53 +0100580 *
581 * @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 +0100582 * @param[in] module Module of the node being created. If NULL, @p parent module will be used.
Michal Vasko013a8182020-03-03 10:46:53 +0100583 * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML.
584 * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type.
585 * @param[in] value_type Type of the provided value in @p value.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200586 * @param[out] node Optional created node.
587 * @return LY_ERR value.
Michal Vasko013a8182020-03-03 10:46:53 +0100588 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200589LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value,
Radek Krejci0f969882020-08-21 16:56:47 +0200590 LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node);
Michal Vasko013a8182020-03-03 10:46:53 +0100591
592/**
Michal Vaskod86997b2020-05-26 15:19:54 +0200593 * @brief Create new metadata for a data node.
594 *
595 * @param[in] parent Parent node for the metadata being created.
Michal Vasko00cbf532020-06-15 13:58:47 +0200596 * @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 +0200597 * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix.
598 * 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 +0200599 * @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 +0200600 * value, the JSON format is expected (module names instead of prefixes).
Michal Vasko3a41dff2020-07-15 14:30:28 +0200601 * @param[out] meta Optional created metadata.
602 * @return LY_ERR value.
Michal Vaskod86997b2020-05-26 15:19:54 +0200603 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200604LY_ERR lyd_new_meta(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +0200605 struct lyd_meta **meta);
Michal Vaskod86997b2020-05-26 15:19:54 +0200606
607/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200608 * @brief Create a new opaque node in the data tree.
609 *
610 * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element.
611 * @param[in] ctx libyang context. If NULL, @p parent context will be used.
612 * @param[in] name Node name.
613 * @param[in] value Node value, may be NULL.
614 * @param[in] module_name Node module name.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200615 * @param[out] node Optional created node.
616 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200617 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200618LY_ERR lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value,
Radek Krejci0f969882020-08-21 16:56:47 +0200619 const char *module_name, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200620
621/**
622 * @brief Create new attribute for an opaque data node.
623 *
624 * @param[in] parent Parent opaque node for the attribute being created.
625 * @param[in] module Module name of the attribute being created. There may be none.
626 * @param[in] name Attribute name. It can include the module name as the prefix.
627 * @param[in] val_str String value of the attribute. Is stored directly.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200628 * @param[out] attr Optional created attribute.
629 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200630 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200631LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str,
Radek Krejci0f969882020-08-21 16:56:47 +0200632 struct lyd_attr **attr);
Michal Vasko00cbf532020-06-15 13:58:47 +0200633
634/**
635 * @defgroup pathoptions Data path creation options
636 * @ingroup datatree
637 *
638 * Various options to change lyd_new_path*() behavior.
639 *
640 * Default behavior:
641 * - if the target node already exists (and is not default), an error is returned.
642 * - the whole path to the target node is created (with any missing parents) if necessary.
643 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
644 * @{
645 */
646
647#define LYD_NEWOPT_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
648 default flag is changed, it is returned. If the target node exists and is not
649 a leaf or generally no change occurs in the @p parent tree, NULL is returned and
650 no error set. */
651#define LYD_NEWOPT_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only
652 output ones. */
653#define LYD_NEWOPT_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__
654 in the path is not uniquely defined ((leaf-)list without a predicate) or has an
655 invalid value (leaf/leaf-list), it is created as opaque. */
656
657/** @} pathoptions */
658
659/**
660 * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes,
661 * for those use ::lyd_new_path_any.
662 *
663 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
664 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
665 * and @p value is set, the predicate is preferred.
666 *
667 * @param[in] parent Data parent to add to/modify, can be NULL.
668 * @param[in] ctx libyang context, must be set if @p parent is NULL.
669 * @param[in] path Path to create (TODO ref path).
670 * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored.
671 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200672 * @param[out] node Optional first created node.
673 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200674 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200675LY_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 +0200676 uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200677
678/**
679 * @brief Create a new node in the data tree based on a path. All node types can be created.
680 *
681 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
682 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
683 * and @p value is set, the predicate is preferred.
684 *
685 * @param[in] parent Data parent to add to/modify, can be NULL.
686 * @param[in] ctx libyang context, must be set if @p parent is NULL.
687 * @param[in] path Path to create (TODO ref path).
688 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
689 * @param[in] value_type Anyxml/anydata node @p value type.
690 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200691 * @param[out] node Optional first created node.
692 * @return LY_ERR value.
Michal Vasko00cbf532020-06-15 13:58:47 +0200693 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200694LY_ERR lyd_new_path_any(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +0200695 LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200696
697/**
698 * @brief Create a new node in the data tree based on a path. All node types can be created.
699 *
700 * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used
701 * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path
702 * and @p value is set, the predicate is preferred.
703 *
704 * @param[in] parent Data parent to add to/modify, can be NULL.
705 * @param[in] ctx libyang context, must be set if @p parent is NULL.
706 * @param[in] path Path to create (TODO ref path).
707 * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored.
708 * @param[in] value_type Anyxml/anydata node @p value type.
709 * @param[in] options Bitmask of options, see @ref pathoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200710 * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node.
711 * @param[out] new_node Optional last node created.
Michal Vasko00cbf532020-06-15 13:58:47 +0200712 * @return LY_ERR value.
713 */
714LY_ERR lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value,
Radek Krejci1deb5be2020-08-26 16:43:36 +0200715 LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, struct lyd_node **new_node);
Michal Vasko00cbf532020-06-15 13:58:47 +0200716
717/**
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200718 * @defgroup implicitoptions Implicit node creation options
719 * @ingroup datatree
720 *
721 * Various options to change lyd_new_implicit*() behavior.
722 *
723 * Default behavior:
724 * - both configuration and state missing implicit nodes are added.
725 * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists).
726 * @{
727 */
728
Michal Vasko44b19a12020-08-07 09:21:30 +0200729#define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */
730#define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */
731#define LYD_IMPLICIT_NO_DEFAULTS 0x04 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200732 containers. */
733
734/** @} implicitoptions */
735
736/**
737 * @brief Add any missing implicit nodes into a data subtree.
738 *
739 * @param[in] tree Tree to add implicit nodes into.
740 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
741 * @param[out] diff Optional diff with any created nodes.
742 * @return LY_ERR value.
743 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200744LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200745
746/**
747 * @brief Add any missing implicit nodes.
748 *
749 * @param[in,out] tree Tree to add implicit nodes into.
750 * @param[in] ctx libyang context, must be set only if @p tree is an empty tree.
751 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
752 * @param[out] diff Optional diff with any created nodes.
753 * @return LY_ERR value.
754 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200755LY_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 +0200756
757/**
758 * @brief Add any missing implicit nodes of one module.
759 *
760 * @param[in,out] tree Tree to add implicit nodes into.
761 * @param[in] module Module whose implicit nodes to create.
762 * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions.
763 * @param[out] diff Optional diff with any created nodes.
764 * @return LY_ERR value.
765 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200766LY_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 +0200767 struct lyd_node **diff);
Michal Vaskoa6669ba2020-08-06 16:14:26 +0200768
769/**
Michal Vasko00cbf532020-06-15 13:58:47 +0200770 * @brief Change the value of a term (leaf or leaf-list) node.
771 *
772 * Node changed this way is always considered explicitly set, meaning its default flag
773 * is always cleared.
774 *
775 * @param[in] term Term node to change.
776 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
777 * @return LY_SUCCESS if value was changed,
778 * @return LY_EEXIST if value was the same and only the default flag was cleared,
779 * @return LY_ENOT if the values were equal and no change occured,
780 * @return LY_ERR value on other errors.
781 */
782LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str);
783
784/**
Michal Vasko41586352020-07-13 13:54:25 +0200785 * @brief Change the value of a metadata instance.
786 *
787 * @param[in] ctx libyang context.
788 * @param[in] meta Metadata to change.
789 * @param[in] val_str New value to set, any prefixes are expected in JSON format.
790 * @return LY_SUCCESS if value was changed,
791 * @return LY_ENOT if the values were equal and no change occured,
792 * @return LY_ERR value on other errors.
793 */
794LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str);
795
796/**
Michal Vaskob104f112020-07-17 09:54:54 +0200797 * @brief Insert a child into a parent.
Michal Vaskof03ed032020-03-04 13:31:44 +0100798 *
799 * - if the node is part of some other tree, it is automatically unlinked.
800 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
801 *
802 * @param[in] parent Parent node to insert into.
803 * @param[in] node Node to insert.
804 * @return LY_SUCCESS on success.
805 * @return LY_ERR error on error.
806 */
Michal Vaskob104f112020-07-17 09:54:54 +0200807LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node);
Michal Vaskof03ed032020-03-04 13:31:44 +0100808
809/**
Michal Vaskob104f112020-07-17 09:54:54 +0200810 * @brief Insert a node into siblings.
Michal Vaskob1b5c262020-03-05 14:29:47 +0100811 *
812 * - if the node is part of some other tree, it is automatically unlinked.
813 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
814 *
Michal Vaskob104f112020-07-17 09:54:54 +0200815 * @param[in] sibling Siblings to insert into, can even be NULL.
Michal Vaskob1b5c262020-03-05 14:29:47 +0100816 * @param[in] node Node to insert.
Michal Vaskob104f112020-07-17 09:54:54 +0200817 * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling.
Michal Vaskob1b5c262020-03-05 14:29:47 +0100818 * @return LY_SUCCESS on success.
819 * @return LY_ERR error on error.
820 */
Michal Vaskob104f112020-07-17 09:54:54 +0200821LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first);
Michal Vaskob1b5c262020-03-05 14:29:47 +0100822
823/**
Michal Vaskob104f112020-07-17 09:54:54 +0200824 * @brief Insert a node before another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +0100825 *
826 * - if the node is part of some other tree, it is automatically unlinked.
827 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
828 *
829 * @param[in] sibling Sibling node to insert before.
830 * @param[in] node Node to insert.
831 * @return LY_SUCCESS on success.
832 * @return LY_ERR error on error.
833 */
834LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
835
836/**
Michal Vaskob104f112020-07-17 09:54:54 +0200837 * @brief Insert a node after another node, can be used only for user-ordered nodes.
Michal Vaskof03ed032020-03-04 13:31:44 +0100838 *
839 * - if the node is part of some other tree, it is automatically unlinked.
840 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
841 *
842 * @param[in] sibling Sibling node to insert after.
843 * @param[in] node Node to insert.
844 * @return LY_SUCCESS on success.
845 * @return LY_ERR error on error.
846 */
847LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
848
849/**
850 * @brief Unlink the specified data subtree.
851 *
852 * @param[in] node Data tree node to be unlinked (together with all the children).
853 */
854void lyd_unlink_tree(struct lyd_node *node);
855
856/**
Radek Krejcib0849a22019-07-25 12:31:04 +0200857 * @brief Free all the nodes (even parents of the node) in the data tree.
Radek Krejcie7b95092019-05-15 11:03:07 +0200858 *
859 * @param[in] node Any of the nodes inside the tree.
860 */
861void lyd_free_all(struct lyd_node *node);
862
863/**
Michal Vasko3a41dff2020-07-15 14:30:28 +0200864 * @brief Free all the sibling nodes (preceding as well as succeeding).
Radek Krejcib0849a22019-07-25 12:31:04 +0200865 *
866 * @param[in] node Any of the sibling nodes to free.
867 */
Michal Vaskof03ed032020-03-04 13:31:44 +0100868void lyd_free_siblings(struct lyd_node *node);
Radek Krejcib0849a22019-07-25 12:31:04 +0200869
870/**
Radek Krejcie7b95092019-05-15 11:03:07 +0200871 * @brief Free (and unlink) the specified data (sub)tree.
872 *
Radek Krejcie7b95092019-05-15 11:03:07 +0200873 * @param[in] node Root of the (sub)tree to be freed.
874 */
875void lyd_free_tree(struct lyd_node *node);
876
877/**
Michal Vasko3a41dff2020-07-15 14:30:28 +0200878 * @brief Free a single metadata instance.
Radek Krejcie7b95092019-05-15 11:03:07 +0200879 *
Michal Vasko3a41dff2020-07-15 14:30:28 +0200880 * @param[in] meta Metadata to free.
Radek Krejcie7b95092019-05-15 11:03:07 +0200881 */
Michal Vasko3a41dff2020-07-15 14:30:28 +0200882void lyd_free_meta_single(struct lyd_meta *meta);
Michal Vasko52927e22020-03-16 17:26:14 +0100883
884/**
Michal Vasko3a41dff2020-07-15 14:30:28 +0200885 * @brief Free the metadata instance with any following instances.
886 *
887 * @param[in] meta Metadata to free.
888 */
889void lyd_free_meta_siblings(struct lyd_meta *meta);
890
891/**
892 * @brief Free a single attribute.
Michal Vasko52927e22020-03-16 17:26:14 +0100893 *
894 * @param[in] ctx Context where the attributes were created.
Michal Vasko3a41dff2020-07-15 14:30:28 +0200895 * @param[in] attr Attribute to free.
Michal Vasko52927e22020-03-16 17:26:14 +0100896 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200897void ly_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr);
Michal Vasko3a41dff2020-07-15 14:30:28 +0200898
899/**
900 * @brief Free the attribute with any following attributes.
901 *
902 * @param[in] ctx Context where the attributes were created.
903 * @param[in] attr First attribute to free.
904 */
Radek Krejci1798aae2020-07-14 13:26:06 +0200905void ly_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr);
Radek Krejcie7b95092019-05-15 11:03:07 +0200906
Radek Krejci084289f2019-07-09 17:35:30 +0200907/**
908 * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value.
909 *
910 * The given node is not modified in any way - it is just checked if the @p value can be set to the node.
911 *
912 * If there is no data node instance and you are fine with checking just the type's restrictions without the
913 * data tree context (e.g. for the case of require-instance restriction), use lys_value_validate().
914 *
915 * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL)
916 * @param[in] node Data node for the @p value.
Michal Vaskof937cfe2020-08-03 16:07:12 +0200917 * @param[in] value String value to be checked, it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +0200918 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskof03ed032020-03-04 13:31:44 +0100919 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
920 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
921 * then LY_EINCOMPLETE can be returned.
Michal Vasko3701af52020-08-03 14:29:38 +0200922 * @param[out] realtype Optional real type of the value.
Radek Krejci084289f2019-07-09 17:35:30 +0200923 * @return LY_SUCCESS on success
924 * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation (e.g. due to require-instance).
925 * @return LY_ERR value if an error occurred.
926 */
Michal Vasko44685da2020-03-17 15:38:06 +0100927LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len,
Radek Krejci0f969882020-08-21 16:56:47 +0200928 const struct lyd_node *tree, struct lysc_type **realtype);
Radek Krejci084289f2019-07-09 17:35:30 +0200929
930/**
931 * @brief Compare the node's value with the given string value. The string value is first validated according to the node's type.
932 *
933 * @param[in] node Data node to compare.
934 * @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 +0200935 * it is validated and canonized if possible. But it is expected to be in JSON format.
Radek Krejci084289f2019-07-09 17:35:30 +0200936 * @param[in] value_len Length of the given @p value (mandatory).
Michal Vaskof03ed032020-03-04 13:31:44 +0100937 * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target,
938 * instance-identifier) can be placed. NULL in case the data tree is not yet complete,
939 * then LY_EINCOMPLETE can be returned.
Radek Krejci084289f2019-07-09 17:35:30 +0200940 * @return LY_SUCCESS on success
941 * @return LY_EINCOMPLETE in case of success when the @p trees is not provided and it was needed to finish the validation of
942 * the given string @p value (e.g. due to require-instance).
Michal Vaskob3ddccb2020-07-09 15:43:05 +0200943 * @return LY_ENOT if the values do not match.
Radek Krejci084289f2019-07-09 17:35:30 +0200944 * @return LY_ERR value if an error occurred.
945 */
Michal Vaskof937cfe2020-08-03 16:07:12 +0200946LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +0200947
Radek Krejci576b23f2019-07-12 14:06:32 +0200948/**
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200949 * @defgroup datacompareoptions Data compare options
950 * @ingroup datatree
951 *
Radek Krejci22ebdba2019-07-25 13:59:43 +0200952 * Various options to change the lyd_compare() behavior.
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200953 */
954#define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children
955 (subtree, so direct as well as indirect children) are the same. By default,
956 containers are the same in case of the same schema node and lists are the same
957 in case of equal keys (keyless lists do the full recursion comparison all the time). */
958#define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag
959 changes this behavior and implicit (automatically created default node) and explicit
960 (explicitly created node with the default value) default nodes are considered different. */
Michal Vasko60ea6352020-06-29 13:39:39 +0200961/** @} datacompareoptions */
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200962
963/**
964 * @brief Compare 2 data nodes if they are equivalent.
965 *
966 * @param[in] node1 The first node to compare.
967 * @param[in] node2 The second node to compare.
Radek Krejcic5ad9652019-09-11 11:31:51 +0200968 * @param[in] options Various @ref datacompareoptions.
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200969 * @return LY_SUCCESS if the nodes are equivalent.
970 * @return LY_ENOT if the nodes are not equivalent.
971 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200972LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Michal Vasko8f359bf2020-07-28 10:41:15 +0200973
974/**
975 * @brief Compare 2 lists of siblings if they are equivalent.
976 *
977 * @param[in] node1 The first sibling list to compare.
978 * @param[in] node2 The second sibling list to compare.
979 * @param[in] options Various @ref datacompareoptions.
980 * @return LY_SUCCESS if all the siblings are equivalent.
981 * @return LY_ENOT if the siblings are not equivalent.
982 */
Radek Krejci1deb5be2020-08-26 16:43:36 +0200983LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options);
Radek Krejci1f05b6a2019-07-18 16:15:06 +0200984
985/**
Michal Vasko21725742020-06-29 11:49:25 +0200986 * @brief Compare 2 metadata.
987 *
988 * @param[in] meta1 First metadata.
989 * @param[in] meta2 Second metadata.
990 * @return LY_SUCCESS if the metadata are equivalent.
991 * @return LY_ENOT if not.
992 */
993LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2);
994
995/**
Radek Krejci22ebdba2019-07-25 13:59:43 +0200996 * @defgroup dupoptions Data duplication options
997 * @ingroup datatree
998 *
999 * Various options to change lyd_dup() behavior.
1000 *
1001 * Default behavior:
1002 * - only the specified node is duplicated without siblings, parents, or children.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001003 * - all the metadata of the duplicated nodes are also duplicated.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001004 * @{
1005 */
1006
1007#define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that
1008 list's keys are always duplicated. */
Michal Vaskoa29a5762020-06-23 13:28:49 +02001009#define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001010#define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents.
1011 Keys are also duplicated for lists. Return value does not change! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001012#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 +02001013 its validation/default node state. */
Radek Krejci22ebdba2019-07-25 13:59:43 +02001014
1015/** @} dupoptions */
1016
1017/**
1018 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
1019 *
Radek Krejci22ebdba2019-07-25 13:59:43 +02001020 * @param[in] node Data tree node to be duplicated.
1021 * @param[in] parent Optional parent node where to connect the duplicated node(s).
Michal Vasko3a41dff2020-07-15 14:30:28 +02001022 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1023 * the @p parent.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001024 * @param[in] options Bitmask of options flags, see @ref dupoptions.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001025 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1026 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1027 * @return LY_ERR value.
Radek Krejci22ebdba2019-07-25 13:59:43 +02001028 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001029LY_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 +02001030
1031/**
1032 * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same.
1033 *
1034 * @param[in] node Data tree node to be duplicated.
1035 * @param[in] parent Optional parent node where to connect the duplicated node(s).
1036 * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with
1037 * the @p parent.
1038 * @param[in] options Bitmask of options flags, see @ref dupoptions.
1039 * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated
1040 * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned.
1041 * @return LY_ERR value.
1042 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001043LY_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 +02001044
1045/**
Michal Vasko25a32822020-07-09 15:48:22 +02001046 * @brief Create a copy of the metadata.
1047 *
1048 * @param[in] meta Metadata to copy.
Michal Vasko3a41dff2020-07-15 14:30:28 +02001049 * @param[in] parent Node where to append the new metadata.
1050 * @param[out] dup Optional created metadata copy.
1051 * @return LY_ERR value.
Michal Vasko25a32822020-07-09 15:48:22 +02001052 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001053LY_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 +02001054
1055/**
Michal Vasko4490d312020-06-16 13:08:55 +02001056 * @defgroup mergeoptions Data merge options.
1057 * @ingroup datatree
Radek Krejci576b23f2019-07-12 14:06:32 +02001058 *
Michal Vasko4490d312020-06-16 13:08:55 +02001059 * Various options to change lyd_merge() behavior.
1060 *
1061 * Default behavior:
1062 * - source data tree is not modified in any way,
Michal Vasko3a41dff2020-07-15 14:30:28 +02001063 * - any default nodes in the source are ignored if there are explicit nodes in the target.
Michal Vasko4490d312020-06-16 13:08:55 +02001064 * @{
1065 */
1066
1067#define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001068#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 +02001069
1070/** @} mergeoptions */
1071
1072/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001073 * @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 +02001074 * is called on the resulting data tree (data from more cases may be present, default and non-default values).
1075 *
1076 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1077 * @param[in] source Source data tree to merge, must be a top-level tree.
1078 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1079 * @return LY_SUCCESS on success,
1080 * @return LY_ERR value on error.
1081 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001082LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko3a41dff2020-07-15 14:30:28 +02001083
1084/**
1085 * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be
1086 * complete until validation called on the resulting data tree (data from more cases may be present, default
1087 * and non-default values).
1088 *
1089 * @param[in,out] target Target data tree to merge into, must be a top-level tree.
1090 * @param[in] source Source data tree to merge, must be a top-level tree.
1091 * @param[in] options Bitmask of option flags, see @ref mergeoptions.
1092 * @return LY_SUCCESS on success,
1093 * @return LY_ERR value on error.
1094 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001095LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options);
Michal Vasko4490d312020-06-16 13:08:55 +02001096
1097/**
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001098 * @defgroup diffoptions Data diff options.
1099 * @ingroup datatree
1100 *
1101 * Various options to change lyd_diff() behavior.
1102 *
1103 * Default behavior:
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001104 * - any default nodes are treated as non-existent and ignored.
1105 * @{
1106 */
1107
Michal Vasko3a41dff2020-07-15 14:30:28 +02001108#define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit
1109 nodes. Also, leaves and leaf-lists are added into diff even in case only their
1110 default flag (state) was changed. */
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001111
1112/** @} diffoptions */
1113
1114/**
1115 * @brief Learn the differences between 2 data trees.
1116 *
1117 * The resulting diff is represented as a data tree with specific metadata from the internal 'yang'
1118 * module. Most importantly, every node has an effective 'operation' metadata. If there is none
1119 * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must
1120 * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value',
1121 * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first
1122 * or the second tree.
1123 *
1124 * The diff tree is completely independent on the @p first and @p second trees, meaning all
1125 * the information about the change is stored in the diff and the trees are not needed.
1126 *
1127 * !! Caution !!
1128 * The diff tree should never be validated because it may easily not be valid! For example,
1129 * when data from one case branch are deleted and data from another branch created - data from both
1130 * branches are then stored in the diff tree simultaneously.
1131 *
1132 * @param[in] first First data tree.
1133 * @param[in] second Second data tree.
1134 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1135 * @param[out] diff Generated diff.
1136 * @return LY_SUCCESS on success,
1137 * @return LY_ERR on error.
1138 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001139LY_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 +02001140
1141/**
1142 * @brief Learn the differences between 2 data trees including all the following siblings.
1143 *
1144 * @param[in] first First data tree.
1145 * @param[in] second Second data tree.
1146 * @param[in] options Bitmask of options flags, see @ref diffoptions.
1147 * @param[out] diff Generated diff.
1148 * @return LY_SUCCESS on success,
1149 * @return LY_ERR on error.
1150 */
Radek Krejci1deb5be2020-08-26 16:43:36 +02001151LY_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 +02001152
1153/**
1154 * @brief Callback for diff nodes.
1155 *
1156 * @param[in] diff_node Diff node.
1157 * @param[in] data_node Matching node in data.
1158 * @param[in] cb_data Arbitrary callback data.
1159 * @return LY_ERR value.
1160 */
1161typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data);
1162
1163/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001164 * @brief Apply the whole diff on a data tree but restrict the operation to one module.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001165 *
1166 * @param[in,out] data Data to apply the diff on.
1167 * @param[in] diff Diff to apply.
1168 * @param[in] mod Module, whose diff/data only to consider, NULL for all modules.
1169 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1170 * @param[in] cb_data Arbitrary callback data.
1171 * @return LY_SUCCESS on success,
1172 * @return LY_ERR on error.
1173 */
1174LY_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 +02001175 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001176
1177/**
Michal Vasko3a41dff2020-07-15 14:30:28 +02001178 * @brief Apply the whole diff tree on a data tree.
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001179 *
1180 * @param[in,out] data Data to apply the diff on.
1181 * @param[in] diff Diff to apply.
1182 * @return LY_SUCCESS on success,
1183 * @return LY_ERR on error.
1184 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001185LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff);
Michal Vaskoe893ddd2020-06-23 13:35:20 +02001186
1187/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001188 * @brief Merge 2 diffs into each other but restrict the operation to one module.
1189 *
1190 * The diffs must be possible to be merged, which is guaranteed only if the source diff was
1191 * created on data that had the target diff applied on them. In other words, this sequence is legal
1192 *
Michal Vasko04f85912020-08-07 12:14:58 +02001193 * 1) diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 ->
1194 * -> data 33 from apply diff2 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001195 *
1196 * and reusing these diffs
1197 *
Michal Vasko04f85912020-08-07 12:14:58 +02001198 * 2) diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1
Michal Vaskoe6323f62020-07-09 15:49:02 +02001199 *
Michal Vaskofb737aa2020-08-06 13:53:53 +02001200 * @param[in,out] diff Target diff to merge into.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001201 * @param[in] src_diff Source diff.
1202 * @param[in] mod Module, whose diff only to consider, NULL for all modules.
1203 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1204 * @param[in] cb_data Arbitrary callback data.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001205 * @return LY_SUCCESS on success,
1206 * @return LY_ERR on error.
1207 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001208LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod,
Radek Krejci0f969882020-08-21 16:56:47 +02001209 lyd_diff_cb diff_cb, void *cb_data);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001210
1211/**
Michal Vasko04f85912020-08-07 12:14:58 +02001212 * @brief Merge 2 diff trees into each other.
1213 *
1214 * @param[in,out] diff_first Target diff first sibling to merge into.
1215 * @param[in] diff_parent Target diff parent to merge into.
1216 * @param[in] src_sibling Source diff sibling to merge.
1217 * @param[in] diff_cb Optional diff callback that will be called for every changed node.
1218 * @param[in] cb_data Arbitrary callback data.
1219 * @return LY_SUCCESS on success,
1220 * @return LY_ERR on error.
1221 */
1222LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling,
Radek Krejci0f969882020-08-21 16:56:47 +02001223 lyd_diff_cb diff_cb, void *cb_data);
Michal Vasko04f85912020-08-07 12:14:58 +02001224
1225/**
Michal Vaskoe6323f62020-07-09 15:49:02 +02001226 * @brief Merge 2 diffs into each other.
1227 *
Michal Vaskoe6323f62020-07-09 15:49:02 +02001228 * @param[in,out] diff Target diff to merge into.
Michal Vaskofb737aa2020-08-06 13:53:53 +02001229 * @param[in] src_diff Source diff.
Michal Vaskoe6323f62020-07-09 15:49:02 +02001230 * @return LY_SUCCESS on success,
1231 * @return LY_ERR on error.
1232 */
Michal Vaskofb737aa2020-08-06 13:53:53 +02001233LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff);
Michal Vaskoe6323f62020-07-09 15:49:02 +02001234
1235/**
Michal Vasko4231fb62020-07-13 13:54:47 +02001236 * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create,
1237 * or move from place A to B to move from B to A and so on.
1238 *
1239 * @param[in] src_diff Diff to reverse.
1240 * @param[out] diff Reversed diff.
1241 * @return LY_SUCCESS on success.
1242 * @return LY_ERR on error.
1243 */
Michal Vasko3a41dff2020-07-15 14:30:28 +02001244LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff);
Michal Vasko4231fb62020-07-13 13:54:47 +02001245
1246/**
Michal Vasko4490d312020-06-16 13:08:55 +02001247 * @brief Find the target in data of a compiled ly_path structure (instance-identifier).
1248 *
1249 * @param[in] path Compiled path structure.
Michal Vaskof03ed032020-03-04 13:31:44 +01001250 * @param[in] tree Data tree to be searched.
Michal Vasko4490d312020-06-16 13:08:55 +02001251 * @return Found target node,
1252 * @return NULL if not found.
Radek Krejci576b23f2019-07-12 14:06:32 +02001253 */
Michal Vasko004d3152020-06-11 19:59:22 +02001254const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree);
Radek Krejci084289f2019-07-09 17:35:30 +02001255
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001256/**
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001257 * @brief Types of the different data paths.
1258 */
1259typedef enum {
Michal Vasko14654712020-02-06 08:35:21 +01001260 LYD_PATH_LOG, /**< Descriptive path format used in log messages */
Michal Vasko790b2bc2020-08-03 13:35:06 +02001261 LYD_PATH_LOG_NO_LAST_PRED, /**< Similar to ::LYD_PATH_LOG except there is never a predicate on the last node */
Michal Vasko5ec7cda2019-09-11 13:43:08 +02001262} LYD_PATH_TYPE;
1263
1264/**
1265 * @brief Generate path of the given node in the requested format.
1266 *
1267 * @param[in] node Schema path of this node will be generated.
1268 * @param[in] pathtype Format of the path to generate.
1269 * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path.
1270 * If NULL, memory for the complete path is allocated.
1271 * @param[in] buflen Size of the provided @p buffer.
1272 * @return NULL in case of memory allocation error, path of the node otherwise.
1273 * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it.
1274 */
1275char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen);
1276
Michal Vaskoe444f752020-02-10 12:20:06 +01001277/**
Michal Vasko25a32822020-07-09 15:48:22 +02001278 * @brief Find a specific metadata.
1279 *
1280 * @param[in] first First metadata to consider.
1281 * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix.
1282 * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set.
1283 * @return Found metadata,
1284 * @return NULL if not found.
1285 */
1286struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name);
1287
1288/**
Michal Vaskoda859032020-07-14 12:20:14 +02001289 * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value.
Michal Vaskoe444f752020-02-10 12:20:06 +01001290 * Uses hashes - should be used whenever possible for best performance.
1291 *
1292 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1293 * @param[in] target Target node to find.
Michal Vasko9b368d32020-02-14 13:53:31 +01001294 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001295 * @return LY_SUCCESS on success, @p match set.
1296 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1297 * @return LY_ERR value if another error occurred.
1298 */
1299LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match);
1300
1301/**
Michal Vaskoe444f752020-02-10 12:20:06 +01001302 * @brief Search in the given siblings for the first schema instance.
1303 * Uses hashes - should be used whenever possible for best performance.
1304 *
1305 * @param[in] siblings Siblings to search in including preceding and succeeding nodes.
1306 * @param[in] schema Schema node of the data node to find.
Michal Vaskob104f112020-07-17 09:54:54 +02001307 * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many
1308 * instances, it can be set based on the type of @p schema:
Michal Vaskoe444f752020-02-10 12:20:06 +01001309 * LYS_LEAFLIST:
1310 * Searched instance value.
1311 * LYS_LIST:
Michal Vasko90932a92020-02-12 14:33:03 +01001312 * Searched instance key values in the form of "[key1='val1'][key2='val2']...".
1313 * The keys do not have to be ordered but all of them must be set.
1314 *
1315 * Note that any explicit values (leaf-list or list key values) will be canonized first
1316 * before comparison. But values that do not have a canonical value are expected to be in the
1317 * JSON format!
Michal Vaskof03ed032020-03-04 13:31:44 +01001318 * @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 +01001319 * @param[out] match Can be NULL, otherwise the found data node.
Michal Vaskoe444f752020-02-10 12:20:06 +01001320 * @return LY_SUCCESS on success, @p match set.
1321 * @return LY_ENOTFOUND if not found, @p match set to NULL.
1322 * @return LY_EINVAL if @p schema is a key-less list.
1323 * @return LY_ERR value if another error occurred.
1324 */
1325LY_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 +02001326 size_t val_len, struct lyd_node **match);
Michal Vaskoe444f752020-02-10 12:20:06 +01001327
Michal Vaskoccc02342020-05-21 10:09:21 +02001328/**
1329 * @brief Search in the given data for instances of nodes matching the provided XPath.
1330 *
Michal Vaskob104f112020-07-17 09:54:54 +02001331 * The expected format of the expression is ::LYD_JSON, meaning the first node in every path
Michal Vasko61ac2f62020-05-25 12:39:51 +02001332 * must have its module name as prefix or be the special `*` value for all the nodes.
1333 *
Michal Vasko19a30602020-05-25 10:40:19 +02001334 * If a list instance is being selected with all its key values specified (but not necessarily ordered)
1335 * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form
1336 * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity
1337 * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones.
1338 *
Michal Vaskoccc02342020-05-21 10:09:21 +02001339 * @param[in] ctx_node XPath context node.
1340 * @param[in] xpath Data XPath expression filtering the matching nodes. ::LYD_JSON format is expected.
1341 * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean,
1342 * the returned set is empty.
1343 * @return LY_SUCCESS on success, @p set is returned.
1344 * @return LY_ERR value if an error occurred.
1345 */
1346LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set);
1347
Radek Krejcie7b95092019-05-15 11:03:07 +02001348#ifdef __cplusplus
1349}
1350#endif
1351
1352#endif /* LY_TREE_DATA_H_ */