blob: 4db32c12d6bbc5df767723bbfb4293fc1a7cb16e [file] [log] [blame]
Michal Vasko2d162e12015-09-24 14:33:29 +02001/**
Radek Krejciaa429e42015-10-09 15:52:37 +02002 * @file tree_data.h
Michal Vasko2d162e12015-09-24 14:33:29 +02003 * @author Radek Krejci <rkrejci@cesnet.cz>
Radek Krejciaa429e42015-10-09 15:52:37 +02004 * @brief libyang representation of data trees.
Michal Vasko2d162e12015-09-24 14:33:29 +02005 *
6 * Copyright (c) 2015 CESNET, z.s.p.o.
7 *
Radek Krejci54f6fb32016-02-24 12:56:39 +01008 * 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
Michal Vasko8de098c2016-02-26 10:00:25 +010011 *
Radek Krejci54f6fb32016-02-24 12:56:39 +010012 * https://opensource.org/licenses/BSD-3-Clause
Michal Vasko2d162e12015-09-24 14:33:29 +020013 */
14
15#ifndef LY_TREE_DATA_H_
16#define LY_TREE_DATA_H_
17
18#include <stddef.h>
19#include <stdint.h>
20
Michal Vaskofcd974b2017-08-22 10:17:49 +020021#include "libyang.h"
Mislav Novakovice251a652015-09-29 08:40:12 +020022#include "tree_schema.h"
Radek Krejcidef50022016-02-01 16:38:32 +010023#include "xml.h"
Mislav Novakovice251a652015-09-29 08:40:12 +020024
Michal Vasko2d162e12015-09-24 14:33:29 +020025#ifdef __cplusplus
26extern "C" {
27#endif
28
29/**
Radek Krejcidef50022016-02-01 16:38:32 +010030 * @defgroup datatree Data Tree
Michal Vasko2d162e12015-09-24 14:33:29 +020031 * @{
Radek Krejcidef50022016-02-01 16:38:32 +010032 *
33 * Data structures and functions to manipulate and access instance data tree.
Michal Vasko2d162e12015-09-24 14:33:29 +020034 */
35
36/**
Radek Krejcidef50022016-02-01 16:38:32 +010037 * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and
38 * [printer](@ref howtodataprinters) functions.
Michal Vasko2d162e12015-09-24 14:33:29 +020039 */
40typedef enum {
41 LYD_UNKNOWN, /**< unknown format, used as return value in case of error */
42 LYD_XML, /**< XML format of the instance data */
43 LYD_JSON, /**< JSON format of the instance data */
44} LYD_FORMAT;
45
46/**
Radek Krejci45826012016-08-24 15:07:57 +020047 * @brief List of possible value types stored in ::lyd_node_anydata.
48 */
49typedef enum {
Radek Krejci83bf1402016-09-27 15:05:20 +020050 LYD_ANYDATA_CONSTSTRING = 0x00, /**< value is constant string (const char *) which is internally duplicated for
51 storing in the anydata structure; XML sensitive characters (such as & or \>)
Radek Krejcie534c132016-11-23 13:32:31 +010052 are automatically escaped when the anydata is printed in XML format. */
Radek Krejci83bf1402016-09-27 15:05:20 +020053 LYD_ANYDATA_STRING = 0x01, /**< value is dynamically allocated string (char*), so the data are used directly
54 without duplication and caller is supposed to not manipulate with the data
55 after a successful call (including calling free() on the provided data); XML
56 sensitive characters (such as & or \>) are automatically escaped when the
57 anydata is printed in XML format */
58 LYD_ANYDATA_JSON = 0x02, /**< value is string containing the data modeled by YANG and encoded as I-JSON. The
59 string is handled as constant string. In case of using the value as input
60 parameter, the #LYD_ANYDATA_JSOND can be used for dynamically allocated
61 string. */
62 LYD_ANYDATA_JSOND = 0x03, /**< In case of using value as input parameter, this enumeration is supposed to be
63 used for dynamically allocated strings (it is actually combination of
64 #LYD_ANYDATA_JSON and #LYD_ANYDATA_STRING (and it can be also specified as
65 ORed value of the mentioned values. */
66 LYD_ANYDATA_SXML = 0x04, /**< value is string containing the serialized XML data. The string is handled as
67 constant string. In case of using the value as input parameter, the
68 #LYD_ANYDATA_SXMLD can be used for dynamically allocated string. */
69 LYD_ANYDATA_SXMLD = 0x05, /**< In case of using serialized XML value as input parameter, this enumeration is
70 supposed to be used for dynamically allocated strings (it is actually
71 combination of #LYD_ANYDATA_SXML and #LYD_ANYDATA_STRING (and it can be also
72 specified as ORed value of the mentioned values). */
73 LYD_ANYDATA_XML = 0x08, /**< value is struct lyxml_elem*, the structure is directly connected into the
74 anydata node without duplication, caller is supposed to not manipulate with the
75 data after a successful call (including calling lyxml_free() on the provided
76 data) */
77 LYD_ANYDATA_DATATREE = 0x10, /**< value is struct lyd_node* (first sibling), the structure is directly connected
78 into the anydata node without duplication, caller is supposed to not manipulate
79 with the data after a successful call (including calling lyd_free() on the
80 provided data) */
Radek Krejci45826012016-08-24 15:07:57 +020081} LYD_ANYDATA_VALUETYPE;
82
83/**
Michal Vasko2d162e12015-09-24 14:33:29 +020084 * @brief node's value representation
85 */
86typedef union lyd_value_u {
87 const char *binary; /**< base64 encoded, NULL terminated string */
Michal Vasko8ea2b7f2015-09-29 14:30:53 +020088 struct lys_type_bit **bit; /**< bitmap of pointers to the schema definition of the bit value that are set,
89 its size is always the number of defined bits in the schema */
Radek Krejci489773c2015-12-17 13:20:03 +010090 int8_t bln; /**< 0 as false, 1 as true */
Michal Vasko2d162e12015-09-24 14:33:29 +020091 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
92 struct lys_type_enum *enm; /**< pointer to the schema definition of the enumeration value */
Michal Vasko8ea2b7f2015-09-29 14:30:53 +020093 struct lys_ident *ident; /**< pointer to the schema definition of the identityref value */
Radek Krejci40f17b92016-02-03 14:30:43 +010094 struct lyd_node *instance; /**< pointer to the instance-identifier target, note that if the tree was modified,
95 the target (address) can be invalid - the pointer is correctly checked and updated
96 by lyd_validate() */
Michal Vasko2d162e12015-09-24 14:33:29 +020097 int8_t int8; /**< 8-bit signed integer */
98 int16_t int16; /**< 16-bit signed integer */
99 int32_t int32; /**< 32-bit signed integer */
100 int64_t int64; /**< 64-bit signed integer */
101 struct lyd_node *leafref; /**< pointer to the referenced leaf/leaflist instance in data tree */
102 const char *string; /**< string */
103 uint8_t uint8; /**< 8-bit unsigned integer */
104 uint16_t uint16; /**< 16-bit signed integer */
105 uint32_t uint32; /**< 32-bit signed integer */
106 uint64_t uint64; /**< 64-bit signed integer */
Michal Vaskoc6cd3f02018-03-02 14:07:42 +0100107 void *ptr; /**< arbitrary data stored using a type plugin */
Michal Vasko2d162e12015-09-24 14:33:29 +0200108} lyd_val;
109
110/**
Radek Krejcia571d942017-02-24 09:26:49 +0100111 * @brief Attribute structure.
112 *
113 * The structure provides information about attributes of a data element. Such attributes must map to
114 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
115 * and edit-config's operation attributes. In XML, they are represented as standard XML attrbutes. In JSON,
116 * they are represented as JSON elements starting with the '@' character (for more information, see the
117 * YANG metadata RFC.
118 *
119 */
120struct lyd_attr {
121 struct lyd_node *parent; /**< data node where the attribute is placed */
122 struct lyd_attr *next; /**< pointer to the next attribute of the same element */
123 struct lys_ext_instance_complex *annotation; /**< pointer to the attribute/annotation's definition */
124 const char *name; /**< attribute name */
125 const char *value_str; /**< string representation of value (for comparison, printing,...), always corresponds to value_type */
126 lyd_val value; /**< node's value representation, always corresponds to schema->type.base */
Michal Vasko70bf8e52018-03-26 11:32:33 +0200127 LY_DATA_TYPE _PACKED value_type; /**< type of the value in the node, mainly for union to avoid repeating of type detection */
Michal Vasko101658e2018-06-05 15:05:54 +0200128 uint8_t value_flags; /**< value type flags */
Radek Krejcia571d942017-02-24 09:26:49 +0100129};
130
131/**
Radek Krejcica7efb72016-01-18 13:06:01 +0100132 * @defgroup validityflags Validity flags
133 * @ingroup datatree
134 *
135 * Validity flags for data nodes.
136 *
137 * @{
138 */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100139#define LYD_VAL_OK 0x00 /**< Node is successfully validated including whole subtree */
Radek Krejcica7efb72016-01-18 13:06:01 +0100140#define LYD_VAL_UNIQUE 0x01 /**< Unique value(s) changed, applicable only to ::lys_node_list data nodes */
Radek Krejcid788a522016-07-25 14:57:38 +0200141#define LYD_VAL_MAND 0x02 /**< Some child added/removed and it is needed to perform check for mandatory
142 node or min/max constraints of direct list/leaflist children, applicable only
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100143 to ::lys_node_list and ::lys_node_container data nodes, but if on any other node
144 except ::lys_node_leaflist, it means checking that data node for duplicities.
145 Additionally, it can be set on truly any node type and then status references
146 are checked for this node if flag #LYD_OPT_OBSOLETE is used. */
147#define LYD_VAL_LEAFREF 0x04 /**< Node is a leafref, which needs to be resolved (it is invalid, new possible
148 resolvent, or something similar) */
149#define LYD_VAL_INUSE 0x80 /**< Internal flag for note about various processing on data, should be used only
150 internally and removed before libyang returns the node to the caller */
Radek Krejcica7efb72016-01-18 13:06:01 +0100151/**
152 * @}
153 */
154
155/**
Michal Vasko2d162e12015-09-24 14:33:29 +0200156 * @brief Generic structure for a data node, directly applicable to the data nodes defined as #LYS_CONTAINER, #LYS_LIST
157 * and #LYS_CHOICE.
158 *
159 * Completely fits to containers and choices and is compatible (can be used interchangeably except the #child member)
160 * with all other lyd_node_* structures. All data nodes are provides as ::lyd_node structure by default.
161 * According to the schema's ::lys_node#nodetype member, the specific object is supposed to be cast to
Radek Krejcibf2abff2016-08-23 15:51:52 +0200162 * ::lyd_node_leaf_list or ::lyd_node_anydata structures. This structure fits only to #LYS_CONTAINER, #LYS_LIST and
Radek Krejcica7efb72016-01-18 13:06:01 +0100163 * #LYS_CHOICE values.
Michal Vasko2d162e12015-09-24 14:33:29 +0200164 *
165 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
166 */
167struct lyd_node {
168 struct lys_node *schema; /**< pointer to the schema definition of this node */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100169 uint8_t validity; /**< [validity flags](@ref validityflags) */
Michal Vaskoe77dc992017-01-18 12:09:42 +0100170 uint8_t dflt:1; /**< flag for implicit default node */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100171 uint8_t when_status:3; /**< bit for checking if the when-stmt condition is resolved - internal use only,
Radek Krejci03b71f72016-03-16 11:10:09 +0100172 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200173
174 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
175 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
176 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
177 never NULL. If there is no sibling node, pointer points to the node
178 itself. In case of the first node, this pointer points to the last
179 node in the list. */
180 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
Michal Vasko24affa02018-04-03 09:06:06 +0200181
182#ifdef LY_ENABLED_CACHE
183 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list) */
184 struct hash_table *ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
185#endif
186
Michal Vasko2d162e12015-09-24 14:33:29 +0200187 struct lyd_node *child; /**< pointer to the first child node \note Since other lyd_node_*
Radek Krejciee360892015-10-06 11:23:14 +0200188 structures represent end nodes, this member
Michal Vasko2d162e12015-09-24 14:33:29 +0200189 is replaced in those structures. Therefore, be careful with accessing
190 this member without having information about the node type from the schema's
191 ::lys_node#nodetype member. */
192};
193
194/**
Michal Vasko4c183312015-09-25 10:41:47 +0200195 * @brief Structure for data nodes defined as #LYS_LEAF or #LYS_LEAFLIST.
Michal Vasko2d162e12015-09-24 14:33:29 +0200196 *
Michal Vasko4c183312015-09-25 10:41:47 +0200197 * Extension for ::lyd_node structure. It replaces the ::lyd_node#child member by
198 * three new members (#value, #value_str and #value_type) to provide
199 * information about the value. The first five members (#schema, #attr, #next,
Michal Vasko2d162e12015-09-24 14:33:29 +0200200 * #prev and #parent) are compatible with the ::lyd_node's members.
201 *
202 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
203 */
Michal Vasko4c183312015-09-25 10:41:47 +0200204struct lyd_node_leaf_list {
Michal Vasko2d162e12015-09-24 14:33:29 +0200205 struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_leaflist
206 structure */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100207 uint8_t validity; /**< [validity flags](@ref validityflags) */
Michal Vaskoe77dc992017-01-18 12:09:42 +0100208 uint8_t dflt:1; /**< flag for implicit default node */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100209 uint8_t when_status:3; /**< bit for checking if the when-stmt condition is resolved - internal use only,
Radek Krejci03b71f72016-03-16 11:10:09 +0100210 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200211
212 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
213 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
214 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
215 never NULL. If there is no sibling node, pointer points to the node
216 itself. In case of the first node, this pointer points to the last
217 node in the list. */
218 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
219
Michal Vasko24affa02018-04-03 09:06:06 +0200220#ifdef LY_ENABLED_CACHE
221 uint32_t hash; /**< hash of this particular node (module name + schema name + string value if leaf-list) */
222#endif
223
Michal Vasko2d162e12015-09-24 14:33:29 +0200224 /* struct lyd_node *child; should be here, but is not */
225
226 /* leaflist's specific members */
Michal Vasko6a027702016-06-30 10:32:14 +0200227 const char *value_str; /**< string representation of value (for comparison, printing,...), always corresponds to value_type */
228 lyd_val value; /**< node's value representation, always corresponds to schema->type.base */
Michal Vasko70bf8e52018-03-26 11:32:33 +0200229 LY_DATA_TYPE _PACKED value_type; /**< type of the value in the node, mainly for union to avoid repeating of type detection */
Michal Vasko101658e2018-06-05 15:05:54 +0200230 uint8_t value_flags; /**< value type flags */
Michal Vasko2d162e12015-09-24 14:33:29 +0200231};
232
233/**
Michal Vasko101658e2018-06-05 15:05:54 +0200234 * @brief Flags for values
235 */
236#define LY_VALUE_UNRES 0x01 /**< flag for unresolved leafref or instance-identifier,
237 leafref - value union is filled as if being the target node's type,
238 instance-identifier - value union should not be accessed */
239#define LY_VALUE_USER 0x02 /**< flag for a user type stored value */
240/* 0x80 is reserveed for internal use */
241
242/**
Radek Krejcibf2abff2016-08-23 15:51:52 +0200243 * @brief Structure for data nodes defined as #LYS_ANYDATA or #LYS_ANYXML.
Michal Vasko2d162e12015-09-24 14:33:29 +0200244 *
245 * Extension for ::lyd_node structure - replaces the ::lyd_node#child member by new #value member. The first five
246 * members (#schema, #attr, #next, #prev and #parent) are compatible with the ::lyd_node's members.
247 *
248 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
249 */
Radek Krejcibf2abff2016-08-23 15:51:52 +0200250struct lyd_node_anydata {
251 struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_anydata
Michal Vasko2d162e12015-09-24 14:33:29 +0200252 structure */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100253 uint8_t validity; /**< [validity flags](@ref validityflags) */
Michal Vaskoe77dc992017-01-18 12:09:42 +0100254 uint8_t dflt:1; /**< flag for implicit default node */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100255 uint8_t when_status:3; /**< bit for checking if the when-stmt condition is resolved - internal use only,
Radek Krejci03b71f72016-03-16 11:10:09 +0100256 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200257
258 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
259 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
260 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
261 never NULL. If there is no sibling node, pointer points to the node
262 itself. In case of the first node, this pointer points to the last
263 node in the list. */
264 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
265
Michal Vasko24affa02018-04-03 09:06:06 +0200266#ifdef LY_ENABLED_CACHE
267 uint32_t hash; /**< hash of this particular node (module name + schema name) */
268#endif
269
Michal Vasko2d162e12015-09-24 14:33:29 +0200270 /* struct lyd_node *child; should be here, but is not */
271
272 /* anyxml's specific members */
Radek Krejci45826012016-08-24 15:07:57 +0200273 LYD_ANYDATA_VALUETYPE value_type;/**< type of the stored anydata value */
274 union {
275 const char *str; /**< string value, in case of printing as XML, characters like '<' or '&' are escaped */
276 struct lyxml_elem *xml; /**< xml tree */
277 struct lyd_node *tree; /**< libyang data tree, does not change the root's parent, so it is not possible
278 to get from the data tree into the anydata/anyxml */
279 } value;
Michal Vasko2d162e12015-09-24 14:33:29 +0200280};
281
282/**
Radek Krejci991a3962016-05-05 15:00:14 +0200283 * @brief list of possible types of differencies in #lyd_difflist
284 */
285typedef enum {
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200286 LYD_DIFF_END = 0, /**< end of the differences list */
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200287 LYD_DIFF_DELETED, /**< deleted node
288 - Node is present in the first tree, but not in the second tree.
289 - To make both trees the same the node in lyd_difflist::first can be deleted from the
290 first tree. The pointer at the same index in the lyd_difflist::second array is
Michal Vasko6407fca2018-04-24 09:44:11 +0200291 NULL.
292 - If the deleted node has some children, these do not appear in the resulting diff
293 separately. In other words, a deleted node is considered deleted with all
294 its children. */
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200295 LYD_DIFF_CHANGED, /**< value of a leaf or anyxml is changed, the lyd_difflist::first and lyd_difflist::second
296 points to the leaf/anyxml instances in the first and the second tree respectively. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200297 LYD_DIFF_MOVEDAFTER1, /**< user-ordered (leaf-)list item was moved.
298 - To make both trees the same, all #LYD_DIFF_MOVEDAFTER1 transactions must be applied
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200299 to the first tree in the strict order they appear in the difflist. The
300 lyd_difflist::first points to the first tree node being moved and the
301 lyd_difflist::second points to the first tree node after which the first node is
302 supposed to be moved. If the second pointer is NULL, the node is being moved into
303 the beginning as the first node of the (leaf-)list instances. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200304 LYD_DIFF_CREATED, /**< newly created node
305 - Node is present in the second tree, but not in the first tree.
306 - To make both trees the same the node in lyd_difflist::second is supposed to be
307 inserted (copied via lyd_dup()) into the node (as a child) at the same index in the
308 lyd_difflist::first array (where is its parent). If the lyd_difflist::first at the
Michal Vasko6407fca2018-04-24 09:44:11 +0200309 index is NULL, the missing node is top-level.
310 - If the created node has some children, these do not appear in the resulting diff
311 separately. In other words, a created node is considered created with all
312 its children. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200313 LYD_DIFF_MOVEDAFTER2 /**< similar to LYD_DIFF_MOVEDAFTER1, but this time the moved item is in the second tree.
314 This type is always used in combination with (as a successor of) #LYD_DIFF_CREATED
315 as an instruction to move the newly created node to a specific position. Note, that
316 due to applicability to the second tree, the meaning of lyd_difflist:first and
317 lyd_difflist:second is inverse in comparison to #LYD_DIFF_MOVEDAFTER1. The
318 lyd_difflist::second points to the (previously) created node in the second tree and
319 the lyd_difflist::first points to the predecessor node in the second tree. If the
320 predecessor is NULL, the node is supposed to bes the first sibling. */
Radek Krejci991a3962016-05-05 15:00:14 +0200321} LYD_DIFFTYPE;
322
323/**
324 * @brief Structure for the result of lyd_diff(), describing differences between two data trees.
325 */
326struct lyd_difflist {
327 LYD_DIFFTYPE *type; /**< array of the differences types, terminated by #LYD_DIFF_END value. */
328 struct lyd_node **first; /**< array of nodes in the first tree for the specific type of difference, see the
329 description of #LYD_DIFFTYPE values for more information. */
330 struct lyd_node **second;/**< array of nodes in the second tree for the specific type of difference, see the
331 description of #LYD_DIFFTYPE values for more information. */
332};
333
334/**
335 * @brief Free the result of lyd_diff(). It frees the structure of the lyd_diff() result, not the referenced nodes.
336 *
337 * @param[in] diff The lyd_diff() result to free.
338 */
339void lyd_free_diff(struct lyd_difflist *diff);
340
341/**
342 * @brief Compare two data trees and provide list of differences.
343 *
344 * Note, that the \p first and the \p second must have the same schema parent (or they must be top-level elements).
345 * In case of using #LYD_OPT_NOSIBLINGS, they both must be instances of the same schema node.
346 *
Radek Krejci913100d2016-05-09 17:23:51 +0200347 * Order of the resulting set follows these rules:
Radek Krejci22d2ca92016-05-17 16:23:51 +0200348 * - To change the first tree into the second tree, the resulting transactions are supposed to be applied in the order
349 * they appear in the result. First, the changed (#LYD_DIFF_CHANGED) nodes are described followed by the deleted
350 * (#LYD_DIFF_DELETED) nodes. Then, the moving of the user-ordered nodes present in both trees (#LYD_DIFF_MOVEDAFTER1)
351 * follows and the last transactions in the results are the newly created (#LYD_DIFF_CREATED) nodes. These nodes are
352 * supposed to be added as the last siblings, but in some case they can need additional move. In such a case, the
353 * #LYD_DIFF_MOVEDAFTER2 transactions can appear.
354 * - The order of the changed (#LYD_DIFF_CHANGED) and created (#LYD_DIFF_CREATED) follows the nodes order in the
355 * second tree - the current siblings are processed first and then the children are processed. Note, that this is
356 * actually not the BFS:
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200357 *
Radek Krejci913100d2016-05-09 17:23:51 +0200358 * 1 2
359 * / \ / \
360 * 3 4 7 8
361 * / \
362 * 5 6
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200363 *
Radek Krejci22d2ca92016-05-17 16:23:51 +0200364 * - The order of the deleted (#LYD_DIFF_DELETED) nodes is the DFS:
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200365 *
366 * 1 6
367 * / \ / \
368 * 2 5 7 8
369 * / \
370 * 3 4
Radek Krejci913100d2016-05-09 17:23:51 +0200371 *
372 * To change the first tree into the second one, it is necessary to follow the order of transactions described in
373 * the result. Note, that it is not possible just to use the transactions in the reverse order to transform the
374 * second tree into the first one. The transactions can be generalized (to be used on a different instance of the
375 * first tree) using lyd_path() to get identifiers for the nodes used in the transactions.
376 *
Radek Krejci9a6a5dd2016-05-05 15:56:24 +0200377 * @param[in] first The first (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are
Radek Krejci4c3bc112016-05-19 15:09:03 +0200378 * taken into comparison. If NULL, all the \p second nodes are supposed to be top level and they will
379 * be marked as #LYD_DIFF_CREATED.
Radek Krejci9a6a5dd2016-05-05 15:56:24 +0200380 * @param[in] second The second (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are
Radek Krejci4c3bc112016-05-19 15:09:03 +0200381 * taken into comparison. If NULL, all the \p first nodes will be marked as #LYD_DIFF_DELETED.
Radek Krejci99d737f2016-09-06 11:19:52 +0200382 * @param[in] options The @ref diffoptions are accepted.
Radek Krejci991a3962016-05-05 15:00:14 +0200383 * @return NULL on error, the list of differences on success. In case the trees are the same, the first item in the
Radek Krejci9a6a5dd2016-05-05 15:56:24 +0200384 * lyd_difflist::type array is #LYD_DIFF_END. The returned structure is supposed to be freed by lyd_free_diff().
Radek Krejci991a3962016-05-05 15:00:14 +0200385 */
386struct lyd_difflist *lyd_diff(struct lyd_node *first, struct lyd_node *second, int options);
387
388/**
Radek Krejci99d737f2016-09-06 11:19:52 +0200389 * @defgroup diffoptions Diff options
390 * @ingroup datatree
391 *
392 * @{
393 */
394/* LYD_DIFFOPT_NOSIBLINGS value is the same as LYD_OPT_NOSIBLINGS due to backward compatibility. The LYD_OPT_NOSIBLINGS
395 * was used previously as an option for lyd_diff(). */
396#define LYD_DIFFOPT_NOSIBLINGS 0x0800 /**< The both trees to diff have to instantiate the same schema node so only the
397 single subtree is compared. */
398#define LYD_DIFFOPT_WITHDEFAULTS 0x0001 /**< Take default nodes with their values into account and handle them as part
Michal Vaskoe6ff4282017-02-07 15:13:36 +0100399 of both trees. Summary of the modified behavior:
400 - deleted node is replaced with implicit default node - #LYD_DIFF_CHANGED instead delete
401 - created node replaces an implicit default node - #LYD_DIFF_CHANGED instead create
402 - in both cases even if the values match - #LYD_DIFF_CHANGED is still returned, because dlft flag was changed
403 Note that in this case, applying the resulting
Radek Krejci99d737f2016-09-06 11:19:52 +0200404 transactions on the first tree does not result to the exact second tree,
405 because instead of having implicit default nodes you are going to have
406 explicit default nodes. */
407/**@} diffoptions */
408
409/**
Michal Vasko50576712017-07-28 12:28:33 +0200410 * @brief Build data path (usable as path, see @ref howtoxpath) of the data node.
Radek Krejci6d538282016-05-05 14:24:12 +0200411 * @param[in] node Data node to be processed. Note that the node should be from a complete data tree, having a subtree
412 * (after using lyd_unlink()) can cause generating invalid paths.
413 * @return NULL on error, on success the buffer for the resulting path is allocated and caller is supposed to free it
414 * with free().
415 */
Michal Vasko5efa25c2017-01-10 11:34:30 +0100416char *lyd_path(const struct lyd_node *node);
417
418/**
Radek Krejcidef50022016-02-01 16:38:32 +0100419 * @defgroup parseroptions Data parser options
420 * @ingroup datatree
421 *
422 * Various options to change the data tree parsers behavior.
423 *
424 * Default behavior:
425 * - in case of XML, parser reads all data from its input (file, memory, XML tree) including the case of not well-formed
426 * XML document (multiple top-level elements) and if there is an unknown element, it is skipped including its subtree
427 * (see the next point). This can be changed by the #LYD_OPT_NOSIBLINGS option which make parser to read only a single
428 * tree (with a single root element) from its input.
429 * - parser silently ignores the data without a matching node in schema trees. If the caller want to stop
430 * parsing in case of presence of unknown data, the #LYD_OPT_STRICT can be used. The strict mode is useful for
431 * NETCONF servers, since NETCONF clients should always send data according to the capabilities announced by the server.
432 * On the other hand, the default non-strict mode is useful for clients receiving data from NETCONF server since
433 * clients are not required to understand everything the server does. Of course, the optimal strategy for clients is
434 * to use filtering to get only the required data. Having an unknown element of the known namespace is always an error.
435 * The behavior can be changed by #LYD_OPT_STRICT option.
436 * - using obsolete statements (status set to obsolete) just generates a warning, but the processing continues. The
437 * behavior can be changed by #LYD_OPT_OBSOLETE option.
438 * - parser expects that the provided data provides complete datastore content (both the configuration and state data)
439 * and performs data validation according to all YANG rules. This can be a problem in case of representing NETCONF's
440 * subtree filter data, edit-config's data or other type of data set - such data do not represent a complete data set
441 * and some of the validation rules can fail. Therefore there are other options (within lower 8 bits) to make parser
442 * to accept such a data.
Radek Krejcif3c218d2016-03-24 12:40:08 +0100443 * - when parser evaluates when-stmt condition to false, the constrained subtree is automatically removed. If the
444 * #LYD_OPT_NOAUTODEL is used, error is raised instead of silent auto delete. The option (and also this default
445 * behavior) takes effect only in case of #LYD_OPT_DATA or #LYD_OPT_CONFIG type of data.
Radek Krejcidef50022016-02-01 16:38:32 +0100446 * @{
447 */
448
449#define LYD_OPT_DATA 0x00 /**< Default type of data - complete datastore content with configuration as well as
Radek Krejci06f8bb92017-08-02 15:36:25 +0200450 state data. To handle possibly missing (but by default required) ietf-yang-library
451 data, use #LYD_OPT_DATA_NO_YANGLIB or #LYD_OPT_DATA_ADD_YANGLIB options. */
Radek Krejcidef50022016-02-01 16:38:32 +0100452#define LYD_OPT_CONFIG 0x01 /**< A configuration datastore - complete datastore without state data.
453 Validation modifications:
454 - status data are not allowed */
455#define LYD_OPT_GET 0x02 /**< Data content from a NETCONF reply message to the NETCONF \<get\> operation.
456 Validation modifications:
457 - mandatory nodes can be omitted
Michal Vasko62671b92017-01-02 13:08:57 +0100458 - leafrefs and instance-identifier resolution is allowed to fail
Michal Vaskoebf7df22017-03-28 16:08:07 +0200459 - list's keys/unique nodes are not required (so duplication is not checked)
460 - must and when evaluation skipped */
Radek Krejcidef50022016-02-01 16:38:32 +0100461#define LYD_OPT_GETCONFIG 0x04 /**< Data content from a NETCONF reply message to the NETCONF \<get-config\> operation
462 Validation modifications:
463 - mandatory nodes can be omitted
Michal Vasko62671b92017-01-02 13:08:57 +0100464 - leafrefs and instance-identifier resolution is allowed to fail
Radek Krejcidef50022016-02-01 16:38:32 +0100465 - list's keys/unique nodes are not required (so duplication is not checked)
Michal Vaskoebf7df22017-03-28 16:08:07 +0200466 - must and when evaluation skipped
Radek Krejcidef50022016-02-01 16:38:32 +0100467 - status data are not allowed */
468#define LYD_OPT_EDIT 0x08 /**< Content of the NETCONF \<edit-config\>'s config element.
469 Validation modifications:
470 - mandatory nodes can be omitted
Michal Vasko62671b92017-01-02 13:08:57 +0100471 - leafrefs and instance-identifier resolution is allowed to fail
Michal Vaskoebf7df22017-03-28 16:08:07 +0200472 - must and when evaluation skipped
Radek Krejcidef50022016-02-01 16:38:32 +0100473 - status data are not allowed */
Michal Vasko75250262017-02-09 15:36:13 +0100474#define LYD_OPT_RPC 0x10 /**< Data represents RPC or action input parameters. */
475#define LYD_OPT_RPCREPLY 0x20 /**< Data represents RPC or action output parameters (maps to NETCONF <rpc-reply> data). */
Radek Krejcidef50022016-02-01 16:38:32 +0100476#define LYD_OPT_NOTIF 0x40 /**< Data represents an event notification data. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100477#define LYD_OPT_NOTIF_FILTER 0x80 /**< Data represents a filtered event notification data.
478 Validation modification:
479 - the only requirement is that the data tree matches the schema tree */
PavolVican832f5432018-02-21 00:54:45 +0100480#define LYD_OPT_TYPEMASK 0x10000ff /**< Mask to filter data type options. Always only a single data type option (only
481 single bit from the lower 8 bits) can be set. */
Radek Krejcidef50022016-02-01 16:38:32 +0100482
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100483/* 0x100 reserved, used internally */
484#define LYD_OPT_STRICT 0x0200 /**< Instead of silent ignoring data without schema definition, raise an error. */
485#define LYD_OPT_DESTRUCT 0x0400 /**< Free the provided XML tree during parsing the data. With this option, the
Radek Krejci06f8bb92017-08-02 15:36:25 +0200486 provided XML tree is affected and all successfully parsed data are freed.
Radek Krejcidef50022016-02-01 16:38:32 +0100487 This option is applicable only to lyd_parse_xml() function. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100488#define LYD_OPT_OBSOLETE 0x0800 /**< Raise an error when an obsolete statement (status set to obsolete) is used. */
489#define LYD_OPT_NOSIBLINGS 0x1000 /**< Parse only a single XML tree from the input. This option applies only to
Radek Krejcidef50022016-02-01 16:38:32 +0100490 XML input data. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100491#define LYD_OPT_TRUSTED 0x2000 /**< Data comes from a trusted source and it is not needed to validate them. Data
Radek Krejci93fab982016-02-03 15:58:19 +0100492 are connected with the schema, but the most validation checks (mandatory nodes,
Michal Vaskod7f9bda2018-03-16 12:33:35 +0100493 list instance uniqueness, etc.) are not performed. This option does not make
494 sense for lyd_validate() so it is ignored by this function. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100495#define LYD_OPT_NOAUTODEL 0x4000 /**< Avoid automatic delete of subtrees with false when-stmt condition. The flag is
Michal Vasko75250262017-02-09 15:36:13 +0100496 applicable only in combination with #LYD_OPT_DATA and #LYD_OPT_CONFIG flags.
Radek Krejci03b71f72016-03-16 11:10:09 +0100497 If used, libyang generates validation error instead of silently removing the
498 constrained subtree. */
Michal Vasko3cfa3182017-01-17 10:00:58 +0100499#define LYD_OPT_NOEXTDEPS 0x8000 /**< Allow external dependencies (external leafrefs, instance-identifiers, must,
Michal Vaskof6aa8612017-03-02 10:52:44 +0100500 and when) to not be resolved/satisfied during validation. */
Radek Krejci06f8bb92017-08-02 15:36:25 +0200501#define LYD_OPT_DATA_NO_YANGLIB 0x10000 /**< Ignore (possibly) missing ietf-yang-library data. Applicable only with #LYD_OPT_DATA. */
502#define LYD_OPT_DATA_ADD_YANGLIB 0x20000 /**< Add missing ietf-yang-library data into the validated data tree. Applicable
503 only with #LYD_OPT_DATA. If some ietf-yang-library data are present, they are
504 preserved and option is ignored. */
PavolVican832f5432018-02-21 00:54:45 +0100505#define LYD_OPT_DATA_TEMPLATE 0x1000000 /**< Data represents YANG data template. */
Radek Krejcidef50022016-02-01 16:38:32 +0100506
507/**@} parseroptions */
508
509/**
Michal Vasko299f9832017-01-06 13:29:22 +0100510 * @brief Parse (and validate) data from memory.
Radek Krejcidef50022016-02-01 16:38:32 +0100511 *
512 * In case of LY_XML format, the data string is parsed completely. It means that when it contains
513 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
514 * returned data node is a root of the first tree with other trees connected via the next pointer.
515 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
516 *
517 * @param[in] ctx Context to connect with the data tree being built here.
518 * @param[in] data Serialized data in the specified format.
519 * @param[in] format Format of the input data to be parsed.
520 * @param[in] options Parser options, see @ref parseroptions.
Michal Vasko6b44d712016-09-12 16:25:46 +0200521 * @param[in] ... Variable arguments depend on \p options. If they include:
522 * - #LYD_OPT_DATA:
523 * - #LYD_OPT_CONFIG:
524 * - #LYD_OPT_GET:
525 * - #LYD_OPT_GETCONFIG:
526 * - #LYD_OPT_EDIT:
527 * - no variable arguments expected.
528 * - #LYD_OPT_RPC:
529 * - #LYD_OPT_NOTIF:
530 * - struct lyd_node *data_tree - additional data tree that will be used
531 * when checking any "when" or "must" conditions in the parsed tree that require
532 * some nodes outside their subtree. It must be a list of top-level elements!
533 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200534 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
535 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200536 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200537 * when checking any "when" or "must" conditions in the parsed tree that require
538 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100539 * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure,
540 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
541 * #ly_errno contains appropriate error code (see #LY_ERR).
542 */
Radek Krejci722b0072016-02-01 17:09:45 +0100543struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options, ...);
Radek Krejcidef50022016-02-01 16:38:32 +0100544
545/**
Michal Vasko299f9832017-01-06 13:29:22 +0100546 * @brief Read (and validate) data from the given file descriptor.
Radek Krejcidef50022016-02-01 16:38:32 +0100547 *
548 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
549 *
550 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
551 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
552 * returned data node is a root of the first tree with other trees connected via the next pointer.
553 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
554 *
555 * @param[in] ctx Context to connect with the data tree being built here.
556 * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format.
557 * @param[in] format Format of the input data to be parsed.
558 * @param[in] options Parser options, see @ref parseroptions.
Michal Vasko6b44d712016-09-12 16:25:46 +0200559 * @param[in] ... Variable arguments depend on \p options. If they include:
560 * - #LYD_OPT_DATA:
561 * - #LYD_OPT_CONFIG:
562 * - #LYD_OPT_GET:
563 * - #LYD_OPT_GETCONFIG:
564 * - #LYD_OPT_EDIT:
565 * - no variable arguments expected.
566 * - #LYD_OPT_RPC:
567 * - #LYD_OPT_NOTIF:
568 * - struct lyd_node *data_tree - additional data tree that will be used
569 * when checking any "when" or "must" conditions in the parsed tree that require
570 * some nodes outside their subtree. It must be a list of top-level elements!
571 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200572 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
573 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200574 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200575 * when checking any "when" or "must" conditions in the parsed tree that require
576 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100577 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
578 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
579 * #ly_errno contains appropriate error code (see #LY_ERR).
580 */
581struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options, ...);
582
583/**
Michal Vasko299f9832017-01-06 13:29:22 +0100584 * @brief Read (and validate) data from the given file path.
Radek Krejcidef50022016-02-01 16:38:32 +0100585 *
586 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
587 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
588 * returned data node is a root of the first tree with other trees connected via the next pointer.
589 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
590 *
591 * @param[in] ctx Context to connect with the data tree being built here.
592 * @param[in] path Path to the file containing the data tree in the specified format.
593 * @param[in] format Format of the input data to be parsed.
594 * @param[in] options Parser options, see @ref parseroptions.
Michal Vasko6b44d712016-09-12 16:25:46 +0200595 * @param[in] ... Variable arguments depend on \p options. If they include:
596 * - #LYD_OPT_DATA:
597 * - #LYD_OPT_CONFIG:
598 * - #LYD_OPT_GET:
599 * - #LYD_OPT_GETCONFIG:
600 * - #LYD_OPT_EDIT:
601 * - no variable arguments expected.
602 * - #LYD_OPT_RPC:
603 * - #LYD_OPT_NOTIF:
604 * - struct lyd_node *data_tree - additional data tree that will be used
605 * when checking any "when" or "must" conditions in the parsed tree that require
606 * some nodes outside their subtree. It must be a list of top-level elements!
607 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200608 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
609 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200610 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200611 * when checking any "when" or "must" conditions in the parsed tree that require
612 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100613 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
614 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
615 * #ly_errno contains appropriate error code (see #LY_ERR).
616 */
617struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options, ...);
618
619/**
Michal Vasko299f9832017-01-06 13:29:22 +0100620 * @brief Parse (and validate) XML tree.
Radek Krejcidef50022016-02-01 16:38:32 +0100621 *
622 * The output data tree is parsed from the given XML tree previously parsed by one of the
623 * lyxml_read* functions.
624 *
Radek Krejci722b0072016-02-01 17:09:45 +0100625 * If there are some sibling elements of the \p root (data were read with #LYXML_PARSE_MULTIROOT option
Radek Krejcidef50022016-02-01 16:38:32 +0100626 * or the provided root is a root element of a subtree), all the sibling nodes (previous as well as
627 * following) are processed as well. The returned data node is a root of the first tree with other
628 * trees connected via the next pointer. This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
629 *
630 * When the function is used with #LYD_OPT_DESTRUCT, all the successfully parsed data including the
631 * XML \p root and all its siblings (if #LYD_OPT_NOSIBLINGS is not used) are freed. Only with
632 * #LYD_OPT_DESTRUCT option the \p root pointer is changed - if all the data are parsed, it is set
633 * to NULL, otherwise it will hold the XML tree without the successfully parsed elements.
634 *
635 * The context must be the same as the context used to parse XML tree by lyxml_read* function.
636 *
637 * @param[in] ctx Context to connect with the data tree being built here.
638 * @param[in,out] root XML tree to parse (convert) to data tree. By default, parser do not change the XML tree. However,
639 * when #LYD_OPT_DESTRUCT is specified in \p options, parser frees all successfully parsed data.
640 * @param[in] options Parser options, see @ref parseroptions.
Michal Vasko6b44d712016-09-12 16:25:46 +0200641 * @param[in] ... Variable arguments depend on \p options. If they include:
642 * - #LYD_OPT_DATA:
643 * - #LYD_OPT_CONFIG:
644 * - #LYD_OPT_GET:
645 * - #LYD_OPT_GETCONFIG:
646 * - #LYD_OPT_EDIT:
647 * - no variable arguments expected.
648 * - #LYD_OPT_RPC:
649 * - #LYD_OPT_NOTIF:
650 * - struct lyd_node *data_tree - additional data tree that will be used
651 * when checking any "when" or "must" conditions in the parsed tree that require
652 * some nodes outside their subtree. It must be a list of top-level elements!
653 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200654 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
655 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200656 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200657 * when checking any "when" or "must" conditions in the parsed tree that require
658 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100659 * @return Pointer to the built data tree or NULL in case of empty \p root. To free the returned structure,
660 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
661 * #ly_errno contains appropriate error code (see #LY_ERR).
662 */
663struct lyd_node *lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options,...);
664
665/**
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200666 * @brief Create a new container node in a data tree.
667 *
Michal Vasko299f9832017-01-06 13:29:22 +0100668 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
669 *
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200670 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
Radek Krejciee360892015-10-06 11:23:14 +0200671 * @param[in] module Module with the node being created.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200672 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_LIST,
Michal Vasko945b96b2016-10-18 11:49:12 +0200673 * #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
Michal Vasko1dca6882015-10-22 14:29:42 +0200674 * @return New node, NULL on error.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200675 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100676struct lyd_node *lyd_new(struct lyd_node *parent, const struct lys_module *module, const char *name);
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200677
678/**
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200679 * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to
680 * the actual value.
681 *
Michal Vasko299f9832017-01-06 13:29:22 +0100682 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
683 *
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200684 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
Radek Krejciee360892015-10-06 11:23:14 +0200685 * @param[in] module Module with the node being created.
686 * @param[in] name Schema node name of the new data node.
Michal Vasko3e671b52015-10-23 16:23:15 +0200687 * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST
688 * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces).
Michal Vasko1dca6882015-10-22 14:29:42 +0200689 * @return New node, NULL on error.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200690 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100691struct lyd_node *lyd_new_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name,
Michal Vasko3e671b52015-10-23 16:23:15 +0200692 const char *val_str);
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200693
694/**
Radek Krejcib9b4d002016-01-18 13:08:51 +0100695 * @brief Change value of a leaf node.
696 *
Michal Vasko299f9832017-01-06 13:29:22 +0100697 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
698 *
Radek Krejcib9b4d002016-01-18 13:08:51 +0100699 * Despite the prototype allows to provide a leaflist node as \p leaf parameter, only leafs are accepted.
Michal Vasko2da8e042018-05-25 11:10:13 +0200700 * Also, the leaf will never be default after calling this function successfully.
Radek Krejcib9b4d002016-01-18 13:08:51 +0100701 *
702 * @param[in] leaf A leaf node to change.
703 * @param[in] val_str String form of the new value to be set to the \p leaf. In case the type is #LY_TYPE_INST
704 * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces).
Michal Vasko3c0eb752018-02-08 16:09:19 +0100705 * @return 0 if the leaf was changed successfully (either its value changed or at least its default flag was cleared),
706 * <0 on error,
707 * 1 if the (canonical) value matched the original one and no value neither default flag change occured.
Radek Krejcib9b4d002016-01-18 13:08:51 +0100708 */
709int lyd_change_leaf(struct lyd_node_leaf_list *leaf, const char *val_str);
710
711/**
Radek Krejci45826012016-08-24 15:07:57 +0200712 * @brief Create a new anydata or anyxml node in a data tree.
713 *
Michal Vasko299f9832017-01-06 13:29:22 +0100714 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
715 *
Radek Krejci45826012016-08-24 15:07:57 +0200716 * This function is supposed to be a replacement for the lyd_new_anyxml_str() and lyd_new_anyxml_xml().
Michal Vasko2d162e12015-09-24 14:33:29 +0200717 *
Michal Vasko2d162e12015-09-24 14:33:29 +0200718 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
Radek Krejciee360892015-10-06 11:23:14 +0200719 * @param[in] module Module with the node being created.
Radek Krejci45826012016-08-24 15:07:57 +0200720 * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node
721 * is created.
722 * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is
723 * determined according to the \p value_type parameter.
724 * @param[in] value_type Type of the provided data \p value.
Michal Vasko1dca6882015-10-22 14:29:42 +0200725 * @return New node, NULL on error.
Michal Vasko2d162e12015-09-24 14:33:29 +0200726 */
Radek Krejci45826012016-08-24 15:07:57 +0200727struct lyd_node *lyd_new_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name,
728 void *value, LYD_ANYDATA_VALUETYPE value_type);
Michal Vasko2d162e12015-09-24 14:33:29 +0200729
730/**
Michal Vasko945b96b2016-10-18 11:49:12 +0200731 * @brief Create a new container node in a data tree. Ignore RPC/action input nodes and instead use RPC/action output ones.
Michal Vasko0df122f2015-12-14 13:38:21 +0100732 *
Michal Vasko299f9832017-01-06 13:29:22 +0100733 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
734 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200735 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
736 * @param[in] module Module with the node being created.
Michal Vasko945b96b2016-10-18 11:49:12 +0200737 * @param[in] name Schema node name of the new data node. The node should only be #LYS_CONTAINER or #LYS_LIST,
738 * but accepted are also #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
Michal Vasko0df122f2015-12-14 13:38:21 +0100739 * @return New node, NULL on error.
740 */
Michal Vasko98a5a742016-05-11 11:02:56 +0200741struct lyd_node *lyd_new_output(struct lyd_node *parent, const struct lys_module *module, const char *name);
Michal Vasko50c0a872016-01-13 14:34:11 +0100742
743/**
Michal Vasko98a5a742016-05-11 11:02:56 +0200744 * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to
Michal Vasko945b96b2016-10-18 11:49:12 +0200745 * the actual value. Ignore RPC/action input nodes and instead use RPC/action output ones.
Michal Vasko50c0a872016-01-13 14:34:11 +0100746 *
Michal Vasko299f9832017-01-06 13:29:22 +0100747 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
748 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200749 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
750 * @param[in] module Module with the node being created.
751 * @param[in] name Schema node name of the new data node.
Michal Vasko50c0a872016-01-13 14:34:11 +0100752 * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST
753 * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces).
754 * @return New node, NULL on error.
755 */
Michal Vasko98a5a742016-05-11 11:02:56 +0200756struct lyd_node *lyd_new_output_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name,
757 const char *val_str);
Michal Vasko50c0a872016-01-13 14:34:11 +0100758
759/**
Michal Vasko945b96b2016-10-18 11:49:12 +0200760 * @brief Create a new anydata or anyxml node in a data tree. Ignore RPC/action input nodes and instead use
761 * RPC/action output ones.
Michal Vasko50c0a872016-01-13 14:34:11 +0100762 *
Michal Vasko299f9832017-01-06 13:29:22 +0100763 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
764 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200765 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
766 * @param[in] module Module with the node being created.
Radek Krejci45826012016-08-24 15:07:57 +0200767 * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node
768 * is created.
769 * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is
770 * determined according to the \p value_type parameter. Data are supposed to be dynamically allocated.
771 * Since it is directly attached into the created data node, caller is supposed to not manipulate with
772 * the data after a successful call (including calling free() on the provided data).
773 * @param[in] value_type Type of the provided data \p value.
Michal Vasko50c0a872016-01-13 14:34:11 +0100774 * @return New node, NULL on error.
775 */
Radek Krejci45826012016-08-24 15:07:57 +0200776struct lyd_node *lyd_new_output_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name,
777 void *value, LYD_ANYDATA_VALUETYPE value_type);
Michal Vasko0df122f2015-12-14 13:38:21 +0100778
779/**
PavolVican832f5432018-02-21 00:54:45 +0100780 * @brief Create a new yang-data template in a data tree. It creates container, which name is in third parameter.
781 *
782 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
783 *
784 * @param[in] module Module with the node being created.
785 * @param[in] name_template Yang-data template name. This name is used for searching of yang-data instance.
786 * @param[in] name Schema node name of the new data node. This node is container.
787 * @return New node, NULL on error.
788 */
789struct lyd_node *lyd_new_yangdata(const struct lys_module *module, const char *name_template, const char *name);
790
791/**
Michal Vaskof5299282016-03-16 13:32:02 +0100792 * @defgroup pathoptions Data path creation options
793 * @ingroup datatree
794 *
795 * Various options to change lyd_new_path() behavior.
796 *
797 * Default behavior:
Michal Vasko3c0eb752018-02-08 16:09:19 +0100798 * - if the target node already exists (and is not default), an error is returned.
Michal Vasko9db078d2016-03-23 11:08:51 +0100799 * - the whole path to the target node is created (with any missing parents) if necessary.
Michal Vasko2411b942016-03-23 13:50:03 +0100800 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
Michal Vaskof5299282016-03-16 13:32:02 +0100801 * @{
802 */
803
Michal Vasko3c0eb752018-02-08 16:09:19 +0100804#define LYD_PATH_OPT_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
805 default flag is changed, it is returned. If the target node exists and is not
806 a leaf or generally no change occurs in the \p data_tree, NULL is returned and no error set. */
Michal Vasko1fabbef2018-04-03 09:13:02 +0200807#define LYD_PATH_OPT_NOPARENT 0x02 /**< If any parents of the target node do not exist, return an error instead of implicitly creating them. */
Michal Vasko945b96b2016-10-18 11:49:12 +0200808#define LYD_PATH_OPT_OUTPUT 0x04 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only output ones. */
Michal Vasko6b293d12017-10-31 10:03:22 +0100809#define LYD_PATH_OPT_DFLT 0x08 /**< The created node (nodes, if also creating the parents) is a default one. If working with data tree of type #LYD_OPT_DATA, #LYD_OPT_CONFIG, #LYD_OPT_RPC, #LYD_OPT_RPCREPLY, or #LYD_OPT_NOTIF, this flag is never needed and therefore should not be used. However, if the tree is #LYD_OPT_GET, #LYD_OPT_GETCONFIG, or #LYD_OPT_EDIT, the default nodes are not created during validation and using this flag one can set them (see @ref howtodatawd). */
Michal Vaskof5299282016-03-16 13:32:02 +0100810
811/** @} pathoptions */
812
813/**
814 * @brief Create a new data node based on a simple XPath.
815 *
Michal Vasko299f9832017-01-06 13:29:22 +0100816 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
817 *
Michal Vasko8d18ef52016-04-06 12:21:46 +0200818 * The new node is normally inserted at the end, either as the last child of a parent or as the last sibling
819 * if working with top-level elements. However, when manipulating RPC input or output, schema ordering is
Michal Vasko98a5a742016-05-11 11:02:56 +0200820 * required and always guaranteed.
Michal Vasko58f74f12016-03-24 13:26:06 +0100821 *
Michal Vasko8c419642016-04-13 14:22:01 +0200822 * If \p path points to a list key and the list does not exist, the key value from the predicate is used
823 * and \p value is ignored.
824 *
Michal Vasko7800b242018-04-03 11:15:05 +0200825 * @param[in] data_tree Existing data tree to add to/modify (including siblings). If creating RPCs/actions, there
826 * should only be one RPC/action and either input or output, not both. Can be NULL.
Michal Vaskof5299282016-03-16 13:32:02 +0100827 * @param[in] ctx Context to use. Mandatory if \p data_tree is NULL.
Michal Vasko50576712017-07-28 12:28:33 +0200828 * @param[in] path Simple data path (see @ref howtoxpath). List nodes can have predicates, one for each list key
829 * in the correct order and with its value as well or using specific instance position, leaves and leaf-lists
Michal Vasko310bc582018-05-22 10:47:59 +0200830 * can have predicates too that have preference over \p value. When specifying an identityref value in a predicate,
831 * you MUST use the module name as the value prefix!
Radek Krejci45826012016-08-24 15:07:57 +0200832 * @param[in] value Value of the new leaf/lealf-list (const char*). If creating anydata or anyxml, the following
Michal Vasko50576712017-07-28 12:28:33 +0200833 * \p value_type parameter is required to be specified correctly. If creating nodes of other types, the
834 * parameter is ignored.
Radek Krejci45826012016-08-24 15:07:57 +0200835 * @param[in] value_type Type of the provided \p value parameter in case of creating anydata or anyxml node.
Michal Vaskof5299282016-03-16 13:32:02 +0100836 * @param[in] options Bitmask of options flags, see @ref pathoptions.
Michal Vasko8c419642016-04-13 14:22:01 +0200837 * @return First created (or updated with #LYD_PATH_OPT_UPDATE) node,
Michal Vasko17bb4902016-04-05 15:20:51 +0200838 * NULL if #LYD_PATH_OPT_UPDATE was used and the full path exists or the leaf original value matches \p value,
Michal Vasko72d35102016-03-31 10:03:38 +0200839 * NULL and ly_errno is set on error.
Michal Vaskof5299282016-03-16 13:32:02 +0100840 */
Radek Krejci45826012016-08-24 15:07:57 +0200841struct lyd_node *lyd_new_path(struct lyd_node *data_tree, struct ly_ctx *ctx, const char *path, void *value,
842 LYD_ANYDATA_VALUETYPE value_type, int options);
Michal Vaskof5299282016-03-16 13:32:02 +0100843
844/**
Michal Vaskoae5a53e2017-01-05 10:33:41 +0100845 * @brief Learn the relative instance position of a list or leaf-list within other instances of the
846 * same schema node.
847 *
848 * @param[in] node List or leaf-list to get the position of.
849 * @return 0 on error or positive integer of the instance position.
850 */
851unsigned int lyd_list_pos(const struct lyd_node *node);
852
853/**
Michal Vasko39dc8992018-04-03 11:32:00 +0200854 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same. Use carefully,
855 * since libyang silently creates default nodes, it is always better to use lyd_dup_withsiblings() to duplicate
856 * the complete data tree.
Michal Vasko2d162e12015-09-24 14:33:29 +0200857 *
Michal Vasko299f9832017-01-06 13:29:22 +0100858 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
Michal Vasko2f95fe62016-12-01 09:36:08 +0100859 *
Michal Vasko2d162e12015-09-24 14:33:29 +0200860 * @param[in] node Data tree node to be duplicated.
861 * @param[in] recursive 1 if all children are supposed to be also duplicated.
862 * @return Created copy of the provided data \p node.
863 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100864struct lyd_node *lyd_dup(const struct lyd_node *node, int recursive);
Michal Vasko2d162e12015-09-24 14:33:29 +0200865
866/**
Michal Vasko39dc8992018-04-03 11:32:00 +0200867 * @brief Create a copy of the specified data tree and all its siblings (preceding as well as following).
868 * Schema references are kept the same.
869 *
870 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
871 *
872 * @param[in] node Data tree sibling node to be duplicated.
873 * @param[in] recursive 1 if all children of all the siblings are supposed to be also duplicated.
874 * @return Created copy of the provided data \p node and all of its siblings.
875 */
876struct lyd_node *lyd_dup_withsiblings(const struct lyd_node *node, int recursive);
877
878/**
Radek Krejcia17c85c2017-01-06 12:22:34 +0100879 * @brief Create a copy of the specified data tree \p node in the different context. All the
880 * schema references and strings are re-mapped into the specified context.
881 *
882 * If the target context does not contain the schemas used in the source data tree, error
883 * is raised and the new data tree is not created.
884 *
885 * @param[in] node Data tree node to be duplicated.
886 * @param[in] recursive 1 if all children are supposed to be also duplicated.
887 * @param[in] ctx Target context for the duplicated data.
888 * @return Created copy of the provided data \p node.
889 */
890struct lyd_node *lyd_dup_to_ctx(const struct lyd_node *node, int recursive, struct ly_ctx *ctx);
891
892/**
Michal Vasko299f9832017-01-06 13:29:22 +0100893 * @brief Merge a (sub)tree into a data tree.
894 *
895 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
896 *
897 * Missing nodes are merged, leaf values updated.
Radek Krejci8f4eba52017-01-06 15:32:41 +0100898 *
Michal Vasko45fb2822016-04-18 13:32:17 +0200899 * If \p target and \p source do not share the top-level schema node, even if they
900 * are from different modules, \p source parents up to top-level node will be created and
901 * linked to the \p target (but only containers can be created this way, lists need keys,
902 * so if lists are missing, an error will be returned).
903 *
Radek Krejci2ffe9932017-01-06 16:29:47 +0100904 * If the source data tree is in a different context, the resulting data are placed into the context
905 * of the target tree.
Michal Vasko45fb2822016-04-18 13:32:17 +0200906 *
Michal Vaskocf6dc7e2016-04-18 16:00:37 +0200907 * @param[in] target Top-level (or an RPC output child) data tree to merge to. Must be valid.
Michal Vasko45fb2822016-04-18 13:32:17 +0200908 * @param[in] source Data tree to merge \p target with. Must be valid (at least as a subtree).
Radek Krejci2ffe9932017-01-06 16:29:47 +0100909 * @param[in] options Bitmask of the following option flags:
Michal Vasko0300b532016-09-14 12:16:02 +0200910 * - #LYD_OPT_DESTRUCT - spend \p source in the function, otherwise \p source is left untouched,
911 * - #LYD_OPT_NOSIBLINGS - merge only the \p source subtree (ignore siblings), otherwise merge
912 * \p source and all its succeeding siblings (preceeding ones are still ignored!),
913 * - #LYD_OPT_EXPLICIT - when merging an explicitly set node and a default node, always put
914 * the explicit node into \p target, otherwise the node which is in \p source is used.
Michal Vasko45fb2822016-04-18 13:32:17 +0200915 * @return 0 on success, nonzero in case of an error.
916 */
917int lyd_merge(struct lyd_node *target, const struct lyd_node *source, int options);
918
Radek Krejci2ffe9932017-01-06 16:29:47 +0100919/**
920 * @brief Same as lyd_merge(), but moves the resulting data into the specified context.
921 *
922 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
923 *
924 * @param[in] trg Top-level (or an RPC output child) data tree to merge to. Must be valid. If its context
925 * differs from the specified \p ctx of the result, the provided data tree is freed and the new
Radek Krejciab80e3a2017-01-09 13:07:31 +0100926 * tree in the required context is returned on success. To keep the \p trg tree, convert it to the
927 * target context using lyd_dup_to_ctx() and then call lyd_merge() instead of lyd_merge_to_ctx().
Radek Krejci2ffe9932017-01-06 16:29:47 +0100928 * @param[in] src Data tree to merge \p target with. Must be valid (at least as a subtree).
929 * @param[in] options Bitmask of the following option flags:
930 * - #LYD_OPT_DESTRUCT - spend \p source in the function, otherwise \p source is left untouched,
931 * - #LYD_OPT_NOSIBLINGS - merge only the \p source subtree (ignore siblings), otherwise merge
932 * \p source and all its succeeding siblings (preceeding ones are still ignored!),
933 * - #LYD_OPT_EXPLICIT - when merging an explicitly set node and a default node, always put
934 * the explicit node into \p target, otherwise the node which is in \p source is used.
935 * @param[in] ctx Target context in which the result will be created. Note that the successful merge requires to have
936 * all the used modules in the source and target data trees loaded in the target context.
937 * @return 0 on success, nonzero in case of an error.
938 */
939int lyd_merge_to_ctx(struct lyd_node **trg, const struct lyd_node *src, int options, struct ly_ctx *ctx);
940
Michal Vasko0300b532016-09-14 12:16:02 +0200941#define LYD_OPT_EXPLICIT 0x0100
942
Michal Vasko45fb2822016-04-18 13:32:17 +0200943/**
Michal Vasko2d162e12015-09-24 14:33:29 +0200944 * @brief Insert the \p node element as child to the \p parent element. The \p node is inserted as a last child of the
945 * \p parent.
946 *
Michal Vasko299f9832017-01-06 13:29:22 +0100947 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
948 *
Michal Vaskob6c51f12016-09-14 12:15:11 +0200949 * - if the node is part of some other tree, it is automatically unlinked.
950 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
951 * - if the key of a list is being inserted, it is placed into a correct position instead of being placed as the last
Radek Krejcia1c33bf2016-09-07 12:38:49 +0200952 * element.
Michal Vaskob6c51f12016-09-14 12:15:11 +0200953 * - if the target tree includes the default instance of the node being inserted, the default node is silently replaced
Michal Vasko3c126822016-09-22 13:48:42 +0200954 * by the new node.
955 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
956 * instance is silently replaced. If it contains the exact same default node, it is replaced as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +0200957 * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new
Radek Krejcifd0bcf02016-09-09 13:28:34 +0200958 * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards.
959 *
960 * Note that this function differs from lyd_insert_before() and lyd_insert_after() because the position of the
961 * node being inserted is determined automatically according to the rules described above. In contrast to
962 * lyd_insert_parent(), lyd_insert() can not be used for top-level elements since the \p parent parameter must not be
Michal Vasko3c126822016-09-22 13:48:42 +0200963 * NULL. If inserting something larger and not fitting the mentioned use-cases (or simply if unsure), you can always
964 * use lyd_merge(), it should be able to handle any situation.
Michal Vasko2d162e12015-09-24 14:33:29 +0200965 *
966 * @param[in] parent Parent node for the \p node being inserted.
967 * @param[in] node The node being inserted.
Michal Vasko24337392015-10-16 09:58:16 +0200968 * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place
Michal Vasko2d162e12015-09-24 14:33:29 +0200969 * in the data tree.
970 */
Michal Vasko24337392015-10-16 09:58:16 +0200971int lyd_insert(struct lyd_node *parent, struct lyd_node *node);
Michal Vasko2d162e12015-09-24 14:33:29 +0200972
973/**
Radek Krejcifd0bcf02016-09-09 13:28:34 +0200974 * @brief Insert the \p node element as a last sibling of the specified \p sibling element.
975 *
Michal Vasko299f9832017-01-06 13:29:22 +0100976 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
977 *
Michal Vaskob6c51f12016-09-14 12:15:11 +0200978 * - if the node is part of some other tree, it is automatically unlinked.
979 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
980 * - if the key of a list is being inserted, it is placed into a correct position instead of being placed as the last
Radek Krejcifd0bcf02016-09-09 13:28:34 +0200981 * element.
Michal Vaskob6c51f12016-09-14 12:15:11 +0200982 * - if the target tree includes the default instance of the node being inserted, the default node is silently replaced
Michal Vasko3c126822016-09-22 13:48:42 +0200983 * by the new node.
984 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
985 * instance is silently replaced. If it contains the exact same default node, it is replaced as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +0200986 * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new
987 * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards.
Radek Krejcifd0bcf02016-09-09 13:28:34 +0200988 *
989 * Note that this function differs from lyd_insert_before() and lyd_insert_after() because the position of the
990 * node being inserted is determined automatically as in the case of lyd_insert(). In contrast to lyd_insert(),
Michal Vasko3c126822016-09-22 13:48:42 +0200991 * lyd_insert_sibling() can be used to insert top-level elements. If inserting something larger and not fitting
992 * the mentioned use-cases (or simply if unsure), you can always use lyd_merge(), it should be able to handle
993 * any situation.
Radek Krejcifd0bcf02016-09-09 13:28:34 +0200994 *
995 * @param[in,out] sibling Sibling node as a reference where to insert the \p node. When function succeeds, the sibling
996 * is always set to point to the first sibling node. Note that in some cases described above, the provided sibling
997 * node could be removed from the tree.
998 * @param[in] node The node being inserted.
999 * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place
1000 * in the data tree.
1001 */
1002int lyd_insert_sibling(struct lyd_node **sibling, struct lyd_node *node);
1003
1004/**
Michal Vasko3f7dba12015-10-15 13:09:27 +02001005 * @brief Insert the \p node element after the \p sibling element. If \p node and \p siblings are already
Michal Vasko299f9832017-01-06 13:29:22 +01001006 * siblings (just moving \p node position).
1007 *
1008 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
Michal Vasko2d162e12015-09-24 14:33:29 +02001009 *
Michal Vaskob6c51f12016-09-14 12:15:11 +02001010 * - if the target tree includes the default instance of the node being inserted, the default node is silently removed.
Michal Vasko3c126822016-09-22 13:48:42 +02001011 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
1012 * instance is removed. If it contains the exact same default node, it is removed as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +02001013 * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new
1014 * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards.
1015 *
Michal Vasko2d162e12015-09-24 14:33:29 +02001016 * @param[in] sibling The data tree node before which the \p node will be inserted.
Radek Krejci20a5f292016-02-09 15:04:49 +01001017 * @param[in] node The data tree node to be inserted. If the node is connected somewhere, it is unlinked first.
Michal Vasko24337392015-10-16 09:58:16 +02001018 * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place
Michal Vasko2d162e12015-09-24 14:33:29 +02001019 * in the data tree.
1020 */
Michal Vasko24337392015-10-16 09:58:16 +02001021int lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
Michal Vasko2d162e12015-09-24 14:33:29 +02001022
1023/**
Radek Krejci20a5f292016-02-09 15:04:49 +01001024 * @brief Insert the \p node element after the \p sibling element. If \p node and \p siblings are already
Michal Vasko299f9832017-01-06 13:29:22 +01001025 * siblings (just moving \p node position).
1026 *
1027 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
Michal Vasko2d162e12015-09-24 14:33:29 +02001028 *
Michal Vaskob6c51f12016-09-14 12:15:11 +02001029 * - if the target tree includes the default instance of the node being inserted, the default node is silently removed.
Michal Vasko3c126822016-09-22 13:48:42 +02001030 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
1031 * instance is removed. If it contains the exact same default node, it is removed as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +02001032 * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new
1033 * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards.
1034 *
Michal Vasko3f7dba12015-10-15 13:09:27 +02001035 * @param[in] sibling The data tree node before which the \p node will be inserted. If \p node and \p siblings
Radek Krejcica7efb72016-01-18 13:06:01 +01001036 * are already siblings (just moving \p node position), skip validation.
Radek Krejci20a5f292016-02-09 15:04:49 +01001037 * @param[in] node The data tree node to be inserted. If the node is connected somewhere, it is unlinked first.
Michal Vasko24337392015-10-16 09:58:16 +02001038 * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place
Michal Vasko2d162e12015-09-24 14:33:29 +02001039 * in the data tree.
1040 */
Michal Vasko24337392015-10-16 09:58:16 +02001041int lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
1042
1043/**
Michal Vasko2411b942016-03-23 13:50:03 +01001044 * @brief Order siblings according to the schema node ordering.
1045 *
Michal Vasko299f9832017-01-06 13:29:22 +01001046 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1047 *
Michal Vasko58f74f12016-03-24 13:26:06 +01001048 * If the siblings include data nodes from other modules, they are
1049 * sorted based on the module order in the context.
1050 *
1051 * @param[in] sibling Node, whose siblings will be sorted.
1052 * @param[in] recursive Whether sort all siblings of siblings, recursively.
1053 * @return 0 on success, nonzero in case of an error.
Michal Vasko2411b942016-03-23 13:50:03 +01001054 */
Michal Vasko58f74f12016-03-24 13:26:06 +01001055int lyd_schema_sort(struct lyd_node *sibling, int recursive);
Michal Vasko2411b942016-03-23 13:50:03 +01001056
1057/**
Michal Vasko50576712017-07-28 12:28:33 +02001058 * @brief Search in the given data for instances of nodes matching the provided path.
Michal Vasko105cef12016-02-04 12:06:26 +01001059 *
Michal Vasko50576712017-07-28 12:28:33 +02001060 * Learn more about the path format on page @ref howtoxpath.
Michal Vasko105cef12016-02-04 12:06:26 +01001061 *
Michal Vasko50576712017-07-28 12:28:33 +02001062 * @param[in] ctx_node Path context node.
1063 * @param[in] path Data path expression filtering the matching nodes.
1064 * @return Set of found data nodes. If no nodes are matching \p path or the result
Michal Vasko105cef12016-02-04 12:06:26 +01001065 * would be a number, a string, or a boolean, the returned set is empty. In case of an error, NULL is returned.
1066 */
Michal Vasko50576712017-07-28 12:28:33 +02001067struct ly_set *lyd_find_path(const struct lyd_node *ctx_node, const char *path);
Michal Vasko105cef12016-02-04 12:06:26 +01001068
1069/**
Radek Krejcic5b6b912016-01-18 16:35:35 +01001070 * @brief Search in the given data for instances of the provided schema node.
1071 *
1072 * The \p data is used to find the data root and function then searches in the whole tree and all sibling trees.
1073 *
1074 * @param[in] data A node in the data tree to search.
1075 * @param[in] schema Schema node of the data nodes caller want to find.
Michal Vasko46a4bf92016-09-08 08:23:49 +02001076 * @return Set of found data nodes. If no data node is found, the returned set is empty.
Radek Krejcic5b6b912016-01-18 16:35:35 +01001077 * In case of error, NULL is returned.
1078 */
Michal Vaskof06fb5b2016-09-08 10:05:56 +02001079struct ly_set *lyd_find_instance(const struct lyd_node *data, const struct lys_node *schema);
Radek Krejcic5b6b912016-01-18 16:35:35 +01001080
1081/**
Radek Krejcid788a522016-07-25 14:57:38 +02001082 * @brief Get the first sibling of the given node.
1083 *
1084 * @param[in] node Node which first sibling is going to be the result.
1085 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
1086 */
1087struct lyd_node *lyd_first_sibling(struct lyd_node *node);
1088
1089/**
Michal Vasko24337392015-10-16 09:58:16 +02001090 * @brief Validate \p node data subtree.
1091 *
Michal Vaskodedea832016-04-19 11:24:45 +02001092 * @param[in,out] node Data tree to be validated. In case the \p options does not includes #LYD_OPT_NOAUTODEL, libyang
Michal Vaskob2f40be2016-09-08 16:03:48 +02001093 * can modify the provided tree including the root \p node.
Michal Vasko24337392015-10-16 09:58:16 +02001094 * @param[in] options Options for the inserting data to the target data tree options, see @ref parseroptions.
Michal Vaskocdb90172016-09-13 09:34:36 +02001095 * @param[in] var_arg Variable argument depends on \p options. If they include:
Michal Vasko6b44d712016-09-12 16:25:46 +02001096 * - #LYD_OPT_DATA:
1097 * - #LYD_OPT_CONFIG:
1098 * - #LYD_OPT_GET:
1099 * - #LYD_OPT_GETCONFIG:
1100 * - #LYD_OPT_EDIT:
Michal Vaskocdb90172016-09-13 09:34:36 +02001101 * - struct ly_ctx *ctx - context to use when \p node is NULL (for checking an empty tree),
1102 * otherwise can be NULL.
Michal Vasko6b44d712016-09-12 16:25:46 +02001103 * - #LYD_OPT_RPC:
1104 * - #LYD_OPT_RPCREPLY:
1105 * - #LYD_OPT_NOTIF:
1106 * - struct ::lyd_node *data_tree - additional data tree that will be used when checking
Michal Vaskocdb90172016-09-13 09:34:36 +02001107 * any "when" or "must" conditions in the \p node tree
1108 * that require some nodes outside their subtree. If set,
1109 * it must be a list of top-level elements!
Radek Krejci92ece002016-04-04 15:45:05 +02001110 * @return 0 on success, nonzero in case of an error.
Michal Vasko24337392015-10-16 09:58:16 +02001111 */
Michal Vaskocdb90172016-09-13 09:34:36 +02001112int lyd_validate(struct lyd_node **node, int options, void *var_arg);
Michal Vasko2d162e12015-09-24 14:33:29 +02001113
1114/**
Radek Krejcif6fac5e2017-05-18 15:14:18 +02001115 * @brief Check restrictions applicable to the particular leaf/leaf-list on the given string value.
1116 *
1117 * Validates the value only using the types' restrictions. Do not check the rest of restrictions dependent on the
1118 * data tree (must, when statements or uniqueness of the leaf-list item).
1119 *
Radek Krejcie3bd2f32017-08-07 13:52:28 +02001120 * The format of the data must follow rules for the lexical representation of the specific YANG type. Note
1121 * that if there are some extensions of the lexical representation for the YANG module (default value), they are
1122 * not supported by this function - it strictly follows rules for the lexical representations in data trees.
1123 *
Radek Krejcif6fac5e2017-05-18 15:14:18 +02001124 * @param[in] node Schema node of the leaf or leaf-list eventually holding the \p value.
1125 * @param[in] value Value to be checked (NULL is checked as empty string).
1126 * @return EXIT_SUCCESS if the \p value conforms to the restrictions, EXIT_FAILURE otherwise.
1127 */
1128int lyd_validate_value(struct lys_node *node, const char *value);
1129
1130/**
Radek Krejci46180b52016-08-31 16:01:32 +02001131 * @brief Get know if the node contain (despite implicit or explicit) default value.
Radek Krejci7b4309c2016-03-23 10:30:29 +01001132 *
Radek Krejci46180b52016-08-31 16:01:32 +02001133 * @param[in] node The leaf or leaf-list to check. Note, that leaf-list is marked as default only when the complete
1134 * and only the default set is present (node's siblings are also checked).
1135 * @return 1 if the node contains the default value, 0 otherwise.
Radek Krejci7b4309c2016-03-23 10:30:29 +01001136 */
Radek Krejci46180b52016-08-31 16:01:32 +02001137int lyd_wd_default(struct lyd_node_leaf_list *node);
Radek Krejci6b8f6ac2016-03-23 12:33:04 +01001138
1139/**
Michal Vasko55f60be2015-10-14 13:12:58 +02001140 * @brief Unlink the specified data subtree. All referenced namespaces are copied.
Michal Vasko2d162e12015-09-24 14:33:29 +02001141 *
Michal Vasko299f9832017-01-06 13:29:22 +01001142 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1143 *
Michal Vasko2d162e12015-09-24 14:33:29 +02001144 * Note, that the node's connection with the schema tree is kept. Therefore, in case of
1145 * reconnecting the node to a data tree using lyd_paste() it is necessary to paste it
1146 * to the appropriate place in the data tree following the schema.
1147 *
1148 * @param[in] node Data tree node to be unlinked (together with all children).
1149 * @return 0 for success, nonzero for error
1150 */
1151int lyd_unlink(struct lyd_node *node);
1152
1153/**
Radek Krejcifd0bcf02016-09-09 13:28:34 +02001154 * @brief Free (and unlink) the specified data subtree. Use carefully, since libyang silently creates default nodes,
1155 * it is always better to use lyd_free_withsiblings() to free the complete data tree.
Michal Vasko2d162e12015-09-24 14:33:29 +02001156 *
Michal Vasko299f9832017-01-06 13:29:22 +01001157 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1158 *
Michal Vasko2d162e12015-09-24 14:33:29 +02001159 * @param[in] node Root of the (sub)tree to be freed.
1160 */
1161void lyd_free(struct lyd_node *node);
1162
1163/**
Radek Krejcifd0bcf02016-09-09 13:28:34 +02001164 * @brief Free (and unlink) the specified data tree and all its siblings (preceding as well as following).
Radek Krejci81468402016-01-07 13:52:40 +01001165 *
Michal Vasko299f9832017-01-06 13:29:22 +01001166 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1167 *
Radek Krejci81468402016-01-07 13:52:40 +01001168 * @param[in] node One of the siblings root element of the (sub)trees to be freed.
1169 */
1170void lyd_free_withsiblings(struct lyd_node *node);
1171
1172/**
Radek Krejci134610e2015-10-20 17:15:34 +02001173 * @brief Insert attribute into the data node.
1174 *
1175 * @param[in] parent Data node where to place the attribute
Radek Krejci70ecd722016-03-21 09:04:00 +01001176 * @param[in] mod An alternative way to specify attribute's module (namespace) used in case the \p name does
1177 * not include prefix. If neither prefix in the \p name nor mod is specified, the attribute's
1178 * module is inherited from the \p parent node. It is not allowed to have attributes with no
1179 * module (namespace).
1180 * @param[in] name Attribute name. The string can include the attribute's module (namespace) as the name's
1181 * prefix (prefix:name). Prefix must be the name of one of the schema in the \p parent's context.
1182 * If the prefix is not specified, the \p mod parameter is used. If neither of these parameters is
1183 * usable, attribute inherits module (namespace) from the \p parent node. It is not allowed to
1184 * have attributes with no module (namespace).
Radek Krejci134610e2015-10-20 17:15:34 +02001185 * @param[in] value Attribute value
1186 * @return pointer to the created attribute (which is already connected in \p parent) or NULL on error.
1187 */
Radek Krejci70ecd722016-03-21 09:04:00 +01001188struct lyd_attr *lyd_insert_attr(struct lyd_node *parent, const struct lys_module *mod, const char *name,
1189 const char *value);
Radek Krejci134610e2015-10-20 17:15:34 +02001190
1191/**
Radek Krejci88f29302015-10-30 15:42:33 +01001192 * @brief Destroy data attribute
1193 *
1194 * If the attribute to destroy is a member of a node attribute list, it is necessary to
1195 * provide the node itself as \p parent to keep the list consistent.
1196 *
1197 * @param[in] ctx Context where the attribute was created (usually it is the context of the \p parent)
1198 * @param[in] parent Parent node where the attribute is placed
1199 * @param[in] attr Attribute to destroy
1200 * @param[in] recursive Zero to destroy only the attribute, non-zero to destroy also all the subsequent attributes
1201 * in the list.
1202 */
1203void lyd_free_attr(struct ly_ctx *ctx, struct lyd_node *parent, struct lyd_attr *attr, int recursive);
1204
1205/**
Radek Krejci6910a032016-04-13 10:06:21 +02001206 * @brief Return main module of the data tree node.
1207 *
1208 * In case of regular YANG module, it returns ::lys_node#module pointer,
1209 * but in case of submodule, it returns pointer to the main module.
1210 *
1211 * @param[in] node Data tree node to be examined
1212 * @return pointer to the main module (schema structure), NULL in case of error.
1213 */
1214struct lys_module *lyd_node_module(const struct lyd_node *node);
1215
1216/**
Michal Vasko0a8ab412017-01-09 11:10:08 +01001217 * @brief Get the type structure of a leaf.
1218 *
1219 * In case of a union, the correct specific type is found.
1220 * In case of a leafref, the final (if there is a chain of leafrefs) target's type is found.
Michal Vaskoe3886bb2017-01-02 11:33:28 +01001221 *
1222 * @param[in] leaf Leaf to examine.
Michal Vasko0a8ab412017-01-09 11:10:08 +01001223 * @return Found type, NULL on error.
Michal Vaskoe3886bb2017-01-02 11:33:28 +01001224 */
1225const struct lys_type *lyd_leaf_type(const struct lyd_node_leaf_list *leaf);
1226
1227/**
Radek Krejcidef50022016-02-01 16:38:32 +01001228* @brief Print data tree in the specified format.
1229*
1230* Same as lyd_print(), but it allocates memory and store the data into it.
1231* It is up to caller to free the returned string by free().
1232*
1233* @param[out] strp Pointer to store the resulting dump.
1234* @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1235* node of the data tree to print the specific subtree.
1236* @param[in] format Data output format.
1237* @param[in] options [printer flags](@ref printerflags).
1238* @return 0 on success, 1 on failure (#ly_errno is set).
1239*/
1240int lyd_print_mem(char **strp, const struct lyd_node *root, LYD_FORMAT format, int options);
Michal Vasko2d162e12015-09-24 14:33:29 +02001241
1242/**
Radek Krejcidef50022016-02-01 16:38:32 +01001243 * @brief Print data tree in the specified format.
Michal Vasko2d162e12015-09-24 14:33:29 +02001244 *
Radek Krejcidef50022016-02-01 16:38:32 +01001245 * Same as lyd_print(), but output is written into the specified file descriptor.
1246 *
1247 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1248 * node of the data tree to print the specific subtree.
1249 * @param[in] fd File descriptor where to print the data.
1250 * @param[in] format Data output format.
1251 * @param[in] options [printer flags](@ref printerflags).
1252 * @return 0 on success, 1 on failure (#ly_errno is set).
Michal Vasko2d162e12015-09-24 14:33:29 +02001253 */
Radek Krejcidef50022016-02-01 16:38:32 +01001254int lyd_print_fd(int fd, const struct lyd_node *root, LYD_FORMAT format, int options);
1255
1256/**
1257 * @brief Print data tree in the specified format.
1258 *
1259 * To write data into a file descriptor, use lyd_print_fd().
1260 *
1261 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1262 * node of the data tree to print the specific subtree.
1263 * @param[in] f File stream where to print the data.
1264 * @param[in] format Data output format.
1265 * @param[in] options [printer flags](@ref printerflags).
1266 * @return 0 on success, 1 on failure (#ly_errno is set).
1267 */
1268int lyd_print_file(FILE *f, const struct lyd_node *root, LYD_FORMAT format, int options);
1269
1270/**
1271 * @brief Print data tree in the specified format.
1272 *
1273 * Same as lyd_print(), but output is written via provided callback.
1274 *
1275 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1276 * node of the data tree to print the specific subtree.
1277 * @param[in] writeclb Callback function to write the data (see write(1)).
1278 * @param[in] arg Optional caller-specific argument to be passed to the \p writeclb callback.
1279 * @param[in] format Data output format.
1280 * @param[in] options [printer flags](@ref printerflags).
1281 * @return 0 on success, 1 on failure (#ly_errno is set).
1282 */
1283int lyd_print_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg,
1284 const struct lyd_node *root, LYD_FORMAT format, int options);
Michal Vasko2d162e12015-09-24 14:33:29 +02001285
Michal Vasko4d1f0482016-09-19 14:35:06 +02001286/**
1287 * @brief Get the double value of a decimal64 leaf/leaf-list.
1288 *
1289 * YANG decimal64 type enables higher precision numbers than IEEE 754 double-precision
1290 * format, so this conversion does not have to be lossless.
1291 *
1292 * @param[in] node Leaf/leaf-list of type decimal64.
1293 * @return Closest double equivalent to the decimal64 value.
1294 */
1295double lyd_dec64_to_double(const struct lyd_node *node);
1296
Michal Vasko2d162e12015-09-24 14:33:29 +02001297/**@} */
1298
1299#ifdef __cplusplus
1300}
1301#endif
1302
1303#endif /* LY_TREE_DATA_H_ */