blob: ec23aac1bd7e9393a6587b73941e7b398da65045 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief libyang representation of YANG data trees.
5 *
6 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_TREE_DATA_H_
16#define LY_TREE_DATA_H_
17
18#include <stddef.h>
19#include <stdint.h>
20
21#include "log.h"
22#include "tree.h"
23#include "tree_schema.h"
24
25struct ly_ctx;
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31/**
32 * @defgroup datatree Data Tree
33 * @{
34 *
35 * Data structures and functions to manipulate and access instance data tree.
36 */
37
38/**
39 * @brief Macro to iterate via all elements in a data tree. This is the opening part
40 * to the #LYD_TREE_DFS_END - they always have to be used together.
41 *
42 * The function follows deep-first search algorithm:
43 * <pre>
44 * 1
45 * / \
46 * 2 4
47 * / / \
48 * 3 5 6
49 * </pre>
50 *
51 * Use the same parameters for #LY_TREE_DFS_BEGIN and #LY_TREE_DFS_END. While
52 * START can be any of the lyd_node* types, NEXT and ELEM variables are expected
53 * to be pointers to a generic struct lyd_node.
54 *
55 * Since the next node is selected as part of #LYD_TREE_DFS_END, do not use
56 * continue statement between the #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END.
57 *
58 * Use with opening curly bracket '{' after the macro.
59 *
60 * @param START Pointer to the starting element processed first.
61 * @param NEXT Temporary storage, do not use.
62 * @param ELEM Iterator intended for use in the block.
63 */
64#define LYD_TREE_DFS_BEGIN(START, NEXT, ELEM) \
65 for ((ELEM) = (NEXT) = (START); \
66 (ELEM); \
67 (ELEM) = (NEXT))
68
69/**
70 * @brief Macro to iterate via all elements in a tree. This is the closing part
71 * to the #LYD_TREE_DFS_BEGIN - they always have to be used together.
72 *
73 * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While
74 * START can be any of the lyd_node* types, NEXT and ELEM variables are expected
75 * to be pointers to a generic struct lyd_node.
76 *
77 * Use with closing curly bracket '}' after the macro.
78 *
79 * @param START Pointer to the starting element processed first.
80 * @param NEXT Temporary storage, do not use.
81 * @param ELEM Iterator intended for use in the block.
82 */
83
84#define LYD_TREE_DFS_END(START, NEXT, ELEM) \
85 /* select element for the next run - children first */ \
86 (NEXT) = (struct lyd_node*)lyd_node_children((struct lyd_node*)ELEM); \
87 if (!(NEXT)) { \
88 /* no children */ \
89 if ((ELEM) == (struct lyd_node*)(START)) { \
90 /* we are done, (START) has no children */ \
91 break; \
92 } \
93 /* try siblings */ \
94 (NEXT) = (ELEM)->next; \
95 } \
96 while (!(NEXT)) { \
97 /* parent is already processed, go to its sibling */ \
98 (ELEM) = (struct lyd_node*)(ELEM)->parent; \
99 /* no siblings, go back through parents */ \
100 if ((ELEM)->parent == (START)->parent) { \
101 /* we are done, no next element to process */ \
102 break; \
103 } \
104 (NEXT) = (ELEM)->next; \
105 }
106
107/**
108 * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and
109 * [printer](@ref howtodataprinters) functions.
110 */
111typedef enum {
112 LYD_UNKNOWN = 0, /**< unknown format, used as return value in case of error */
113 LYD_XML, /**< XML format of the instance data */
114#if 0
115 LYD_JSON, /**< JSON format of the instance data */
116 LYD_LYB, /**< LYB format of the instance data */
117#endif
118} LYD_FORMAT;
119
120/**
121 * @brief List of possible value types stored in ::lyd_node_anydata.
122 */
123typedef enum {
124 LYD_ANYDATA_CONSTSTRING = 0x00, /**< value is constant string (const char *) which is internally duplicated for
125 storing in the anydata structure; XML sensitive characters (such as & or \>)
126 are automatically escaped when the anydata is printed in XML format. */
127 LYD_ANYDATA_STRING = 0x01, /**< value is dynamically allocated string (char*), so the data are used directly
128 without duplication and caller is supposed to not manipulate with the data
129 after a successful call (including calling free() on the provided data); XML
130 sensitive characters (such as & or \>) are automatically escaped when the
131 anydata is printed in XML format */
132 LYD_ANYDATA_JSON = 0x02, /**< value is string containing the data modeled by YANG and encoded as I-JSON. The
133 string is handled as constant string. In case of using the value as input
134 parameter, the #LYD_ANYDATA_JSOND can be used for dynamically allocated
135 string. */
136 LYD_ANYDATA_JSOND = 0x03, /**< In case of using value as input parameter, this enumeration is supposed to be
137 used for dynamically allocated strings (it is actually combination of
138 #LYD_ANYDATA_JSON and #LYD_ANYDATA_STRING (and it can be also specified as
139 ORed value of the mentioned values. */
140 LYD_ANYDATA_SXML = 0x04, /**< value is string containing the serialized XML data. The string is handled as
141 constant string. In case of using the value as input parameter, the
142 #LYD_ANYDATA_SXMLD can be used for dynamically allocated string. */
143 LYD_ANYDATA_SXMLD = 0x05, /**< In case of using serialized XML value as input parameter, this enumeration is
144 supposed to be used for dynamically allocated strings (it is actually
145 combination of #LYD_ANYDATA_SXML and #LYD_ANYDATA_STRING (and it can be also
146 specified as ORed value of the mentioned values). */
147 LYD_ANYDATA_XML = 0x08, /**< value is struct lyxml_elem*, the structure is directly connected into the
148 anydata node without duplication, caller is supposed to not manipulate with the
149 data after a successful call (including calling lyxml_free() on the provided
150 data) */
151 LYD_ANYDATA_DATATREE = 0x10, /**< value is struct lyd_node* (first sibling), the structure is directly connected
152 into the anydata node without duplication, caller is supposed to not manipulate
153 with the data after a successful call (including calling lyd_free() on the
154 provided data) */
155 LYD_ANYDATA_LYB = 0x20, /**< value is a memory with serialized data tree in LYB format. The data are handled
156 as a constant string. In case of using the value as input parameter,
157 the #LYD_ANYDATA_LYBD can be used for dynamically allocated string. */
158 LYD_ANYDATA_LYBD = 0x21, /**< In case of using LYB value as input parameter, this enumeration is
159 supposed to be used for dynamically allocated strings (it is actually
160 combination of #LYD_ANYDATA_LYB and #LYD_ANYDATA_STRING (and it can be also
161 specified as ORed value of the mentioned values). */
162} LYD_ANYDATA_VALUETYPE;
163
164/** @} */
165
166/**
167 * @brief YANG data representation
168 */
169struct lyd_value {
170 const char *canonized; /**< string representation of value (for comparison, printing,...), canonized according to the
171 rules implemented in the type's canonization callback (if any). */
172 union {
173 const char *string; /**< original, non-canonized string value. Useful for example for unions where the type (and therefore
174 the cannonization rules) can change by changing value (e.g. leafref target) somewhere else. */
175 int8_t boolean; /**< 0 as false, 1 as true */
176 int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */
177 struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */
Radek Krejci849a62a2019-05-22 15:29:05 +0200178 struct lysc_type_bitenum_item **bits_items; /**< list of set pointers to the specification of the set bits ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200179 struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */
Radek Krejcie553e6d2019-06-07 15:33:18 +0200180 struct lyd_value_prefix {
181 const char *prefix; /**< prefix string used in the canonized string to identify the mod of the YANG schema */
182 const struct lys_module *mod; /**< YANG schema module identified by the prefix string */
183 } *prefixes; /**< list of mappings between prefix in canonized value to a YANG schema ([sized array](@ref sizedarrays)) */
Radek Krejcie7b95092019-05-15 11:03:07 +0200184 int8_t int8; /**< 8-bit signed integer */
185 int16_t int16; /**< 16-bit signed integer */
186 int32_t int32; /**< 32-bit signed integer */
187 int64_t int64; /**< 64-bit signed integer */
188 uint8_t uint8; /**< 8-bit unsigned integer */
189 uint16_t uint16; /**< 16-bit signed integer */
190 uint32_t uint32; /**< 32-bit signed integer */
191 uint64_t uint64; /**< 64-bit signed integer */
192 void *ptr; /**< generic data type structure used to store the data */
193 }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang works only with the canonized string,
194 this specific data type storage is just to simplify use of the values by the libyang users. */
Radek Krejcie7b95092019-05-15 11:03:07 +0200195};
196
197/**
198 * @brief Attribute structure.
199 *
200 * The structure provides information about attributes of a data element. Such attributes must map to
201 * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations)
202 * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON,
203 * they are represented as JSON elements starting with the '@' character (for more information, see the
204 * YANG metadata RFC.
205 *
206 */
207struct lyd_attr {
208 struct lyd_node *parent; /**< data node where the attribute is placed */
209 struct lyd_attr *next; /**< pointer to the next attribute of the same element */
210 void *annotation; /**< TODO pointer to the attribute/annotation's definition */
211 const char *name; /**< attribute name */
212 struct lyd_value value; /**< attribute's value representation */
213};
214
215
216#define LYD_NODE_INNER (LYS_CONTAINER|LYS_LIST) /**< Schema nodetype mask for lyd_node_inner */
217#define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */
218#define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */
219
220/**
221 * @brief Generic structure for a data node.
222 */
223struct lyd_node {
224 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list) */
225 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
226 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
227 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
228 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
229 never NULL. If there is no sibling node, pointer points to the node
230 itself. In case of the first node, this pointer points to the last
231 node in the list. */
232 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
233
234#ifdef LY_ENABLED_LYD_PRIV
235 void *priv; /**< private user data, not used by libyang */
236#endif
237};
238
239/**
240 * @brief Data node structure for the inner data tree nodes - containers and lists.
241 */
242struct lyd_node_inner {
243 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list) */
244 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
245 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
246 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
247 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
248 never NULL. If there is no sibling node, pointer points to the node
249 itself. In case of the first node, this pointer points to the last
250 node in the list. */
251 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
252
253#ifdef LY_ENABLED_LYD_PRIV
254 void *priv; /**< private user data, not used by libyang */
255#endif
256
257 struct lyd_node *child; /**< pointer to the first child node. */
258 struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */
259};
260
261/**
262 * @brief Data node structure for the terminal data tree nodes - leafs and leaf-lists.
263 */
264struct lyd_node_term {
265 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list) */
266 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
267 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
268 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
269 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
270 never NULL. If there is no sibling node, pointer points to the node
271 itself. In case of the first node, this pointer points to the last
272 node in the list. */
273 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
274
275#ifdef LY_ENABLED_LYD_PRIV
276 void *priv; /**< private user data, not used by libyang */
277#endif
278
279 struct lyd_value value; /**< node's value representation */
280};
281
282/**
283 * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls.
284 */
285struct lyd_node_any {
286 uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list) */
287 const struct lysc_node *schema; /**< pointer to the schema definition of this node */
288 struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */
289 struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */
290 struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is
291 never NULL. If there is no sibling node, pointer points to the node
292 itself. In case of the first node, this pointer points to the last
293 node in the list. */
294 struct lyd_attr *attr; /**< pointer to the list of attributes of this node */
295
296#ifdef LY_ENABLED_LYD_PRIV
297 void *priv; /**< private user data, not used by libyang */
298#endif
299
300 /* TODO - anydata representation */
301};
302
303/**
304 * @defgroup dataparseroptions Data parser options
305 * @ingroup datatree
306 *
307 * Various options to change the data tree parsers behavior.
308 *
309 * Default behavior:
310 * - in case of XML, parser reads all data from its input (file, memory, XML tree) including the case of not well-formed
311 * XML document (multiple top-level elements) and if there is an unknown element, it is skipped including its subtree
312 * (see the next point). This can be changed by the #LYD_OPT_NOSIBLINGS option which make parser to read only a single
313 * tree (with a single root element) from its input.
314 * - parser silently ignores the data without a matching node in schema trees. If the caller want to stop
315 * parsing in case of presence of unknown data, the #LYD_OPT_STRICT can be used. The strict mode is useful for
316 * NETCONF servers, since NETCONF clients should always send data according to the capabilities announced by the server.
317 * On the other hand, the default non-strict mode is useful for clients receiving data from NETCONF server since
318 * clients are not required to understand everything the server does. Of course, the optimal strategy for clients is
319 * to use filtering to get only the required data. Having an unknown element of the known namespace is always an error.
320 * The behavior can be changed by #LYD_OPT_STRICT option.
321 * - using obsolete statements (status set to obsolete) just generates a warning, but the processing continues. The
322 * behavior can be changed by #LYD_OPT_OBSOLETE option.
323 * - parser expects that the provided data provides complete datastore content (both the configuration and state data)
324 * and performs data validation according to all YANG rules. This can be a problem in case of representing NETCONF's
325 * subtree filter data, edit-config's data or other type of data set - such data do not represent a complete data set
326 * and some of the validation rules can fail. Therefore there are other options (within lower 8 bits) to make parser
327 * to accept such a data.
328 * - when parser evaluates when-stmt condition to false, a validation error is raised. If the
329 * #LYD_OPT_WHENAUTODEL is used, the invalid node is silently removed instead of an error. The option (and also this default
330 * behavior) takes effect only in case of #LYD_OPT_DATA or #LYD_OPT_CONFIG type of data.
331 * @{
332 */
333
334#define LYD_OPT_DATA 0x00 /**< Default type of data - complete datastore content with configuration as well as
335 state data. To handle possibly missing (but by default required) ietf-yang-library
336 data, use #LYD_OPT_DATA_NO_YANGLIB or #LYD_OPT_DATA_ADD_YANGLIB options. */
337#define LYD_OPT_CONFIG 0x01 /**< A configuration datastore - complete datastore without state data.
338 Validation modifications:
339 - status data are not allowed */
340#define LYD_OPT_GET 0x02 /**< Data content from a NETCONF reply message to the NETCONF \<get\> operation.
341 Validation modifications:
342 - mandatory nodes can be omitted
343 - leafrefs and instance-identifier resolution is allowed to fail
344 - list's keys/unique nodes are not required (so duplication is not checked)
345 - must and when evaluation skipped */
346#define LYD_OPT_GETCONFIG 0x04 /**< Data content from a NETCONF reply message to the NETCONF \<get-config\> operation
347 Validation modifications:
348 - mandatory nodes can be omitted
349 - leafrefs and instance-identifier resolution is allowed to fail
350 - list's keys/unique nodes are not required (so duplication is not checked)
351 - must and when evaluation skipped
352 - status data are not allowed */
353#define LYD_OPT_EDIT 0x08 /**< Content of the NETCONF \<edit-config\>'s config element.
354 Validation modifications:
355 - mandatory nodes can be omitted
356 - leafrefs and instance-identifier resolution is allowed to fail
357 - must and when evaluation skipped
358 - status data are not allowed */
359#define LYD_OPT_RPC 0x10 /**< Data represents RPC or action input parameters. */
360#define LYD_OPT_RPCREPLY 0x20 /**< Data represents RPC or action output parameters (maps to NETCONF <rpc-reply> data). */
361#define LYD_OPT_NOTIF 0x40 /**< Data represents an event notification data. */
362#define LYD_OPT_NOTIF_FILTER 0x80 /**< Data represents a filtered event notification data.
363 Validation modification:
364 - the only requirement is that the data tree matches the schema tree */
365#define LYD_OPT_TYPEMASK 0x10000ff /**< Mask to filter data type options. Always only a single data type option (only
366 single bit from the lower 8 bits) can be set. */
367
368/* 0x100 reserved, used internally */
369#define LYD_OPT_STRICT 0x0200 /**< Instead of silent ignoring data without schema definition, raise an error. */
370#define LYD_OPT_DESTRUCT 0x0400 /**< Free the provided XML tree during parsing the data. With this option, the
371 provided XML tree is affected and all successfully parsed data are freed.
372 This option is applicable only to lyd_parse_xml() function. */
373#define LYD_OPT_OBSOLETE 0x0800 /**< Raise an error when an obsolete statement (status set to obsolete) is used. */
374#define LYD_OPT_NOSIBLINGS 0x1000 /**< Parse only a single XML tree from the input. This option applies only to
375 XML input data. */
376#define LYD_OPT_TRUSTED 0x2000 /**< Data comes from a trusted source and it is not needed to validate them. Data
377 are connected with the schema, but the most validation checks (mandatory nodes,
378 list instance uniqueness, etc.) are not performed. This option does not make
379 sense for lyd_validate() so it is ignored by this function. */
380#define LYD_OPT_WHENAUTODEL 0x4000 /**< Automatically delete subtrees with false when-stmt condition. The flag is
381 applicable only in combination with #LYD_OPT_DATA and #LYD_OPT_CONFIG flags.
382 If used, libyang will not generate a validation error. */
383#define LYD_OPT_NOEXTDEPS 0x8000 /**< Allow external dependencies (external leafrefs, instance-identifiers, must,
384 and when) to not be resolved/satisfied during validation. */
385#define LYD_OPT_DATA_NO_YANGLIB 0x10000 /**< Ignore (possibly) missing ietf-yang-library data. Applicable only with #LYD_OPT_DATA. */
386#define LYD_OPT_DATA_ADD_YANGLIB 0x20000 /**< Add missing ietf-yang-library data into the validated data tree. Applicable
387 only with #LYD_OPT_DATA. If some ietf-yang-library data are present, they are
388 preserved and option is ignored. */
389#define LYD_OPT_VAL_DIFF 0x40000 /**< Flag only for validation, store all the data node changes performed by the validation
390 in a diff structure. */
391#define LYD_OPT_DATA_TEMPLATE 0x1000000 /**< Data represents YANG data template. */
392
393/**@} dataparseroptions */
394
395/**
396 * @brief Get the node's children list if any.
397 *
398 * Decides the node's type and in case it has a children list, returns it.
399 * @param[in] node Node to check.
400 * @return Pointer to the first child node (if any) of the \p node.
401 */
402const struct lyd_node *lyd_node_children(const struct lyd_node *node);
403
404/**
405 * @brief Find the node, in the list, satisfying the given restrictions.
406 *
407 * @param[in] first Starting child node for search.
408 * @param[in] module Module of the node to find (mandatory argument).
409 * @param[in] name Name of the node to find (mandatory argument).
410 * @param[in] name_len Optional length of the @p name argument in case it is not NULL-terminated string.
411 * @param[in] nodetype Optional mask for the nodetype of the node to find, 0 is understood as all nodetypes.
412 * @param[in] value Optional restriction for lyd_node_term nodes to select node with the specific value.
413 * @param[in] value_len Optional length of the @p value argument in case it is not NULL-terminated string.
414 * @return The sibling node of the @p first (or itself), satisfying the given restrictions.
415 * @return NULL in case there is no node satisfying the restrictions.
416 */
417const struct lyd_node *lyd_search(const struct lyd_node *first, const struct lys_module *module,
418 const char *name, size_t name_len, uint16_t nodetype, const char *value, size_t value_len);
419
420/**
421 * @brief Parse (and validate) data from memory.
422 *
423 * In case of LY_XML format, the data string is parsed completely. It means that when it contains
424 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
425 * returned data node is a root of the first tree with other trees connected via the next pointer.
426 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
427 *
428 * @param[in] ctx Context to connect with the data tree being built here.
429 * @param[in] data Serialized data in the specified format.
430 * @param[in] format Format of the input data to be parsed.
431 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly.
432 * @param[in] ... Variable arguments depend on \p options. If they include:
433 * - #LYD_OPT_DATA:
434 * - #LYD_OPT_CONFIG:
435 * - #LYD_OPT_GET:
436 * - #LYD_OPT_GETCONFIG:
437 * - #LYD_OPT_EDIT:
438 * - no variable arguments expected.
439 * - #LYD_OPT_RPC:
440 * - #LYD_OPT_NOTIF:
441 * - struct lyd_node *data_tree - additional data tree that will be used
442 * when checking any "when" or "must" conditions in the parsed tree that require
443 * some nodes outside their subtree. It must be a list of top-level elements!
444 * - #LYD_OPT_RPCREPLY:
445 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or (top-level) action operation
446 * data tree (the request) of the reply.
447 * - const struct ::lyd_node *data_tree - additional data tree that will be used
448 * when checking any "when" or "must" conditions in the parsed tree that require
449 * some nodes outside their subtree. It must be a list of top-level elements!
450 * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure,
451 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
452 * #ly_errno contains appropriate error code (see #LY_ERR).
453 */
454struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options, ...);
455
456/**
457 * @brief Read (and validate) data from the given file descriptor.
458 *
459 * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
460 *
461 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
462 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
463 * returned data node is a root of the first tree with other trees connected via the next pointer.
464 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
465 *
466 * @param[in] ctx Context to connect with the data tree being built here.
467 * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format.
468 * @param[in] format Format of the input data to be parsed.
469 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly.
470 * @param[in] ... Variable arguments depend on \p options. If they include:
471 * - #LYD_OPT_DATA:
472 * - #LYD_OPT_CONFIG:
473 * - #LYD_OPT_GET:
474 * - #LYD_OPT_GETCONFIG:
475 * - #LYD_OPT_EDIT:
476 * - no variable arguments expected.
477 * - #LYD_OPT_RPC:
478 * - #LYD_OPT_NOTIF:
479 * - struct lyd_node *data_tree - additional data tree that will be used
480 * when checking any "when" or "must" conditions in the parsed tree that require
481 * some nodes outside their subtree. It must be a list of top-level elements!
482 * - #LYD_OPT_RPCREPLY:
483 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
484 * tree (the request) of the reply.
485 * - const struct ::lyd_node *data_tree - additional data tree that will be used
486 * when checking any "when" or "must" conditions in the parsed tree that require
487 * some nodes outside their subtree. It must be a list of top-level elements!
488 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
489 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
490 * #ly_errno contains appropriate error code (see #LY_ERR).
491 */
492struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options, ...);
493
494/**
495 * @brief Read (and validate) data from the given file path.
496 *
497 * In case of LY_XML format, the file content is parsed completely. It means that when it contains
498 * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
499 * returned data node is a root of the first tree with other trees connected via the next pointer.
500 * This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
501 *
502 * @param[in] ctx Context to connect with the data tree being built here.
503 * @param[in] path Path to the file containing the data tree in the specified format.
504 * @param[in] format Format of the input data to be parsed.
505 * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly.
506 * @param[in] ... Variable arguments depend on \p options. If they include:
507 * - #LYD_OPT_DATA:
508 * - #LYD_OPT_CONFIG:
509 * - #LYD_OPT_GET:
510 * - #LYD_OPT_GETCONFIG:
511 * - #LYD_OPT_EDIT:
512 * - no variable arguments expected.
513 * - #LYD_OPT_RPC:
514 * - #LYD_OPT_NOTIF:
515 * - struct lyd_node *data_tree - additional data tree that will be used
516 * when checking any "when" or "must" conditions in the parsed tree that require
517 * some nodes outside their subtree. It must be a list of top-level elements!
518 * - #LYD_OPT_RPCREPLY:
519 * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data
520 * tree (the request) of the reply.
521 * - const struct ::lyd_node *data_tree - additional data tree that will be used
522 * when checking any "when" or "must" conditions in the parsed tree that require
523 * some nodes outside their subtree. It must be a list of top-level elements!
524 * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
525 * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error,
526 * #ly_errno contains appropriate error code (see #LY_ERR).
527 */
528struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options, ...);
529
530/**
531 * @brief Free all the nodes in the data tree.
532 *
533 * @param[in] node Any of the nodes inside the tree.
534 */
535void lyd_free_all(struct lyd_node *node);
536
537/**
538 * @brief Free (and unlink) the specified data (sub)tree.
539 *
540 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
541 *
542 * @param[in] node Root of the (sub)tree to be freed.
543 */
544void lyd_free_tree(struct lyd_node *node);
545
546/**
547 * @brief Unlink the specified data subtree. All referenced namespaces are copied.
548 *
549 * Note, that the node's connection with the schema tree is kept. Therefore, in case of
550 * reconnecting the node to a data tree using lyd_paste() it is necessary to paste it
551 * to the appropriate place in the data tree following the schema.
552 *
553 * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
554 *
555 * @param[in] node Data tree node to be unlinked (together with all children).
556 * @return LY_SUCCESS for success
557 * @return LY_E* values in case of error
558 */
559LY_ERR lyd_unlink_tree(struct lyd_node *node);
560
561/**
562 * @brief Destroy data attribute.
563 *
564 * @param[in] ctx Context where the attribute was created.
565 * @param[in] attr Attribute to destroy
566 * @param[in] recursive Zero to destroy only the attribute (the attribute list is corrected),
567 * non-zero to destroy also all the subsequent attributes in the list.
568 */
569void lyd_free_attr(struct ly_ctx *ctx, struct lyd_attr *attr, int recursive);
570
571#ifdef __cplusplus
572}
573#endif
574
575#endif /* LY_TREE_DATA_H_ */