Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 1 | /** |
Radek Krejci | aa429e4 | 2015-10-09 15:52:37 +0200 | [diff] [blame] | 2 | * @file tree_data.h |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Radek Krejci | aa429e4 | 2015-10-09 15:52:37 +0200 | [diff] [blame] | 4 | * @brief libyang representation of data trees. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 5 | * |
| 6 | * Copyright (c) 2015 CESNET, z.s.p.o. |
| 7 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 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 |
Michal Vasko | 8de098c | 2016-02-26 10:00:25 +0100 | [diff] [blame] | 11 | * |
Radek Krejci | 54f6fb3 | 2016-02-24 12:56:39 +0100 | [diff] [blame] | 12 | * https://opensource.org/licenses/BSD-3-Clause |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef LY_TREE_DATA_H_ |
| 16 | #define LY_TREE_DATA_H_ |
| 17 | |
| 18 | #include <stddef.h> |
| 19 | #include <stdint.h> |
| 20 | |
Mislav Novakovic | e251a65 | 2015-09-29 08:40:12 +0200 | [diff] [blame] | 21 | #include "tree_schema.h" |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 22 | #include "xml.h" |
Mislav Novakovic | e251a65 | 2015-09-29 08:40:12 +0200 | [diff] [blame] | 23 | |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 24 | #ifdef __cplusplus |
| 25 | extern "C" { |
| 26 | #endif |
| 27 | |
| 28 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 29 | * @defgroup datatree Data Tree |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 30 | * @{ |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 31 | * |
| 32 | * Data structures and functions to manipulate and access instance data tree. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 33 | */ |
| 34 | |
| 35 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 36 | * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and |
| 37 | * [printer](@ref howtodataprinters) functions. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 38 | */ |
| 39 | typedef enum { |
| 40 | LYD_UNKNOWN, /**< unknown format, used as return value in case of error */ |
| 41 | LYD_XML, /**< XML format of the instance data */ |
| 42 | LYD_JSON, /**< JSON format of the instance data */ |
| 43 | } LYD_FORMAT; |
| 44 | |
| 45 | /** |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 46 | * @brief Attribute structure. |
| 47 | * |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 48 | * The structure provides information about attributes of a data element. Such attributes partially |
| 49 | * maps to annotations from draft-ietf-netmod-yang-metadata. In XML, they are represented as standard |
| 50 | * XML attrbutes. In JSON, they are represented as JSON elements starting with the '@' character |
| 51 | * (for more information, see the yang metadata draft. |
| 52 | * |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 53 | */ |
| 54 | struct lyd_attr { |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 55 | struct lyd_attr *next; /**< pointer to the next attribute of the same element */ |
| 56 | struct lys_module *module; /**< pointer to the attribute's module. |
| 57 | TODO when annotations will be supported, point to the annotation definition |
| 58 | and validate that the attribute is really defined there. Currently, we just |
| 59 | believe that it is defined in the module it says */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 60 | const char *name; /**< attribute name */ |
| 61 | const char *value; /**< attribute value */ |
| 62 | }; |
| 63 | |
| 64 | /** |
| 65 | * @brief node's value representation |
| 66 | */ |
| 67 | typedef union lyd_value_u { |
| 68 | const char *binary; /**< base64 encoded, NULL terminated string */ |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 69 | struct lys_type_bit **bit; /**< bitmap of pointers to the schema definition of the bit value that are set, |
| 70 | its size is always the number of defined bits in the schema */ |
Radek Krejci | 489773c | 2015-12-17 13:20:03 +0100 | [diff] [blame] | 71 | int8_t bln; /**< 0 as false, 1 as true */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 72 | int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */ |
| 73 | struct lys_type_enum *enm; /**< pointer to the schema definition of the enumeration value */ |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 74 | struct lys_ident *ident; /**< pointer to the schema definition of the identityref value */ |
Radek Krejci | 40f17b9 | 2016-02-03 14:30:43 +0100 | [diff] [blame] | 75 | struct lyd_node *instance; /**< pointer to the instance-identifier target, note that if the tree was modified, |
| 76 | the target (address) can be invalid - the pointer is correctly checked and updated |
| 77 | by lyd_validate() */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 78 | int8_t int8; /**< 8-bit signed integer */ |
| 79 | int16_t int16; /**< 16-bit signed integer */ |
| 80 | int32_t int32; /**< 32-bit signed integer */ |
| 81 | int64_t int64; /**< 64-bit signed integer */ |
| 82 | struct lyd_node *leafref; /**< pointer to the referenced leaf/leaflist instance in data tree */ |
| 83 | const char *string; /**< string */ |
| 84 | uint8_t uint8; /**< 8-bit unsigned integer */ |
| 85 | uint16_t uint16; /**< 16-bit signed integer */ |
| 86 | uint32_t uint32; /**< 32-bit signed integer */ |
| 87 | uint64_t uint64; /**< 64-bit signed integer */ |
| 88 | } lyd_val; |
| 89 | |
| 90 | /** |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 91 | * @defgroup validityflags Validity flags |
| 92 | * @ingroup datatree |
| 93 | * |
| 94 | * Validity flags for data nodes. |
| 95 | * |
| 96 | * @{ |
| 97 | */ |
| 98 | #define LYD_VAL_OK 0x00 /**< node is successfully validated including whole subtree */ |
| 99 | #define LYD_VAL_UNIQUE 0x01 /**< Unique value(s) changed, applicable only to ::lys_node_list data nodes */ |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 100 | #define LYD_VAL_NOT 0x1f /**< node was not validated yet */ |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 101 | /** |
| 102 | * @} |
| 103 | */ |
| 104 | |
| 105 | /** |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 106 | * @brief Generic structure for a data node, directly applicable to the data nodes defined as #LYS_CONTAINER, #LYS_LIST |
| 107 | * and #LYS_CHOICE. |
| 108 | * |
| 109 | * Completely fits to containers and choices and is compatible (can be used interchangeably except the #child member) |
| 110 | * with all other lyd_node_* structures. All data nodes are provides as ::lyd_node structure by default. |
| 111 | * According to the schema's ::lys_node#nodetype member, the specific object is supposed to be cast to |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 112 | * ::lyd_node_leaf_list or ::lyd_node_anyxml structures. This structure fits only to #LYS_CONTAINER, #LYS_LIST and |
| 113 | * #LYS_CHOICE values. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 114 | * |
| 115 | * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro. |
| 116 | */ |
| 117 | struct lyd_node { |
| 118 | struct lys_node *schema; /**< pointer to the schema definition of this node */ |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 119 | uint8_t validity:5; /**< [validity flags](@ref validityflags) */ |
| 120 | uint8_t when_status:3; /**< bit for checking if the when-stmt condition is resolved - internal use only, |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 121 | do not use this value! */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 122 | |
| 123 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 124 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 125 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 126 | never NULL. If there is no sibling node, pointer points to the node |
| 127 | itself. In case of the first node, this pointer points to the last |
| 128 | node in the list. */ |
| 129 | struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 130 | struct lyd_node *child; /**< pointer to the first child node \note Since other lyd_node_* |
Radek Krejci | ee36089 | 2015-10-06 11:23:14 +0200 | [diff] [blame] | 131 | structures represent end nodes, this member |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 132 | is replaced in those structures. Therefore, be careful with accessing |
| 133 | this member without having information about the node type from the schema's |
| 134 | ::lys_node#nodetype member. */ |
| 135 | }; |
| 136 | |
| 137 | /** |
Michal Vasko | 4c18331 | 2015-09-25 10:41:47 +0200 | [diff] [blame] | 138 | * @brief Structure for data nodes defined as #LYS_LEAF or #LYS_LEAFLIST. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 139 | * |
Michal Vasko | 4c18331 | 2015-09-25 10:41:47 +0200 | [diff] [blame] | 140 | * Extension for ::lyd_node structure. It replaces the ::lyd_node#child member by |
| 141 | * three new members (#value, #value_str and #value_type) to provide |
| 142 | * information about the value. The first five members (#schema, #attr, #next, |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 143 | * #prev and #parent) are compatible with the ::lyd_node's members. |
| 144 | * |
| 145 | * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro. |
| 146 | */ |
Michal Vasko | 4c18331 | 2015-09-25 10:41:47 +0200 | [diff] [blame] | 147 | struct lyd_node_leaf_list { |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 148 | struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_leaflist |
| 149 | structure */ |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 150 | uint8_t validity:5; /**< [validity flags](@ref validityflags) */ |
| 151 | uint8_t when_status:3; /**< bit for checking if the when-stmt condition is resolved - internal use only, |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 152 | do not use this value! */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 153 | |
| 154 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 155 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 156 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 157 | never NULL. If there is no sibling node, pointer points to the node |
| 158 | itself. In case of the first node, this pointer points to the last |
| 159 | node in the list. */ |
| 160 | struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 161 | |
| 162 | /* struct lyd_node *child; should be here, but is not */ |
| 163 | |
| 164 | /* leaflist's specific members */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 165 | const char *value_str; /**< string representation of value (for comparison, printing,...) */ |
Radek Krejci | 2323892 | 2015-10-27 17:13:34 +0100 | [diff] [blame] | 166 | lyd_val value; /**< node's value representation */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 167 | LY_DATA_TYPE value_type; /**< type of the value in the node, mainly for union to avoid repeating of type detection */ |
| 168 | }; |
| 169 | |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 170 | union lyd_node_anyxml_value { |
| 171 | const char *str; |
| 172 | struct lyxml_elem *xml; |
| 173 | }; |
| 174 | |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 175 | /** |
| 176 | * @brief Structure for data nodes defined as #LYS_ANYXML. |
| 177 | * |
| 178 | * Extension for ::lyd_node structure - replaces the ::lyd_node#child member by new #value member. The first five |
| 179 | * members (#schema, #attr, #next, #prev and #parent) are compatible with the ::lyd_node's members. |
| 180 | * |
| 181 | * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro. |
| 182 | */ |
| 183 | struct lyd_node_anyxml { |
| 184 | struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_anyxml |
| 185 | structure */ |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 186 | uint8_t validity:5; /**< [validity flags](@ref validityflags) */ |
| 187 | uint8_t when_status:3; /**< bit for checking if the when-stmt condition is resolved - internal use only, |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 188 | do not use this value! */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 189 | |
| 190 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 191 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 192 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 193 | never NULL. If there is no sibling node, pointer points to the node |
| 194 | itself. In case of the first node, this pointer points to the last |
| 195 | node in the list. */ |
| 196 | struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 197 | |
| 198 | /* struct lyd_node *child; should be here, but is not */ |
| 199 | |
| 200 | /* anyxml's specific members */ |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 201 | uint8_t xml_struct; /**< 1 for value.xml, 0 for value.str */ |
| 202 | union lyd_node_anyxml_value value; /**< anyxml value, everything is in the dictionary, there can be more XML siblings */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 206 | * @defgroup parseroptions Data parser options |
| 207 | * @ingroup datatree |
| 208 | * |
| 209 | * Various options to change the data tree parsers behavior. |
| 210 | * |
| 211 | * Default behavior: |
| 212 | * - in case of XML, parser reads all data from its input (file, memory, XML tree) including the case of not well-formed |
| 213 | * XML document (multiple top-level elements) and if there is an unknown element, it is skipped including its subtree |
| 214 | * (see the next point). This can be changed by the #LYD_OPT_NOSIBLINGS option which make parser to read only a single |
| 215 | * tree (with a single root element) from its input. |
| 216 | * - parser silently ignores the data without a matching node in schema trees. If the caller want to stop |
| 217 | * parsing in case of presence of unknown data, the #LYD_OPT_STRICT can be used. The strict mode is useful for |
| 218 | * NETCONF servers, since NETCONF clients should always send data according to the capabilities announced by the server. |
| 219 | * On the other hand, the default non-strict mode is useful for clients receiving data from NETCONF server since |
| 220 | * clients are not required to understand everything the server does. Of course, the optimal strategy for clients is |
| 221 | * to use filtering to get only the required data. Having an unknown element of the known namespace is always an error. |
| 222 | * The behavior can be changed by #LYD_OPT_STRICT option. |
| 223 | * - using obsolete statements (status set to obsolete) just generates a warning, but the processing continues. The |
| 224 | * behavior can be changed by #LYD_OPT_OBSOLETE option. |
| 225 | * - parser expects that the provided data provides complete datastore content (both the configuration and state data) |
| 226 | * and performs data validation according to all YANG rules. This can be a problem in case of representing NETCONF's |
| 227 | * subtree filter data, edit-config's data or other type of data set - such data do not represent a complete data set |
| 228 | * and some of the validation rules can fail. Therefore there are other options (within lower 8 bits) to make parser |
| 229 | * to accept such a data. |
Radek Krejci | f3c218d | 2016-03-24 12:40:08 +0100 | [diff] [blame] | 230 | * - when parser evaluates when-stmt condition to false, the constrained subtree is automatically removed. If the |
| 231 | * #LYD_OPT_NOAUTODEL is used, error is raised instead of silent auto delete. The option (and also this default |
| 232 | * behavior) takes effect only in case of #LYD_OPT_DATA or #LYD_OPT_CONFIG type of data. |
Radek Krejci | 0c0086a | 2016-03-24 15:20:28 +0100 | [diff] [blame] | 233 | * - whenever the parser see empty non-presence container, it is automatically removed to minimize memory usage. This |
| 234 | * behavior can be changed by #LYD_OPT_KEEPEMPTYCONT. |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 235 | * - for validation, parser needs to add default nodes into the data tree. By default, these additional (implicit) |
| 236 | * nodes are removed before the parser returns. However, if caller use one of the LYD_WD_* option, the default nodes |
| 237 | * added by parser are kept in the resulting tree or even the explicit nodes with the default values can be removed |
| 238 | * (in case of #LYD_WD_TRIM option). |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 239 | * @{ |
| 240 | */ |
| 241 | |
| 242 | #define LYD_OPT_DATA 0x00 /**< Default type of data - complete datastore content with configuration as well as |
| 243 | state data. */ |
| 244 | #define LYD_OPT_CONFIG 0x01 /**< A configuration datastore - complete datastore without state data. |
| 245 | Validation modifications: |
| 246 | - status data are not allowed */ |
| 247 | #define LYD_OPT_GET 0x02 /**< Data content from a NETCONF reply message to the NETCONF \<get\> operation. |
| 248 | Validation modifications: |
| 249 | - mandatory nodes can be omitted |
| 250 | - leafrefs and instance-identifier are not resolved |
| 251 | - list's keys/unique nodes are not required (so duplication is not checked) */ |
| 252 | #define LYD_OPT_GETCONFIG 0x04 /**< Data content from a NETCONF reply message to the NETCONF \<get-config\> operation |
| 253 | Validation modifications: |
| 254 | - mandatory nodes can be omitted |
| 255 | - leafrefs and instance-identifier are not resolved |
| 256 | - list's keys/unique nodes are not required (so duplication is not checked) |
| 257 | - status data are not allowed */ |
| 258 | #define LYD_OPT_EDIT 0x08 /**< Content of the NETCONF \<edit-config\>'s config element. |
| 259 | Validation modifications: |
| 260 | - mandatory nodes can be omitted |
| 261 | - leafrefs and instance-identifier are not resolved |
| 262 | - status data are not allowed */ |
| 263 | #define LYD_OPT_RPC 0x10 /**< Data represents RPC's input parameters. */ |
| 264 | #define LYD_OPT_RPCREPLY 0x20 /**< Data represents RPC's output parameters (maps to NETCONF <rpc-reply> data). */ |
| 265 | #define LYD_OPT_NOTIF 0x40 /**< Data represents an event notification data. */ |
Radek Krejci | 92ece00 | 2016-04-04 15:45:05 +0200 | [diff] [blame] | 266 | /* 0x80 reserved, formerly LYD_OPT_FILTER */ |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 267 | #define LYD_OPT_TYPEMASK 0xff /**< Mask to filter data type options. Always only a single data type option (only |
| 268 | single bit from the lower 8 bits) can be set. */ |
| 269 | |
| 270 | #define LYD_OPT_STRICT 0x0100 /**< Instead of silent ignoring data without schema definition, raise an error. */ |
| 271 | #define LYD_OPT_DESTRUCT 0x0200 /**< Free the provided XML tree during parsing the data. With this option, the |
| 272 | provided XML tree is affected and all succesfully parsed data are freed. |
| 273 | This option is applicable only to lyd_parse_xml() function. */ |
| 274 | #define LYD_OPT_OBSOLETE 0x0400 /**< Raise an error when an obsolete statement (status set to obsolete) is used. */ |
| 275 | #define LYD_OPT_NOSIBLINGS 0x0800 /**< Parse only a single XML tree from the input. This option applies only to |
| 276 | XML input data. */ |
Radek Krejci | 93fab98 | 2016-02-03 15:58:19 +0100 | [diff] [blame] | 277 | #define LYD_OPT_TRUSTED 0x1000 /**< Data comes from a trusted source and it is not needed to validate them. Data |
| 278 | are connected with the schema, but the most validation checks (mandatory nodes, |
| 279 | list instance uniqueness, etc.) are not performed. This option does not make |
| 280 | sense for lyd_validate() so it is ignored by this function. */ |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 281 | #define LYD_OPT_NOAUTODEL 0x2000 /**< Avoid automatic delete of subtrees with false when-stmt condition. The flag is |
| 282 | applicable only in combination with LYD_OPT_DATA and LYD_OPT_CONFIG flags. |
| 283 | If used, libyang generates validation error instead of silently removing the |
| 284 | constrained subtree. */ |
Radek Krejci | 0c0086a | 2016-03-24 15:20:28 +0100 | [diff] [blame] | 285 | #define LYD_OPT_KEEPEMPTYCONT 0x4000 /**< Do not automatically delete empty non-presence containers. */ |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 286 | |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 287 | #define LYD_WD_MASK 0xF0000 /**< Mask for with-defaults modes */ |
| 288 | #define LYD_WD_TRIM 0x10000 /**< Remove all nodes with the value equal to their default value */ |
| 289 | #define LYD_WD_ALL 0x20000 /**< Explicitly add all missing nodes with their default value */ |
| 290 | #define LYD_WD_ALL_TAG 0x40000 /**< Same as LYD_WD_ALL but also adds attribute 'default' with value 'true' to |
| 291 | all nodes that has its default value. The 'default' attribute has namespace: |
| 292 | urn:ietf:params:xml:ns:netconf:default:1.0 and thus the attributes are |
| 293 | created only when the ietf-netconf-with-defaults module is present in libyang |
| 294 | context. */ |
| 295 | #define LYD_WD_IMPL_TAG 0x80000 /**< Same as LYD_WD_ALL_TAG but the attributes are added only to the nodes that |
| 296 | are being created and were not part of the original data tree despite their |
| 297 | value is equal to their default value. There is the same limitation regarding |
| 298 | the presence of ietf-netconf-with-defaults module in libyang context. */ |
| 299 | |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 300 | /**@} parseroptions */ |
| 301 | |
| 302 | /** |
| 303 | * @brief Parse (and validate according to appropriate schema from the given context) data. |
| 304 | * |
| 305 | * In case of LY_XML format, the data string is parsed completely. It means that when it contains |
| 306 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 307 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 308 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 309 | * |
| 310 | * @param[in] ctx Context to connect with the data tree being built here. |
| 311 | * @param[in] data Serialized data in the specified format. |
| 312 | * @param[in] format Format of the input data to be parsed. |
| 313 | * @param[in] options Parser options, see @ref parseroptions. |
| 314 | * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The |
| 315 | * argument is supposed to provide pointer to the RPC schema node for the reply's request |
| 316 | * (const struct ::lys_node* rpc). |
| 317 | * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure, |
| 318 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 319 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 320 | */ |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 321 | struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options, ...); |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 322 | |
| 323 | /** |
| 324 | * @brief Read data from the given file descriptor. |
| 325 | * |
| 326 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 327 | * |
| 328 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 329 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 330 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 331 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 332 | * |
| 333 | * @param[in] ctx Context to connect with the data tree being built here. |
| 334 | * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format. |
| 335 | * @param[in] format Format of the input data to be parsed. |
| 336 | * @param[in] options Parser options, see @ref parseroptions. |
| 337 | * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The |
| 338 | * argument is supposed to provide pointer to the RPC schema node for the reply's request |
| 339 | * (const struct ::lys_node* rpc). |
| 340 | * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure, |
| 341 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 342 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 343 | */ |
| 344 | struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options, ...); |
| 345 | |
| 346 | /** |
| 347 | * @brief Read data from the given file path. |
| 348 | * |
| 349 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 350 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 351 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 352 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 353 | * |
| 354 | * @param[in] ctx Context to connect with the data tree being built here. |
| 355 | * @param[in] path Path to the file containing the data tree in the specified format. |
| 356 | * @param[in] format Format of the input data to be parsed. |
| 357 | * @param[in] options Parser options, see @ref parseroptions. |
| 358 | * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The |
| 359 | * argument is supposed to provide pointer to the RPC schema node for the reply's request |
| 360 | * (const struct ::lys_node* rpc). |
| 361 | * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure, |
| 362 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 363 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 364 | */ |
| 365 | struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options, ...); |
| 366 | |
| 367 | /** |
| 368 | * @brief Parse (and validate according to appropriate schema from the given context) XML tree. |
| 369 | * |
| 370 | * The output data tree is parsed from the given XML tree previously parsed by one of the |
| 371 | * lyxml_read* functions. |
| 372 | * |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 373 | * If there are some sibling elements of the \p root (data were read with #LYXML_PARSE_MULTIROOT option |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 374 | * or the provided root is a root element of a subtree), all the sibling nodes (previous as well as |
| 375 | * following) are processed as well. The returned data node is a root of the first tree with other |
| 376 | * trees connected via the next pointer. This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 377 | * |
| 378 | * When the function is used with #LYD_OPT_DESTRUCT, all the successfully parsed data including the |
| 379 | * XML \p root and all its siblings (if #LYD_OPT_NOSIBLINGS is not used) are freed. Only with |
| 380 | * #LYD_OPT_DESTRUCT option the \p root pointer is changed - if all the data are parsed, it is set |
| 381 | * to NULL, otherwise it will hold the XML tree without the successfully parsed elements. |
| 382 | * |
| 383 | * The context must be the same as the context used to parse XML tree by lyxml_read* function. |
| 384 | * |
| 385 | * @param[in] ctx Context to connect with the data tree being built here. |
| 386 | * @param[in,out] root XML tree to parse (convert) to data tree. By default, parser do not change the XML tree. However, |
| 387 | * when #LYD_OPT_DESTRUCT is specified in \p options, parser frees all successfully parsed data. |
| 388 | * @param[in] options Parser options, see @ref parseroptions. |
| 389 | * @param[in] ... Additional argument must be supplied when #LYD_OPT_RPCREPLY value is specified in \p options. The |
| 390 | * argument is supposed to provide pointer to the RPC schema node for the reply's request |
| 391 | * (const struct ::lys_node* rpc). |
| 392 | * @return Pointer to the built data tree or NULL in case of empty \p root. To free the returned structure, |
| 393 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 394 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 395 | */ |
| 396 | struct lyd_node *lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options,...); |
| 397 | |
| 398 | /** |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 399 | * @brief Create a new container node in a data tree. |
| 400 | * |
| 401 | * @param[in] parent Parent node for the node being created. NULL in case of creating top level element. |
Radek Krejci | ee36089 | 2015-10-06 11:23:14 +0200 | [diff] [blame] | 402 | * @param[in] module Module with the node being created. |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 403 | * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_LIST, |
Michal Vasko | a45cf2b | 2015-10-23 09:45:36 +0200 | [diff] [blame] | 404 | * #LYS_NOTIF, or #LYS_RPC. |
Michal Vasko | 1dca688 | 2015-10-22 14:29:42 +0200 | [diff] [blame] | 405 | * @return New node, NULL on error. |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 406 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 407 | struct lyd_node *lyd_new(struct lyd_node *parent, const struct lys_module *module, const char *name); |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 408 | |
| 409 | /** |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 410 | * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to |
| 411 | * the actual value. |
| 412 | * |
| 413 | * @param[in] parent Parent node for the node being created. NULL in case of creating top level element. |
Radek Krejci | ee36089 | 2015-10-06 11:23:14 +0200 | [diff] [blame] | 414 | * @param[in] module Module with the node being created. |
| 415 | * @param[in] name Schema node name of the new data node. |
Michal Vasko | 3e671b5 | 2015-10-23 16:23:15 +0200 | [diff] [blame] | 416 | * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST |
| 417 | * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces). |
Michal Vasko | 1dca688 | 2015-10-22 14:29:42 +0200 | [diff] [blame] | 418 | * @return New node, NULL on error. |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 419 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 420 | struct lyd_node *lyd_new_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name, |
Michal Vasko | 3e671b5 | 2015-10-23 16:23:15 +0200 | [diff] [blame] | 421 | const char *val_str); |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 422 | |
| 423 | /** |
Radek Krejci | b9b4d00 | 2016-01-18 13:08:51 +0100 | [diff] [blame] | 424 | * @brief Change value of a leaf node. |
| 425 | * |
| 426 | * Despite the prototype allows to provide a leaflist node as \p leaf parameter, only leafs are accepted. |
Michal Vasko | 3a55a8a | 2016-04-13 14:19:53 +0200 | [diff] [blame^] | 427 | * Also, changing the value of a list key is prohibited. |
Radek Krejci | b9b4d00 | 2016-01-18 13:08:51 +0100 | [diff] [blame] | 428 | * |
| 429 | * @param[in] leaf A leaf node to change. |
| 430 | * @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 |
| 431 | * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces). |
| 432 | * @return 0 on success, non-zero on error. |
| 433 | */ |
| 434 | int lyd_change_leaf(struct lyd_node_leaf_list *leaf, const char *val_str); |
| 435 | |
| 436 | /** |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 437 | * @brief Create a new anyxml node in a data tree with a string value. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 438 | * |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 439 | * @param[in] parent Parent node for the node being created. NULL in case of creating top level element. |
Radek Krejci | ee36089 | 2015-10-06 11:23:14 +0200 | [diff] [blame] | 440 | * @param[in] module Module with the node being created. |
| 441 | * @param[in] name Schema node name of the new data node. |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 442 | * @param[in] val_str Well-formed XML string value of the node being created. Must be dynamically allocated |
| 443 | * and is freed with the data. |
Michal Vasko | 1dca688 | 2015-10-22 14:29:42 +0200 | [diff] [blame] | 444 | * @return New node, NULL on error. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 445 | */ |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 446 | struct lyd_node *lyd_new_anyxml_str(struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 447 | char *val_str); |
| 448 | |
| 449 | /** |
| 450 | * @brief Create a new anyxml node in a data tree with an XML structure value. |
| 451 | * |
| 452 | * @param[in] parent Parent node for the node being created. NULL in case of creating top level element. |
| 453 | * @param[in] module Module with the node being created. |
| 454 | * @param[in] name Schema node name of the new data node. |
| 455 | * @param[in] val_xml XML structure value of the node being created. There can be more siblings, |
| 456 | * they are freed with the data. |
| 457 | * @return New node, NULL on error. |
| 458 | */ |
| 459 | struct lyd_node *lyd_new_anyxml_xml(struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 460 | struct lyxml_elem *val_xml); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 461 | |
| 462 | /** |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 463 | * @brief Create a new container node in a data tree, whose schema parent is #LYS_OUTPUT. |
Michal Vasko | 0df122f | 2015-12-14 13:38:21 +0100 | [diff] [blame] | 464 | * |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 465 | * @param[in] schema Schema node of the container. |
Michal Vasko | 0df122f | 2015-12-14 13:38:21 +0100 | [diff] [blame] | 466 | * @return New node, NULL on error. |
| 467 | */ |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 468 | struct lyd_node *lyd_output_new(const struct lys_node *schema); |
| 469 | |
| 470 | /** |
| 471 | * @brief Create a new leaf or leaflist node in a data tree, whose schema parent is #LYS_OUTPUT. |
| 472 | * |
| 473 | * @param[in] schema Schema node of the leaf. |
| 474 | * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST |
| 475 | * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces). |
| 476 | * @return New node, NULL on error. |
| 477 | */ |
| 478 | struct lyd_node *lyd_output_new_leaf(const struct lys_node *schema, const char *val_str); |
| 479 | |
| 480 | /** |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 481 | * @brief Create a new anyxml node in a data tree, whose schema parent is #LYS_OUTPUT |
| 482 | * and has a string value. |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 483 | * |
| 484 | * @param[in] schema Schema node of the leaf. |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 485 | * @param[in] val_str Well-formed XML string value of the node being created. Must be dynamically allocated |
| 486 | * and is freed with the data. |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 487 | * @return New node, NULL on error. |
| 488 | */ |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 489 | struct lyd_node *lyd_output_new_anyxml_str(const struct lys_node *schema, char *val_str); |
| 490 | |
| 491 | /** |
| 492 | * @brief Create a new anyxml node in a data tree, whose schema parent is #LYS_OUTPUT |
| 493 | * and has an XML structure value. |
| 494 | * |
| 495 | * @param[in] schema Schema node of the leaf. |
| 496 | * @param[in] val_xml XML structure value of the node being created. There can be more siblings, |
| 497 | * they are freed with the data. |
| 498 | * @return New node, NULL on error. |
| 499 | */ |
| 500 | struct lyd_node *lyd_output_new_anyxml_xml(const struct lys_node *schema, struct lyxml_elem *val_xml); |
Michal Vasko | 0df122f | 2015-12-14 13:38:21 +0100 | [diff] [blame] | 501 | |
| 502 | /** |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 503 | * @defgroup pathoptions Data path creation options |
| 504 | * @ingroup datatree |
| 505 | * |
| 506 | * Various options to change lyd_new_path() behavior. |
| 507 | * |
| 508 | * Default behavior: |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 509 | * - if the target node already exists, an error is returned. |
Michal Vasko | 9db078d | 2016-03-23 11:08:51 +0100 | [diff] [blame] | 510 | * - the whole path to the target node is created (with any missing parents) if necessary. |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 511 | * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally. |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 512 | * @{ |
| 513 | */ |
| 514 | |
Michal Vasko | 72d3510 | 2016-03-31 10:03:38 +0200 | [diff] [blame] | 515 | #define LYD_PATH_OPT_UPDATE 0x01 /**< If the target node exists and is a leaf, it is updated with the new value and returned. |
| 516 | If the target node exists and is not a leaf, NULL is returned and no error set. */ |
Michal Vasko | 9db078d | 2016-03-23 11:08:51 +0100 | [diff] [blame] | 517 | #define LYD_PATH_OPT_NOPARENT 0x02 /**< If any parents of the target node exist, return an error. */ |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 518 | #define LYD_PATH_OPT_OUTPUT 0x04 /**< Changes the behavior to ignoring RPC input schema nodes and using only output ones. */ |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 519 | |
| 520 | /** @} pathoptions */ |
| 521 | |
| 522 | /** |
| 523 | * @brief Create a new data node based on a simple XPath. |
| 524 | * |
Michal Vasko | 8d18ef5 | 2016-04-06 12:21:46 +0200 | [diff] [blame] | 525 | * The new node is normally inserted at the end, either as the last child of a parent or as the last sibling |
| 526 | * if working with top-level elements. However, when manipulating RPC input or output, schema ordering is |
| 527 | * required and always guaranteed. Specially, when working with RPC output (using #LYD_PATH_OPT_OUTPUT flag), |
| 528 | * it can therefore happen that a node is created and inserted before \p data_tree. |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 529 | * |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 530 | * @param[in] data_tree Existing data tree to add to/modify. It is expected to be valid. If creating RPCs, |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 531 | * there should only be one RPC and either input or output. Can be NULL. |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 532 | * @param[in] ctx Context to use. Mandatory if \p data_tree is NULL. |
Michal Vasko | 9db078d | 2016-03-23 11:08:51 +0100 | [diff] [blame] | 533 | * @param[in] path Simple data XPath of the new node. It can contain only simple node addressing with optional |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 534 | * module names as prefixes. List nodes must have predicates, one for each list key in the correct order and |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 535 | * with its value as well, see @ref howtoxpath. |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 536 | * @param[in] value Value of the new leaf/lealf-list. If creating anyxml, this value is internally duplicated |
| 537 | * (for other options use lyd_*_new_anyxml_*()). If creating nodes of other types, set to NULL. |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 538 | * @param[in] options Bitmask of options flags, see @ref pathoptions. |
Michal Vasko | 72d3510 | 2016-03-31 10:03:38 +0200 | [diff] [blame] | 539 | * @return First created (or updated node with #LYD_PATH_OPT_UPDATE) node, |
Michal Vasko | 17bb490 | 2016-04-05 15:20:51 +0200 | [diff] [blame] | 540 | * NULL if #LYD_PATH_OPT_UPDATE was used and the full path exists or the leaf original value matches \p value, |
Michal Vasko | 72d3510 | 2016-03-31 10:03:38 +0200 | [diff] [blame] | 541 | * NULL and ly_errno is set on error. |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 542 | */ |
Michal Vasko | f748dbc | 2016-04-05 11:27:47 +0200 | [diff] [blame] | 543 | struct lyd_node *lyd_new_path(struct lyd_node *data_tree, struct ly_ctx *ctx, const char *path, const char *value, |
| 544 | int options); |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 545 | |
| 546 | /** |
Michal Vasko | c0797f8 | 2015-10-14 15:51:25 +0200 | [diff] [blame] | 547 | * @brief Create a copy of the specified data tree \p node. Namespaces are copied as needed, |
| 548 | * schema references are kept the same. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 549 | * |
| 550 | * @param[in] node Data tree node to be duplicated. |
| 551 | * @param[in] recursive 1 if all children are supposed to be also duplicated. |
| 552 | * @return Created copy of the provided data \p node. |
| 553 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 554 | struct lyd_node *lyd_dup(const struct lyd_node *node, int recursive); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 555 | |
| 556 | /** |
| 557 | * @brief Insert the \p node element as child to the \p parent element. The \p node is inserted as a last child of the |
| 558 | * \p parent. |
| 559 | * |
| 560 | * If the node is part of some other tree, it is automatically unlinked. |
| 561 | * If the node is the first node of a node list (with no parent), all |
| 562 | * the subsequent nodes are also inserted. |
| 563 | * |
| 564 | * @param[in] parent Parent node for the \p node being inserted. |
| 565 | * @param[in] node The node being inserted. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 566 | * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 567 | * in the data tree. |
| 568 | */ |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 569 | int lyd_insert(struct lyd_node *parent, struct lyd_node *node); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 570 | |
| 571 | /** |
Michal Vasko | 3f7dba1 | 2015-10-15 13:09:27 +0200 | [diff] [blame] | 572 | * @brief Insert the \p node element after the \p sibling element. If \p node and \p siblings are already |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 573 | * siblings (just moving \p node position), skip validation. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 574 | * |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 575 | * @param[in] sibling The data tree node before which the \p node will be inserted. |
Radek Krejci | 20a5f29 | 2016-02-09 15:04:49 +0100 | [diff] [blame] | 576 | * @param[in] node The data tree node to be inserted. If the node is connected somewhere, it is unlinked first. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 577 | * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 578 | * in the data tree. |
| 579 | */ |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 580 | int lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 581 | |
| 582 | /** |
Radek Krejci | 20a5f29 | 2016-02-09 15:04:49 +0100 | [diff] [blame] | 583 | * @brief Insert the \p node element after the \p sibling element. If \p node and \p siblings are already |
| 584 | * siblings (just moving \p node position), skip validation. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 585 | * |
Michal Vasko | 3f7dba1 | 2015-10-15 13:09:27 +0200 | [diff] [blame] | 586 | * @param[in] sibling The data tree node before which the \p node will be inserted. If \p node and \p siblings |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 587 | * are already siblings (just moving \p node position), skip validation. |
Radek Krejci | 20a5f29 | 2016-02-09 15:04:49 +0100 | [diff] [blame] | 588 | * @param[in] node The data tree node to be inserted. If the node is connected somewhere, it is unlinked first. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 589 | * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 590 | * in the data tree. |
| 591 | */ |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 592 | int lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node); |
| 593 | |
| 594 | /** |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 595 | * @brief Order siblings according to the schema node ordering. |
| 596 | * |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 597 | * If the siblings include data nodes from other modules, they are |
| 598 | * sorted based on the module order in the context. |
| 599 | * |
| 600 | * @param[in] sibling Node, whose siblings will be sorted. |
| 601 | * @param[in] recursive Whether sort all siblings of siblings, recursively. |
| 602 | * @return 0 on success, nonzero in case of an error. |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 603 | */ |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 604 | int lyd_schema_sort(struct lyd_node *sibling, int recursive); |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 605 | |
| 606 | /** |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 607 | * @brief Search in the given data for instances of nodes matching the provided XPath expression. |
| 608 | * |
| 609 | * The \p data is used to find the data root and function then searches in the whole tree and all sibling trees. |
Michal Vasko | 7fdf9b3 | 2016-03-01 15:59:48 +0100 | [diff] [blame] | 610 | * The XPath expression is evaluated on data -> skip all non-data nodes (input, output, choice, case). |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 611 | * |
Michal Vasko | 7fdf9b3 | 2016-03-01 15:59:48 +0100 | [diff] [blame] | 612 | * Expr examples: |
| 613 | * "/ietf-yang-library:modules-state/module[name = 'ietf-yang-library']/namespace" |
| 614 | * "/ietf-netconf:get-config/source" |
| 615 | * |
| 616 | * @param[in] data Node in the data tree considered the context node. If the node is a configuration one, |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 617 | * any state nodes in its tree are not accessible! |
| 618 | * @param[in] expr XPath expression filtering the matching nodes. |
| 619 | * @return Set of found data nodes (use dset member of ::ly_set). If no nodes are matching \p expr or the result |
| 620 | * would be a number, a string, or a boolean, the returned set is empty. In case of an error, NULL is returned. |
| 621 | */ |
| 622 | struct ly_set *lyd_get_node(const struct lyd_node *data, const char *expr); |
| 623 | |
| 624 | /** |
Radek Krejci | c5b6b91 | 2016-01-18 16:35:35 +0100 | [diff] [blame] | 625 | * @brief Search in the given data for instances of the provided schema node. |
| 626 | * |
| 627 | * The \p data is used to find the data root and function then searches in the whole tree and all sibling trees. |
| 628 | * |
| 629 | * @param[in] data A node in the data tree to search. |
| 630 | * @param[in] schema Schema node of the data nodes caller want to find. |
Radek Krejci | 2342cf6 | 2016-01-29 16:48:23 +0100 | [diff] [blame] | 631 | * @return Set of found data nodes (use dset member of ::ly_set). If no data node is found, the returned set is empty. |
Radek Krejci | c5b6b91 | 2016-01-18 16:35:35 +0100 | [diff] [blame] | 632 | * In case of error, NULL is returned. |
| 633 | */ |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 634 | struct ly_set *lyd_get_node2(const struct lyd_node *data, const struct lys_node *schema); |
Radek Krejci | c5b6b91 | 2016-01-18 16:35:35 +0100 | [diff] [blame] | 635 | |
| 636 | /** |
Michal Vasko | 6a1ab6f | 2016-02-04 12:08:11 +0100 | [diff] [blame] | 637 | * @brief Get all key nodes of a \p list instance. |
| 638 | * |
| 639 | * @param[in] list List node, whose keys will be searched for. |
| 640 | * @return Set of list keys (use dset member of ::ly_set). If no keys are found/defined, the returned set is empty. |
| 641 | * In case of error, NULL is returned. |
| 642 | */ |
| 643 | struct ly_set *lyd_get_list_keys(const struct lyd_node *list); |
| 644 | |
| 645 | /** |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 646 | * @brief Validate \p node data subtree. |
| 647 | * |
Radek Krejci | 4e94111 | 2016-03-23 10:44:30 +0100 | [diff] [blame] | 648 | * @param[in, out] node Data tree to be validated. In case the \p options does not includes #LYD_OPT_NOAUTODEL, libyang |
| 649 | * can modify the provided tree including the root \p node. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 650 | * @param[in] options Options for the inserting data to the target data tree options, see @ref parseroptions. |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 651 | * @param[in] ... libyang context for the data (used only in case the \p node is NULL, so in case of checking empty data tree) |
Radek Krejci | 92ece00 | 2016-04-04 15:45:05 +0200 | [diff] [blame] | 652 | * @return 0 on success, nonzero in case of an error. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 653 | */ |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 654 | int lyd_validate(struct lyd_node **node, int options, ...); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 655 | |
| 656 | /** |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 657 | * @brief Add default nodes into the data tree. |
| 658 | * |
Radek Krejci | 8100ca2 | 2016-03-29 10:32:58 +0200 | [diff] [blame] | 659 | * The function expects that the provided data tree is valid. If not, the result is undefined - in general, the |
| 660 | * result is not more invalid than the provided data tree input, so if the input data tree is invalid, result will |
| 661 | * be also invalid and the process of adding default values could be incomplete. |
| 662 | * |
| 663 | * Since default nodes are also needed by the validation process, to optimize your application you can add default |
| 664 | * values directly in lyd_validate() and lyd_parse*() functions using appropriate options value. By default, these |
| 665 | * functions removes the default nodes at the end of their processing. |
| 666 | * |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 667 | * @param[in] ctx Optional parameter. If provided, default nodes from all modules in the context will be added (so it |
| 668 | * has no effect for #LYD_WD_TRIM). If NULL, only the modules explicitly mentioned in data tree are |
| 669 | * taken into account. |
| 670 | * @param[in] root Data tree root. In case of #LYD_WD_TRIM the data tree can be modified so the root can be changed or |
| 671 | * removed. In other modes and with empty data tree, new default nodes can be created so the root pointer |
| 672 | * will contain/return the newly created data tree. |
Radek Krejci | 8100ca2 | 2016-03-29 10:32:58 +0200 | [diff] [blame] | 673 | * @param[in] options Options for the inserting data to the target data tree options, see @ref parseroptions - only the |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 674 | * LYD_WD_* options are used to select functionality: |
| 675 | * - #LYD_WD_TRIM - remove all nodes that have value equal to their default value |
| 676 | * - #LYD_WD_ALL - add default nodes |
| 677 | * - #LYD_WD_ALL_TAG - add default nodes and add attribute 'default' with value 'true' to all nodes having their default value |
| 678 | * - #LYD_WD_IMPL_TAG - add default nodes, but add attribute 'default' only to the added nodes |
Radek Krejci | 8100ca2 | 2016-03-29 10:32:58 +0200 | [diff] [blame] | 679 | * @note The LYD_WD_*_TAG modes require to have ietf-netconf-with-defaults module in the context of the data tree. |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 680 | * @return EXIT_SUCCESS ot EXIT_FAILURE |
| 681 | */ |
| 682 | int lyd_wd_add(struct ly_ctx *ctx, struct lyd_node **root, int options); |
| 683 | |
| 684 | /** |
Radek Krejci | 6b8f6ac | 2016-03-23 12:33:04 +0100 | [diff] [blame] | 685 | * @brief Remove all default nodes, respectively all nodes with attribute ncwd:default="true" added by |
| 686 | * #LYD_WD_ALL_TAG or #LYD_WD_IMPL_TAG in lyd_wd_add(), lyd_validate() or lyd_parse_*() functions. |
| 687 | * |
| 688 | * @param[in] root Data tree root. The data tree can be modified so the root can be changed or completely removed. |
Radek Krejci | 74150cd | 2016-03-29 15:53:16 +0200 | [diff] [blame] | 689 | * @param[in] options Options for the inserting data to the target data tree options, see @ref parseroptions. |
Radek Krejci | 6b8f6ac | 2016-03-23 12:33:04 +0100 | [diff] [blame] | 690 | * @return EXIT_SUCCESS or EXIT_FAILURE |
| 691 | */ |
Radek Krejci | 74150cd | 2016-03-29 15:53:16 +0200 | [diff] [blame] | 692 | int lyd_wd_cleanup(struct lyd_node **root, int options); |
Radek Krejci | 6b8f6ac | 2016-03-23 12:33:04 +0100 | [diff] [blame] | 693 | |
| 694 | /** |
Michal Vasko | 55f60be | 2015-10-14 13:12:58 +0200 | [diff] [blame] | 695 | * @brief Unlink the specified data subtree. All referenced namespaces are copied. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 696 | * |
| 697 | * Note, that the node's connection with the schema tree is kept. Therefore, in case of |
| 698 | * reconnecting the node to a data tree using lyd_paste() it is necessary to paste it |
| 699 | * to the appropriate place in the data tree following the schema. |
| 700 | * |
| 701 | * @param[in] node Data tree node to be unlinked (together with all children). |
| 702 | * @return 0 for success, nonzero for error |
| 703 | */ |
| 704 | int lyd_unlink(struct lyd_node *node); |
| 705 | |
| 706 | /** |
| 707 | * @brief Free (and unlink) the specified data (sub)tree. |
| 708 | * |
| 709 | * @param[in] node Root of the (sub)tree to be freed. |
| 710 | */ |
| 711 | void lyd_free(struct lyd_node *node); |
| 712 | |
| 713 | /** |
Radek Krejci | 8146840 | 2016-01-07 13:52:40 +0100 | [diff] [blame] | 714 | * @brief Free (and unlink) the specified data (sub)tree and all its siblings (preceding as well as following). |
| 715 | * |
| 716 | * @param[in] node One of the siblings root element of the (sub)trees to be freed. |
| 717 | */ |
| 718 | void lyd_free_withsiblings(struct lyd_node *node); |
| 719 | |
| 720 | /** |
Radek Krejci | 134610e | 2015-10-20 17:15:34 +0200 | [diff] [blame] | 721 | * @brief Insert attribute into the data node. |
| 722 | * |
| 723 | * @param[in] parent Data node where to place the attribute |
Radek Krejci | 70ecd72 | 2016-03-21 09:04:00 +0100 | [diff] [blame] | 724 | * @param[in] mod An alternative way to specify attribute's module (namespace) used in case the \p name does |
| 725 | * not include prefix. If neither prefix in the \p name nor mod is specified, the attribute's |
| 726 | * module is inherited from the \p parent node. It is not allowed to have attributes with no |
| 727 | * module (namespace). |
| 728 | * @param[in] name Attribute name. The string can include the attribute's module (namespace) as the name's |
| 729 | * prefix (prefix:name). Prefix must be the name of one of the schema in the \p parent's context. |
| 730 | * If the prefix is not specified, the \p mod parameter is used. If neither of these parameters is |
| 731 | * usable, attribute inherits module (namespace) from the \p parent node. It is not allowed to |
| 732 | * have attributes with no module (namespace). |
Radek Krejci | 134610e | 2015-10-20 17:15:34 +0200 | [diff] [blame] | 733 | * @param[in] value Attribute value |
| 734 | * @return pointer to the created attribute (which is already connected in \p parent) or NULL on error. |
| 735 | */ |
Radek Krejci | 70ecd72 | 2016-03-21 09:04:00 +0100 | [diff] [blame] | 736 | struct lyd_attr *lyd_insert_attr(struct lyd_node *parent, const struct lys_module *mod, const char *name, |
| 737 | const char *value); |
Radek Krejci | 134610e | 2015-10-20 17:15:34 +0200 | [diff] [blame] | 738 | |
| 739 | /** |
Radek Krejci | 88f2930 | 2015-10-30 15:42:33 +0100 | [diff] [blame] | 740 | * @brief Destroy data attribute |
| 741 | * |
| 742 | * If the attribute to destroy is a member of a node attribute list, it is necessary to |
| 743 | * provide the node itself as \p parent to keep the list consistent. |
| 744 | * |
| 745 | * @param[in] ctx Context where the attribute was created (usually it is the context of the \p parent) |
| 746 | * @param[in] parent Parent node where the attribute is placed |
| 747 | * @param[in] attr Attribute to destroy |
| 748 | * @param[in] recursive Zero to destroy only the attribute, non-zero to destroy also all the subsequent attributes |
| 749 | * in the list. |
| 750 | */ |
| 751 | void lyd_free_attr(struct ly_ctx *ctx, struct lyd_node *parent, struct lyd_attr *attr, int recursive); |
| 752 | |
| 753 | /** |
Radek Krejci | 6910a03 | 2016-04-13 10:06:21 +0200 | [diff] [blame] | 754 | * @brief Return main module of the data tree node. |
| 755 | * |
| 756 | * In case of regular YANG module, it returns ::lys_node#module pointer, |
| 757 | * but in case of submodule, it returns pointer to the main module. |
| 758 | * |
| 759 | * @param[in] node Data tree node to be examined |
| 760 | * @return pointer to the main module (schema structure), NULL in case of error. |
| 761 | */ |
| 762 | struct lys_module *lyd_node_module(const struct lyd_node *node); |
| 763 | |
| 764 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 765 | * @brief Print data tree in the specified format. |
| 766 | * |
| 767 | * Same as lyd_print(), but it allocates memory and store the data into it. |
| 768 | * It is up to caller to free the returned string by free(). |
| 769 | * |
| 770 | * @param[out] strp Pointer to store the resulting dump. |
| 771 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 772 | * node of the data tree to print the specific subtree. |
| 773 | * @param[in] format Data output format. |
| 774 | * @param[in] options [printer flags](@ref printerflags). |
| 775 | * @return 0 on success, 1 on failure (#ly_errno is set). |
| 776 | */ |
| 777 | int lyd_print_mem(char **strp, const struct lyd_node *root, LYD_FORMAT format, int options); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 778 | |
| 779 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 780 | * @brief Print data tree in the specified format. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 781 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 782 | * Same as lyd_print(), but output is written into the specified file descriptor. |
| 783 | * |
| 784 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 785 | * node of the data tree to print the specific subtree. |
| 786 | * @param[in] fd File descriptor where to print the data. |
| 787 | * @param[in] format Data output format. |
| 788 | * @param[in] options [printer flags](@ref printerflags). |
| 789 | * @return 0 on success, 1 on failure (#ly_errno is set). |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 790 | */ |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 791 | int lyd_print_fd(int fd, const struct lyd_node *root, LYD_FORMAT format, int options); |
| 792 | |
| 793 | /** |
| 794 | * @brief Print data tree in the specified format. |
| 795 | * |
| 796 | * To write data into a file descriptor, use lyd_print_fd(). |
| 797 | * |
| 798 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 799 | * node of the data tree to print the specific subtree. |
| 800 | * @param[in] f File stream where to print the data. |
| 801 | * @param[in] format Data output format. |
| 802 | * @param[in] options [printer flags](@ref printerflags). |
| 803 | * @return 0 on success, 1 on failure (#ly_errno is set). |
| 804 | */ |
| 805 | int lyd_print_file(FILE *f, const struct lyd_node *root, LYD_FORMAT format, int options); |
| 806 | |
| 807 | /** |
| 808 | * @brief Print data tree in the specified format. |
| 809 | * |
| 810 | * Same as lyd_print(), but output is written via provided callback. |
| 811 | * |
| 812 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 813 | * node of the data tree to print the specific subtree. |
| 814 | * @param[in] writeclb Callback function to write the data (see write(1)). |
| 815 | * @param[in] arg Optional caller-specific argument to be passed to the \p writeclb callback. |
| 816 | * @param[in] format Data output format. |
| 817 | * @param[in] options [printer flags](@ref printerflags). |
| 818 | * @return 0 on success, 1 on failure (#ly_errno is set). |
| 819 | */ |
| 820 | int lyd_print_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg, |
| 821 | const struct lyd_node *root, LYD_FORMAT format, int options); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 822 | |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 823 | /**@} */ |
| 824 | |
| 825 | #ifdef __cplusplus |
| 826 | } |
| 827 | #endif |
| 828 | |
| 829 | #endif /* LY_TREE_DATA_H_ */ |