blob: f9138346af524db4ab942e4c58246b356f9f6e0a [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
Mislav Novakovice251a652015-09-29 08:40:12 +020021#include "tree_schema.h"
Radek Krejcidef50022016-02-01 16:38:32 +010022#include "xml.h"
Mislav Novakovice251a652015-09-29 08:40:12 +020023
Michal Vasko2d162e12015-09-24 14:33:29 +020024#ifdef __cplusplus
25extern "C" {
26#endif
27
28/**
Radek Krejcidef50022016-02-01 16:38:32 +010029 * @defgroup datatree Data Tree
Michal Vasko2d162e12015-09-24 14:33:29 +020030 * @{
Radek Krejcidef50022016-02-01 16:38:32 +010031 *
32 * Data structures and functions to manipulate and access instance data tree.
Michal Vasko2d162e12015-09-24 14:33:29 +020033 */
34
35/**
Radek Krejcidef50022016-02-01 16:38:32 +010036 * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and
37 * [printer](@ref howtodataprinters) functions.
Michal Vasko2d162e12015-09-24 14:33:29 +020038 */
39typedef enum {
40 LYD_UNKNOWN, /**< unknown format, used as return value in case of error */
41 LYD_XML, /**< XML format of the instance data */
42 LYD_JSON, /**< JSON format of the instance data */
43} LYD_FORMAT;
44
45/**
Radek Krejci45826012016-08-24 15:07:57 +020046 * @brief List of possible value types stored in ::lyd_node_anydata.
47 */
48typedef enum {
49 LYD_ANYDATA_CONSTSTRING, /**< value is constant string (const char *) which is internally duplicated for storing
50 in the anydata structure; XML sensitive characters (such as & or \>) are automatically
51 escaped when the anydata is printed in XML format */
52 LYD_ANYDATA_STRING, /**< value is dynamically allocated string (char*), so the data are used directly without
53 duplication and caller is supposed to not manipulate with the data after a successful
54 call (including calling free() on the provided data); XML sensitive characters
55 (such as & or \>) are automatically escaped when the anydata is printed in XML format */
56 LYD_ANYDATA_DATATREE, /**< value is struct lyd_node* (first sibling), the structure is directly connected into
57 the anydata node without duplication, caller is supposed to not manipulate with the
58 data after a successful call (including calling lyd_free() on the provided data) */
59 LYD_ANYDATA_XML /**< value is struct lyxml_elem*, the structure is directly connected into
60 the anydata node without duplication, caller is supposed to not manipulate with the
61 data after a successful call (including calling lyxml_free() on the provided data)*/
62} LYD_ANYDATA_VALUETYPE;
63
64/**
Michal Vasko2d162e12015-09-24 14:33:29 +020065 * @brief Attribute structure.
66 *
Radek Krejci5f9e8c92015-10-30 10:01:06 +010067 * The structure provides information about attributes of a data element. Such attributes partially
68 * maps to annotations from draft-ietf-netmod-yang-metadata. In XML, they are represented as standard
69 * XML attrbutes. In JSON, they are represented as JSON elements starting with the '@' character
70 * (for more information, see the yang metadata draft.
71 *
Michal Vasko2d162e12015-09-24 14:33:29 +020072 */
73struct lyd_attr {
Radek Krejci5f9e8c92015-10-30 10:01:06 +010074 struct lyd_attr *next; /**< pointer to the next attribute of the same element */
75 struct lys_module *module; /**< pointer to the attribute's module.
76 TODO when annotations will be supported, point to the annotation definition
77 and validate that the attribute is really defined there. Currently, we just
78 believe that it is defined in the module it says */
Michal Vasko2d162e12015-09-24 14:33:29 +020079 const char *name; /**< attribute name */
80 const char *value; /**< attribute value */
81};
82
83/**
84 * @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 */
107} lyd_val;
108
109/**
Radek Krejcica7efb72016-01-18 13:06:01 +0100110 * @defgroup validityflags Validity flags
111 * @ingroup datatree
112 *
113 * Validity flags for data nodes.
114 *
115 * @{
116 */
117#define LYD_VAL_OK 0x00 /**< node is successfully validated including whole subtree */
118#define LYD_VAL_UNIQUE 0x01 /**< Unique value(s) changed, applicable only to ::lys_node_list data nodes */
Radek Krejcid788a522016-07-25 14:57:38 +0200119#define LYD_VAL_MAND 0x02 /**< Some child added/removed and it is needed to perform check for mandatory
120 node or min/max constraints of direct list/leaflist children, applicable only
121 to ::lys_node_list and ::lys_node_container data nodes */
Radek Krejci991a3962016-05-05 15:00:14 +0200122#define LYD_VAL_NOT 0x07 /**< node was not validated yet */
123#define LYD_VAL_INUSE 0x08 /**< Internal flag for note about various processing on data, should be used only
124 internally and removed before the libyang returns to the caller */
Radek Krejcica7efb72016-01-18 13:06:01 +0100125/**
126 * @}
127 */
128
129/**
Michal Vasko2d162e12015-09-24 14:33:29 +0200130 * @brief Generic structure for a data node, directly applicable to the data nodes defined as #LYS_CONTAINER, #LYS_LIST
131 * and #LYS_CHOICE.
132 *
133 * Completely fits to containers and choices and is compatible (can be used interchangeably except the #child member)
134 * with all other lyd_node_* structures. All data nodes are provides as ::lyd_node structure by default.
135 * 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 +0200136 * ::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 +0100137 * #LYS_CHOICE values.
Michal Vasko2d162e12015-09-24 14:33:29 +0200138 *
139 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
140 */
141struct lyd_node {
142 struct lys_node *schema; /**< pointer to the schema definition of this node */
Radek Krejci1eefeb32016-04-15 16:01:46 +0200143 uint8_t validity:4; /**< [validity flags](@ref validityflags) */
144 uint8_t dflt:1; /**< flag for default node (applicable only on leafs) to be marked with default attribute */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100145 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 +0100146 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200147
148 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
149 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
150 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
151 never NULL. If there is no sibling node, pointer points to the node
152 itself. In case of the first node, this pointer points to the last
153 node in the list. */
154 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
155 struct lyd_node *child; /**< pointer to the first child node \note Since other lyd_node_*
Radek Krejciee360892015-10-06 11:23:14 +0200156 structures represent end nodes, this member
Michal Vasko2d162e12015-09-24 14:33:29 +0200157 is replaced in those structures. Therefore, be careful with accessing
158 this member without having information about the node type from the schema's
159 ::lys_node#nodetype member. */
160};
161
162/**
Michal Vasko4c183312015-09-25 10:41:47 +0200163 * @brief Structure for data nodes defined as #LYS_LEAF or #LYS_LEAFLIST.
Michal Vasko2d162e12015-09-24 14:33:29 +0200164 *
Michal Vasko4c183312015-09-25 10:41:47 +0200165 * Extension for ::lyd_node structure. It replaces the ::lyd_node#child member by
166 * three new members (#value, #value_str and #value_type) to provide
167 * information about the value. The first five members (#schema, #attr, #next,
Michal Vasko2d162e12015-09-24 14:33:29 +0200168 * #prev and #parent) are compatible with the ::lyd_node's members.
169 *
170 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
171 */
Michal Vasko4c183312015-09-25 10:41:47 +0200172struct lyd_node_leaf_list {
Michal Vasko2d162e12015-09-24 14:33:29 +0200173 struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_leaflist
174 structure */
Radek Krejci1eefeb32016-04-15 16:01:46 +0200175 uint8_t validity:4; /**< [validity flags](@ref validityflags) */
176 uint8_t dflt:1; /**< flag for default node (applicable only on leafs) to be marked with default attribute */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100177 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 +0100178 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200179
180 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
181 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
182 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
183 never NULL. If there is no sibling node, pointer points to the node
184 itself. In case of the first node, this pointer points to the last
185 node in the list. */
186 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
187
188 /* struct lyd_node *child; should be here, but is not */
189
190 /* leaflist's specific members */
Michal Vasko6a027702016-06-30 10:32:14 +0200191 const char *value_str; /**< string representation of value (for comparison, printing,...), always corresponds to value_type */
192 lyd_val value; /**< node's value representation, always corresponds to schema->type.base */
193 LY_DATA_TYPE value_type; /**< type of the value in the node, mainly for union to avoid repeating of type detection,
194 if (schema->type.base == LY_TYPE_LEAFREF), then value_type may be
195 (LY_TYPE_LEAFREF_UNRES | leafref target value_type) and (value.leafref == NULL) */
Michal Vasko2d162e12015-09-24 14:33:29 +0200196};
197
198/**
Radek Krejcibf2abff2016-08-23 15:51:52 +0200199 * @brief Structure for data nodes defined as #LYS_ANYDATA or #LYS_ANYXML.
Michal Vasko2d162e12015-09-24 14:33:29 +0200200 *
201 * Extension for ::lyd_node structure - replaces the ::lyd_node#child member by new #value member. The first five
202 * members (#schema, #attr, #next, #prev and #parent) are compatible with the ::lyd_node's members.
203 *
204 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
205 */
Radek Krejcibf2abff2016-08-23 15:51:52 +0200206struct lyd_node_anydata {
207 struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_anydata
Michal Vasko2d162e12015-09-24 14:33:29 +0200208 structure */
Radek Krejci1eefeb32016-04-15 16:01:46 +0200209 uint8_t validity:4; /**< [validity flags](@ref validityflags) */
210 uint8_t dflt:1; /**< flag for default node (applicable only on leafs) to be marked with default attribute */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100211 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 +0100212 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200213
214 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
215 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
216 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
217 never NULL. If there is no sibling node, pointer points to the node
218 itself. In case of the first node, this pointer points to the last
219 node in the list. */
220 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
221
222 /* struct lyd_node *child; should be here, but is not */
223
224 /* anyxml's specific members */
Radek Krejci45826012016-08-24 15:07:57 +0200225 LYD_ANYDATA_VALUETYPE value_type;/**< type of the stored anydata value */
226 union {
227 const char *str; /**< string value, in case of printing as XML, characters like '<' or '&' are escaped */
228 struct lyxml_elem *xml; /**< xml tree */
229 struct lyd_node *tree; /**< libyang data tree, does not change the root's parent, so it is not possible
230 to get from the data tree into the anydata/anyxml */
231 } value;
Michal Vasko2d162e12015-09-24 14:33:29 +0200232};
233
234/**
Radek Krejci991a3962016-05-05 15:00:14 +0200235 * @brief list of possible types of differencies in #lyd_difflist
236 */
237typedef enum {
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200238 LYD_DIFF_END = 0, /**< end of the differences list */
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200239 LYD_DIFF_DELETED, /**< deleted node
240 - Node is present in the first tree, but not in the second tree.
241 - To make both trees the same the node in lyd_difflist::first can be deleted from the
242 first tree. The pointer at the same index in the lyd_difflist::second array is
243 NULL */
244 LYD_DIFF_CHANGED, /**< value of a leaf or anyxml is changed, the lyd_difflist::first and lyd_difflist::second
245 points to the leaf/anyxml instances in the first and the second tree respectively. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200246 LYD_DIFF_MOVEDAFTER1, /**< user-ordered (leaf-)list item was moved.
247 - To make both trees the same, all #LYD_DIFF_MOVEDAFTER1 transactions must be applied
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200248 to the first tree in the strict order they appear in the difflist. The
249 lyd_difflist::first points to the first tree node being moved and the
250 lyd_difflist::second points to the first tree node after which the first node is
251 supposed to be moved. If the second pointer is NULL, the node is being moved into
252 the beginning as the first node of the (leaf-)list instances. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200253 LYD_DIFF_CREATED, /**< newly created node
254 - Node is present in the second tree, but not in the first tree.
255 - To make both trees the same the node in lyd_difflist::second is supposed to be
256 inserted (copied via lyd_dup()) into the node (as a child) at the same index in the
257 lyd_difflist::first array (where is its parent). If the lyd_difflist::first at the
258 index is NULL, the missing node is top-level. */
259 LYD_DIFF_MOVEDAFTER2 /**< similar to LYD_DIFF_MOVEDAFTER1, but this time the moved item is in the second tree.
260 This type is always used in combination with (as a successor of) #LYD_DIFF_CREATED
261 as an instruction to move the newly created node to a specific position. Note, that
262 due to applicability to the second tree, the meaning of lyd_difflist:first and
263 lyd_difflist:second is inverse in comparison to #LYD_DIFF_MOVEDAFTER1. The
264 lyd_difflist::second points to the (previously) created node in the second tree and
265 the lyd_difflist::first points to the predecessor node in the second tree. If the
266 predecessor is NULL, the node is supposed to bes the first sibling. */
Radek Krejci991a3962016-05-05 15:00:14 +0200267} LYD_DIFFTYPE;
268
269/**
270 * @brief Structure for the result of lyd_diff(), describing differences between two data trees.
271 */
272struct lyd_difflist {
273 LYD_DIFFTYPE *type; /**< array of the differences types, terminated by #LYD_DIFF_END value. */
274 struct lyd_node **first; /**< array of nodes in the first tree for the specific type of difference, see the
275 description of #LYD_DIFFTYPE values for more information. */
276 struct lyd_node **second;/**< array of nodes in the second tree for the specific type of difference, see the
277 description of #LYD_DIFFTYPE values for more information. */
278};
279
280/**
281 * @brief Free the result of lyd_diff(). It frees the structure of the lyd_diff() result, not the referenced nodes.
282 *
283 * @param[in] diff The lyd_diff() result to free.
284 */
285void lyd_free_diff(struct lyd_difflist *diff);
286
287/**
288 * @brief Compare two data trees and provide list of differences.
289 *
290 * Note, that the \p first and the \p second must have the same schema parent (or they must be top-level elements).
291 * In case of using #LYD_OPT_NOSIBLINGS, they both must be instances of the same schema node.
292 *
Radek Krejci913100d2016-05-09 17:23:51 +0200293 * Order of the resulting set follows these rules:
Radek Krejci22d2ca92016-05-17 16:23:51 +0200294 * - To change the first tree into the second tree, the resulting transactions are supposed to be applied in the order
295 * they appear in the result. First, the changed (#LYD_DIFF_CHANGED) nodes are described followed by the deleted
296 * (#LYD_DIFF_DELETED) nodes. Then, the moving of the user-ordered nodes present in both trees (#LYD_DIFF_MOVEDAFTER1)
297 * follows and the last transactions in the results are the newly created (#LYD_DIFF_CREATED) nodes. These nodes are
298 * supposed to be added as the last siblings, but in some case they can need additional move. In such a case, the
299 * #LYD_DIFF_MOVEDAFTER2 transactions can appear.
300 * - The order of the changed (#LYD_DIFF_CHANGED) and created (#LYD_DIFF_CREATED) follows the nodes order in the
301 * second tree - the current siblings are processed first and then the children are processed. Note, that this is
302 * actually not the BFS:
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200303 *
Radek Krejci913100d2016-05-09 17:23:51 +0200304 * 1 2
305 * / \ / \
306 * 3 4 7 8
307 * / \
308 * 5 6
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200309 *
Radek Krejci22d2ca92016-05-17 16:23:51 +0200310 * - The order of the deleted (#LYD_DIFF_DELETED) nodes is the DFS:
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200311 *
312 * 1 6
313 * / \ / \
314 * 2 5 7 8
315 * / \
316 * 3 4
Radek Krejci913100d2016-05-09 17:23:51 +0200317 *
318 * To change the first tree into the second one, it is necessary to follow the order of transactions described in
319 * the result. Note, that it is not possible just to use the transactions in the reverse order to transform the
320 * second tree into the first one. The transactions can be generalized (to be used on a different instance of the
321 * first tree) using lyd_path() to get identifiers for the nodes used in the transactions.
322 *
Radek Krejci9a6a5dd2016-05-05 15:56:24 +0200323 * @param[in] first The first (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are
Radek Krejci4c3bc112016-05-19 15:09:03 +0200324 * taken into comparison. If NULL, all the \p second nodes are supposed to be top level and they will
325 * be marked as #LYD_DIFF_CREATED.
Radek Krejci9a6a5dd2016-05-05 15:56:24 +0200326 * @param[in] second The second (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are
Radek Krejci4c3bc112016-05-19 15:09:03 +0200327 * taken into comparison. If NULL, all the \p first nodes will be marked as #LYD_DIFF_DELETED.
Radek Krejci99d737f2016-09-06 11:19:52 +0200328 * @param[in] options The @ref diffoptions are accepted.
Radek Krejci991a3962016-05-05 15:00:14 +0200329 * @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 +0200330 * 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 +0200331 */
332struct lyd_difflist *lyd_diff(struct lyd_node *first, struct lyd_node *second, int options);
333
334/**
Radek Krejci99d737f2016-09-06 11:19:52 +0200335 * @defgroup diffoptions Diff options
336 * @ingroup datatree
337 *
338 * @{
339 */
340/* LYD_DIFFOPT_NOSIBLINGS value is the same as LYD_OPT_NOSIBLINGS due to backward compatibility. The LYD_OPT_NOSIBLINGS
341 * was used previously as an option for lyd_diff(). */
342#define LYD_DIFFOPT_NOSIBLINGS 0x0800 /**< The both trees to diff have to instantiate the same schema node so only the
343 single subtree is compared. */
344#define LYD_DIFFOPT_WITHDEFAULTS 0x0001 /**< Take default nodes with their values into account and handle them as part
345 of both trees. In this case, a node with defined default value cannot be
346 deleted, because when it is removed from a tree, it is implicitly replaced
347 by the default node, so the node is not #LYD_DIFF_DELETED, but
348 #LYD_DIFF_CHANGED. Note that in this case, applying the resulting
349 transactions on the first tree does not result to the exact second tree,
350 because instead of having implicit default nodes you are going to have
351 explicit default nodes. */
352/**@} diffoptions */
353
354/**
Radek Krejci6d538282016-05-05 14:24:12 +0200355 * @brief Build path (usable as XPath) of the data node.
356 * @param[in] node Data node to be processed. Note that the node should be from a complete data tree, having a subtree
357 * (after using lyd_unlink()) can cause generating invalid paths.
358 * @return NULL on error, on success the buffer for the resulting path is allocated and caller is supposed to free it
359 * with free().
360 */
361char *lyd_path(struct lyd_node *node);
362
363/**
Radek Krejcidef50022016-02-01 16:38:32 +0100364 * @defgroup parseroptions Data parser options
365 * @ingroup datatree
366 *
367 * Various options to change the data tree parsers behavior.
368 *
369 * Default behavior:
370 * - in case of XML, parser reads all data from its input (file, memory, XML tree) including the case of not well-formed
371 * XML document (multiple top-level elements) and if there is an unknown element, it is skipped including its subtree
372 * (see the next point). This can be changed by the #LYD_OPT_NOSIBLINGS option which make parser to read only a single
373 * tree (with a single root element) from its input.
374 * - parser silently ignores the data without a matching node in schema trees. If the caller want to stop
375 * parsing in case of presence of unknown data, the #LYD_OPT_STRICT can be used. The strict mode is useful for
376 * NETCONF servers, since NETCONF clients should always send data according to the capabilities announced by the server.
377 * On the other hand, the default non-strict mode is useful for clients receiving data from NETCONF server since
378 * clients are not required to understand everything the server does. Of course, the optimal strategy for clients is
379 * to use filtering to get only the required data. Having an unknown element of the known namespace is always an error.
380 * The behavior can be changed by #LYD_OPT_STRICT option.
381 * - using obsolete statements (status set to obsolete) just generates a warning, but the processing continues. The
382 * behavior can be changed by #LYD_OPT_OBSOLETE option.
383 * - parser expects that the provided data provides complete datastore content (both the configuration and state data)
384 * and performs data validation according to all YANG rules. This can be a problem in case of representing NETCONF's
385 * subtree filter data, edit-config's data or other type of data set - such data do not represent a complete data set
386 * and some of the validation rules can fail. Therefore there are other options (within lower 8 bits) to make parser
387 * to accept such a data.
Radek Krejcif3c218d2016-03-24 12:40:08 +0100388 * - when parser evaluates when-stmt condition to false, the constrained subtree is automatically removed. If the
389 * #LYD_OPT_NOAUTODEL is used, error is raised instead of silent auto delete. The option (and also this default
390 * behavior) takes effect only in case of #LYD_OPT_DATA or #LYD_OPT_CONFIG type of data.
Radek Krejcidef50022016-02-01 16:38:32 +0100391 * @{
392 */
393
394#define LYD_OPT_DATA 0x00 /**< Default type of data - complete datastore content with configuration as well as
395 state data. */
396#define LYD_OPT_CONFIG 0x01 /**< A configuration datastore - complete datastore without state data.
397 Validation modifications:
398 - status data are not allowed */
399#define LYD_OPT_GET 0x02 /**< Data content from a NETCONF reply message to the NETCONF \<get\> operation.
400 Validation modifications:
401 - mandatory nodes can be omitted
402 - leafrefs and instance-identifier are not resolved
403 - list's keys/unique nodes are not required (so duplication is not checked) */
404#define LYD_OPT_GETCONFIG 0x04 /**< Data content from a NETCONF reply message to the NETCONF \<get-config\> operation
405 Validation modifications:
406 - mandatory nodes can be omitted
407 - leafrefs and instance-identifier are not resolved
408 - list's keys/unique nodes are not required (so duplication is not checked)
409 - status data are not allowed */
410#define LYD_OPT_EDIT 0x08 /**< Content of the NETCONF \<edit-config\>'s config element.
411 Validation modifications:
412 - mandatory nodes can be omitted
413 - leafrefs and instance-identifier are not resolved
414 - status data are not allowed */
415#define LYD_OPT_RPC 0x10 /**< Data represents RPC's input parameters. */
416#define LYD_OPT_RPCREPLY 0x20 /**< Data represents RPC's output parameters (maps to NETCONF <rpc-reply> data). */
417#define LYD_OPT_NOTIF 0x40 /**< Data represents an event notification data. */
Michal Vaskob1b19442016-07-13 12:26:01 +0200418/* 0x80 reserved, formerly LYD_OPT_FILTER, now used internally */
Radek Krejcidef50022016-02-01 16:38:32 +0100419#define LYD_OPT_TYPEMASK 0xff /**< Mask to filter data type options. Always only a single data type option (only
420 single bit from the lower 8 bits) can be set. */
421
422#define LYD_OPT_STRICT 0x0100 /**< Instead of silent ignoring data without schema definition, raise an error. */
423#define LYD_OPT_DESTRUCT 0x0200 /**< Free the provided XML tree during parsing the data. With this option, the
424 provided XML tree is affected and all succesfully parsed data are freed.
425 This option is applicable only to lyd_parse_xml() function. */
426#define LYD_OPT_OBSOLETE 0x0400 /**< Raise an error when an obsolete statement (status set to obsolete) is used. */
427#define LYD_OPT_NOSIBLINGS 0x0800 /**< Parse only a single XML tree from the input. This option applies only to
428 XML input data. */
Radek Krejci93fab982016-02-03 15:58:19 +0100429#define LYD_OPT_TRUSTED 0x1000 /**< Data comes from a trusted source and it is not needed to validate them. Data
430 are connected with the schema, but the most validation checks (mandatory nodes,
431 list instance uniqueness, etc.) are not performed. This option does not make
432 sense for lyd_validate() so it is ignored by this function. */
Radek Krejci03b71f72016-03-16 11:10:09 +0100433#define LYD_OPT_NOAUTODEL 0x2000 /**< Avoid automatic delete of subtrees with false when-stmt condition. The flag is
434 applicable only in combination with LYD_OPT_DATA and LYD_OPT_CONFIG flags.
435 If used, libyang generates validation error instead of silently removing the
436 constrained subtree. */
Radek Krejcidef50022016-02-01 16:38:32 +0100437
438/**@} parseroptions */
439
440/**
441 * @brief Parse (and validate according to appropriate schema from the given context) data.
442 *
443 * In case of LY_XML format, the data string is parsed completely. It means that when it contains
444 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
445 * returned data node is a root of the first tree with other trees connected via the next pointer.
446 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
447 *
448 * @param[in] ctx Context to connect with the data tree being built here.
449 * @param[in] data Serialized data in the specified format.
450 * @param[in] format Format of the input data to be parsed.
451 * @param[in] options Parser options, see @ref parseroptions.
452 * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The
453 * argument is supposed to provide pointer to the RPC schema node for the reply's request
454 * (const struct ::lys_node* rpc).
455 * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure,
456 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
457 * #ly_errno contains appropriate error code (see #LY_ERR).
458 */
Radek Krejci722b0072016-02-01 17:09:45 +0100459struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options, ...);
Radek Krejcidef50022016-02-01 16:38:32 +0100460
461/**
462 * @brief Read data from the given file descriptor.
463 *
464 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
465 *
466 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
467 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
468 * returned data node is a root of the first tree with other trees connected via the next pointer.
469 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
470 *
471 * @param[in] ctx Context to connect with the data tree being built here.
472 * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format.
473 * @param[in] format Format of the input data to be parsed.
474 * @param[in] options Parser options, see @ref parseroptions.
475 * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The
476 * argument is supposed to provide pointer to the RPC schema node for the reply's request
477 * (const struct ::lys_node* rpc).
478 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
479 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
480 * #ly_errno contains appropriate error code (see #LY_ERR).
481 */
482struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options, ...);
483
484/**
485 * @brief Read data from the given file path.
486 *
487 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
488 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
489 * returned data node is a root of the first tree with other trees connected via the next pointer.
490 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
491 *
492 * @param[in] ctx Context to connect with the data tree being built here.
493 * @param[in] path Path to the file containing the data tree in the specified format.
494 * @param[in] format Format of the input data to be parsed.
495 * @param[in] options Parser options, see @ref parseroptions.
496 * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The
497 * argument is supposed to provide pointer to the RPC schema node for the reply's request
498 * (const struct ::lys_node* rpc).
499 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
500 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
501 * #ly_errno contains appropriate error code (see #LY_ERR).
502 */
503struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options, ...);
504
505/**
506 * @brief Parse (and validate according to appropriate schema from the given context) XML tree.
507 *
508 * The output data tree is parsed from the given XML tree previously parsed by one of the
509 * lyxml_read* functions.
510 *
Radek Krejci722b0072016-02-01 17:09:45 +0100511 * 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 +0100512 * or the provided root is a root element of a subtree), all the sibling nodes (previous as well as
513 * following) are processed as well. The returned data node is a root of the first tree with other
514 * trees connected via the next pointer. This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
515 *
516 * When the function is used with #LYD_OPT_DESTRUCT, all the successfully parsed data including the
517 * XML \p root and all its siblings (if #LYD_OPT_NOSIBLINGS is not used) are freed. Only with
518 * #LYD_OPT_DESTRUCT option the \p root pointer is changed - if all the data are parsed, it is set
519 * to NULL, otherwise it will hold the XML tree without the successfully parsed elements.
520 *
521 * The context must be the same as the context used to parse XML tree by lyxml_read* function.
522 *
523 * @param[in] ctx Context to connect with the data tree being built here.
524 * @param[in,out] root XML tree to parse (convert) to data tree. By default, parser do not change the XML tree. However,
525 * when #LYD_OPT_DESTRUCT is specified in \p options, parser frees all successfully parsed data.
526 * @param[in] options Parser options, see @ref parseroptions.
527 * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The
528 * argument is supposed to provide pointer to the RPC schema node for the reply's request
529 * (const struct ::lys_node* rpc).
530 * @return Pointer to the built data tree or NULL in case of empty \p root. To free the returned structure,
531 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
532 * #ly_errno contains appropriate error code (see #LY_ERR).
533 */
534struct lyd_node *lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options,...);
535
536/**
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200537 * @brief Create a new container node in a data tree.
538 *
539 * @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 +0200540 * @param[in] module Module with the node being created.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200541 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_LIST,
Michal Vaskoa45cf2b2015-10-23 09:45:36 +0200542 * #LYS_NOTIF, or #LYS_RPC.
Michal Vasko1dca6882015-10-22 14:29:42 +0200543 * @return New node, NULL on error.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200544 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100545struct lyd_node *lyd_new(struct lyd_node *parent, const struct lys_module *module, const char *name);
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200546
547/**
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200548 * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to
549 * the actual value.
550 *
551 * @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 +0200552 * @param[in] module Module with the node being created.
553 * @param[in] name Schema node name of the new data node.
Michal Vasko3e671b52015-10-23 16:23:15 +0200554 * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST
555 * 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 +0200556 * @return New node, NULL on error.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200557 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100558struct lyd_node *lyd_new_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name,
Michal Vasko3e671b52015-10-23 16:23:15 +0200559 const char *val_str);
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200560
561/**
Radek Krejcib9b4d002016-01-18 13:08:51 +0100562 * @brief Change value of a leaf node.
563 *
564 * Despite the prototype allows to provide a leaflist node as \p leaf parameter, only leafs are accepted.
Michal Vasko3a55a8a2016-04-13 14:19:53 +0200565 * Also, changing the value of a list key is prohibited.
Radek Krejcib9b4d002016-01-18 13:08:51 +0100566 *
Radek Krejci0562dbc2016-04-18 14:18:26 +0200567 * As for the other data tree manipulation functions, the change is not fully validated to allow multiple changes
568 * in the data tree. Therefore, when all changes on the data tree are done, caller is supposed to call lyd_validate()
569 * to check that the result is valid data tree. Specifically, if a leafref leaf is changed, it is not checked that
570 * the (leafref) value is correct.
571 *
Radek Krejcib9b4d002016-01-18 13:08:51 +0100572 * @param[in] leaf A leaf node to change.
573 * @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
574 * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces).
575 * @return 0 on success, non-zero on error.
576 */
577int lyd_change_leaf(struct lyd_node_leaf_list *leaf, const char *val_str);
578
579/**
Radek Krejci45826012016-08-24 15:07:57 +0200580 * @brief Create a new anydata or anyxml node in a data tree.
581 *
582 * 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 +0200583 *
Michal Vasko2d162e12015-09-24 14:33:29 +0200584 * @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 +0200585 * @param[in] module Module with the node being created.
Radek Krejci45826012016-08-24 15:07:57 +0200586 * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node
587 * is created.
588 * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is
589 * determined according to the \p value_type parameter.
590 * @param[in] value_type Type of the provided data \p value.
Michal Vasko1dca6882015-10-22 14:29:42 +0200591 * @return New node, NULL on error.
Michal Vasko2d162e12015-09-24 14:33:29 +0200592 */
Radek Krejci45826012016-08-24 15:07:57 +0200593struct lyd_node *lyd_new_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name,
594 void *value, LYD_ANYDATA_VALUETYPE value_type);
Michal Vasko2d162e12015-09-24 14:33:29 +0200595
596/**
Michal Vasko98a5a742016-05-11 11:02:56 +0200597 * @brief Create a new container node in a data tree. Ignore RPC input nodes and instead use RPC output ones.
Michal Vasko0df122f2015-12-14 13:38:21 +0100598 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200599 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
600 * @param[in] module Module with the node being created.
601 * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_LIST,
602 * #LYS_NOTIF, or #LYS_RPC.
Michal Vasko0df122f2015-12-14 13:38:21 +0100603 * @return New node, NULL on error.
604 */
Michal Vasko98a5a742016-05-11 11:02:56 +0200605struct lyd_node *lyd_new_output(struct lyd_node *parent, const struct lys_module *module, const char *name);
Michal Vasko50c0a872016-01-13 14:34:11 +0100606
607/**
Michal Vasko98a5a742016-05-11 11:02:56 +0200608 * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to
609 * the actual value. Ignore RPC input nodes and instead use RPC output ones.
Michal Vasko50c0a872016-01-13 14:34:11 +0100610 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200611 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
612 * @param[in] module Module with the node being created.
613 * @param[in] name Schema node name of the new data node.
Michal Vasko50c0a872016-01-13 14:34:11 +0100614 * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST
615 * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces).
616 * @return New node, NULL on error.
617 */
Michal Vasko98a5a742016-05-11 11:02:56 +0200618struct lyd_node *lyd_new_output_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name,
619 const char *val_str);
Michal Vasko50c0a872016-01-13 14:34:11 +0100620
621/**
Radek Krejci45826012016-08-24 15:07:57 +0200622 * @brief Create a new anydata or anyxml node in a data tree. Ignore RPC input nodes and instead use
Michal Vasko98a5a742016-05-11 11:02:56 +0200623 * RPC output ones.
Michal Vasko50c0a872016-01-13 14:34:11 +0100624 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200625 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
626 * @param[in] module Module with the node being created.
Radek Krejci45826012016-08-24 15:07:57 +0200627 * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node
628 * is created.
629 * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is
630 * determined according to the \p value_type parameter. Data are supposed to be dynamically allocated.
631 * Since it is directly attached into the created data node, caller is supposed to not manipulate with
632 * the data after a successful call (including calling free() on the provided data).
633 * @param[in] value_type Type of the provided data \p value.
Michal Vasko50c0a872016-01-13 14:34:11 +0100634 * @return New node, NULL on error.
635 */
Radek Krejci45826012016-08-24 15:07:57 +0200636struct lyd_node *lyd_new_output_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name,
637 void *value, LYD_ANYDATA_VALUETYPE value_type);
Michal Vasko0df122f2015-12-14 13:38:21 +0100638
639/**
Michal Vaskof5299282016-03-16 13:32:02 +0100640 * @defgroup pathoptions Data path creation options
641 * @ingroup datatree
642 *
643 * Various options to change lyd_new_path() behavior.
644 *
645 * Default behavior:
Michal Vaskof5299282016-03-16 13:32:02 +0100646 * - if the target node already exists, an error is returned.
Michal Vasko9db078d2016-03-23 11:08:51 +0100647 * - the whole path to the target node is created (with any missing parents) if necessary.
Michal Vasko2411b942016-03-23 13:50:03 +0100648 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
Michal Vaskof5299282016-03-16 13:32:02 +0100649 * @{
650 */
651
Michal Vasko72d35102016-03-31 10:03:38 +0200652#define LYD_PATH_OPT_UPDATE 0x01 /**< If the target node exists and is a leaf, it is updated with the new value and returned.
653 If the target node exists and is not a leaf, NULL is returned and no error set. */
Michal Vasko9db078d2016-03-23 11:08:51 +0100654#define LYD_PATH_OPT_NOPARENT 0x02 /**< If any parents of the target node exist, return an error. */
Michal Vasko2411b942016-03-23 13:50:03 +0100655#define LYD_PATH_OPT_OUTPUT 0x04 /**< Changes the behavior to ignoring RPC input schema nodes and using only output ones. */
Michal Vaskof5299282016-03-16 13:32:02 +0100656
657/** @} pathoptions */
658
659/**
660 * @brief Create a new data node based on a simple XPath.
661 *
Michal Vasko8d18ef52016-04-06 12:21:46 +0200662 * The new node is normally inserted at the end, either as the last child of a parent or as the last sibling
663 * if working with top-level elements. However, when manipulating RPC input or output, schema ordering is
Michal Vasko98a5a742016-05-11 11:02:56 +0200664 * required and always guaranteed.
Michal Vasko58f74f12016-03-24 13:26:06 +0100665 *
Michal Vasko8c419642016-04-13 14:22:01 +0200666 * If \p path points to a list key and the list does not exist, the key value from the predicate is used
667 * and \p value is ignored.
668 *
Michal Vasko89472932016-07-15 09:45:15 +0200669 * @param[in] data_tree Existing data tree to add to/modify. If creating RPCs, there should only be one RPC and
670 * either input or output. Can be NULL.
Michal Vaskof5299282016-03-16 13:32:02 +0100671 * @param[in] ctx Context to use. Mandatory if \p data_tree is NULL.
Michal Vasko9db078d2016-03-23 11:08:51 +0100672 * @param[in] path Simple data XPath of the new node. It can contain only simple node addressing with optional
Michal Vaskof5299282016-03-16 13:32:02 +0100673 * module names as prefixes. List nodes must have predicates, one for each list key in the correct order and
Michal Vasko1acf8502016-05-05 09:14:07 +0200674 * with its value as well, leaves and leaf-lists can have predicates too that have preference over \p value,
675 * see @ref howtoxpath.
Radek Krejci45826012016-08-24 15:07:57 +0200676 * @param[in] value Value of the new leaf/lealf-list (const char*). If creating anydata or anyxml, the following
677 * \p value_type parameter is required to be specified correctly. If creating nodes of other types, the
678 * parameter is ignored.
679 * @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 +0100680 * @param[in] options Bitmask of options flags, see @ref pathoptions.
Michal Vasko8c419642016-04-13 14:22:01 +0200681 * @return First created (or updated with #LYD_PATH_OPT_UPDATE) node,
Michal Vasko17bb4902016-04-05 15:20:51 +0200682 * 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 +0200683 * NULL and ly_errno is set on error.
Michal Vaskof5299282016-03-16 13:32:02 +0100684 */
Radek Krejci45826012016-08-24 15:07:57 +0200685struct lyd_node *lyd_new_path(struct lyd_node *data_tree, struct ly_ctx *ctx, const char *path, void *value,
686 LYD_ANYDATA_VALUETYPE value_type, int options);
Michal Vaskof5299282016-03-16 13:32:02 +0100687
688/**
Michal Vaskoc0797f82015-10-14 15:51:25 +0200689 * @brief Create a copy of the specified data tree \p node. Namespaces are copied as needed,
690 * schema references are kept the same.
Michal Vasko2d162e12015-09-24 14:33:29 +0200691 *
692 * @param[in] node Data tree node to be duplicated.
693 * @param[in] recursive 1 if all children are supposed to be also duplicated.
694 * @return Created copy of the provided data \p node.
695 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100696struct lyd_node *lyd_dup(const struct lyd_node *node, int recursive);
Michal Vasko2d162e12015-09-24 14:33:29 +0200697
698/**
Michal Vasko45fb2822016-04-18 13:32:17 +0200699 * @brief Merge a (sub)tree into a data tree. Missing nodes are merged, leaf values updated.
700 * If \p target and \p source do not share the top-level schema node, even if they
701 * are from different modules, \p source parents up to top-level node will be created and
702 * linked to the \p target (but only containers can be created this way, lists need keys,
703 * so if lists are missing, an error will be returned).
704 *
705 * In short, this function will always try to return a fully valid data tree and will fail
Michal Vaskocf6dc7e2016-04-18 16:00:37 +0200706 * if it is not possible. Also, in some less common cases, despite both trees \p target and
707 * \p source are valid, the resulting tree may be invalid and this function will succeed.
708 * If you know there are such possibilities in your data trees or you are not sure, always
709 * validate the resulting merged \p target tree.
Michal Vasko45fb2822016-04-18 13:32:17 +0200710 *
Michal Vaskocf6dc7e2016-04-18 16:00:37 +0200711 * @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 +0200712 * @param[in] source Data tree to merge \p target with. Must be valid (at least as a subtree).
713 * @param[in] options Bitmask of 2 option flags:
714 * LYD_OPT_DESTRUCT - spend \p source in the function, otherwise \p source is left untouched,
715 * LYD_OPT_NOSIBLINGS - merge only the \p source subtree (ignore siblings), otherwise merge
716 * \p source and all its succeeding siblings (preceeding ones are still ignored!).
717 * @return 0 on success, nonzero in case of an error.
718 */
719int lyd_merge(struct lyd_node *target, const struct lyd_node *source, int options);
720
721/**
Michal Vasko2d162e12015-09-24 14:33:29 +0200722 * @brief Insert the \p node element as child to the \p parent element. The \p node is inserted as a last child of the
723 * \p parent.
724 *
725 * If the node is part of some other tree, it is automatically unlinked.
Radek Krejcia1c33bf2016-09-07 12:38:49 +0200726 * If the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
727 * If the key of a list is being inserted, it is placed into a correct position instead of being placed as the last
728 * element.
Michal Vasko2d162e12015-09-24 14:33:29 +0200729 *
730 * @param[in] parent Parent node for the \p node being inserted.
731 * @param[in] node The node being inserted.
Michal Vasko24337392015-10-16 09:58:16 +0200732 * @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 +0200733 * in the data tree.
734 */
Michal Vasko24337392015-10-16 09:58:16 +0200735int lyd_insert(struct lyd_node *parent, struct lyd_node *node);
Michal Vasko2d162e12015-09-24 14:33:29 +0200736
737/**
Michal Vasko3f7dba12015-10-15 13:09:27 +0200738 * @brief Insert the \p node element after the \p sibling element. If \p node and \p siblings are already
Radek Krejcica7efb72016-01-18 13:06:01 +0100739 * siblings (just moving \p node position), skip validation.
Michal Vasko2d162e12015-09-24 14:33:29 +0200740 *
Michal Vasko2d162e12015-09-24 14:33:29 +0200741 * @param[in] sibling The data tree node before which the \p node will be inserted.
Radek Krejci20a5f292016-02-09 15:04:49 +0100742 * @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 +0200743 * @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 +0200744 * in the data tree.
745 */
Michal Vasko24337392015-10-16 09:58:16 +0200746int lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
Michal Vasko2d162e12015-09-24 14:33:29 +0200747
748/**
Radek Krejci20a5f292016-02-09 15:04:49 +0100749 * @brief Insert the \p node element after the \p sibling element. If \p node and \p siblings are already
750 * siblings (just moving \p node position), skip validation.
Michal Vasko2d162e12015-09-24 14:33:29 +0200751 *
Michal Vasko3f7dba12015-10-15 13:09:27 +0200752 * @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 +0100753 * are already siblings (just moving \p node position), skip validation.
Radek Krejci20a5f292016-02-09 15:04:49 +0100754 * @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 +0200755 * @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 +0200756 * in the data tree.
757 */
Michal Vasko24337392015-10-16 09:58:16 +0200758int lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
759
760/**
Radek Krejcic090d992016-09-07 16:26:03 +0200761 * @brief Insert the \p new element instead of the \p old element.
762 *
763 * If the \p new is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
764 * If the \p new is NULL and \p destroy is true, it works like lyd_free(old).
765 *
766 * @param[in] old The specific node supposed to be replaced.
767 * @param[in] new The new (list of) node(s) to be inserted instead of \p old
768 * @param[in] destroy Flag for freeing the \p old.
769 * @return 0 on success, nonzero in case of error.
770 */
771int lyd_replace(struct lyd_node *old, struct lyd_node *new, int destroy);
772
773/**
Michal Vasko2411b942016-03-23 13:50:03 +0100774 * @brief Order siblings according to the schema node ordering.
775 *
Michal Vasko58f74f12016-03-24 13:26:06 +0100776 * If the siblings include data nodes from other modules, they are
777 * sorted based on the module order in the context.
778 *
779 * @param[in] sibling Node, whose siblings will be sorted.
780 * @param[in] recursive Whether sort all siblings of siblings, recursively.
781 * @return 0 on success, nonzero in case of an error.
Michal Vasko2411b942016-03-23 13:50:03 +0100782 */
Michal Vasko58f74f12016-03-24 13:26:06 +0100783int lyd_schema_sort(struct lyd_node *sibling, int recursive);
Michal Vasko2411b942016-03-23 13:50:03 +0100784
785/**
Michal Vasko105cef12016-02-04 12:06:26 +0100786 * @brief Search in the given data for instances of nodes matching the provided XPath expression.
787 *
Michal Vasko7fdf9b32016-03-01 15:59:48 +0100788 * The XPath expression is evaluated on data -> skip all non-data nodes (input, output, choice, case).
Michal Vasko105cef12016-02-04 12:06:26 +0100789 *
Michal Vasko7fdf9b32016-03-01 15:59:48 +0100790 * Expr examples:
791 * "/ietf-yang-library:modules-state/module[name = 'ietf-yang-library']/namespace"
792 * "/ietf-netconf:get-config/source"
793 *
Michal Vasko46a4bf92016-09-08 08:23:49 +0200794 * @param[in] data Node in the data tree considered the context node if \p expr is relative,
795 * otherwise any node.
Michal Vasko105cef12016-02-04 12:06:26 +0100796 * @param[in] expr XPath expression filtering the matching nodes.
Michal Vasko46a4bf92016-09-08 08:23:49 +0200797 * @return Set of found data nodes. If no nodes are matching \p expr or the result
Michal Vasko105cef12016-02-04 12:06:26 +0100798 * would be a number, a string, or a boolean, the returned set is empty. In case of an error, NULL is returned.
799 */
Michal Vasko46a4bf92016-09-08 08:23:49 +0200800struct ly_set *lyd_xpath_node(const struct lyd_node *data, const char *expr);
Michal Vasko105cef12016-02-04 12:06:26 +0100801
802/**
Radek Krejcic5b6b912016-01-18 16:35:35 +0100803 * @brief Search in the given data for instances of the provided schema node.
804 *
805 * The \p data is used to find the data root and function then searches in the whole tree and all sibling trees.
806 *
807 * @param[in] data A node in the data tree to search.
808 * @param[in] schema Schema node of the data nodes caller want to find.
Michal Vasko46a4bf92016-09-08 08:23:49 +0200809 * @return Set of found data nodes. If no data node is found, the returned set is empty.
Radek Krejcic5b6b912016-01-18 16:35:35 +0100810 * In case of error, NULL is returned.
811 */
Michal Vasko46a4bf92016-09-08 08:23:49 +0200812struct ly_set *lyd_find_node(const struct lyd_node *data, const struct lys_node *schema);
Radek Krejcic5b6b912016-01-18 16:35:35 +0100813
814/**
Radek Krejcid788a522016-07-25 14:57:38 +0200815 * @brief Get the first sibling of the given node.
816 *
817 * @param[in] node Node which first sibling is going to be the result.
818 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
819 */
820struct lyd_node *lyd_first_sibling(struct lyd_node *node);
821
822/**
Radek Krejcibe90a902016-06-14 16:11:51 +0200823 * @brief Resolve the leafref.
824 *
825 * This function is considered to be a part of a low level API and it should be used deliberately.
826 *
827 * @param[in] leafref The leafref node to resolve.
828 * @return
829 * - EXIT_SUCCESS on success,
830 * - EXIT_FAILURE when target does not exist,
831 * - -1 on error.
832 */
833int lyd_validate_leafref(struct lyd_node_leaf_list *leafref);
834
835/**
Michal Vasko24337392015-10-16 09:58:16 +0200836 * @brief Validate \p node data subtree.
837 *
Michal Vaskodedea832016-04-19 11:24:45 +0200838 * @param[in,out] node Data tree to be validated. In case the \p options does not includes #LYD_OPT_NOAUTODEL, libyang
Radek Krejci4e941112016-03-23 10:44:30 +0100839 * can modify the provided tree including the root \p node.
Michal Vasko24337392015-10-16 09:58:16 +0200840 * @param[in] options Options for the inserting data to the target data tree options, see @ref parseroptions.
Michal Vasko98a5a742016-05-11 11:02:56 +0200841 * @param[in] ... libyang context for the data (used only in case the \p node is NULL, so in case of checking empty data tree).
Radek Krejci92ece002016-04-04 15:45:05 +0200842 * @return 0 on success, nonzero in case of an error.
Michal Vasko24337392015-10-16 09:58:16 +0200843 */
Radek Krejci03b71f72016-03-16 11:10:09 +0100844int lyd_validate(struct lyd_node **node, int options, ...);
Michal Vasko2d162e12015-09-24 14:33:29 +0200845
846/**
Radek Krejci46180b52016-08-31 16:01:32 +0200847 * @brief Get know if the node contain (despite implicit or explicit) default value.
Radek Krejci7b4309c2016-03-23 10:30:29 +0100848 *
Radek Krejci46180b52016-08-31 16:01:32 +0200849 * @param[in] node The leaf or leaf-list to check. Note, that leaf-list is marked as default only when the complete
850 * and only the default set is present (node's siblings are also checked).
851 * @return 1 if the node contains the default value, 0 otherwise.
Radek Krejci7b4309c2016-03-23 10:30:29 +0100852 */
Radek Krejci46180b52016-08-31 16:01:32 +0200853int lyd_wd_default(struct lyd_node_leaf_list *node);
Radek Krejci6b8f6ac2016-03-23 12:33:04 +0100854
855/**
Michal Vasko55f60be2015-10-14 13:12:58 +0200856 * @brief Unlink the specified data subtree. All referenced namespaces are copied.
Michal Vasko2d162e12015-09-24 14:33:29 +0200857 *
858 * Note, that the node's connection with the schema tree is kept. Therefore, in case of
859 * reconnecting the node to a data tree using lyd_paste() it is necessary to paste it
860 * to the appropriate place in the data tree following the schema.
861 *
862 * @param[in] node Data tree node to be unlinked (together with all children).
863 * @return 0 for success, nonzero for error
864 */
865int lyd_unlink(struct lyd_node *node);
866
867/**
868 * @brief Free (and unlink) the specified data (sub)tree.
869 *
870 * @param[in] node Root of the (sub)tree to be freed.
871 */
872void lyd_free(struct lyd_node *node);
873
874/**
Radek Krejci81468402016-01-07 13:52:40 +0100875 * @brief Free (and unlink) the specified data (sub)tree and all its siblings (preceding as well as following).
876 *
877 * @param[in] node One of the siblings root element of the (sub)trees to be freed.
878 */
879void lyd_free_withsiblings(struct lyd_node *node);
880
881/**
Radek Krejci134610e2015-10-20 17:15:34 +0200882 * @brief Insert attribute into the data node.
883 *
884 * @param[in] parent Data node where to place the attribute
Radek Krejci70ecd722016-03-21 09:04:00 +0100885 * @param[in] mod An alternative way to specify attribute's module (namespace) used in case the \p name does
886 * not include prefix. If neither prefix in the \p name nor mod is specified, the attribute's
887 * module is inherited from the \p parent node. It is not allowed to have attributes with no
888 * module (namespace).
889 * @param[in] name Attribute name. The string can include the attribute's module (namespace) as the name's
890 * prefix (prefix:name). Prefix must be the name of one of the schema in the \p parent's context.
891 * If the prefix is not specified, the \p mod parameter is used. If neither of these parameters is
892 * usable, attribute inherits module (namespace) from the \p parent node. It is not allowed to
893 * have attributes with no module (namespace).
Radek Krejci134610e2015-10-20 17:15:34 +0200894 * @param[in] value Attribute value
895 * @return pointer to the created attribute (which is already connected in \p parent) or NULL on error.
896 */
Radek Krejci70ecd722016-03-21 09:04:00 +0100897struct lyd_attr *lyd_insert_attr(struct lyd_node *parent, const struct lys_module *mod, const char *name,
898 const char *value);
Radek Krejci134610e2015-10-20 17:15:34 +0200899
900/**
Radek Krejci88f29302015-10-30 15:42:33 +0100901 * @brief Destroy data attribute
902 *
903 * If the attribute to destroy is a member of a node attribute list, it is necessary to
904 * provide the node itself as \p parent to keep the list consistent.
905 *
906 * @param[in] ctx Context where the attribute was created (usually it is the context of the \p parent)
907 * @param[in] parent Parent node where the attribute is placed
908 * @param[in] attr Attribute to destroy
909 * @param[in] recursive Zero to destroy only the attribute, non-zero to destroy also all the subsequent attributes
910 * in the list.
911 */
912void lyd_free_attr(struct ly_ctx *ctx, struct lyd_node *parent, struct lyd_attr *attr, int recursive);
913
914/**
Radek Krejci6910a032016-04-13 10:06:21 +0200915 * @brief Return main module of the data tree node.
916 *
917 * In case of regular YANG module, it returns ::lys_node#module pointer,
918 * but in case of submodule, it returns pointer to the main module.
919 *
920 * @param[in] node Data tree node to be examined
921 * @return pointer to the main module (schema structure), NULL in case of error.
922 */
923struct lys_module *lyd_node_module(const struct lyd_node *node);
924
925/**
Radek Krejcidef50022016-02-01 16:38:32 +0100926* @brief Print data tree in the specified format.
927*
928* Same as lyd_print(), but it allocates memory and store the data into it.
929* It is up to caller to free the returned string by free().
930*
931* @param[out] strp Pointer to store the resulting dump.
932* @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
933* node of the data tree to print the specific subtree.
934* @param[in] format Data output format.
935* @param[in] options [printer flags](@ref printerflags).
936* @return 0 on success, 1 on failure (#ly_errno is set).
937*/
938int lyd_print_mem(char **strp, const struct lyd_node *root, LYD_FORMAT format, int options);
Michal Vasko2d162e12015-09-24 14:33:29 +0200939
940/**
Radek Krejcidef50022016-02-01 16:38:32 +0100941 * @brief Print data tree in the specified format.
Michal Vasko2d162e12015-09-24 14:33:29 +0200942 *
Radek Krejcidef50022016-02-01 16:38:32 +0100943 * Same as lyd_print(), but output is written into the specified file descriptor.
944 *
945 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
946 * node of the data tree to print the specific subtree.
947 * @param[in] fd File descriptor where to print the data.
948 * @param[in] format Data output format.
949 * @param[in] options [printer flags](@ref printerflags).
950 * @return 0 on success, 1 on failure (#ly_errno is set).
Michal Vasko2d162e12015-09-24 14:33:29 +0200951 */
Radek Krejcidef50022016-02-01 16:38:32 +0100952int lyd_print_fd(int fd, const struct lyd_node *root, LYD_FORMAT format, int options);
953
954/**
955 * @brief Print data tree in the specified format.
956 *
957 * To write data into a file descriptor, use lyd_print_fd().
958 *
959 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
960 * node of the data tree to print the specific subtree.
961 * @param[in] f File stream where to print the data.
962 * @param[in] format Data output format.
963 * @param[in] options [printer flags](@ref printerflags).
964 * @return 0 on success, 1 on failure (#ly_errno is set).
965 */
966int lyd_print_file(FILE *f, const struct lyd_node *root, LYD_FORMAT format, int options);
967
968/**
969 * @brief Print data tree in the specified format.
970 *
971 * Same as lyd_print(), but output is written via provided callback.
972 *
973 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
974 * node of the data tree to print the specific subtree.
975 * @param[in] writeclb Callback function to write the data (see write(1)).
976 * @param[in] arg Optional caller-specific argument to be passed to the \p writeclb callback.
977 * @param[in] format Data output format.
978 * @param[in] options [printer flags](@ref printerflags).
979 * @return 0 on success, 1 on failure (#ly_errno is set).
980 */
981int lyd_print_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg,
982 const struct lyd_node *root, LYD_FORMAT format, int options);
Michal Vasko2d162e12015-09-24 14:33:29 +0200983
Michal Vasko2d162e12015-09-24 14:33:29 +0200984/**@} */
985
986#ifdef __cplusplus
987}
988#endif
989
990#endif /* LY_TREE_DATA_H_ */