blob: 5b1ff03f2ffc05906bcbba84ce2b4754251d2c02 [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 */
Michal Vasko1e82a3b2018-07-03 12:16:58 +020044 LYD_LYB, /**< LYB format of the instance data */
Michal Vasko2d162e12015-09-24 14:33:29 +020045} LYD_FORMAT;
46
47/**
Radek Krejci45826012016-08-24 15:07:57 +020048 * @brief List of possible value types stored in ::lyd_node_anydata.
49 */
50typedef enum {
Radek Krejci83bf1402016-09-27 15:05:20 +020051 LYD_ANYDATA_CONSTSTRING = 0x00, /**< value is constant string (const char *) which is internally duplicated for
52 storing in the anydata structure; XML sensitive characters (such as & or \>)
Radek Krejcie534c132016-11-23 13:32:31 +010053 are automatically escaped when the anydata is printed in XML format. */
Radek Krejci83bf1402016-09-27 15:05:20 +020054 LYD_ANYDATA_STRING = 0x01, /**< value is dynamically allocated string (char*), so the data are used directly
55 without duplication and caller is supposed to not manipulate with the data
56 after a successful call (including calling free() on the provided data); XML
57 sensitive characters (such as & or \>) are automatically escaped when the
58 anydata is printed in XML format */
59 LYD_ANYDATA_JSON = 0x02, /**< value is string containing the data modeled by YANG and encoded as I-JSON. The
60 string is handled as constant string. In case of using the value as input
61 parameter, the #LYD_ANYDATA_JSOND can be used for dynamically allocated
62 string. */
63 LYD_ANYDATA_JSOND = 0x03, /**< In case of using value as input parameter, this enumeration is supposed to be
64 used for dynamically allocated strings (it is actually combination of
65 #LYD_ANYDATA_JSON and #LYD_ANYDATA_STRING (and it can be also specified as
66 ORed value of the mentioned values. */
67 LYD_ANYDATA_SXML = 0x04, /**< value is string containing the serialized XML data. The string is handled as
68 constant string. In case of using the value as input parameter, the
69 #LYD_ANYDATA_SXMLD can be used for dynamically allocated string. */
70 LYD_ANYDATA_SXMLD = 0x05, /**< In case of using serialized XML value as input parameter, this enumeration is
71 supposed to be used for dynamically allocated strings (it is actually
72 combination of #LYD_ANYDATA_SXML and #LYD_ANYDATA_STRING (and it can be also
73 specified as ORed value of the mentioned values). */
74 LYD_ANYDATA_XML = 0x08, /**< value is struct lyxml_elem*, the structure is directly connected into the
75 anydata node without duplication, caller is supposed to not manipulate with the
76 data after a successful call (including calling lyxml_free() on the provided
77 data) */
78 LYD_ANYDATA_DATATREE = 0x10, /**< value is struct lyd_node* (first sibling), the structure is directly connected
79 into the anydata node without duplication, caller is supposed to not manipulate
80 with the data after a successful call (including calling lyd_free() on the
81 provided data) */
Michal Vaskodcaf7222018-08-08 16:27:00 +020082 LYD_ANYDATA_LYB = 0x20, /**< value is a memory with serialized data tree in LYB format. The data are handled
83 as a constant string. In case of using the value as input parameter,
84 the #LYD_ANYDATA_LYBD can be used for dynamically allocated string. */
85 LYD_ANYDATA_LYBD = 0x21, /**< In case of using LYB value as input parameter, this enumeration is
86 supposed to be used for dynamically allocated strings (it is actually
87 combination of #LYD_ANYDATA_LYB and #LYD_ANYDATA_STRING (and it can be also
88 specified as ORed value of the mentioned values). */
Radek Krejci45826012016-08-24 15:07:57 +020089} LYD_ANYDATA_VALUETYPE;
90
91/**
Michal Vasko2d162e12015-09-24 14:33:29 +020092 * @brief node's value representation
93 */
94typedef union lyd_value_u {
95 const char *binary; /**< base64 encoded, NULL terminated string */
Michal Vasko8ea2b7f2015-09-29 14:30:53 +020096 struct lys_type_bit **bit; /**< bitmap of pointers to the schema definition of the bit value that are set,
97 its size is always the number of defined bits in the schema */
Radek Krejci489773c2015-12-17 13:20:03 +010098 int8_t bln; /**< 0 as false, 1 as true */
Michal Vasko2d162e12015-09-24 14:33:29 +020099 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
100 struct lys_type_enum *enm; /**< pointer to the schema definition of the enumeration value */
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200101 struct lys_ident *ident; /**< pointer to the schema definition of the identityref value */
Radek Krejci40f17b92016-02-03 14:30:43 +0100102 struct lyd_node *instance; /**< pointer to the instance-identifier target, note that if the tree was modified,
103 the target (address) can be invalid - the pointer is correctly checked and updated
104 by lyd_validate() */
Michal Vasko2d162e12015-09-24 14:33:29 +0200105 int8_t int8; /**< 8-bit signed integer */
106 int16_t int16; /**< 16-bit signed integer */
107 int32_t int32; /**< 32-bit signed integer */
108 int64_t int64; /**< 64-bit signed integer */
109 struct lyd_node *leafref; /**< pointer to the referenced leaf/leaflist instance in data tree */
110 const char *string; /**< string */
111 uint8_t uint8; /**< 8-bit unsigned integer */
112 uint16_t uint16; /**< 16-bit signed integer */
113 uint32_t uint32; /**< 32-bit signed integer */
114 uint64_t uint64; /**< 64-bit signed integer */
Michal Vaskoc6cd3f02018-03-02 14:07:42 +0100115 void *ptr; /**< arbitrary data stored using a type plugin */
Michal Vasko2d162e12015-09-24 14:33:29 +0200116} lyd_val;
117
118/**
Radek Krejcia571d942017-02-24 09:26:49 +0100119 * @brief Attribute structure.
120 *
121 * The structure provides information about attributes of a data element. Such attributes must map to
122 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
123 * and edit-config's operation attributes. In XML, they are represented as standard XML attrbutes. In JSON,
124 * they are represented as JSON elements starting with the '@' character (for more information, see the
125 * YANG metadata RFC.
126 *
127 */
128struct lyd_attr {
129 struct lyd_node *parent; /**< data node where the attribute is placed */
130 struct lyd_attr *next; /**< pointer to the next attribute of the same element */
131 struct lys_ext_instance_complex *annotation; /**< pointer to the attribute/annotation's definition */
132 const char *name; /**< attribute name */
133 const char *value_str; /**< string representation of value (for comparison, printing,...), always corresponds to value_type */
134 lyd_val value; /**< node's value representation, always corresponds to schema->type.base */
Michal Vasko70bf8e52018-03-26 11:32:33 +0200135 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 +0200136 uint8_t value_flags; /**< value type flags */
Radek Krejcia571d942017-02-24 09:26:49 +0100137};
138
139/**
Radek Krejcica7efb72016-01-18 13:06:01 +0100140 * @defgroup validityflags Validity flags
141 * @ingroup datatree
142 *
143 * Validity flags for data nodes.
144 *
145 * @{
146 */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100147#define LYD_VAL_OK 0x00 /**< Node is successfully validated including whole subtree */
Radek Krejcica7efb72016-01-18 13:06:01 +0100148#define LYD_VAL_UNIQUE 0x01 /**< Unique value(s) changed, applicable only to ::lys_node_list data nodes */
Radek Krejcid788a522016-07-25 14:57:38 +0200149#define LYD_VAL_MAND 0x02 /**< Some child added/removed and it is needed to perform check for mandatory
150 node or min/max constraints of direct list/leaflist children, applicable only
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100151 to ::lys_node_list and ::lys_node_container data nodes, but if on any other node
152 except ::lys_node_leaflist, it means checking that data node for duplicities.
153 Additionally, it can be set on truly any node type and then status references
154 are checked for this node if flag #LYD_OPT_OBSOLETE is used. */
155#define LYD_VAL_LEAFREF 0x04 /**< Node is a leafref, which needs to be resolved (it is invalid, new possible
156 resolvent, or something similar) */
157#define LYD_VAL_INUSE 0x80 /**< Internal flag for note about various processing on data, should be used only
158 internally and removed before libyang returns the node to the caller */
Radek Krejcica7efb72016-01-18 13:06:01 +0100159/**
160 * @}
161 */
162
163/**
Michal Vasko2d162e12015-09-24 14:33:29 +0200164 * @brief Generic structure for a data node, directly applicable to the data nodes defined as #LYS_CONTAINER, #LYS_LIST
165 * and #LYS_CHOICE.
166 *
167 * Completely fits to containers and choices and is compatible (can be used interchangeably except the #child member)
168 * with all other lyd_node_* structures. All data nodes are provides as ::lyd_node structure by default.
169 * 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 +0200170 * ::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 +0100171 * #LYS_CHOICE values.
Michal Vasko2d162e12015-09-24 14:33:29 +0200172 *
Michal Vaskoc30c95a2018-08-01 14:35:54 +0200173 * To traverse all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro. To traverse
174 * the whole subtree, use #LY_TREE_DFS_BEGIN macro.
Michal Vasko2d162e12015-09-24 14:33:29 +0200175 */
176struct lyd_node {
177 struct lys_node *schema; /**< pointer to the schema definition of this node */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100178 uint8_t validity; /**< [validity flags](@ref validityflags) */
Michal Vaskoe77dc992017-01-18 12:09:42 +0100179 uint8_t dflt:1; /**< flag for implicit default node */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100180 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 +0100181 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200182
183 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
184 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
185 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
186 never NULL. If there is no sibling node, pointer points to the node
187 itself. In case of the first node, this pointer points to the last
188 node in the list. */
189 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
Michal Vasko24affa02018-04-03 09:06:06 +0200190
Michal Vaskod025ee32018-06-28 10:04:19 +0200191#ifdef LY_ENABLED_LYD_PRIV
192 void *priv; /**< private user data, not used by libyang */
193#endif
194
Michal Vasko24affa02018-04-03 09:06:06 +0200195#ifdef LY_ENABLED_CACHE
196 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list) */
197 struct hash_table *ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
198#endif
199
Michal Vasko2d162e12015-09-24 14:33:29 +0200200 struct lyd_node *child; /**< pointer to the first child node \note Since other lyd_node_*
Radek Krejciee360892015-10-06 11:23:14 +0200201 structures represent end nodes, this member
Michal Vasko2d162e12015-09-24 14:33:29 +0200202 is replaced in those structures. Therefore, be careful with accessing
203 this member without having information about the node type from the schema's
204 ::lys_node#nodetype member. */
205};
206
207/**
Michal Vasko4c183312015-09-25 10:41:47 +0200208 * @brief Structure for data nodes defined as #LYS_LEAF or #LYS_LEAFLIST.
Michal Vasko2d162e12015-09-24 14:33:29 +0200209 *
Michal Vasko4c183312015-09-25 10:41:47 +0200210 * Extension for ::lyd_node structure. It replaces the ::lyd_node#child member by
211 * three new members (#value, #value_str and #value_type) to provide
212 * information about the value. The first five members (#schema, #attr, #next,
Michal Vasko2d162e12015-09-24 14:33:29 +0200213 * #prev and #parent) are compatible with the ::lyd_node's members.
214 *
215 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
216 */
Michal Vasko4c183312015-09-25 10:41:47 +0200217struct lyd_node_leaf_list {
Michal Vasko2d162e12015-09-24 14:33:29 +0200218 struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_leaflist
219 structure */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100220 uint8_t validity; /**< [validity flags](@ref validityflags) */
Michal Vaskoe77dc992017-01-18 12:09:42 +0100221 uint8_t dflt:1; /**< flag for implicit default node */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100222 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 +0100223 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200224
225 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
226 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
227 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
228 never NULL. If there is no sibling node, pointer points to the node
229 itself. In case of the first node, this pointer points to the last
230 node in the list. */
231 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
232
Michal Vaskod025ee32018-06-28 10:04:19 +0200233#ifdef LY_ENABLED_LYD_PRIV
234 void *priv; /**< private user data, not used by libyang */
235#endif
236
Michal Vasko24affa02018-04-03 09:06:06 +0200237#ifdef LY_ENABLED_CACHE
238 uint32_t hash; /**< hash of this particular node (module name + schema name + string value if leaf-list) */
239#endif
240
Michal Vasko2d162e12015-09-24 14:33:29 +0200241 /* struct lyd_node *child; should be here, but is not */
242
243 /* leaflist's specific members */
Michal Vasko6a027702016-06-30 10:32:14 +0200244 const char *value_str; /**< string representation of value (for comparison, printing,...), always corresponds to value_type */
245 lyd_val value; /**< node's value representation, always corresponds to schema->type.base */
Michal Vasko70bf8e52018-03-26 11:32:33 +0200246 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 +0200247 uint8_t value_flags; /**< value type flags */
Michal Vasko2d162e12015-09-24 14:33:29 +0200248};
249
250/**
Michal Vasko101658e2018-06-05 15:05:54 +0200251 * @brief Flags for values
252 */
253#define LY_VALUE_UNRES 0x01 /**< flag for unresolved leafref or instance-identifier,
254 leafref - value union is filled as if being the target node's type,
255 instance-identifier - value union should not be accessed */
256#define LY_VALUE_USER 0x02 /**< flag for a user type stored value */
257/* 0x80 is reserveed for internal use */
258
259/**
Radek Krejcibf2abff2016-08-23 15:51:52 +0200260 * @brief Structure for data nodes defined as #LYS_ANYDATA or #LYS_ANYXML.
Michal Vasko2d162e12015-09-24 14:33:29 +0200261 *
262 * Extension for ::lyd_node structure - replaces the ::lyd_node#child member by new #value member. The first five
263 * members (#schema, #attr, #next, #prev and #parent) are compatible with the ::lyd_node's members.
264 *
265 * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro.
266 */
Radek Krejcibf2abff2016-08-23 15:51:52 +0200267struct lyd_node_anydata {
268 struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_anydata
Michal Vasko2d162e12015-09-24 14:33:29 +0200269 structure */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100270 uint8_t validity; /**< [validity flags](@ref validityflags) */
Michal Vaskoe77dc992017-01-18 12:09:42 +0100271 uint8_t dflt:1; /**< flag for implicit default node */
Radek Krejci0b7704f2016-03-18 12:16:14 +0100272 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 +0100273 do not use this value! */
Michal Vasko2d162e12015-09-24 14:33:29 +0200274
275 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
276 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
277 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
278 never NULL. If there is no sibling node, pointer points to the node
279 itself. In case of the first node, this pointer points to the last
280 node in the list. */
281 struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */
282
Michal Vaskod025ee32018-06-28 10:04:19 +0200283#ifdef LY_ENABLED_LYD_PRIV
284 void *priv; /**< private user data, not used by libyang */
285#endif
286
Michal Vasko24affa02018-04-03 09:06:06 +0200287#ifdef LY_ENABLED_CACHE
288 uint32_t hash; /**< hash of this particular node (module name + schema name) */
289#endif
290
Michal Vasko2d162e12015-09-24 14:33:29 +0200291 /* struct lyd_node *child; should be here, but is not */
292
293 /* anyxml's specific members */
Radek Krejci45826012016-08-24 15:07:57 +0200294 LYD_ANYDATA_VALUETYPE value_type;/**< type of the stored anydata value */
295 union {
296 const char *str; /**< string value, in case of printing as XML, characters like '<' or '&' are escaped */
Michal Vaskodcaf7222018-08-08 16:27:00 +0200297 char *mem; /**< raw memory (used for LYB format) */
Radek Krejci45826012016-08-24 15:07:57 +0200298 struct lyxml_elem *xml; /**< xml tree */
299 struct lyd_node *tree; /**< libyang data tree, does not change the root's parent, so it is not possible
300 to get from the data tree into the anydata/anyxml */
301 } value;
Michal Vasko2d162e12015-09-24 14:33:29 +0200302};
303
304/**
Radek Krejci991a3962016-05-05 15:00:14 +0200305 * @brief list of possible types of differencies in #lyd_difflist
306 */
307typedef enum {
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200308 LYD_DIFF_END = 0, /**< end of the differences list */
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200309 LYD_DIFF_DELETED, /**< deleted node
310 - Node is present in the first tree, but not in the second tree.
311 - To make both trees the same the node in lyd_difflist::first can be deleted from the
312 first tree. The pointer at the same index in the lyd_difflist::second array is
Michal Vasko6407fca2018-04-24 09:44:11 +0200313 NULL.
314 - If the deleted node has some children, these do not appear in the resulting diff
315 separately. In other words, a deleted node is considered deleted with all
316 its children. */
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200317 LYD_DIFF_CHANGED, /**< value of a leaf or anyxml is changed, the lyd_difflist::first and lyd_difflist::second
318 points to the leaf/anyxml instances in the first and the second tree respectively. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200319 LYD_DIFF_MOVEDAFTER1, /**< user-ordered (leaf-)list item was moved.
320 - To make both trees the same, all #LYD_DIFF_MOVEDAFTER1 transactions must be applied
Radek Krejci9e6f0b82016-05-13 17:33:16 +0200321 to the first tree in the strict order they appear in the difflist. The
322 lyd_difflist::first points to the first tree node being moved and the
323 lyd_difflist::second points to the first tree node after which the first node is
324 supposed to be moved. If the second pointer is NULL, the node is being moved into
325 the beginning as the first node of the (leaf-)list instances. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200326 LYD_DIFF_CREATED, /**< newly created node
327 - Node is present in the second tree, but not in the first tree.
328 - To make both trees the same the node in lyd_difflist::second is supposed to be
329 inserted (copied via lyd_dup()) into the node (as a child) at the same index in the
330 lyd_difflist::first array (where is its parent). If the lyd_difflist::first at the
Michal Vasko6407fca2018-04-24 09:44:11 +0200331 index is NULL, the missing node is top-level.
332 - If the created node has some children, these do not appear in the resulting diff
333 separately. In other words, a created node is considered created with all
334 its children. */
Radek Krejci22d2ca92016-05-17 16:23:51 +0200335 LYD_DIFF_MOVEDAFTER2 /**< similar to LYD_DIFF_MOVEDAFTER1, but this time the moved item is in the second tree.
336 This type is always used in combination with (as a successor of) #LYD_DIFF_CREATED
337 as an instruction to move the newly created node to a specific position. Note, that
338 due to applicability to the second tree, the meaning of lyd_difflist:first and
339 lyd_difflist:second is inverse in comparison to #LYD_DIFF_MOVEDAFTER1. The
340 lyd_difflist::second points to the (previously) created node in the second tree and
341 the lyd_difflist::first points to the predecessor node in the second tree. If the
342 predecessor is NULL, the node is supposed to bes the first sibling. */
Radek Krejci991a3962016-05-05 15:00:14 +0200343} LYD_DIFFTYPE;
344
345/**
346 * @brief Structure for the result of lyd_diff(), describing differences between two data trees.
347 */
348struct lyd_difflist {
349 LYD_DIFFTYPE *type; /**< array of the differences types, terminated by #LYD_DIFF_END value. */
350 struct lyd_node **first; /**< array of nodes in the first tree for the specific type of difference, see the
351 description of #LYD_DIFFTYPE values for more information. */
352 struct lyd_node **second;/**< array of nodes in the second tree for the specific type of difference, see the
353 description of #LYD_DIFFTYPE values for more information. */
354};
355
356/**
357 * @brief Free the result of lyd_diff(). It frees the structure of the lyd_diff() result, not the referenced nodes.
358 *
359 * @param[in] diff The lyd_diff() result to free.
360 */
361void lyd_free_diff(struct lyd_difflist *diff);
362
363/**
364 * @brief Compare two data trees and provide list of differences.
365 *
366 * Note, that the \p first and the \p second must have the same schema parent (or they must be top-level elements).
367 * In case of using #LYD_OPT_NOSIBLINGS, they both must be instances of the same schema node.
368 *
Radek Krejci913100d2016-05-09 17:23:51 +0200369 * Order of the resulting set follows these rules:
Radek Krejci22d2ca92016-05-17 16:23:51 +0200370 * - To change the first tree into the second tree, the resulting transactions are supposed to be applied in the order
371 * they appear in the result. First, the changed (#LYD_DIFF_CHANGED) nodes are described followed by the deleted
372 * (#LYD_DIFF_DELETED) nodes. Then, the moving of the user-ordered nodes present in both trees (#LYD_DIFF_MOVEDAFTER1)
373 * follows and the last transactions in the results are the newly created (#LYD_DIFF_CREATED) nodes. These nodes are
374 * supposed to be added as the last siblings, but in some case they can need additional move. In such a case, the
375 * #LYD_DIFF_MOVEDAFTER2 transactions can appear.
376 * - The order of the changed (#LYD_DIFF_CHANGED) and created (#LYD_DIFF_CREATED) follows the nodes order in the
377 * second tree - the current siblings are processed first and then the children are processed. Note, that this is
378 * actually not the BFS:
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200379 *
Radek Krejci913100d2016-05-09 17:23:51 +0200380 * 1 2
381 * / \ / \
382 * 3 4 7 8
383 * / \
384 * 5 6
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200385 *
Radek Krejci22d2ca92016-05-17 16:23:51 +0200386 * - The order of the deleted (#LYD_DIFF_DELETED) nodes is the DFS:
Radek Krejci9e47ddf2016-05-18 15:01:09 +0200387 *
388 * 1 6
389 * / \ / \
390 * 2 5 7 8
391 * / \
392 * 3 4
Radek Krejci913100d2016-05-09 17:23:51 +0200393 *
394 * To change the first tree into the second one, it is necessary to follow the order of transactions described in
395 * the result. Note, that it is not possible just to use the transactions in the reverse order to transform the
396 * second tree into the first one. The transactions can be generalized (to be used on a different instance of the
397 * first tree) using lyd_path() to get identifiers for the nodes used in the transactions.
398 *
Radek Krejci9a6a5dd2016-05-05 15:56:24 +0200399 * @param[in] first The first (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are
Radek Krejci4c3bc112016-05-19 15:09:03 +0200400 * taken into comparison. If NULL, all the \p second nodes are supposed to be top level and they will
401 * be marked as #LYD_DIFF_CREATED.
Radek Krejci9a6a5dd2016-05-05 15:56:24 +0200402 * @param[in] second The second (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are
Radek Krejci4c3bc112016-05-19 15:09:03 +0200403 * taken into comparison. If NULL, all the \p first nodes will be marked as #LYD_DIFF_DELETED.
Radek Krejci99d737f2016-09-06 11:19:52 +0200404 * @param[in] options The @ref diffoptions are accepted.
Radek Krejci991a3962016-05-05 15:00:14 +0200405 * @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 +0200406 * 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 +0200407 */
408struct lyd_difflist *lyd_diff(struct lyd_node *first, struct lyd_node *second, int options);
409
410/**
Radek Krejci99d737f2016-09-06 11:19:52 +0200411 * @defgroup diffoptions Diff options
412 * @ingroup datatree
413 *
414 * @{
415 */
416/* LYD_DIFFOPT_NOSIBLINGS value is the same as LYD_OPT_NOSIBLINGS due to backward compatibility. The LYD_OPT_NOSIBLINGS
417 * was used previously as an option for lyd_diff(). */
418#define LYD_DIFFOPT_NOSIBLINGS 0x0800 /**< The both trees to diff have to instantiate the same schema node so only the
419 single subtree is compared. */
420#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 +0100421 of both trees. Summary of the modified behavior:
422 - deleted node is replaced with implicit default node - #LYD_DIFF_CHANGED instead delete
423 - created node replaces an implicit default node - #LYD_DIFF_CHANGED instead create
424 - in both cases even if the values match - #LYD_DIFF_CHANGED is still returned, because dlft flag was changed
425 Note that in this case, applying the resulting
Radek Krejci99d737f2016-09-06 11:19:52 +0200426 transactions on the first tree does not result to the exact second tree,
427 because instead of having implicit default nodes you are going to have
428 explicit default nodes. */
429/**@} diffoptions */
430
431/**
Michal Vasko50576712017-07-28 12:28:33 +0200432 * @brief Build data path (usable as path, see @ref howtoxpath) of the data node.
Radek Krejci6d538282016-05-05 14:24:12 +0200433 * @param[in] node Data node to be processed. Note that the node should be from a complete data tree, having a subtree
434 * (after using lyd_unlink()) can cause generating invalid paths.
435 * @return NULL on error, on success the buffer for the resulting path is allocated and caller is supposed to free it
436 * with free().
437 */
Michal Vasko5efa25c2017-01-10 11:34:30 +0100438char *lyd_path(const struct lyd_node *node);
439
440/**
Radek Krejcidef50022016-02-01 16:38:32 +0100441 * @defgroup parseroptions Data parser options
442 * @ingroup datatree
443 *
444 * Various options to change the data tree parsers behavior.
445 *
446 * Default behavior:
447 * - in case of XML, parser reads all data from its input (file, memory, XML tree) including the case of not well-formed
448 * XML document (multiple top-level elements) and if there is an unknown element, it is skipped including its subtree
449 * (see the next point). This can be changed by the #LYD_OPT_NOSIBLINGS option which make parser to read only a single
450 * tree (with a single root element) from its input.
451 * - parser silently ignores the data without a matching node in schema trees. If the caller want to stop
452 * parsing in case of presence of unknown data, the #LYD_OPT_STRICT can be used. The strict mode is useful for
453 * NETCONF servers, since NETCONF clients should always send data according to the capabilities announced by the server.
454 * On the other hand, the default non-strict mode is useful for clients receiving data from NETCONF server since
455 * clients are not required to understand everything the server does. Of course, the optimal strategy for clients is
456 * to use filtering to get only the required data. Having an unknown element of the known namespace is always an error.
457 * The behavior can be changed by #LYD_OPT_STRICT option.
458 * - using obsolete statements (status set to obsolete) just generates a warning, but the processing continues. The
459 * behavior can be changed by #LYD_OPT_OBSOLETE option.
460 * - parser expects that the provided data provides complete datastore content (both the configuration and state data)
461 * and performs data validation according to all YANG rules. This can be a problem in case of representing NETCONF's
462 * subtree filter data, edit-config's data or other type of data set - such data do not represent a complete data set
463 * and some of the validation rules can fail. Therefore there are other options (within lower 8 bits) to make parser
464 * to accept such a data.
Radek Krejcif3c218d2016-03-24 12:40:08 +0100465 * - when parser evaluates when-stmt condition to false, the constrained subtree is automatically removed. If the
466 * #LYD_OPT_NOAUTODEL is used, error is raised instead of silent auto delete. The option (and also this default
467 * behavior) takes effect only in case of #LYD_OPT_DATA or #LYD_OPT_CONFIG type of data.
Radek Krejcidef50022016-02-01 16:38:32 +0100468 * @{
469 */
470
471#define LYD_OPT_DATA 0x00 /**< Default type of data - complete datastore content with configuration as well as
Radek Krejci06f8bb92017-08-02 15:36:25 +0200472 state data. To handle possibly missing (but by default required) ietf-yang-library
473 data, use #LYD_OPT_DATA_NO_YANGLIB or #LYD_OPT_DATA_ADD_YANGLIB options. */
Radek Krejcidef50022016-02-01 16:38:32 +0100474#define LYD_OPT_CONFIG 0x01 /**< A configuration datastore - complete datastore without state data.
475 Validation modifications:
476 - status data are not allowed */
477#define LYD_OPT_GET 0x02 /**< Data content from a NETCONF reply message to the NETCONF \<get\> operation.
478 Validation modifications:
479 - mandatory nodes can be omitted
Michal Vasko62671b92017-01-02 13:08:57 +0100480 - leafrefs and instance-identifier resolution is allowed to fail
Michal Vaskoebf7df22017-03-28 16:08:07 +0200481 - list's keys/unique nodes are not required (so duplication is not checked)
482 - must and when evaluation skipped */
Radek Krejcidef50022016-02-01 16:38:32 +0100483#define LYD_OPT_GETCONFIG 0x04 /**< Data content from a NETCONF reply message to the NETCONF \<get-config\> operation
484 Validation modifications:
485 - mandatory nodes can be omitted
Michal Vasko62671b92017-01-02 13:08:57 +0100486 - leafrefs and instance-identifier resolution is allowed to fail
Radek Krejcidef50022016-02-01 16:38:32 +0100487 - list's keys/unique nodes are not required (so duplication is not checked)
Michal Vaskoebf7df22017-03-28 16:08:07 +0200488 - must and when evaluation skipped
Radek Krejcidef50022016-02-01 16:38:32 +0100489 - status data are not allowed */
490#define LYD_OPT_EDIT 0x08 /**< Content of the NETCONF \<edit-config\>'s config element.
491 Validation modifications:
492 - mandatory nodes can be omitted
Michal Vasko62671b92017-01-02 13:08:57 +0100493 - leafrefs and instance-identifier resolution is allowed to fail
Michal Vaskoebf7df22017-03-28 16:08:07 +0200494 - must and when evaluation skipped
Radek Krejcidef50022016-02-01 16:38:32 +0100495 - status data are not allowed */
Michal Vasko75250262017-02-09 15:36:13 +0100496#define LYD_OPT_RPC 0x10 /**< Data represents RPC or action input parameters. */
497#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 +0100498#define LYD_OPT_NOTIF 0x40 /**< Data represents an event notification data. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100499#define LYD_OPT_NOTIF_FILTER 0x80 /**< Data represents a filtered event notification data.
500 Validation modification:
501 - the only requirement is that the data tree matches the schema tree */
PavolVican832f5432018-02-21 00:54:45 +0100502#define LYD_OPT_TYPEMASK 0x10000ff /**< Mask to filter data type options. Always only a single data type option (only
503 single bit from the lower 8 bits) can be set. */
Radek Krejcidef50022016-02-01 16:38:32 +0100504
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100505/* 0x100 reserved, used internally */
506#define LYD_OPT_STRICT 0x0200 /**< Instead of silent ignoring data without schema definition, raise an error. */
507#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 +0200508 provided XML tree is affected and all successfully parsed data are freed.
Radek Krejcidef50022016-02-01 16:38:32 +0100509 This option is applicable only to lyd_parse_xml() function. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100510#define LYD_OPT_OBSOLETE 0x0800 /**< Raise an error when an obsolete statement (status set to obsolete) is used. */
511#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 +0100512 XML input data. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100513#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 +0100514 are connected with the schema, but the most validation checks (mandatory nodes,
Michal Vaskod7f9bda2018-03-16 12:33:35 +0100515 list instance uniqueness, etc.) are not performed. This option does not make
516 sense for lyd_validate() so it is ignored by this function. */
Michal Vaskoe3886bb2017-01-02 11:33:28 +0100517#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 +0100518 applicable only in combination with #LYD_OPT_DATA and #LYD_OPT_CONFIG flags.
Radek Krejci03b71f72016-03-16 11:10:09 +0100519 If used, libyang generates validation error instead of silently removing the
520 constrained subtree. */
Michal Vasko3cfa3182017-01-17 10:00:58 +0100521#define LYD_OPT_NOEXTDEPS 0x8000 /**< Allow external dependencies (external leafrefs, instance-identifiers, must,
Michal Vaskof6aa8612017-03-02 10:52:44 +0100522 and when) to not be resolved/satisfied during validation. */
Radek Krejci06f8bb92017-08-02 15:36:25 +0200523#define LYD_OPT_DATA_NO_YANGLIB 0x10000 /**< Ignore (possibly) missing ietf-yang-library data. Applicable only with #LYD_OPT_DATA. */
524#define LYD_OPT_DATA_ADD_YANGLIB 0x20000 /**< Add missing ietf-yang-library data into the validated data tree. Applicable
525 only with #LYD_OPT_DATA. If some ietf-yang-library data are present, they are
526 preserved and option is ignored. */
PavolVican832f5432018-02-21 00:54:45 +0100527#define LYD_OPT_DATA_TEMPLATE 0x1000000 /**< Data represents YANG data template. */
Radek Krejcidef50022016-02-01 16:38:32 +0100528
529/**@} parseroptions */
530
531/**
Michal Vasko299f9832017-01-06 13:29:22 +0100532 * @brief Parse (and validate) data from memory.
Radek Krejcidef50022016-02-01 16:38:32 +0100533 *
534 * In case of LY_XML format, the data string is parsed completely. It means that when it contains
535 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
536 * returned data node is a root of the first tree with other trees connected via the next pointer.
537 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
538 *
539 * @param[in] ctx Context to connect with the data tree being built here.
540 * @param[in] data Serialized data in the specified format.
541 * @param[in] format Format of the input data to be parsed.
Michal Vasko228431e2018-07-10 15:47:11 +0200542 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly.
Michal Vasko6b44d712016-09-12 16:25:46 +0200543 * @param[in] ... Variable arguments depend on \p options. If they include:
544 * - #LYD_OPT_DATA:
545 * - #LYD_OPT_CONFIG:
546 * - #LYD_OPT_GET:
547 * - #LYD_OPT_GETCONFIG:
548 * - #LYD_OPT_EDIT:
549 * - no variable arguments expected.
550 * - #LYD_OPT_RPC:
551 * - #LYD_OPT_NOTIF:
552 * - struct lyd_node *data_tree - additional data tree that will be used
553 * when checking any "when" or "must" conditions in the parsed tree that require
554 * some nodes outside their subtree. It must be a list of top-level elements!
555 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200556 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
557 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200558 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200559 * when checking any "when" or "must" conditions in the parsed tree that require
560 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100561 * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure,
562 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
563 * #ly_errno contains appropriate error code (see #LY_ERR).
564 */
Radek Krejci722b0072016-02-01 17:09:45 +0100565struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options, ...);
Radek Krejcidef50022016-02-01 16:38:32 +0100566
567/**
Michal Vasko299f9832017-01-06 13:29:22 +0100568 * @brief Read (and validate) data from the given file descriptor.
Radek Krejcidef50022016-02-01 16:38:32 +0100569 *
570 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
571 *
572 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
573 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
574 * returned data node is a root of the first tree with other trees connected via the next pointer.
575 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
576 *
577 * @param[in] ctx Context to connect with the data tree being built here.
578 * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format.
579 * @param[in] format Format of the input data to be parsed.
Michal Vasko228431e2018-07-10 15:47:11 +0200580 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly.
Michal Vasko6b44d712016-09-12 16:25:46 +0200581 * @param[in] ... Variable arguments depend on \p options. If they include:
582 * - #LYD_OPT_DATA:
583 * - #LYD_OPT_CONFIG:
584 * - #LYD_OPT_GET:
585 * - #LYD_OPT_GETCONFIG:
586 * - #LYD_OPT_EDIT:
587 * - no variable arguments expected.
588 * - #LYD_OPT_RPC:
589 * - #LYD_OPT_NOTIF:
590 * - struct lyd_node *data_tree - additional data tree that will be used
591 * when checking any "when" or "must" conditions in the parsed tree that require
592 * some nodes outside their subtree. It must be a list of top-level elements!
593 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200594 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
595 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200596 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200597 * when checking any "when" or "must" conditions in the parsed tree that require
598 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100599 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
600 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
601 * #ly_errno contains appropriate error code (see #LY_ERR).
602 */
603struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options, ...);
604
605/**
Michal Vasko299f9832017-01-06 13:29:22 +0100606 * @brief Read (and validate) data from the given file path.
Radek Krejcidef50022016-02-01 16:38:32 +0100607 *
608 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
609 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
610 * returned data node is a root of the first tree with other trees connected via the next pointer.
611 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
612 *
613 * @param[in] ctx Context to connect with the data tree being built here.
614 * @param[in] path Path to the file containing the data tree in the specified format.
615 * @param[in] format Format of the input data to be parsed.
Michal Vasko228431e2018-07-10 15:47:11 +0200616 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly.
Michal Vasko6b44d712016-09-12 16:25:46 +0200617 * @param[in] ... Variable arguments depend on \p options. If they include:
618 * - #LYD_OPT_DATA:
619 * - #LYD_OPT_CONFIG:
620 * - #LYD_OPT_GET:
621 * - #LYD_OPT_GETCONFIG:
622 * - #LYD_OPT_EDIT:
623 * - no variable arguments expected.
624 * - #LYD_OPT_RPC:
625 * - #LYD_OPT_NOTIF:
626 * - struct lyd_node *data_tree - additional data tree that will be used
627 * when checking any "when" or "must" conditions in the parsed tree that require
628 * some nodes outside their subtree. It must be a list of top-level elements!
629 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200630 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
631 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200632 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200633 * when checking any "when" or "must" conditions in the parsed tree that require
634 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100635 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
636 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
637 * #ly_errno contains appropriate error code (see #LY_ERR).
638 */
639struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options, ...);
640
641/**
Michal Vasko299f9832017-01-06 13:29:22 +0100642 * @brief Parse (and validate) XML tree.
Radek Krejcidef50022016-02-01 16:38:32 +0100643 *
644 * The output data tree is parsed from the given XML tree previously parsed by one of the
645 * lyxml_read* functions.
646 *
Radek Krejci722b0072016-02-01 17:09:45 +0100647 * 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 +0100648 * or the provided root is a root element of a subtree), all the sibling nodes (previous as well as
649 * following) are processed as well. The returned data node is a root of the first tree with other
650 * trees connected via the next pointer. This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
651 *
652 * When the function is used with #LYD_OPT_DESTRUCT, all the successfully parsed data including the
653 * XML \p root and all its siblings (if #LYD_OPT_NOSIBLINGS is not used) are freed. Only with
654 * #LYD_OPT_DESTRUCT option the \p root pointer is changed - if all the data are parsed, it is set
655 * to NULL, otherwise it will hold the XML tree without the successfully parsed elements.
656 *
657 * The context must be the same as the context used to parse XML tree by lyxml_read* function.
658 *
659 * @param[in] ctx Context to connect with the data tree being built here.
660 * @param[in,out] root XML tree to parse (convert) to data tree. By default, parser do not change the XML tree. However,
661 * when #LYD_OPT_DESTRUCT is specified in \p options, parser frees all successfully parsed data.
662 * @param[in] options Parser options, see @ref parseroptions.
Michal Vasko6b44d712016-09-12 16:25:46 +0200663 * @param[in] ... Variable arguments depend on \p options. If they include:
664 * - #LYD_OPT_DATA:
665 * - #LYD_OPT_CONFIG:
666 * - #LYD_OPT_GET:
667 * - #LYD_OPT_GETCONFIG:
668 * - #LYD_OPT_EDIT:
669 * - no variable arguments expected.
670 * - #LYD_OPT_RPC:
671 * - #LYD_OPT_NOTIF:
672 * - struct lyd_node *data_tree - additional data tree that will be used
673 * when checking any "when" or "must" conditions in the parsed tree that require
674 * some nodes outside their subtree. It must be a list of top-level elements!
675 * - #LYD_OPT_RPCREPLY:
Michal Vaskod55f1092016-10-24 11:21:08 +0200676 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
677 * tree (the request) of the reply.
Michal Vasko945b96b2016-10-18 11:49:12 +0200678 * - const struct ::lyd_node *data_tree - additional data tree that will be used
Michal Vasko6b44d712016-09-12 16:25:46 +0200679 * when checking any "when" or "must" conditions in the parsed tree that require
680 * some nodes outside their subtree. It must be a list of top-level elements!
Radek Krejcidef50022016-02-01 16:38:32 +0100681 * @return Pointer to the built data tree or NULL in case of empty \p root. To free the returned structure,
682 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
683 * #ly_errno contains appropriate error code (see #LY_ERR).
684 */
685struct lyd_node *lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options,...);
686
687/**
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200688 * @brief Create a new container node in a data tree.
689 *
Michal Vasko299f9832017-01-06 13:29:22 +0100690 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
691 *
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200692 * @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 +0200693 * @param[in] module Module with the node being created.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200694 * @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 +0200695 * #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
Michal Vasko1dca6882015-10-22 14:29:42 +0200696 * @return New node, NULL on error.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200697 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100698struct lyd_node *lyd_new(struct lyd_node *parent, const struct lys_module *module, const char *name);
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200699
700/**
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200701 * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to
702 * the actual value.
703 *
Michal Vasko299f9832017-01-06 13:29:22 +0100704 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
705 *
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200706 * @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 +0200707 * @param[in] module Module with the node being created.
708 * @param[in] name Schema node name of the new data node.
Michal Vasko3e671b52015-10-23 16:23:15 +0200709 * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST
710 * 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 +0200711 * @return New node, NULL on error.
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200712 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100713struct lyd_node *lyd_new_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name,
Michal Vasko3e671b52015-10-23 16:23:15 +0200714 const char *val_str);
Michal Vasko8ea2b7f2015-09-29 14:30:53 +0200715
716/**
Radek Krejcib9b4d002016-01-18 13:08:51 +0100717 * @brief Change value of a leaf node.
718 *
Michal Vasko299f9832017-01-06 13:29:22 +0100719 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
720 *
Radek Krejcib9b4d002016-01-18 13:08:51 +0100721 * Despite the prototype allows to provide a leaflist node as \p leaf parameter, only leafs are accepted.
Michal Vasko2da8e042018-05-25 11:10:13 +0200722 * Also, the leaf will never be default after calling this function successfully.
Radek Krejcib9b4d002016-01-18 13:08:51 +0100723 *
724 * @param[in] leaf A leaf node to change.
725 * @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
726 * 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 +0100727 * @return 0 if the leaf was changed successfully (either its value changed or at least its default flag was cleared),
728 * <0 on error,
729 * 1 if the (canonical) value matched the original one and no value neither default flag change occured.
Radek Krejcib9b4d002016-01-18 13:08:51 +0100730 */
731int lyd_change_leaf(struct lyd_node_leaf_list *leaf, const char *val_str);
732
733/**
Radek Krejci45826012016-08-24 15:07:57 +0200734 * @brief Create a new anydata or anyxml node in a data tree.
735 *
Michal Vasko299f9832017-01-06 13:29:22 +0100736 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
737 *
Radek Krejci45826012016-08-24 15:07:57 +0200738 * 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 +0200739 *
Michal Vasko2d162e12015-09-24 14:33:29 +0200740 * @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 +0200741 * @param[in] module Module with the node being created.
Radek Krejci45826012016-08-24 15:07:57 +0200742 * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node
743 * is created.
744 * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is
745 * determined according to the \p value_type parameter.
746 * @param[in] value_type Type of the provided data \p value.
Michal Vasko1dca6882015-10-22 14:29:42 +0200747 * @return New node, NULL on error.
Michal Vasko2d162e12015-09-24 14:33:29 +0200748 */
Radek Krejci45826012016-08-24 15:07:57 +0200749struct lyd_node *lyd_new_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name,
750 void *value, LYD_ANYDATA_VALUETYPE value_type);
Michal Vasko2d162e12015-09-24 14:33:29 +0200751
752/**
Michal Vasko945b96b2016-10-18 11:49:12 +0200753 * @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 +0100754 *
Michal Vasko299f9832017-01-06 13:29:22 +0100755 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
756 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200757 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
758 * @param[in] module Module with the node being created.
Michal Vasko945b96b2016-10-18 11:49:12 +0200759 * @param[in] name Schema node name of the new data node. The node should only be #LYS_CONTAINER or #LYS_LIST,
760 * but accepted are also #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION.
Michal Vasko0df122f2015-12-14 13:38:21 +0100761 * @return New node, NULL on error.
762 */
Michal Vasko98a5a742016-05-11 11:02:56 +0200763struct lyd_node *lyd_new_output(struct lyd_node *parent, const struct lys_module *module, const char *name);
Michal Vasko50c0a872016-01-13 14:34:11 +0100764
765/**
Michal Vasko98a5a742016-05-11 11:02:56 +0200766 * @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 +0200767 * the actual value. Ignore RPC/action input nodes and instead use RPC/action output ones.
Michal Vasko50c0a872016-01-13 14:34:11 +0100768 *
Michal Vasko299f9832017-01-06 13:29:22 +0100769 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
770 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200771 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
772 * @param[in] module Module with the node being created.
773 * @param[in] name Schema node name of the new data node.
Michal Vasko50c0a872016-01-13 14:34:11 +0100774 * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST
775 * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces).
776 * @return New node, NULL on error.
777 */
Michal Vasko98a5a742016-05-11 11:02:56 +0200778struct lyd_node *lyd_new_output_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name,
779 const char *val_str);
Michal Vasko50c0a872016-01-13 14:34:11 +0100780
781/**
Michal Vasko945b96b2016-10-18 11:49:12 +0200782 * @brief Create a new anydata or anyxml node in a data tree. Ignore RPC/action input nodes and instead use
783 * RPC/action output ones.
Michal Vasko50c0a872016-01-13 14:34:11 +0100784 *
Michal Vasko299f9832017-01-06 13:29:22 +0100785 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
786 *
Michal Vasko98a5a742016-05-11 11:02:56 +0200787 * @param[in] parent Parent node for the node being created. NULL in case of creating top level element.
788 * @param[in] module Module with the node being created.
Radek Krejci45826012016-08-24 15:07:57 +0200789 * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node
790 * is created.
791 * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is
792 * determined according to the \p value_type parameter. Data are supposed to be dynamically allocated.
793 * Since it is directly attached into the created data node, caller is supposed to not manipulate with
794 * the data after a successful call (including calling free() on the provided data).
795 * @param[in] value_type Type of the provided data \p value.
Michal Vasko50c0a872016-01-13 14:34:11 +0100796 * @return New node, NULL on error.
797 */
Radek Krejci45826012016-08-24 15:07:57 +0200798struct lyd_node *lyd_new_output_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name,
799 void *value, LYD_ANYDATA_VALUETYPE value_type);
Michal Vasko0df122f2015-12-14 13:38:21 +0100800
801/**
PavolVican832f5432018-02-21 00:54:45 +0100802 * @brief Create a new yang-data template in a data tree. It creates container, which name is in third parameter.
803 *
804 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
805 *
806 * @param[in] module Module with the node being created.
807 * @param[in] name_template Yang-data template name. This name is used for searching of yang-data instance.
808 * @param[in] name Schema node name of the new data node. This node is container.
809 * @return New node, NULL on error.
810 */
811struct lyd_node *lyd_new_yangdata(const struct lys_module *module, const char *name_template, const char *name);
812
813/**
Michal Vaskof5299282016-03-16 13:32:02 +0100814 * @defgroup pathoptions Data path creation options
815 * @ingroup datatree
816 *
817 * Various options to change lyd_new_path() behavior.
818 *
819 * Default behavior:
Michal Vasko3c0eb752018-02-08 16:09:19 +0100820 * - if the target node already exists (and is not default), an error is returned.
Michal Vasko9db078d2016-03-23 11:08:51 +0100821 * - the whole path to the target node is created (with any missing parents) if necessary.
Michal Vasko2411b942016-03-23 13:50:03 +0100822 * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally.
Michal Vaskof5299282016-03-16 13:32:02 +0100823 * @{
824 */
825
Michal Vasko3c0eb752018-02-08 16:09:19 +0100826#define LYD_PATH_OPT_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its
827 default flag is changed, it is returned. If the target node exists and is not
828 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 +0200829#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 +0200830#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 +0100831#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 +0100832
833/** @} pathoptions */
834
835/**
836 * @brief Create a new data node based on a simple XPath.
837 *
Michal Vasko299f9832017-01-06 13:29:22 +0100838 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
839 *
Michal Vasko8d18ef52016-04-06 12:21:46 +0200840 * The new node is normally inserted at the end, either as the last child of a parent or as the last sibling
841 * if working with top-level elements. However, when manipulating RPC input or output, schema ordering is
Michal Vasko98a5a742016-05-11 11:02:56 +0200842 * required and always guaranteed.
Michal Vasko58f74f12016-03-24 13:26:06 +0100843 *
Michal Vasko8c419642016-04-13 14:22:01 +0200844 * If \p path points to a list key and the list does not exist, the key value from the predicate is used
845 * and \p value is ignored.
846 *
Michal Vasko7800b242018-04-03 11:15:05 +0200847 * @param[in] data_tree Existing data tree to add to/modify (including siblings). If creating RPCs/actions, there
848 * should only be one RPC/action and either input or output, not both. Can be NULL.
Michal Vaskof5299282016-03-16 13:32:02 +0100849 * @param[in] ctx Context to use. Mandatory if \p data_tree is NULL.
Michal Vasko50576712017-07-28 12:28:33 +0200850 * @param[in] path Simple data path (see @ref howtoxpath). List nodes can have predicates, one for each list key
851 * 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 +0200852 * can have predicates too that have preference over \p value. When specifying an identityref value in a predicate,
853 * you MUST use the module name as the value prefix!
Radek Krejci45826012016-08-24 15:07:57 +0200854 * @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 +0200855 * \p value_type parameter is required to be specified correctly. If creating nodes of other types, the
856 * parameter is ignored.
Radek Krejci45826012016-08-24 15:07:57 +0200857 * @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 +0100858 * @param[in] options Bitmask of options flags, see @ref pathoptions.
Michal Vasko8c419642016-04-13 14:22:01 +0200859 * @return First created (or updated with #LYD_PATH_OPT_UPDATE) node,
Michal Vasko17bb4902016-04-05 15:20:51 +0200860 * 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 +0200861 * NULL and ly_errno is set on error.
Michal Vaskof5299282016-03-16 13:32:02 +0100862 */
Radek Krejci45826012016-08-24 15:07:57 +0200863struct lyd_node *lyd_new_path(struct lyd_node *data_tree, struct ly_ctx *ctx, const char *path, void *value,
864 LYD_ANYDATA_VALUETYPE value_type, int options);
Michal Vaskof5299282016-03-16 13:32:02 +0100865
866/**
Michal Vaskoae5a53e2017-01-05 10:33:41 +0100867 * @brief Learn the relative instance position of a list or leaf-list within other instances of the
868 * same schema node.
869 *
870 * @param[in] node List or leaf-list to get the position of.
871 * @return 0 on error or positive integer of the instance position.
872 */
873unsigned int lyd_list_pos(const struct lyd_node *node);
874
875/**
Michal Vasko39dc8992018-04-03 11:32:00 +0200876 * @brief Create a copy of the specified data tree \p node. Schema references are kept the same. Use carefully,
877 * since libyang silently creates default nodes, it is always better to use lyd_dup_withsiblings() to duplicate
878 * the complete data tree.
Michal Vasko2d162e12015-09-24 14:33:29 +0200879 *
Michal Vasko299f9832017-01-06 13:29:22 +0100880 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
Michal Vasko2f95fe62016-12-01 09:36:08 +0100881 *
Michal Vasko2d162e12015-09-24 14:33:29 +0200882 * @param[in] node Data tree node to be duplicated.
883 * @param[in] recursive 1 if all children are supposed to be also duplicated.
884 * @return Created copy of the provided data \p node.
885 */
Michal Vasko1e62a092015-12-01 12:27:20 +0100886struct lyd_node *lyd_dup(const struct lyd_node *node, int recursive);
Michal Vasko2d162e12015-09-24 14:33:29 +0200887
888/**
Michal Vasko39dc8992018-04-03 11:32:00 +0200889 * @brief Create a copy of the specified data tree and all its siblings (preceding as well as following).
890 * Schema references are kept the same.
891 *
892 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
893 *
894 * @param[in] node Data tree sibling node to be duplicated.
895 * @param[in] recursive 1 if all children of all the siblings are supposed to be also duplicated.
896 * @return Created copy of the provided data \p node and all of its siblings.
897 */
898struct lyd_node *lyd_dup_withsiblings(const struct lyd_node *node, int recursive);
899
900/**
Radek Krejcia17c85c2017-01-06 12:22:34 +0100901 * @brief Create a copy of the specified data tree \p node in the different context. All the
902 * schema references and strings are re-mapped into the specified context.
903 *
904 * If the target context does not contain the schemas used in the source data tree, error
905 * is raised and the new data tree is not created.
906 *
907 * @param[in] node Data tree node to be duplicated.
908 * @param[in] recursive 1 if all children are supposed to be also duplicated.
909 * @param[in] ctx Target context for the duplicated data.
910 * @return Created copy of the provided data \p node.
911 */
912struct lyd_node *lyd_dup_to_ctx(const struct lyd_node *node, int recursive, struct ly_ctx *ctx);
913
914/**
Michal Vasko299f9832017-01-06 13:29:22 +0100915 * @brief Merge a (sub)tree into a data tree.
916 *
917 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
918 *
919 * Missing nodes are merged, leaf values updated.
Radek Krejci8f4eba52017-01-06 15:32:41 +0100920 *
Michal Vasko45fb2822016-04-18 13:32:17 +0200921 * If \p target and \p source do not share the top-level schema node, even if they
922 * are from different modules, \p source parents up to top-level node will be created and
923 * linked to the \p target (but only containers can be created this way, lists need keys,
924 * so if lists are missing, an error will be returned).
925 *
Radek Krejci2ffe9932017-01-06 16:29:47 +0100926 * If the source data tree is in a different context, the resulting data are placed into the context
927 * of the target tree.
Michal Vasko45fb2822016-04-18 13:32:17 +0200928 *
Michal Vaskocf6dc7e2016-04-18 16:00:37 +0200929 * @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 +0200930 * @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 +0100931 * @param[in] options Bitmask of the following option flags:
Michal Vasko0300b532016-09-14 12:16:02 +0200932 * - #LYD_OPT_DESTRUCT - spend \p source in the function, otherwise \p source is left untouched,
933 * - #LYD_OPT_NOSIBLINGS - merge only the \p source subtree (ignore siblings), otherwise merge
934 * \p source and all its succeeding siblings (preceeding ones are still ignored!),
935 * - #LYD_OPT_EXPLICIT - when merging an explicitly set node and a default node, always put
936 * the explicit node into \p target, otherwise the node which is in \p source is used.
Michal Vasko45fb2822016-04-18 13:32:17 +0200937 * @return 0 on success, nonzero in case of an error.
938 */
939int lyd_merge(struct lyd_node *target, const struct lyd_node *source, int options);
940
Radek Krejci2ffe9932017-01-06 16:29:47 +0100941/**
942 * @brief Same as lyd_merge(), but moves the resulting data into the specified context.
943 *
944 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
945 *
946 * @param[in] trg Top-level (or an RPC output child) data tree to merge to. Must be valid. If its context
947 * 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 +0100948 * tree in the required context is returned on success. To keep the \p trg tree, convert it to the
949 * 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 +0100950 * @param[in] src Data tree to merge \p target with. Must be valid (at least as a subtree).
951 * @param[in] options Bitmask of the following option flags:
952 * - #LYD_OPT_DESTRUCT - spend \p source in the function, otherwise \p source is left untouched,
953 * - #LYD_OPT_NOSIBLINGS - merge only the \p source subtree (ignore siblings), otherwise merge
954 * \p source and all its succeeding siblings (preceeding ones are still ignored!),
955 * - #LYD_OPT_EXPLICIT - when merging an explicitly set node and a default node, always put
956 * the explicit node into \p target, otherwise the node which is in \p source is used.
957 * @param[in] ctx Target context in which the result will be created. Note that the successful merge requires to have
958 * all the used modules in the source and target data trees loaded in the target context.
959 * @return 0 on success, nonzero in case of an error.
960 */
961int lyd_merge_to_ctx(struct lyd_node **trg, const struct lyd_node *src, int options, struct ly_ctx *ctx);
962
Michal Vasko0300b532016-09-14 12:16:02 +0200963#define LYD_OPT_EXPLICIT 0x0100
964
Michal Vasko45fb2822016-04-18 13:32:17 +0200965/**
Michal Vasko2d162e12015-09-24 14:33:29 +0200966 * @brief Insert the \p node element as child to the \p parent element. The \p node is inserted as a last child of the
967 * \p parent.
968 *
Michal Vasko299f9832017-01-06 13:29:22 +0100969 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
970 *
Michal Vaskob6c51f12016-09-14 12:15:11 +0200971 * - if the node is part of some other tree, it is automatically unlinked.
972 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
973 * - 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 +0200974 * element.
Michal Vaskob6c51f12016-09-14 12:15:11 +0200975 * - 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 +0200976 * by the new node.
977 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
978 * instance is silently replaced. If it contains the exact same default node, it is replaced as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +0200979 * - 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 +0200980 * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards.
981 *
982 * Note that this function differs from lyd_insert_before() and lyd_insert_after() because the position of the
983 * node being inserted is determined automatically according to the rules described above. In contrast to
984 * 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 +0200985 * NULL. If inserting something larger and not fitting the mentioned use-cases (or simply if unsure), you can always
986 * use lyd_merge(), it should be able to handle any situation.
Michal Vasko2d162e12015-09-24 14:33:29 +0200987 *
988 * @param[in] parent Parent node for the \p node being inserted.
989 * @param[in] node The node being inserted.
Michal Vasko24337392015-10-16 09:58:16 +0200990 * @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 +0200991 * in the data tree.
992 */
Michal Vasko24337392015-10-16 09:58:16 +0200993int lyd_insert(struct lyd_node *parent, struct lyd_node *node);
Michal Vasko2d162e12015-09-24 14:33:29 +0200994
995/**
Radek Krejcifd0bcf02016-09-09 13:28:34 +0200996 * @brief Insert the \p node element as a last sibling of the specified \p sibling element.
997 *
Michal Vasko299f9832017-01-06 13:29:22 +0100998 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
999 *
Michal Vaskob6c51f12016-09-14 12:15:11 +02001000 * - if the node is part of some other tree, it is automatically unlinked.
1001 * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted.
1002 * - 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 +02001003 * element.
Michal Vaskob6c51f12016-09-14 12:15:11 +02001004 * - 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 +02001005 * by the new node.
1006 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
1007 * instance is silently replaced. If it contains the exact same default node, it is replaced as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +02001008 * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new
1009 * 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 +02001010 *
1011 * Note that this function differs from lyd_insert_before() and lyd_insert_after() because the position of the
1012 * 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 +02001013 * lyd_insert_sibling() can be used to insert top-level elements. If inserting something larger and not fitting
1014 * the mentioned use-cases (or simply if unsure), you can always use lyd_merge(), it should be able to handle
1015 * any situation.
Radek Krejcifd0bcf02016-09-09 13:28:34 +02001016 *
1017 * @param[in,out] sibling Sibling node as a reference where to insert the \p node. When function succeeds, the sibling
1018 * is always set to point to the first sibling node. Note that in some cases described above, the provided sibling
1019 * node could be removed from the tree.
1020 * @param[in] node The node being inserted.
1021 * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place
1022 * in the data tree.
1023 */
1024int lyd_insert_sibling(struct lyd_node **sibling, struct lyd_node *node);
1025
1026/**
Michal Vasko3f7dba12015-10-15 13:09:27 +02001027 * @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 +01001028 * siblings (just moving \p node position).
1029 *
1030 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
Michal Vasko2d162e12015-09-24 14:33:29 +02001031 *
Michal Vaskob6c51f12016-09-14 12:15:11 +02001032 * - 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 +02001033 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
1034 * instance is removed. If it contains the exact same default node, it is removed as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +02001035 * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new
1036 * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards.
1037 *
Michal Vasko2d162e12015-09-24 14:33:29 +02001038 * @param[in] sibling The data tree node before which the \p node will be inserted.
Radek Krejci20a5f292016-02-09 15:04:49 +01001039 * @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 +02001040 * @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 +02001041 * in the data tree.
1042 */
Michal Vasko24337392015-10-16 09:58:16 +02001043int lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node);
Michal Vasko2d162e12015-09-24 14:33:29 +02001044
1045/**
Radek Krejci20a5f292016-02-09 15:04:49 +01001046 * @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 +01001047 * siblings (just moving \p node position).
1048 *
1049 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
Michal Vasko2d162e12015-09-24 14:33:29 +02001050 *
Michal Vaskob6c51f12016-09-14 12:15:11 +02001051 * - 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 +02001052 * - if a default node is being inserted and the target tree already contains non-default instance, the existing
1053 * instance is removed. If it contains the exact same default node, it is removed as well.
Michal Vaskob6c51f12016-09-14 12:15:11 +02001054 * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new
1055 * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards.
1056 *
Michal Vasko3f7dba12015-10-15 13:09:27 +02001057 * @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 +01001058 * are already siblings (just moving \p node position), skip validation.
Radek Krejci20a5f292016-02-09 15:04:49 +01001059 * @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 +02001060 * @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 +02001061 * in the data tree.
1062 */
Michal Vasko24337392015-10-16 09:58:16 +02001063int lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node);
1064
1065/**
Michal Vasko2411b942016-03-23 13:50:03 +01001066 * @brief Order siblings according to the schema node ordering.
1067 *
Michal Vasko299f9832017-01-06 13:29:22 +01001068 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1069 *
Michal Vasko58f74f12016-03-24 13:26:06 +01001070 * If the siblings include data nodes from other modules, they are
1071 * sorted based on the module order in the context.
1072 *
1073 * @param[in] sibling Node, whose siblings will be sorted.
1074 * @param[in] recursive Whether sort all siblings of siblings, recursively.
1075 * @return 0 on success, nonzero in case of an error.
Michal Vasko2411b942016-03-23 13:50:03 +01001076 */
Michal Vasko58f74f12016-03-24 13:26:06 +01001077int lyd_schema_sort(struct lyd_node *sibling, int recursive);
Michal Vasko2411b942016-03-23 13:50:03 +01001078
1079/**
Michal Vasko50576712017-07-28 12:28:33 +02001080 * @brief Search in the given data for instances of nodes matching the provided path.
Michal Vasko105cef12016-02-04 12:06:26 +01001081 *
Michal Vasko50576712017-07-28 12:28:33 +02001082 * Learn more about the path format on page @ref howtoxpath.
Michal Vasko105cef12016-02-04 12:06:26 +01001083 *
Michal Vasko50576712017-07-28 12:28:33 +02001084 * @param[in] ctx_node Path context node.
1085 * @param[in] path Data path expression filtering the matching nodes.
1086 * @return Set of found data nodes. If no nodes are matching \p path or the result
Michal Vasko105cef12016-02-04 12:06:26 +01001087 * would be a number, a string, or a boolean, the returned set is empty. In case of an error, NULL is returned.
1088 */
Michal Vasko50576712017-07-28 12:28:33 +02001089struct ly_set *lyd_find_path(const struct lyd_node *ctx_node, const char *path);
Michal Vasko105cef12016-02-04 12:06:26 +01001090
1091/**
Radek Krejcic5b6b912016-01-18 16:35:35 +01001092 * @brief Search in the given data for instances of the provided schema node.
1093 *
1094 * The \p data is used to find the data root and function then searches in the whole tree and all sibling trees.
1095 *
1096 * @param[in] data A node in the data tree to search.
1097 * @param[in] schema Schema node of the data nodes caller want to find.
Michal Vasko46a4bf92016-09-08 08:23:49 +02001098 * @return Set of found data nodes. If no data node is found, the returned set is empty.
Radek Krejcic5b6b912016-01-18 16:35:35 +01001099 * In case of error, NULL is returned.
1100 */
Michal Vaskof06fb5b2016-09-08 10:05:56 +02001101struct ly_set *lyd_find_instance(const struct lyd_node *data, const struct lys_node *schema);
Radek Krejcic5b6b912016-01-18 16:35:35 +01001102
1103/**
Radek Krejcid788a522016-07-25 14:57:38 +02001104 * @brief Get the first sibling of the given node.
1105 *
1106 * @param[in] node Node which first sibling is going to be the result.
1107 * @return The first sibling of the given node or the node itself if it is the first child of the parent.
1108 */
1109struct lyd_node *lyd_first_sibling(struct lyd_node *node);
1110
1111/**
Michal Vasko24337392015-10-16 09:58:16 +02001112 * @brief Validate \p node data subtree.
1113 *
Michal Vaskodedea832016-04-19 11:24:45 +02001114 * @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 +02001115 * can modify the provided tree including the root \p node.
Michal Vasko24337392015-10-16 09:58:16 +02001116 * @param[in] options Options for the inserting data to the target data tree options, see @ref parseroptions.
Michal Vaskocdb90172016-09-13 09:34:36 +02001117 * @param[in] var_arg Variable argument depends on \p options. If they include:
Michal Vasko6b44d712016-09-12 16:25:46 +02001118 * - #LYD_OPT_DATA:
1119 * - #LYD_OPT_CONFIG:
1120 * - #LYD_OPT_GET:
1121 * - #LYD_OPT_GETCONFIG:
1122 * - #LYD_OPT_EDIT:
Michal Vaskocdb90172016-09-13 09:34:36 +02001123 * - struct ly_ctx *ctx - context to use when \p node is NULL (for checking an empty tree),
1124 * otherwise can be NULL.
Michal Vasko6b44d712016-09-12 16:25:46 +02001125 * - #LYD_OPT_RPC:
1126 * - #LYD_OPT_RPCREPLY:
1127 * - #LYD_OPT_NOTIF:
1128 * - struct ::lyd_node *data_tree - additional data tree that will be used when checking
Michal Vaskocdb90172016-09-13 09:34:36 +02001129 * any "when" or "must" conditions in the \p node tree
1130 * that require some nodes outside their subtree. If set,
1131 * it must be a list of top-level elements!
Radek Krejci92ece002016-04-04 15:45:05 +02001132 * @return 0 on success, nonzero in case of an error.
Michal Vasko24337392015-10-16 09:58:16 +02001133 */
Michal Vaskocdb90172016-09-13 09:34:36 +02001134int lyd_validate(struct lyd_node **node, int options, void *var_arg);
Michal Vasko2d162e12015-09-24 14:33:29 +02001135
1136/**
Radek Krejcif6fac5e2017-05-18 15:14:18 +02001137 * @brief Check restrictions applicable to the particular leaf/leaf-list on the given string value.
1138 *
1139 * Validates the value only using the types' restrictions. Do not check the rest of restrictions dependent on the
1140 * data tree (must, when statements or uniqueness of the leaf-list item).
1141 *
Radek Krejcie3bd2f32017-08-07 13:52:28 +02001142 * The format of the data must follow rules for the lexical representation of the specific YANG type. Note
1143 * that if there are some extensions of the lexical representation for the YANG module (default value), they are
1144 * not supported by this function - it strictly follows rules for the lexical representations in data trees.
1145 *
Radek Krejcif6fac5e2017-05-18 15:14:18 +02001146 * @param[in] node Schema node of the leaf or leaf-list eventually holding the \p value.
1147 * @param[in] value Value to be checked (NULL is checked as empty string).
1148 * @return EXIT_SUCCESS if the \p value conforms to the restrictions, EXIT_FAILURE otherwise.
1149 */
1150int lyd_validate_value(struct lys_node *node, const char *value);
1151
1152/**
Radek Krejci46180b52016-08-31 16:01:32 +02001153 * @brief Get know if the node contain (despite implicit or explicit) default value.
Radek Krejci7b4309c2016-03-23 10:30:29 +01001154 *
Radek Krejci46180b52016-08-31 16:01:32 +02001155 * @param[in] node The leaf or leaf-list to check. Note, that leaf-list is marked as default only when the complete
1156 * and only the default set is present (node's siblings are also checked).
1157 * @return 1 if the node contains the default value, 0 otherwise.
Radek Krejci7b4309c2016-03-23 10:30:29 +01001158 */
Radek Krejci46180b52016-08-31 16:01:32 +02001159int lyd_wd_default(struct lyd_node_leaf_list *node);
Radek Krejci6b8f6ac2016-03-23 12:33:04 +01001160
1161/**
Michal Vasko55f60be2015-10-14 13:12:58 +02001162 * @brief Unlink the specified data subtree. All referenced namespaces are copied.
Michal Vasko2d162e12015-09-24 14:33:29 +02001163 *
Michal Vasko299f9832017-01-06 13:29:22 +01001164 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1165 *
Michal Vasko2d162e12015-09-24 14:33:29 +02001166 * Note, that the node's connection with the schema tree is kept. Therefore, in case of
1167 * reconnecting the node to a data tree using lyd_paste() it is necessary to paste it
1168 * to the appropriate place in the data tree following the schema.
1169 *
1170 * @param[in] node Data tree node to be unlinked (together with all children).
1171 * @return 0 for success, nonzero for error
1172 */
1173int lyd_unlink(struct lyd_node *node);
1174
1175/**
Radek Krejcifd0bcf02016-09-09 13:28:34 +02001176 * @brief Free (and unlink) the specified data subtree. Use carefully, since libyang silently creates default nodes,
1177 * it is always better to use lyd_free_withsiblings() to free the complete data tree.
Michal Vasko2d162e12015-09-24 14:33:29 +02001178 *
Michal Vasko299f9832017-01-06 13:29:22 +01001179 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1180 *
Michal Vasko2d162e12015-09-24 14:33:29 +02001181 * @param[in] node Root of the (sub)tree to be freed.
1182 */
1183void lyd_free(struct lyd_node *node);
1184
1185/**
Radek Krejcifd0bcf02016-09-09 13:28:34 +02001186 * @brief Free (and unlink) the specified data tree and all its siblings (preceding as well as following).
Radek Krejci81468402016-01-07 13:52:40 +01001187 *
Michal Vasko299f9832017-01-06 13:29:22 +01001188 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
1189 *
Radek Krejci81468402016-01-07 13:52:40 +01001190 * @param[in] node One of the siblings root element of the (sub)trees to be freed.
1191 */
1192void lyd_free_withsiblings(struct lyd_node *node);
1193
1194/**
Radek Krejci134610e2015-10-20 17:15:34 +02001195 * @brief Insert attribute into the data node.
1196 *
1197 * @param[in] parent Data node where to place the attribute
Radek Krejci70ecd722016-03-21 09:04:00 +01001198 * @param[in] mod An alternative way to specify attribute's module (namespace) used in case the \p name does
1199 * not include prefix. If neither prefix in the \p name nor mod is specified, the attribute's
1200 * module is inherited from the \p parent node. It is not allowed to have attributes with no
1201 * module (namespace).
1202 * @param[in] name Attribute name. The string can include the attribute's module (namespace) as the name's
1203 * prefix (prefix:name). Prefix must be the name of one of the schema in the \p parent's context.
1204 * If the prefix is not specified, the \p mod parameter is used. If neither of these parameters is
1205 * usable, attribute inherits module (namespace) from the \p parent node. It is not allowed to
1206 * have attributes with no module (namespace).
Radek Krejci134610e2015-10-20 17:15:34 +02001207 * @param[in] value Attribute value
1208 * @return pointer to the created attribute (which is already connected in \p parent) or NULL on error.
1209 */
Radek Krejci70ecd722016-03-21 09:04:00 +01001210struct lyd_attr *lyd_insert_attr(struct lyd_node *parent, const struct lys_module *mod, const char *name,
1211 const char *value);
Radek Krejci134610e2015-10-20 17:15:34 +02001212
1213/**
Radek Krejci88f29302015-10-30 15:42:33 +01001214 * @brief Destroy data attribute
1215 *
1216 * If the attribute to destroy is a member of a node attribute list, it is necessary to
1217 * provide the node itself as \p parent to keep the list consistent.
1218 *
1219 * @param[in] ctx Context where the attribute was created (usually it is the context of the \p parent)
1220 * @param[in] parent Parent node where the attribute is placed
1221 * @param[in] attr Attribute to destroy
1222 * @param[in] recursive Zero to destroy only the attribute, non-zero to destroy also all the subsequent attributes
1223 * in the list.
1224 */
1225void lyd_free_attr(struct ly_ctx *ctx, struct lyd_node *parent, struct lyd_attr *attr, int recursive);
1226
1227/**
Radek Krejci6910a032016-04-13 10:06:21 +02001228 * @brief Return main module of the data tree node.
1229 *
1230 * In case of regular YANG module, it returns ::lys_node#module pointer,
1231 * but in case of submodule, it returns pointer to the main module.
1232 *
1233 * @param[in] node Data tree node to be examined
1234 * @return pointer to the main module (schema structure), NULL in case of error.
1235 */
1236struct lys_module *lyd_node_module(const struct lyd_node *node);
1237
1238/**
Michal Vasko0a8ab412017-01-09 11:10:08 +01001239 * @brief Get the type structure of a leaf.
1240 *
1241 * In case of a union, the correct specific type is found.
1242 * 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 +01001243 *
1244 * @param[in] leaf Leaf to examine.
Michal Vasko0a8ab412017-01-09 11:10:08 +01001245 * @return Found type, NULL on error.
Michal Vaskoe3886bb2017-01-02 11:33:28 +01001246 */
1247const struct lys_type *lyd_leaf_type(const struct lyd_node_leaf_list *leaf);
1248
1249/**
Radek Krejcidef50022016-02-01 16:38:32 +01001250* @brief Print data tree in the specified format.
1251*
Radek Krejcidef50022016-02-01 16:38:32 +01001252* @param[out] strp Pointer to store the resulting dump.
1253* @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1254* node of the data tree to print the specific subtree.
1255* @param[in] format Data output format.
Michal Vasko228431e2018-07-10 15:47:11 +02001256* @param[in] options [printer flags](@ref printerflags). \p format LYD_LYB accepts only #LYP_WITHSIBLINGS option.
Radek Krejcidef50022016-02-01 16:38:32 +01001257* @return 0 on success, 1 on failure (#ly_errno is set).
1258*/
1259int lyd_print_mem(char **strp, const struct lyd_node *root, LYD_FORMAT format, int options);
Michal Vasko2d162e12015-09-24 14:33:29 +02001260
1261/**
Radek Krejcidef50022016-02-01 16:38:32 +01001262 * @brief Print data tree in the specified format.
Michal Vasko2d162e12015-09-24 14:33:29 +02001263 *
Radek Krejcidef50022016-02-01 16:38:32 +01001264 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1265 * node of the data tree to print the specific subtree.
1266 * @param[in] fd File descriptor where to print the data.
1267 * @param[in] format Data output format.
Michal Vasko228431e2018-07-10 15:47:11 +02001268 * @param[in] options [printer flags](@ref printerflags). \p format LYD_LYB accepts only #LYP_WITHSIBLINGS option.
Radek Krejcidef50022016-02-01 16:38:32 +01001269 * @return 0 on success, 1 on failure (#ly_errno is set).
Michal Vasko2d162e12015-09-24 14:33:29 +02001270 */
Radek Krejcidef50022016-02-01 16:38:32 +01001271int lyd_print_fd(int fd, const struct lyd_node *root, LYD_FORMAT format, int options);
1272
1273/**
1274 * @brief Print data tree in the specified format.
1275 *
Radek Krejcidef50022016-02-01 16:38:32 +01001276 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1277 * node of the data tree to print the specific subtree.
1278 * @param[in] f File stream where to print the data.
1279 * @param[in] format Data output format.
Michal Vasko228431e2018-07-10 15:47:11 +02001280 * @param[in] options [printer flags](@ref printerflags). \p format LYD_LYB accepts only #LYP_WITHSIBLINGS option.
Radek Krejcidef50022016-02-01 16:38:32 +01001281 * @return 0 on success, 1 on failure (#ly_errno is set).
1282 */
1283int lyd_print_file(FILE *f, const struct lyd_node *root, LYD_FORMAT format, int options);
1284
1285/**
1286 * @brief Print data tree in the specified format.
1287 *
Radek Krejcidef50022016-02-01 16:38:32 +01001288 * @param[in] root Root node of the data tree to print. It can be actually any (not only real root)
1289 * node of the data tree to print the specific subtree.
1290 * @param[in] writeclb Callback function to write the data (see write(1)).
1291 * @param[in] arg Optional caller-specific argument to be passed to the \p writeclb callback.
1292 * @param[in] format Data output format.
Michal Vasko228431e2018-07-10 15:47:11 +02001293 * @param[in] options [printer flags](@ref printerflags). \p format LYD_LYB accepts only #LYP_WITHSIBLINGS option.
Radek Krejcidef50022016-02-01 16:38:32 +01001294 * @return 0 on success, 1 on failure (#ly_errno is set).
1295 */
1296int lyd_print_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg,
1297 const struct lyd_node *root, LYD_FORMAT format, int options);
Michal Vasko2d162e12015-09-24 14:33:29 +02001298
Michal Vasko4d1f0482016-09-19 14:35:06 +02001299/**
1300 * @brief Get the double value of a decimal64 leaf/leaf-list.
1301 *
1302 * YANG decimal64 type enables higher precision numbers than IEEE 754 double-precision
1303 * format, so this conversion does not have to be lossless.
1304 *
1305 * @param[in] node Leaf/leaf-list of type decimal64.
1306 * @return Closest double equivalent to the decimal64 value.
1307 */
1308double lyd_dec64_to_double(const struct lyd_node *node);
1309
Michal Vasko196c6102018-08-08 16:27:42 +02001310/**
1311 * @brief Get the length of a printed LYB data tree.
1312 *
1313 * @param[in] data LYB data.
1314 * @return \p data length or -1 on error.
1315 */
1316int lyd_lyb_data_length(const char *data);
1317
Michal Vaskod025ee32018-06-28 10:04:19 +02001318#ifdef LY_ENABLED_LYD_PRIV
1319
1320/**
1321 * @brief Set a schema private pointer to a user pointer.
1322 *
1323 * @param[in] node Data node, whose private field will be assigned.
1324 * @param[in] priv Arbitrary user-specified pointer.
1325 * @return Previous private object of the \p node (NULL if this is the first call on the \p node). Note, that
1326 * the caller is in this case responsible (if it is necessary) for freeing the replaced private object. In case
1327 * of invalid (NULL) \p node, NULL is returned and #ly_errno is set to #LY_EINVAL.
1328 */
1329void *lyd_set_private(const struct lyd_node *node, void *priv);
1330
1331#endif
1332
Michal Vasko2d162e12015-09-24 14:33:29 +02001333/**@} */
1334
1335#ifdef __cplusplus
1336}
1337#endif
1338
1339#endif /* LY_TREE_DATA_H_ */