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 | /** |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 46 | * @brief List of possible value types stored in ::lyd_node_anydata. |
| 47 | */ |
| 48 | typedef enum { |
Radek Krejci | 83bf140 | 2016-09-27 15:05:20 +0200 | [diff] [blame] | 49 | LYD_ANYDATA_CONSTSTRING = 0x00, /**< value is constant string (const char *) which is internally duplicated for |
| 50 | storing in the anydata structure; XML sensitive characters (such as & or \>) |
| 51 | are automatically escaped when the anydata is printed in XML format */ |
| 52 | LYD_ANYDATA_STRING = 0x01, /**< value is dynamically allocated string (char*), so the data are used directly |
| 53 | without duplication and caller is supposed to not manipulate with the data |
| 54 | after a successful call (including calling free() on the provided data); XML |
| 55 | sensitive characters (such as & or \>) are automatically escaped when the |
| 56 | anydata is printed in XML format */ |
| 57 | LYD_ANYDATA_JSON = 0x02, /**< value is string containing the data modeled by YANG and encoded as I-JSON. The |
| 58 | string is handled as constant string. In case of using the value as input |
| 59 | parameter, the #LYD_ANYDATA_JSOND can be used for dynamically allocated |
| 60 | string. */ |
| 61 | LYD_ANYDATA_JSOND = 0x03, /**< In case of using value as input parameter, this enumeration is supposed to be |
| 62 | used for dynamically allocated strings (it is actually combination of |
| 63 | #LYD_ANYDATA_JSON and #LYD_ANYDATA_STRING (and it can be also specified as |
| 64 | ORed value of the mentioned values. */ |
| 65 | LYD_ANYDATA_SXML = 0x04, /**< value is string containing the serialized XML data. The string is handled as |
| 66 | constant string. In case of using the value as input parameter, the |
| 67 | #LYD_ANYDATA_SXMLD can be used for dynamically allocated string. */ |
| 68 | LYD_ANYDATA_SXMLD = 0x05, /**< In case of using serialized XML value as input parameter, this enumeration is |
| 69 | supposed to be used for dynamically allocated strings (it is actually |
| 70 | combination of #LYD_ANYDATA_SXML and #LYD_ANYDATA_STRING (and it can be also |
| 71 | specified as ORed value of the mentioned values). */ |
| 72 | LYD_ANYDATA_XML = 0x08, /**< value is struct lyxml_elem*, the structure is directly connected into the |
| 73 | anydata node without duplication, caller is supposed to not manipulate with the |
| 74 | data after a successful call (including calling lyxml_free() on the provided |
| 75 | data) */ |
| 76 | LYD_ANYDATA_DATATREE = 0x10, /**< value is struct lyd_node* (first sibling), the structure is directly connected |
| 77 | into the anydata node without duplication, caller is supposed to not manipulate |
| 78 | with the data after a successful call (including calling lyd_free() on the |
| 79 | provided data) */ |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 80 | } LYD_ANYDATA_VALUETYPE; |
| 81 | |
| 82 | /** |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 83 | * @brief Attribute structure. |
| 84 | * |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 85 | * The structure provides information about attributes of a data element. Such attributes partially |
| 86 | * maps to annotations from draft-ietf-netmod-yang-metadata. In XML, they are represented as standard |
| 87 | * XML attrbutes. In JSON, they are represented as JSON elements starting with the '@' character |
| 88 | * (for more information, see the yang metadata draft. |
| 89 | * |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 90 | */ |
| 91 | struct lyd_attr { |
Radek Krejci | 5f9e8c9 | 2015-10-30 10:01:06 +0100 | [diff] [blame] | 92 | struct lyd_attr *next; /**< pointer to the next attribute of the same element */ |
| 93 | struct lys_module *module; /**< pointer to the attribute's module. |
| 94 | TODO when annotations will be supported, point to the annotation definition |
| 95 | and validate that the attribute is really defined there. Currently, we just |
| 96 | believe that it is defined in the module it says */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 97 | const char *name; /**< attribute name */ |
| 98 | const char *value; /**< attribute value */ |
| 99 | }; |
| 100 | |
| 101 | /** |
| 102 | * @brief node's value representation |
| 103 | */ |
| 104 | typedef union lyd_value_u { |
| 105 | const char *binary; /**< base64 encoded, NULL terminated string */ |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 106 | struct lys_type_bit **bit; /**< bitmap of pointers to the schema definition of the bit value that are set, |
| 107 | its size is always the number of defined bits in the schema */ |
Radek Krejci | 489773c | 2015-12-17 13:20:03 +0100 | [diff] [blame] | 108 | int8_t bln; /**< 0 as false, 1 as true */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 109 | int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */ |
| 110 | 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] | 111 | 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] | 112 | struct lyd_node *instance; /**< pointer to the instance-identifier target, note that if the tree was modified, |
| 113 | the target (address) can be invalid - the pointer is correctly checked and updated |
| 114 | by lyd_validate() */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 115 | int8_t int8; /**< 8-bit signed integer */ |
| 116 | int16_t int16; /**< 16-bit signed integer */ |
| 117 | int32_t int32; /**< 32-bit signed integer */ |
| 118 | int64_t int64; /**< 64-bit signed integer */ |
| 119 | struct lyd_node *leafref; /**< pointer to the referenced leaf/leaflist instance in data tree */ |
| 120 | const char *string; /**< string */ |
| 121 | uint8_t uint8; /**< 8-bit unsigned integer */ |
| 122 | uint16_t uint16; /**< 16-bit signed integer */ |
| 123 | uint32_t uint32; /**< 32-bit signed integer */ |
| 124 | uint64_t uint64; /**< 64-bit signed integer */ |
| 125 | } lyd_val; |
| 126 | |
| 127 | /** |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 128 | * @defgroup validityflags Validity flags |
| 129 | * @ingroup datatree |
| 130 | * |
| 131 | * Validity flags for data nodes. |
| 132 | * |
| 133 | * @{ |
| 134 | */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 135 | #define LYD_VAL_OK 0x00 /**< Node is successfully validated including whole subtree */ |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 136 | #define LYD_VAL_UNIQUE 0x01 /**< Unique value(s) changed, applicable only to ::lys_node_list data nodes */ |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 137 | #define LYD_VAL_MAND 0x02 /**< Some child added/removed and it is needed to perform check for mandatory |
| 138 | node or min/max constraints of direct list/leaflist children, applicable only |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 139 | to ::lys_node_list and ::lys_node_container data nodes, but if on any other node |
| 140 | except ::lys_node_leaflist, it means checking that data node for duplicities. |
| 141 | Additionally, it can be set on truly any node type and then status references |
| 142 | are checked for this node if flag #LYD_OPT_OBSOLETE is used. */ |
| 143 | #define LYD_VAL_LEAFREF 0x04 /**< Node is a leafref, which needs to be resolved (it is invalid, new possible |
| 144 | resolvent, or something similar) */ |
| 145 | #define LYD_VAL_INUSE 0x80 /**< Internal flag for note about various processing on data, should be used only |
| 146 | internally and removed before libyang returns the node to the caller */ |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 147 | /** |
| 148 | * @} |
| 149 | */ |
| 150 | |
| 151 | /** |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 152 | * @brief Generic structure for a data node, directly applicable to the data nodes defined as #LYS_CONTAINER, #LYS_LIST |
| 153 | * and #LYS_CHOICE. |
| 154 | * |
| 155 | * Completely fits to containers and choices and is compatible (can be used interchangeably except the #child member) |
| 156 | * with all other lyd_node_* structures. All data nodes are provides as ::lyd_node structure by default. |
| 157 | * According to the schema's ::lys_node#nodetype member, the specific object is supposed to be cast to |
Radek Krejci | bf2abff | 2016-08-23 15:51:52 +0200 | [diff] [blame] | 158 | * ::lyd_node_leaf_list or ::lyd_node_anydata structures. This structure fits only to #LYS_CONTAINER, #LYS_LIST and |
Radek Krejci | ca7efb7 | 2016-01-18 13:06:01 +0100 | [diff] [blame] | 159 | * #LYS_CHOICE values. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 160 | * |
| 161 | * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro. |
| 162 | */ |
| 163 | struct lyd_node { |
| 164 | struct lys_node *schema; /**< pointer to the schema definition of this node */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 165 | uint8_t validity; /**< [validity flags](@ref validityflags) */ |
Radek Krejci | 082c84f | 2016-10-17 16:33:06 +0200 | [diff] [blame] | 166 | uint8_t dflt:1; /**< flag for default node */ |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 167 | 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] | 168 | do not use this value! */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 169 | |
| 170 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 171 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 172 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 173 | never NULL. If there is no sibling node, pointer points to the node |
| 174 | itself. In case of the first node, this pointer points to the last |
| 175 | node in the list. */ |
| 176 | struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 177 | 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] | 178 | structures represent end nodes, this member |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 179 | is replaced in those structures. Therefore, be careful with accessing |
| 180 | this member without having information about the node type from the schema's |
| 181 | ::lys_node#nodetype member. */ |
| 182 | }; |
| 183 | |
| 184 | /** |
Michal Vasko | 4c18331 | 2015-09-25 10:41:47 +0200 | [diff] [blame] | 185 | * @brief Structure for data nodes defined as #LYS_LEAF or #LYS_LEAFLIST. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 186 | * |
Michal Vasko | 4c18331 | 2015-09-25 10:41:47 +0200 | [diff] [blame] | 187 | * Extension for ::lyd_node structure. It replaces the ::lyd_node#child member by |
| 188 | * three new members (#value, #value_str and #value_type) to provide |
| 189 | * information about the value. The first five members (#schema, #attr, #next, |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 190 | * #prev and #parent) are compatible with the ::lyd_node's members. |
| 191 | * |
| 192 | * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro. |
| 193 | */ |
Michal Vasko | 4c18331 | 2015-09-25 10:41:47 +0200 | [diff] [blame] | 194 | struct lyd_node_leaf_list { |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 195 | struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_leaflist |
| 196 | structure */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 197 | uint8_t validity; /**< [validity flags](@ref validityflags) */ |
Radek Krejci | 082c84f | 2016-10-17 16:33:06 +0200 | [diff] [blame] | 198 | uint8_t dflt:1; /**< flag for default node */ |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 199 | 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] | 200 | do not use this value! */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 201 | |
| 202 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 203 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 204 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 205 | never NULL. If there is no sibling node, pointer points to the node |
| 206 | itself. In case of the first node, this pointer points to the last |
| 207 | node in the list. */ |
| 208 | struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 209 | |
| 210 | /* struct lyd_node *child; should be here, but is not */ |
| 211 | |
| 212 | /* leaflist's specific members */ |
Michal Vasko | 6a02770 | 2016-06-30 10:32:14 +0200 | [diff] [blame] | 213 | const char *value_str; /**< string representation of value (for comparison, printing,...), always corresponds to value_type */ |
| 214 | lyd_val value; /**< node's value representation, always corresponds to schema->type.base */ |
| 215 | LY_DATA_TYPE value_type; /**< type of the value in the node, mainly for union to avoid repeating of type detection, |
| 216 | if (schema->type.base == LY_TYPE_LEAFREF), then value_type may be |
| 217 | (LY_TYPE_LEAFREF_UNRES | leafref target value_type) and (value.leafref == NULL) */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 218 | }; |
| 219 | |
| 220 | /** |
Radek Krejci | bf2abff | 2016-08-23 15:51:52 +0200 | [diff] [blame] | 221 | * @brief Structure for data nodes defined as #LYS_ANYDATA or #LYS_ANYXML. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 222 | * |
| 223 | * Extension for ::lyd_node structure - replaces the ::lyd_node#child member by new #value member. The first five |
| 224 | * members (#schema, #attr, #next, #prev and #parent) are compatible with the ::lyd_node's members. |
| 225 | * |
| 226 | * To traverse through all the child elements or attributes, use #LY_TREE_FOR or #LY_TREE_FOR_SAFE macro. |
| 227 | */ |
Radek Krejci | bf2abff | 2016-08-23 15:51:52 +0200 | [diff] [blame] | 228 | struct lyd_node_anydata { |
| 229 | struct lys_node *schema; /**< pointer to the schema definition of this node which is ::lys_node_anydata |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 230 | structure */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 231 | uint8_t validity; /**< [validity flags](@ref validityflags) */ |
Radek Krejci | 082c84f | 2016-10-17 16:33:06 +0200 | [diff] [blame] | 232 | uint8_t dflt:1; /**< flag for default node */ |
Radek Krejci | 0b7704f | 2016-03-18 12:16:14 +0100 | [diff] [blame] | 233 | 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] | 234 | do not use this value! */ |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 235 | |
| 236 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 237 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 238 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 239 | never NULL. If there is no sibling node, pointer points to the node |
| 240 | itself. In case of the first node, this pointer points to the last |
| 241 | node in the list. */ |
| 242 | struct lyd_node *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 243 | |
| 244 | /* struct lyd_node *child; should be here, but is not */ |
| 245 | |
| 246 | /* anyxml's specific members */ |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 247 | LYD_ANYDATA_VALUETYPE value_type;/**< type of the stored anydata value */ |
| 248 | union { |
| 249 | const char *str; /**< string value, in case of printing as XML, characters like '<' or '&' are escaped */ |
| 250 | struct lyxml_elem *xml; /**< xml tree */ |
| 251 | struct lyd_node *tree; /**< libyang data tree, does not change the root's parent, so it is not possible |
| 252 | to get from the data tree into the anydata/anyxml */ |
| 253 | } value; |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 254 | }; |
| 255 | |
| 256 | /** |
Radek Krejci | 991a396 | 2016-05-05 15:00:14 +0200 | [diff] [blame] | 257 | * @brief list of possible types of differencies in #lyd_difflist |
| 258 | */ |
| 259 | typedef enum { |
Radek Krejci | 9e6f0b8 | 2016-05-13 17:33:16 +0200 | [diff] [blame] | 260 | LYD_DIFF_END = 0, /**< end of the differences list */ |
Radek Krejci | 9e6f0b8 | 2016-05-13 17:33:16 +0200 | [diff] [blame] | 261 | LYD_DIFF_DELETED, /**< deleted node |
| 262 | - Node is present in the first tree, but not in the second tree. |
| 263 | - To make both trees the same the node in lyd_difflist::first can be deleted from the |
| 264 | first tree. The pointer at the same index in the lyd_difflist::second array is |
| 265 | NULL */ |
| 266 | LYD_DIFF_CHANGED, /**< value of a leaf or anyxml is changed, the lyd_difflist::first and lyd_difflist::second |
| 267 | points to the leaf/anyxml instances in the first and the second tree respectively. */ |
Radek Krejci | 22d2ca9 | 2016-05-17 16:23:51 +0200 | [diff] [blame] | 268 | LYD_DIFF_MOVEDAFTER1, /**< user-ordered (leaf-)list item was moved. |
| 269 | - To make both trees the same, all #LYD_DIFF_MOVEDAFTER1 transactions must be applied |
Radek Krejci | 9e6f0b8 | 2016-05-13 17:33:16 +0200 | [diff] [blame] | 270 | to the first tree in the strict order they appear in the difflist. The |
| 271 | lyd_difflist::first points to the first tree node being moved and the |
| 272 | lyd_difflist::second points to the first tree node after which the first node is |
| 273 | supposed to be moved. If the second pointer is NULL, the node is being moved into |
| 274 | the beginning as the first node of the (leaf-)list instances. */ |
Radek Krejci | 22d2ca9 | 2016-05-17 16:23:51 +0200 | [diff] [blame] | 275 | LYD_DIFF_CREATED, /**< newly created node |
| 276 | - Node is present in the second tree, but not in the first tree. |
| 277 | - To make both trees the same the node in lyd_difflist::second is supposed to be |
| 278 | inserted (copied via lyd_dup()) into the node (as a child) at the same index in the |
| 279 | lyd_difflist::first array (where is its parent). If the lyd_difflist::first at the |
| 280 | index is NULL, the missing node is top-level. */ |
| 281 | LYD_DIFF_MOVEDAFTER2 /**< similar to LYD_DIFF_MOVEDAFTER1, but this time the moved item is in the second tree. |
| 282 | This type is always used in combination with (as a successor of) #LYD_DIFF_CREATED |
| 283 | as an instruction to move the newly created node to a specific position. Note, that |
| 284 | due to applicability to the second tree, the meaning of lyd_difflist:first and |
| 285 | lyd_difflist:second is inverse in comparison to #LYD_DIFF_MOVEDAFTER1. The |
| 286 | lyd_difflist::second points to the (previously) created node in the second tree and |
| 287 | the lyd_difflist::first points to the predecessor node in the second tree. If the |
| 288 | predecessor is NULL, the node is supposed to bes the first sibling. */ |
Radek Krejci | 991a396 | 2016-05-05 15:00:14 +0200 | [diff] [blame] | 289 | } LYD_DIFFTYPE; |
| 290 | |
| 291 | /** |
| 292 | * @brief Structure for the result of lyd_diff(), describing differences between two data trees. |
| 293 | */ |
| 294 | struct lyd_difflist { |
| 295 | LYD_DIFFTYPE *type; /**< array of the differences types, terminated by #LYD_DIFF_END value. */ |
| 296 | struct lyd_node **first; /**< array of nodes in the first tree for the specific type of difference, see the |
| 297 | description of #LYD_DIFFTYPE values for more information. */ |
| 298 | struct lyd_node **second;/**< array of nodes in the second tree for the specific type of difference, see the |
| 299 | description of #LYD_DIFFTYPE values for more information. */ |
| 300 | }; |
| 301 | |
| 302 | /** |
| 303 | * @brief Free the result of lyd_diff(). It frees the structure of the lyd_diff() result, not the referenced nodes. |
| 304 | * |
| 305 | * @param[in] diff The lyd_diff() result to free. |
| 306 | */ |
| 307 | void lyd_free_diff(struct lyd_difflist *diff); |
| 308 | |
| 309 | /** |
| 310 | * @brief Compare two data trees and provide list of differences. |
| 311 | * |
| 312 | * Note, that the \p first and the \p second must have the same schema parent (or they must be top-level elements). |
| 313 | * In case of using #LYD_OPT_NOSIBLINGS, they both must be instances of the same schema node. |
| 314 | * |
Radek Krejci | 913100d | 2016-05-09 17:23:51 +0200 | [diff] [blame] | 315 | * Order of the resulting set follows these rules: |
Radek Krejci | 22d2ca9 | 2016-05-17 16:23:51 +0200 | [diff] [blame] | 316 | * - To change the first tree into the second tree, the resulting transactions are supposed to be applied in the order |
| 317 | * they appear in the result. First, the changed (#LYD_DIFF_CHANGED) nodes are described followed by the deleted |
| 318 | * (#LYD_DIFF_DELETED) nodes. Then, the moving of the user-ordered nodes present in both trees (#LYD_DIFF_MOVEDAFTER1) |
| 319 | * follows and the last transactions in the results are the newly created (#LYD_DIFF_CREATED) nodes. These nodes are |
| 320 | * supposed to be added as the last siblings, but in some case they can need additional move. In such a case, the |
| 321 | * #LYD_DIFF_MOVEDAFTER2 transactions can appear. |
| 322 | * - The order of the changed (#LYD_DIFF_CHANGED) and created (#LYD_DIFF_CREATED) follows the nodes order in the |
| 323 | * second tree - the current siblings are processed first and then the children are processed. Note, that this is |
| 324 | * actually not the BFS: |
Radek Krejci | 9e47ddf | 2016-05-18 15:01:09 +0200 | [diff] [blame] | 325 | * |
Radek Krejci | 913100d | 2016-05-09 17:23:51 +0200 | [diff] [blame] | 326 | * 1 2 |
| 327 | * / \ / \ |
| 328 | * 3 4 7 8 |
| 329 | * / \ |
| 330 | * 5 6 |
Radek Krejci | 9e47ddf | 2016-05-18 15:01:09 +0200 | [diff] [blame] | 331 | * |
Radek Krejci | 22d2ca9 | 2016-05-17 16:23:51 +0200 | [diff] [blame] | 332 | * - The order of the deleted (#LYD_DIFF_DELETED) nodes is the DFS: |
Radek Krejci | 9e47ddf | 2016-05-18 15:01:09 +0200 | [diff] [blame] | 333 | * |
| 334 | * 1 6 |
| 335 | * / \ / \ |
| 336 | * 2 5 7 8 |
| 337 | * / \ |
| 338 | * 3 4 |
Radek Krejci | 913100d | 2016-05-09 17:23:51 +0200 | [diff] [blame] | 339 | * |
| 340 | * To change the first tree into the second one, it is necessary to follow the order of transactions described in |
| 341 | * the result. Note, that it is not possible just to use the transactions in the reverse order to transform the |
| 342 | * second tree into the first one. The transactions can be generalized (to be used on a different instance of the |
| 343 | * first tree) using lyd_path() to get identifiers for the nodes used in the transactions. |
| 344 | * |
Radek Krejci | 9a6a5dd | 2016-05-05 15:56:24 +0200 | [diff] [blame] | 345 | * @param[in] first The first (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are |
Radek Krejci | 4c3bc11 | 2016-05-19 15:09:03 +0200 | [diff] [blame] | 346 | * taken into comparison. If NULL, all the \p second nodes are supposed to be top level and they will |
| 347 | * be marked as #LYD_DIFF_CREATED. |
Radek Krejci | 9a6a5dd | 2016-05-05 15:56:24 +0200 | [diff] [blame] | 348 | * @param[in] second The second (sub)tree to compare. Without #LYD_OPT_NOSIBLINGS option, all siblings are |
Radek Krejci | 4c3bc11 | 2016-05-19 15:09:03 +0200 | [diff] [blame] | 349 | * taken into comparison. If NULL, all the \p first nodes will be marked as #LYD_DIFF_DELETED. |
Radek Krejci | 99d737f | 2016-09-06 11:19:52 +0200 | [diff] [blame] | 350 | * @param[in] options The @ref diffoptions are accepted. |
Radek Krejci | 991a396 | 2016-05-05 15:00:14 +0200 | [diff] [blame] | 351 | * @return NULL on error, the list of differences on success. In case the trees are the same, the first item in the |
Radek Krejci | 9a6a5dd | 2016-05-05 15:56:24 +0200 | [diff] [blame] | 352 | * lyd_difflist::type array is #LYD_DIFF_END. The returned structure is supposed to be freed by lyd_free_diff(). |
Radek Krejci | 991a396 | 2016-05-05 15:00:14 +0200 | [diff] [blame] | 353 | */ |
| 354 | struct lyd_difflist *lyd_diff(struct lyd_node *first, struct lyd_node *second, int options); |
| 355 | |
| 356 | /** |
Radek Krejci | 99d737f | 2016-09-06 11:19:52 +0200 | [diff] [blame] | 357 | * @defgroup diffoptions Diff options |
| 358 | * @ingroup datatree |
| 359 | * |
| 360 | * @{ |
| 361 | */ |
| 362 | /* LYD_DIFFOPT_NOSIBLINGS value is the same as LYD_OPT_NOSIBLINGS due to backward compatibility. The LYD_OPT_NOSIBLINGS |
| 363 | * was used previously as an option for lyd_diff(). */ |
| 364 | #define LYD_DIFFOPT_NOSIBLINGS 0x0800 /**< The both trees to diff have to instantiate the same schema node so only the |
| 365 | single subtree is compared. */ |
| 366 | #define LYD_DIFFOPT_WITHDEFAULTS 0x0001 /**< Take default nodes with their values into account and handle them as part |
| 367 | of both trees. In this case, a node with defined default value cannot be |
| 368 | deleted, because when it is removed from a tree, it is implicitly replaced |
| 369 | by the default node, so the node is not #LYD_DIFF_DELETED, but |
| 370 | #LYD_DIFF_CHANGED. Note that in this case, applying the resulting |
| 371 | transactions on the first tree does not result to the exact second tree, |
| 372 | because instead of having implicit default nodes you are going to have |
| 373 | explicit default nodes. */ |
| 374 | /**@} diffoptions */ |
| 375 | |
| 376 | /** |
Radek Krejci | 6d53828 | 2016-05-05 14:24:12 +0200 | [diff] [blame] | 377 | * @brief Build path (usable as XPath) of the data node. |
| 378 | * @param[in] node Data node to be processed. Note that the node should be from a complete data tree, having a subtree |
| 379 | * (after using lyd_unlink()) can cause generating invalid paths. |
| 380 | * @return NULL on error, on success the buffer for the resulting path is allocated and caller is supposed to free it |
| 381 | * with free(). |
| 382 | */ |
| 383 | char *lyd_path(struct lyd_node *node); |
| 384 | |
| 385 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 386 | * @defgroup parseroptions Data parser options |
| 387 | * @ingroup datatree |
| 388 | * |
| 389 | * Various options to change the data tree parsers behavior. |
| 390 | * |
| 391 | * Default behavior: |
| 392 | * - in case of XML, parser reads all data from its input (file, memory, XML tree) including the case of not well-formed |
| 393 | * XML document (multiple top-level elements) and if there is an unknown element, it is skipped including its subtree |
| 394 | * (see the next point). This can be changed by the #LYD_OPT_NOSIBLINGS option which make parser to read only a single |
| 395 | * tree (with a single root element) from its input. |
| 396 | * - parser silently ignores the data without a matching node in schema trees. If the caller want to stop |
| 397 | * parsing in case of presence of unknown data, the #LYD_OPT_STRICT can be used. The strict mode is useful for |
| 398 | * NETCONF servers, since NETCONF clients should always send data according to the capabilities announced by the server. |
| 399 | * On the other hand, the default non-strict mode is useful for clients receiving data from NETCONF server since |
| 400 | * clients are not required to understand everything the server does. Of course, the optimal strategy for clients is |
| 401 | * to use filtering to get only the required data. Having an unknown element of the known namespace is always an error. |
| 402 | * The behavior can be changed by #LYD_OPT_STRICT option. |
| 403 | * - using obsolete statements (status set to obsolete) just generates a warning, but the processing continues. The |
| 404 | * behavior can be changed by #LYD_OPT_OBSOLETE option. |
| 405 | * - parser expects that the provided data provides complete datastore content (both the configuration and state data) |
| 406 | * and performs data validation according to all YANG rules. This can be a problem in case of representing NETCONF's |
| 407 | * subtree filter data, edit-config's data or other type of data set - such data do not represent a complete data set |
| 408 | * and some of the validation rules can fail. Therefore there are other options (within lower 8 bits) to make parser |
| 409 | * to accept such a data. |
Radek Krejci | f3c218d | 2016-03-24 12:40:08 +0100 | [diff] [blame] | 410 | * - when parser evaluates when-stmt condition to false, the constrained subtree is automatically removed. If the |
| 411 | * #LYD_OPT_NOAUTODEL is used, error is raised instead of silent auto delete. The option (and also this default |
| 412 | * behavior) takes effect only in case of #LYD_OPT_DATA or #LYD_OPT_CONFIG type of data. |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 413 | * @{ |
| 414 | */ |
| 415 | |
| 416 | #define LYD_OPT_DATA 0x00 /**< Default type of data - complete datastore content with configuration as well as |
| 417 | state data. */ |
| 418 | #define LYD_OPT_CONFIG 0x01 /**< A configuration datastore - complete datastore without state data. |
| 419 | Validation modifications: |
| 420 | - status data are not allowed */ |
| 421 | #define LYD_OPT_GET 0x02 /**< Data content from a NETCONF reply message to the NETCONF \<get\> operation. |
| 422 | Validation modifications: |
| 423 | - mandatory nodes can be omitted |
Michal Vasko | 62671b9 | 2017-01-02 13:08:57 +0100 | [diff] [blame] | 424 | - leafrefs and instance-identifier resolution is allowed to fail |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 425 | - list's keys/unique nodes are not required (so duplication is not checked) */ |
| 426 | #define LYD_OPT_GETCONFIG 0x04 /**< Data content from a NETCONF reply message to the NETCONF \<get-config\> operation |
| 427 | Validation modifications: |
| 428 | - mandatory nodes can be omitted |
Michal Vasko | 62671b9 | 2017-01-02 13:08:57 +0100 | [diff] [blame] | 429 | - leafrefs and instance-identifier resolution is allowed to fail |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 430 | - list's keys/unique nodes are not required (so duplication is not checked) |
| 431 | - status data are not allowed */ |
| 432 | #define LYD_OPT_EDIT 0x08 /**< Content of the NETCONF \<edit-config\>'s config element. |
| 433 | Validation modifications: |
| 434 | - mandatory nodes can be omitted |
Michal Vasko | 62671b9 | 2017-01-02 13:08:57 +0100 | [diff] [blame] | 435 | - leafrefs and instance-identifier resolution is allowed to fail |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 436 | - status data are not allowed */ |
| 437 | #define LYD_OPT_RPC 0x10 /**< Data represents RPC's input parameters. */ |
| 438 | #define LYD_OPT_RPCREPLY 0x20 /**< Data represents RPC's output parameters (maps to NETCONF <rpc-reply> data). */ |
| 439 | #define LYD_OPT_NOTIF 0x40 /**< Data represents an event notification data. */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 440 | #define LYD_OPT_NOTIF_FILTER 0x80 /**< Data represents a filtered event notification data. |
| 441 | Validation modification: |
| 442 | - the only requirement is that the data tree matches the schema tree */ |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 443 | #define LYD_OPT_TYPEMASK 0xff /**< Mask to filter data type options. Always only a single data type option (only |
| 444 | single bit from the lower 8 bits) can be set. */ |
| 445 | |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 446 | /* 0x100 reserved, used internally */ |
| 447 | #define LYD_OPT_STRICT 0x0200 /**< Instead of silent ignoring data without schema definition, raise an error. */ |
| 448 | #define LYD_OPT_DESTRUCT 0x0400 /**< Free the provided XML tree during parsing the data. With this option, the |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 449 | provided XML tree is affected and all succesfully parsed data are freed. |
| 450 | This option is applicable only to lyd_parse_xml() function. */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 451 | #define LYD_OPT_OBSOLETE 0x0800 /**< Raise an error when an obsolete statement (status set to obsolete) is used. */ |
| 452 | #define LYD_OPT_NOSIBLINGS 0x1000 /**< Parse only a single XML tree from the input. This option applies only to |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 453 | XML input data. */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 454 | #define LYD_OPT_TRUSTED 0x2000 /**< Data comes from a trusted source and it is not needed to validate them. Data |
Radek Krejci | 93fab98 | 2016-02-03 15:58:19 +0100 | [diff] [blame] | 455 | are connected with the schema, but the most validation checks (mandatory nodes, |
| 456 | list instance uniqueness, etc.) are not performed. This option does not make |
| 457 | sense for lyd_validate() so it is ignored by this function. */ |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 458 | #define LYD_OPT_NOAUTODEL 0x4000 /**< Avoid automatic delete of subtrees with false when-stmt condition. The flag is |
Radek Krejci | 03b71f7 | 2016-03-16 11:10:09 +0100 | [diff] [blame] | 459 | applicable only in combination with LYD_OPT_DATA and LYD_OPT_CONFIG flags. |
| 460 | If used, libyang generates validation error instead of silently removing the |
| 461 | constrained subtree. */ |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 462 | |
| 463 | /**@} parseroptions */ |
| 464 | |
| 465 | /** |
| 466 | * @brief Parse (and validate according to appropriate schema from the given context) data. |
| 467 | * |
| 468 | * In case of LY_XML format, the data string is parsed completely. It means that when it contains |
| 469 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 470 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 471 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 472 | * |
| 473 | * @param[in] ctx Context to connect with the data tree being built here. |
| 474 | * @param[in] data Serialized data in the specified format. |
| 475 | * @param[in] format Format of the input data to be parsed. |
| 476 | * @param[in] options Parser options, see @ref parseroptions. |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 477 | * @param[in] ... Variable arguments depend on \p options. If they include: |
| 478 | * - #LYD_OPT_DATA: |
| 479 | * - #LYD_OPT_CONFIG: |
| 480 | * - #LYD_OPT_GET: |
| 481 | * - #LYD_OPT_GETCONFIG: |
| 482 | * - #LYD_OPT_EDIT: |
| 483 | * - no variable arguments expected. |
| 484 | * - #LYD_OPT_RPC: |
| 485 | * - #LYD_OPT_NOTIF: |
| 486 | * - struct lyd_node *data_tree - additional data tree that will be used |
| 487 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 488 | * some nodes outside their subtree. It must be a list of top-level elements! |
| 489 | * - #LYD_OPT_RPCREPLY: |
Michal Vasko | d55f109 | 2016-10-24 11:21:08 +0200 | [diff] [blame] | 490 | * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data |
| 491 | * tree (the request) of the reply. |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 492 | * - const struct ::lyd_node *data_tree - additional data tree that will be used |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 493 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 494 | * some nodes outside their subtree. It must be a list of top-level elements! |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 495 | * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure, |
| 496 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 497 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 498 | */ |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 499 | 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] | 500 | |
| 501 | /** |
| 502 | * @brief Read data from the given file descriptor. |
| 503 | * |
| 504 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 505 | * |
| 506 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 507 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 508 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 509 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 510 | * |
| 511 | * @param[in] ctx Context to connect with the data tree being built here. |
| 512 | * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format. |
| 513 | * @param[in] format Format of the input data to be parsed. |
| 514 | * @param[in] options Parser options, see @ref parseroptions. |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 515 | * @param[in] ... Variable arguments depend on \p options. If they include: |
| 516 | * - #LYD_OPT_DATA: |
| 517 | * - #LYD_OPT_CONFIG: |
| 518 | * - #LYD_OPT_GET: |
| 519 | * - #LYD_OPT_GETCONFIG: |
| 520 | * - #LYD_OPT_EDIT: |
| 521 | * - no variable arguments expected. |
| 522 | * - #LYD_OPT_RPC: |
| 523 | * - #LYD_OPT_NOTIF: |
| 524 | * - struct lyd_node *data_tree - additional data tree that will be used |
| 525 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 526 | * some nodes outside their subtree. It must be a list of top-level elements! |
| 527 | * - #LYD_OPT_RPCREPLY: |
Michal Vasko | d55f109 | 2016-10-24 11:21:08 +0200 | [diff] [blame] | 528 | * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data |
| 529 | * tree (the request) of the reply. |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 530 | * - const struct ::lyd_node *data_tree - additional data tree that will be used |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 531 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 532 | * some nodes outside their subtree. It must be a list of top-level elements! |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 533 | * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure, |
| 534 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 535 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 536 | */ |
| 537 | struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options, ...); |
| 538 | |
| 539 | /** |
| 540 | * @brief Read data from the given file path. |
| 541 | * |
| 542 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 543 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 544 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 545 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 546 | * |
| 547 | * @param[in] ctx Context to connect with the data tree being built here. |
| 548 | * @param[in] path Path to the file containing the data tree in the specified format. |
| 549 | * @param[in] format Format of the input data to be parsed. |
| 550 | * @param[in] options Parser options, see @ref parseroptions. |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 551 | * @param[in] ... Variable arguments depend on \p options. If they include: |
| 552 | * - #LYD_OPT_DATA: |
| 553 | * - #LYD_OPT_CONFIG: |
| 554 | * - #LYD_OPT_GET: |
| 555 | * - #LYD_OPT_GETCONFIG: |
| 556 | * - #LYD_OPT_EDIT: |
| 557 | * - no variable arguments expected. |
| 558 | * - #LYD_OPT_RPC: |
| 559 | * - #LYD_OPT_NOTIF: |
| 560 | * - struct lyd_node *data_tree - additional data tree that will be used |
| 561 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 562 | * some nodes outside their subtree. It must be a list of top-level elements! |
| 563 | * - #LYD_OPT_RPCREPLY: |
Michal Vasko | d55f109 | 2016-10-24 11:21:08 +0200 | [diff] [blame] | 564 | * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data |
| 565 | * tree (the request) of the reply. |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 566 | * - const struct ::lyd_node *data_tree - additional data tree that will be used |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 567 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 568 | * some nodes outside their subtree. It must be a list of top-level elements! |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 569 | * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure, |
| 570 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 571 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 572 | */ |
| 573 | struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options, ...); |
| 574 | |
| 575 | /** |
| 576 | * @brief Parse (and validate according to appropriate schema from the given context) XML tree. |
| 577 | * |
| 578 | * The output data tree is parsed from the given XML tree previously parsed by one of the |
| 579 | * lyxml_read* functions. |
| 580 | * |
Radek Krejci | 722b007 | 2016-02-01 17:09:45 +0100 | [diff] [blame] | 581 | * 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] | 582 | * or the provided root is a root element of a subtree), all the sibling nodes (previous as well as |
| 583 | * following) are processed as well. The returned data node is a root of the first tree with other |
| 584 | * trees connected via the next pointer. This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 585 | * |
| 586 | * When the function is used with #LYD_OPT_DESTRUCT, all the successfully parsed data including the |
| 587 | * XML \p root and all its siblings (if #LYD_OPT_NOSIBLINGS is not used) are freed. Only with |
| 588 | * #LYD_OPT_DESTRUCT option the \p root pointer is changed - if all the data are parsed, it is set |
| 589 | * to NULL, otherwise it will hold the XML tree without the successfully parsed elements. |
| 590 | * |
| 591 | * The context must be the same as the context used to parse XML tree by lyxml_read* function. |
| 592 | * |
| 593 | * @param[in] ctx Context to connect with the data tree being built here. |
| 594 | * @param[in,out] root XML tree to parse (convert) to data tree. By default, parser do not change the XML tree. However, |
| 595 | * when #LYD_OPT_DESTRUCT is specified in \p options, parser frees all successfully parsed data. |
| 596 | * @param[in] options Parser options, see @ref parseroptions. |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 597 | * @param[in] ... Variable arguments depend on \p options. If they include: |
| 598 | * - #LYD_OPT_DATA: |
| 599 | * - #LYD_OPT_CONFIG: |
| 600 | * - #LYD_OPT_GET: |
| 601 | * - #LYD_OPT_GETCONFIG: |
| 602 | * - #LYD_OPT_EDIT: |
| 603 | * - no variable arguments expected. |
| 604 | * - #LYD_OPT_RPC: |
| 605 | * - #LYD_OPT_NOTIF: |
| 606 | * - struct lyd_node *data_tree - additional data tree that will be used |
| 607 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 608 | * some nodes outside their subtree. It must be a list of top-level elements! |
| 609 | * - #LYD_OPT_RPCREPLY: |
Michal Vasko | d55f109 | 2016-10-24 11:21:08 +0200 | [diff] [blame] | 610 | * - const struct ::lyd_node *rpc_act - pointer to the whole RPC or action operation data |
| 611 | * tree (the request) of the reply. |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 612 | * - const struct ::lyd_node *data_tree - additional data tree that will be used |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 613 | * when checking any "when" or "must" conditions in the parsed tree that require |
| 614 | * some nodes outside their subtree. It must be a list of top-level elements! |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 615 | * @return Pointer to the built data tree or NULL in case of empty \p root. To free the returned structure, |
| 616 | * use lyd_free(). In these cases, the function sets #ly_errno to LY_SUCCESS. In case of error, |
| 617 | * #ly_errno contains appropriate error code (see #LY_ERR). |
| 618 | */ |
| 619 | struct lyd_node *lyd_parse_xml(struct ly_ctx *ctx, struct lyxml_elem **root, int options,...); |
| 620 | |
| 621 | /** |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 622 | * @brief Create a new container node in a data tree. |
| 623 | * |
| 624 | * @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] | 625 | * @param[in] module Module with the node being created. |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 626 | * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_LIST, |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 627 | * #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION. |
Michal Vasko | 1dca688 | 2015-10-22 14:29:42 +0200 | [diff] [blame] | 628 | * @return New node, NULL on error. |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 629 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 630 | 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] | 631 | |
| 632 | /** |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 633 | * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to |
| 634 | * the actual value. |
| 635 | * |
| 636 | * @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] | 637 | * @param[in] module Module with the node being created. |
| 638 | * @param[in] name Schema node name of the new data node. |
Michal Vasko | 3e671b5 | 2015-10-23 16:23:15 +0200 | [diff] [blame] | 639 | * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST |
| 640 | * 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] | 641 | * @return New node, NULL on error. |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 642 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 643 | 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] | 644 | const char *val_str); |
Michal Vasko | 8ea2b7f | 2015-09-29 14:30:53 +0200 | [diff] [blame] | 645 | |
| 646 | /** |
Radek Krejci | b9b4d00 | 2016-01-18 13:08:51 +0100 | [diff] [blame] | 647 | * @brief Change value of a leaf node. |
| 648 | * |
| 649 | * 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] | 650 | * Also, changing the value of a list key is prohibited. |
Radek Krejci | b9b4d00 | 2016-01-18 13:08:51 +0100 | [diff] [blame] | 651 | * |
Radek Krejci | 0562dbc | 2016-04-18 14:18:26 +0200 | [diff] [blame] | 652 | * As for the other data tree manipulation functions, the change is not fully validated to allow multiple changes |
| 653 | * in the data tree. Therefore, when all changes on the data tree are done, caller is supposed to call lyd_validate() |
| 654 | * to check that the result is valid data tree. Specifically, if a leafref leaf is changed, it is not checked that |
| 655 | * the (leafref) value is correct. |
| 656 | * |
Radek Krejci | b9b4d00 | 2016-01-18 13:08:51 +0100 | [diff] [blame] | 657 | * @param[in] leaf A leaf node to change. |
| 658 | * @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 |
| 659 | * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces). |
| 660 | * @return 0 on success, non-zero on error. |
| 661 | */ |
| 662 | int lyd_change_leaf(struct lyd_node_leaf_list *leaf, const char *val_str); |
| 663 | |
| 664 | /** |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 665 | * @brief Create a new anydata or anyxml node in a data tree. |
| 666 | * |
| 667 | * This function is supposed to be a replacement for the lyd_new_anyxml_str() and lyd_new_anyxml_xml(). |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 668 | * |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 669 | * @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] | 670 | * @param[in] module Module with the node being created. |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 671 | * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node |
| 672 | * is created. |
| 673 | * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is |
| 674 | * determined according to the \p value_type parameter. |
| 675 | * @param[in] value_type Type of the provided data \p value. |
Michal Vasko | 1dca688 | 2015-10-22 14:29:42 +0200 | [diff] [blame] | 676 | * @return New node, NULL on error. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 677 | */ |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 678 | struct lyd_node *lyd_new_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 679 | void *value, LYD_ANYDATA_VALUETYPE value_type); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 680 | |
| 681 | /** |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 682 | * @brief Create a new container node in a data tree. Ignore RPC/action input nodes and instead use RPC/action output ones. |
Michal Vasko | 0df122f | 2015-12-14 13:38:21 +0100 | [diff] [blame] | 683 | * |
Michal Vasko | 98a5a74 | 2016-05-11 11:02:56 +0200 | [diff] [blame] | 684 | * @param[in] parent Parent node for the node being created. NULL in case of creating top level element. |
| 685 | * @param[in] module Module with the node being created. |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 686 | * @param[in] name Schema node name of the new data node. The node should only be #LYS_CONTAINER or #LYS_LIST, |
| 687 | * but accepted are also #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION. |
Michal Vasko | 0df122f | 2015-12-14 13:38:21 +0100 | [diff] [blame] | 688 | * @return New node, NULL on error. |
| 689 | */ |
Michal Vasko | 98a5a74 | 2016-05-11 11:02:56 +0200 | [diff] [blame] | 690 | struct lyd_node *lyd_new_output(struct lyd_node *parent, const struct lys_module *module, const char *name); |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 691 | |
| 692 | /** |
Michal Vasko | 98a5a74 | 2016-05-11 11:02:56 +0200 | [diff] [blame] | 693 | * @brief Create a new leaf or leaflist node in a data tree with a string value that is converted to |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 694 | * the actual value. Ignore RPC/action input nodes and instead use RPC/action output ones. |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 695 | * |
Michal Vasko | 98a5a74 | 2016-05-11 11:02:56 +0200 | [diff] [blame] | 696 | * @param[in] parent Parent node for the node being created. NULL in case of creating top level element. |
| 697 | * @param[in] module Module with the node being created. |
| 698 | * @param[in] name Schema node name of the new data node. |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 699 | * @param[in] val_str String form of the value of the node being created. In case the type is #LY_TYPE_INST |
| 700 | * or #LY_TYPE_IDENT, JSON node-id format is expected (nodes are prefixed with module names, not XML namespaces). |
| 701 | * @return New node, NULL on error. |
| 702 | */ |
Michal Vasko | 98a5a74 | 2016-05-11 11:02:56 +0200 | [diff] [blame] | 703 | struct lyd_node *lyd_new_output_leaf(struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 704 | const char *val_str); |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 705 | |
| 706 | /** |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 707 | * @brief Create a new anydata or anyxml node in a data tree. Ignore RPC/action input nodes and instead use |
| 708 | * RPC/action output ones. |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 709 | * |
Michal Vasko | 98a5a74 | 2016-05-11 11:02:56 +0200 | [diff] [blame] | 710 | * @param[in] parent Parent node for the node being created. NULL in case of creating top level element. |
| 711 | * @param[in] module Module with the node being created. |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 712 | * @param[in] name Schema node name of the new data node. The schema node determines if the anydata or anyxml node |
| 713 | * is created. |
| 714 | * @param[in] value Pointer to the value data to be stored in the anydata/anyxml node. The type of the data is |
| 715 | * determined according to the \p value_type parameter. Data are supposed to be dynamically allocated. |
| 716 | * Since it is directly attached into the created data node, caller is supposed to not manipulate with |
| 717 | * the data after a successful call (including calling free() on the provided data). |
| 718 | * @param[in] value_type Type of the provided data \p value. |
Michal Vasko | 50c0a87 | 2016-01-13 14:34:11 +0100 | [diff] [blame] | 719 | * @return New node, NULL on error. |
| 720 | */ |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 721 | struct lyd_node *lyd_new_output_anydata(struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 722 | void *value, LYD_ANYDATA_VALUETYPE value_type); |
Michal Vasko | 0df122f | 2015-12-14 13:38:21 +0100 | [diff] [blame] | 723 | |
| 724 | /** |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 725 | * @defgroup pathoptions Data path creation options |
| 726 | * @ingroup datatree |
| 727 | * |
| 728 | * Various options to change lyd_new_path() behavior. |
| 729 | * |
| 730 | * Default behavior: |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 731 | * - if the target node already exists, an error is returned. |
Michal Vasko | 9db078d | 2016-03-23 11:08:51 +0100 | [diff] [blame] | 732 | * - 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] | 733 | * - 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] | 734 | * @{ |
| 735 | */ |
| 736 | |
Michal Vasko | 72d3510 | 2016-03-31 10:03:38 +0200 | [diff] [blame] | 737 | #define LYD_PATH_OPT_UPDATE 0x01 /**< If the target node exists and is a leaf, it is updated with the new value and returned. |
| 738 | 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] | 739 | #define LYD_PATH_OPT_NOPARENT 0x02 /**< If any parents of the target node exist, return an error. */ |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 740 | #define LYD_PATH_OPT_OUTPUT 0x04 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only output ones. */ |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 741 | |
| 742 | /** @} pathoptions */ |
| 743 | |
| 744 | /** |
| 745 | * @brief Create a new data node based on a simple XPath. |
| 746 | * |
Michal Vasko | 8d18ef5 | 2016-04-06 12:21:46 +0200 | [diff] [blame] | 747 | * The new node is normally inserted at the end, either as the last child of a parent or as the last sibling |
| 748 | * if working with top-level elements. However, when manipulating RPC input or output, schema ordering is |
Michal Vasko | 98a5a74 | 2016-05-11 11:02:56 +0200 | [diff] [blame] | 749 | * required and always guaranteed. |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 750 | * |
Michal Vasko | 8c41964 | 2016-04-13 14:22:01 +0200 | [diff] [blame] | 751 | * If \p path points to a list key and the list does not exist, the key value from the predicate is used |
| 752 | * and \p value is ignored. |
| 753 | * |
Michal Vasko | 945b96b | 2016-10-18 11:49:12 +0200 | [diff] [blame] | 754 | * @param[in] data_tree Existing data tree to add to/modify. If creating RPCs/actions, there should only be one |
| 755 | * RPC/action and either input or output, not both. Can be NULL. |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 756 | * @param[in] ctx Context to use. Mandatory if \p data_tree is NULL. |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 757 | * @param[in] path Simple absolute data XPath of the new node. It can contain only simple node addressing with optional |
Michal Vasko | 58c2aab | 2017-01-05 10:02:05 +0100 | [diff] [blame^] | 758 | * module names as prefixes. List nodes can have predicates, one for each list key in the correct order and |
| 759 | * with its value as well or using specific instance position, leaves and leaf-lists can have predicates too that |
| 760 | * have preference over \p value, see @ref howtoxpath. |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 761 | * @param[in] value Value of the new leaf/lealf-list (const char*). If creating anydata or anyxml, the following |
| 762 | * \p value_type parameter is required to be specified correctly. If creating nodes of other types, the |
| 763 | * parameter is ignored. |
| 764 | * @param[in] value_type Type of the provided \p value parameter in case of creating anydata or anyxml node. |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 765 | * @param[in] options Bitmask of options flags, see @ref pathoptions. |
Michal Vasko | 8c41964 | 2016-04-13 14:22:01 +0200 | [diff] [blame] | 766 | * @return First created (or updated with #LYD_PATH_OPT_UPDATE) node, |
Michal Vasko | 17bb490 | 2016-04-05 15:20:51 +0200 | [diff] [blame] | 767 | * 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] | 768 | * NULL and ly_errno is set on error. |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 769 | */ |
Radek Krejci | 4582601 | 2016-08-24 15:07:57 +0200 | [diff] [blame] | 770 | struct lyd_node *lyd_new_path(struct lyd_node *data_tree, struct ly_ctx *ctx, const char *path, void *value, |
| 771 | LYD_ANYDATA_VALUETYPE value_type, int options); |
Michal Vasko | f529928 | 2016-03-16 13:32:02 +0100 | [diff] [blame] | 772 | |
| 773 | /** |
Michal Vasko | c0797f8 | 2015-10-14 15:51:25 +0200 | [diff] [blame] | 774 | * @brief Create a copy of the specified data tree \p node. Namespaces are copied as needed, |
| 775 | * schema references are kept the same. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 776 | * |
Michal Vasko | 2f95fe6 | 2016-12-01 09:36:08 +0100 | [diff] [blame] | 777 | * The duplicated tree (the result) is created non-validated. To guarantee safe operations |
| 778 | * on it in the future, the recommended way of using it is after finishing all the partial data tree |
| 779 | * modifications, validate all the trees where the copies from this function were placed (or the copies |
| 780 | * themselves if they were kept separate). |
| 781 | * |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 782 | * @param[in] node Data tree node to be duplicated. |
| 783 | * @param[in] recursive 1 if all children are supposed to be also duplicated. |
| 784 | * @return Created copy of the provided data \p node. |
| 785 | */ |
Michal Vasko | 1e62a09 | 2015-12-01 12:27:20 +0100 | [diff] [blame] | 786 | struct lyd_node *lyd_dup(const struct lyd_node *node, int recursive); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 787 | |
| 788 | /** |
Michal Vasko | 45fb282 | 2016-04-18 13:32:17 +0200 | [diff] [blame] | 789 | * @brief Merge a (sub)tree into a data tree. Missing nodes are merged, leaf values updated. |
| 790 | * If \p target and \p source do not share the top-level schema node, even if they |
| 791 | * are from different modules, \p source parents up to top-level node will be created and |
| 792 | * linked to the \p target (but only containers can be created this way, lists need keys, |
| 793 | * so if lists are missing, an error will be returned). |
| 794 | * |
| 795 | * In short, this function will always try to return a fully valid data tree and will fail |
Michal Vasko | cf6dc7e | 2016-04-18 16:00:37 +0200 | [diff] [blame] | 796 | * if it is not possible. Also, in some less common cases, despite both trees \p target and |
| 797 | * \p source are valid, the resulting tree may be invalid and this function will succeed. |
| 798 | * If you know there are such possibilities in your data trees or you are not sure, always |
| 799 | * validate the resulting merged \p target tree. |
Michal Vasko | 45fb282 | 2016-04-18 13:32:17 +0200 | [diff] [blame] | 800 | * |
Michal Vasko | cf6dc7e | 2016-04-18 16:00:37 +0200 | [diff] [blame] | 801 | * @param[in] target Top-level (or an RPC output child) data tree to merge to. Must be valid. |
Michal Vasko | 45fb282 | 2016-04-18 13:32:17 +0200 | [diff] [blame] | 802 | * @param[in] source Data tree to merge \p target with. Must be valid (at least as a subtree). |
| 803 | * @param[in] options Bitmask of 2 option flags: |
Michal Vasko | 0300b53 | 2016-09-14 12:16:02 +0200 | [diff] [blame] | 804 | * - #LYD_OPT_DESTRUCT - spend \p source in the function, otherwise \p source is left untouched, |
| 805 | * - #LYD_OPT_NOSIBLINGS - merge only the \p source subtree (ignore siblings), otherwise merge |
| 806 | * \p source and all its succeeding siblings (preceeding ones are still ignored!), |
| 807 | * - #LYD_OPT_EXPLICIT - when merging an explicitly set node and a default node, always put |
| 808 | * the explicit node into \p target, otherwise the node which is in \p source is used. |
Michal Vasko | 45fb282 | 2016-04-18 13:32:17 +0200 | [diff] [blame] | 809 | * @return 0 on success, nonzero in case of an error. |
| 810 | */ |
| 811 | int lyd_merge(struct lyd_node *target, const struct lyd_node *source, int options); |
| 812 | |
Michal Vasko | 0300b53 | 2016-09-14 12:16:02 +0200 | [diff] [blame] | 813 | #define LYD_OPT_EXPLICIT 0x0100 |
| 814 | |
Michal Vasko | 45fb282 | 2016-04-18 13:32:17 +0200 | [diff] [blame] | 815 | /** |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 816 | * @brief Insert the \p node element as child to the \p parent element. The \p node is inserted as a last child of the |
| 817 | * \p parent. |
| 818 | * |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 819 | * - if the node is part of some other tree, it is automatically unlinked. |
| 820 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 821 | * - if the key of a list is being inserted, it is placed into a correct position instead of being placed as the last |
Radek Krejci | a1c33bf | 2016-09-07 12:38:49 +0200 | [diff] [blame] | 822 | * element. |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 823 | * - if the target tree includes the default instance of the node being inserted, the default node is silently replaced |
Michal Vasko | 3c12682 | 2016-09-22 13:48:42 +0200 | [diff] [blame] | 824 | * by the new node. |
| 825 | * - if a default node is being inserted and the target tree already contains non-default instance, the existing |
| 826 | * instance is silently replaced. If it contains the exact same default node, it is replaced as well. |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 827 | * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new |
Radek Krejci | fd0bcf0 | 2016-09-09 13:28:34 +0200 | [diff] [blame] | 828 | * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards. |
| 829 | * |
| 830 | * Note that this function differs from lyd_insert_before() and lyd_insert_after() because the position of the |
| 831 | * node being inserted is determined automatically according to the rules described above. In contrast to |
| 832 | * lyd_insert_parent(), lyd_insert() can not be used for top-level elements since the \p parent parameter must not be |
Michal Vasko | 3c12682 | 2016-09-22 13:48:42 +0200 | [diff] [blame] | 833 | * NULL. If inserting something larger and not fitting the mentioned use-cases (or simply if unsure), you can always |
| 834 | * use lyd_merge(), it should be able to handle any situation. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 835 | * |
| 836 | * @param[in] parent Parent node for the \p node being inserted. |
| 837 | * @param[in] node The node being inserted. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 838 | * @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] | 839 | * in the data tree. |
| 840 | */ |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 841 | int lyd_insert(struct lyd_node *parent, struct lyd_node *node); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 842 | |
| 843 | /** |
Radek Krejci | fd0bcf0 | 2016-09-09 13:28:34 +0200 | [diff] [blame] | 844 | * @brief Insert the \p node element as a last sibling of the specified \p sibling element. |
| 845 | * |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 846 | * - if the node is part of some other tree, it is automatically unlinked. |
| 847 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 848 | * - if the key of a list is being inserted, it is placed into a correct position instead of being placed as the last |
Radek Krejci | fd0bcf0 | 2016-09-09 13:28:34 +0200 | [diff] [blame] | 849 | * element. |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 850 | * - if the target tree includes the default instance of the node being inserted, the default node is silently replaced |
Michal Vasko | 3c12682 | 2016-09-22 13:48:42 +0200 | [diff] [blame] | 851 | * by the new node. |
| 852 | * - if a default node is being inserted and the target tree already contains non-default instance, the existing |
| 853 | * instance is silently replaced. If it contains the exact same default node, it is replaced as well. |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 854 | * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new |
| 855 | * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards. |
Radek Krejci | fd0bcf0 | 2016-09-09 13:28:34 +0200 | [diff] [blame] | 856 | * |
| 857 | * Note that this function differs from lyd_insert_before() and lyd_insert_after() because the position of the |
| 858 | * node being inserted is determined automatically as in the case of lyd_insert(). In contrast to lyd_insert(), |
Michal Vasko | 3c12682 | 2016-09-22 13:48:42 +0200 | [diff] [blame] | 859 | * lyd_insert_sibling() can be used to insert top-level elements. If inserting something larger and not fitting |
| 860 | * the mentioned use-cases (or simply if unsure), you can always use lyd_merge(), it should be able to handle |
| 861 | * any situation. |
Radek Krejci | fd0bcf0 | 2016-09-09 13:28:34 +0200 | [diff] [blame] | 862 | * |
| 863 | * @param[in,out] sibling Sibling node as a reference where to insert the \p node. When function succeeds, the sibling |
| 864 | * is always set to point to the first sibling node. Note that in some cases described above, the provided sibling |
| 865 | * node could be removed from the tree. |
| 866 | * @param[in] node The node being inserted. |
| 867 | * @return 0 on success, nonzero in case of error, e.g. when the node is being inserted to an inappropriate place |
| 868 | * in the data tree. |
| 869 | */ |
| 870 | int lyd_insert_sibling(struct lyd_node **sibling, struct lyd_node *node); |
| 871 | |
| 872 | /** |
Michal Vasko | 3f7dba1 | 2015-10-15 13:09:27 +0200 | [diff] [blame] | 873 | * @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] | 874 | * siblings (just moving \p node position), skip validation. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 875 | * |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 876 | * - if the target tree includes the default instance of the node being inserted, the default node is silently removed. |
Michal Vasko | 3c12682 | 2016-09-22 13:48:42 +0200 | [diff] [blame] | 877 | * - if a default node is being inserted and the target tree already contains non-default instance, the existing |
| 878 | * instance is removed. If it contains the exact same default node, it is removed as well. |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 879 | * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new |
| 880 | * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards. |
| 881 | * |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 882 | * @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] | 883 | * @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] | 884 | * @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] | 885 | * in the data tree. |
| 886 | */ |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 887 | int lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 888 | |
| 889 | /** |
Radek Krejci | 20a5f29 | 2016-02-09 15:04:49 +0100 | [diff] [blame] | 890 | * @brief Insert the \p node element after the \p sibling element. If \p node and \p siblings are already |
| 891 | * siblings (just moving \p node position), skip validation. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 892 | * |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 893 | * - if the target tree includes the default instance of the node being inserted, the default node is silently removed. |
Michal Vasko | 3c12682 | 2016-09-22 13:48:42 +0200 | [diff] [blame] | 894 | * - if a default node is being inserted and the target tree already contains non-default instance, the existing |
| 895 | * instance is removed. If it contains the exact same default node, it is removed as well. |
Michal Vasko | b6c51f1 | 2016-09-14 12:15:11 +0200 | [diff] [blame] | 896 | * - if a non-default node is being inserted and there is already its non-default instance in the target tree, the new |
| 897 | * node is inserted and it is up to the caller to solve the presence of multiple instances afterwards. |
| 898 | * |
Michal Vasko | 3f7dba1 | 2015-10-15 13:09:27 +0200 | [diff] [blame] | 899 | * @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] | 900 | * are already siblings (just moving \p node position), skip validation. |
Radek Krejci | 20a5f29 | 2016-02-09 15:04:49 +0100 | [diff] [blame] | 901 | * @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] | 902 | * @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] | 903 | * in the data tree. |
| 904 | */ |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 905 | int lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node); |
| 906 | |
| 907 | /** |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 908 | * @brief Order siblings according to the schema node ordering. |
| 909 | * |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 910 | * If the siblings include data nodes from other modules, they are |
| 911 | * sorted based on the module order in the context. |
| 912 | * |
| 913 | * @param[in] sibling Node, whose siblings will be sorted. |
| 914 | * @param[in] recursive Whether sort all siblings of siblings, recursively. |
| 915 | * @return 0 on success, nonzero in case of an error. |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 916 | */ |
Michal Vasko | 58f74f1 | 2016-03-24 13:26:06 +0100 | [diff] [blame] | 917 | int lyd_schema_sort(struct lyd_node *sibling, int recursive); |
Michal Vasko | 2411b94 | 2016-03-23 13:50:03 +0100 | [diff] [blame] | 918 | |
| 919 | /** |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 920 | * @brief Search in the given data for instances of nodes matching the provided XPath expression. |
| 921 | * |
Michal Vasko | 7fdf9b3 | 2016-03-01 15:59:48 +0100 | [diff] [blame] | 922 | * 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] | 923 | * |
Michal Vasko | 7fdf9b3 | 2016-03-01 15:59:48 +0100 | [diff] [blame] | 924 | * Expr examples: |
| 925 | * "/ietf-yang-library:modules-state/module[name = 'ietf-yang-library']/namespace" |
| 926 | * "/ietf-netconf:get-config/source" |
| 927 | * |
Michal Vasko | 46a4bf9 | 2016-09-08 08:23:49 +0200 | [diff] [blame] | 928 | * @param[in] data Node in the data tree considered the context node if \p expr is relative, |
| 929 | * otherwise any node. |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 930 | * @param[in] expr XPath expression filtering the matching nodes. |
Michal Vasko | 46a4bf9 | 2016-09-08 08:23:49 +0200 | [diff] [blame] | 931 | * @return Set of found data nodes. If no nodes are matching \p expr or the result |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 932 | * would be a number, a string, or a boolean, the returned set is empty. In case of an error, NULL is returned. |
| 933 | */ |
Michal Vasko | f06fb5b | 2016-09-08 10:05:56 +0200 | [diff] [blame] | 934 | struct ly_set *lyd_find_xpath(const struct lyd_node *data, const char *expr); |
Michal Vasko | 105cef1 | 2016-02-04 12:06:26 +0100 | [diff] [blame] | 935 | |
| 936 | /** |
Radek Krejci | c5b6b91 | 2016-01-18 16:35:35 +0100 | [diff] [blame] | 937 | * @brief Search in the given data for instances of the provided schema node. |
| 938 | * |
| 939 | * The \p data is used to find the data root and function then searches in the whole tree and all sibling trees. |
| 940 | * |
| 941 | * @param[in] data A node in the data tree to search. |
| 942 | * @param[in] schema Schema node of the data nodes caller want to find. |
Michal Vasko | 46a4bf9 | 2016-09-08 08:23:49 +0200 | [diff] [blame] | 943 | * @return Set of found data nodes. If no data node is found, the returned set is empty. |
Radek Krejci | c5b6b91 | 2016-01-18 16:35:35 +0100 | [diff] [blame] | 944 | * In case of error, NULL is returned. |
| 945 | */ |
Michal Vasko | f06fb5b | 2016-09-08 10:05:56 +0200 | [diff] [blame] | 946 | struct ly_set *lyd_find_instance(const struct lyd_node *data, const struct lys_node *schema); |
Radek Krejci | c5b6b91 | 2016-01-18 16:35:35 +0100 | [diff] [blame] | 947 | |
| 948 | /** |
Radek Krejci | d788a52 | 2016-07-25 14:57:38 +0200 | [diff] [blame] | 949 | * @brief Get the first sibling of the given node. |
| 950 | * |
| 951 | * @param[in] node Node which first sibling is going to be the result. |
| 952 | * @return The first sibling of the given node or the node itself if it is the first child of the parent. |
| 953 | */ |
| 954 | struct lyd_node *lyd_first_sibling(struct lyd_node *node); |
| 955 | |
| 956 | /** |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 957 | * @brief Validate \p node data subtree. |
| 958 | * |
Michal Vasko | dedea83 | 2016-04-19 11:24:45 +0200 | [diff] [blame] | 959 | * @param[in,out] node Data tree to be validated. In case the \p options does not includes #LYD_OPT_NOAUTODEL, libyang |
Michal Vasko | b2f40be | 2016-09-08 16:03:48 +0200 | [diff] [blame] | 960 | * can modify the provided tree including the root \p node. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 961 | * @param[in] options Options for the inserting data to the target data tree options, see @ref parseroptions. |
Michal Vasko | cdb9017 | 2016-09-13 09:34:36 +0200 | [diff] [blame] | 962 | * @param[in] var_arg Variable argument depends on \p options. If they include: |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 963 | * - #LYD_OPT_DATA: |
| 964 | * - #LYD_OPT_CONFIG: |
| 965 | * - #LYD_OPT_GET: |
| 966 | * - #LYD_OPT_GETCONFIG: |
| 967 | * - #LYD_OPT_EDIT: |
Michal Vasko | cdb9017 | 2016-09-13 09:34:36 +0200 | [diff] [blame] | 968 | * - struct ly_ctx *ctx - context to use when \p node is NULL (for checking an empty tree), |
| 969 | * otherwise can be NULL. |
Michal Vasko | 6b44d71 | 2016-09-12 16:25:46 +0200 | [diff] [blame] | 970 | * - #LYD_OPT_RPC: |
| 971 | * - #LYD_OPT_RPCREPLY: |
| 972 | * - #LYD_OPT_NOTIF: |
| 973 | * - struct ::lyd_node *data_tree - additional data tree that will be used when checking |
Michal Vasko | cdb9017 | 2016-09-13 09:34:36 +0200 | [diff] [blame] | 974 | * any "when" or "must" conditions in the \p node tree |
| 975 | * that require some nodes outside their subtree. If set, |
| 976 | * it must be a list of top-level elements! |
Radek Krejci | 92ece00 | 2016-04-04 15:45:05 +0200 | [diff] [blame] | 977 | * @return 0 on success, nonzero in case of an error. |
Michal Vasko | 2433739 | 2015-10-16 09:58:16 +0200 | [diff] [blame] | 978 | */ |
Michal Vasko | cdb9017 | 2016-09-13 09:34:36 +0200 | [diff] [blame] | 979 | int lyd_validate(struct lyd_node **node, int options, void *var_arg); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 980 | |
| 981 | /** |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 982 | * @brief Get know if the node contain (despite implicit or explicit) default value. |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 983 | * |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 984 | * @param[in] node The leaf or leaf-list to check. Note, that leaf-list is marked as default only when the complete |
| 985 | * and only the default set is present (node's siblings are also checked). |
| 986 | * @return 1 if the node contains the default value, 0 otherwise. |
Radek Krejci | 7b4309c | 2016-03-23 10:30:29 +0100 | [diff] [blame] | 987 | */ |
Radek Krejci | 46180b5 | 2016-08-31 16:01:32 +0200 | [diff] [blame] | 988 | int lyd_wd_default(struct lyd_node_leaf_list *node); |
Radek Krejci | 6b8f6ac | 2016-03-23 12:33:04 +0100 | [diff] [blame] | 989 | |
| 990 | /** |
Michal Vasko | 55f60be | 2015-10-14 13:12:58 +0200 | [diff] [blame] | 991 | * @brief Unlink the specified data subtree. All referenced namespaces are copied. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 992 | * |
| 993 | * Note, that the node's connection with the schema tree is kept. Therefore, in case of |
| 994 | * reconnecting the node to a data tree using lyd_paste() it is necessary to paste it |
| 995 | * to the appropriate place in the data tree following the schema. |
| 996 | * |
| 997 | * @param[in] node Data tree node to be unlinked (together with all children). |
| 998 | * @return 0 for success, nonzero for error |
| 999 | */ |
| 1000 | int lyd_unlink(struct lyd_node *node); |
| 1001 | |
| 1002 | /** |
Radek Krejci | fd0bcf0 | 2016-09-09 13:28:34 +0200 | [diff] [blame] | 1003 | * @brief Free (and unlink) the specified data subtree. Use carefully, since libyang silently creates default nodes, |
| 1004 | * it is always better to use lyd_free_withsiblings() to free the complete data tree. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 1005 | * |
| 1006 | * @param[in] node Root of the (sub)tree to be freed. |
| 1007 | */ |
| 1008 | void lyd_free(struct lyd_node *node); |
| 1009 | |
| 1010 | /** |
Radek Krejci | fd0bcf0 | 2016-09-09 13:28:34 +0200 | [diff] [blame] | 1011 | * @brief Free (and unlink) the specified data tree and all its siblings (preceding as well as following). |
Radek Krejci | 8146840 | 2016-01-07 13:52:40 +0100 | [diff] [blame] | 1012 | * |
| 1013 | * @param[in] node One of the siblings root element of the (sub)trees to be freed. |
| 1014 | */ |
| 1015 | void lyd_free_withsiblings(struct lyd_node *node); |
| 1016 | |
| 1017 | /** |
Radek Krejci | 134610e | 2015-10-20 17:15:34 +0200 | [diff] [blame] | 1018 | * @brief Insert attribute into the data node. |
| 1019 | * |
| 1020 | * @param[in] parent Data node where to place the attribute |
Radek Krejci | 70ecd72 | 2016-03-21 09:04:00 +0100 | [diff] [blame] | 1021 | * @param[in] mod An alternative way to specify attribute's module (namespace) used in case the \p name does |
| 1022 | * not include prefix. If neither prefix in the \p name nor mod is specified, the attribute's |
| 1023 | * module is inherited from the \p parent node. It is not allowed to have attributes with no |
| 1024 | * module (namespace). |
| 1025 | * @param[in] name Attribute name. The string can include the attribute's module (namespace) as the name's |
| 1026 | * prefix (prefix:name). Prefix must be the name of one of the schema in the \p parent's context. |
| 1027 | * If the prefix is not specified, the \p mod parameter is used. If neither of these parameters is |
| 1028 | * usable, attribute inherits module (namespace) from the \p parent node. It is not allowed to |
| 1029 | * have attributes with no module (namespace). |
Radek Krejci | 134610e | 2015-10-20 17:15:34 +0200 | [diff] [blame] | 1030 | * @param[in] value Attribute value |
| 1031 | * @return pointer to the created attribute (which is already connected in \p parent) or NULL on error. |
| 1032 | */ |
Radek Krejci | 70ecd72 | 2016-03-21 09:04:00 +0100 | [diff] [blame] | 1033 | struct lyd_attr *lyd_insert_attr(struct lyd_node *parent, const struct lys_module *mod, const char *name, |
| 1034 | const char *value); |
Radek Krejci | 134610e | 2015-10-20 17:15:34 +0200 | [diff] [blame] | 1035 | |
| 1036 | /** |
Radek Krejci | 88f2930 | 2015-10-30 15:42:33 +0100 | [diff] [blame] | 1037 | * @brief Destroy data attribute |
| 1038 | * |
| 1039 | * If the attribute to destroy is a member of a node attribute list, it is necessary to |
| 1040 | * provide the node itself as \p parent to keep the list consistent. |
| 1041 | * |
| 1042 | * @param[in] ctx Context where the attribute was created (usually it is the context of the \p parent) |
| 1043 | * @param[in] parent Parent node where the attribute is placed |
| 1044 | * @param[in] attr Attribute to destroy |
| 1045 | * @param[in] recursive Zero to destroy only the attribute, non-zero to destroy also all the subsequent attributes |
| 1046 | * in the list. |
| 1047 | */ |
| 1048 | void lyd_free_attr(struct ly_ctx *ctx, struct lyd_node *parent, struct lyd_attr *attr, int recursive); |
| 1049 | |
| 1050 | /** |
Radek Krejci | 6910a03 | 2016-04-13 10:06:21 +0200 | [diff] [blame] | 1051 | * @brief Return main module of the data tree node. |
| 1052 | * |
| 1053 | * In case of regular YANG module, it returns ::lys_node#module pointer, |
| 1054 | * but in case of submodule, it returns pointer to the main module. |
| 1055 | * |
| 1056 | * @param[in] node Data tree node to be examined |
| 1057 | * @return pointer to the main module (schema structure), NULL in case of error. |
| 1058 | */ |
| 1059 | struct lys_module *lyd_node_module(const struct lyd_node *node); |
| 1060 | |
| 1061 | /** |
Michal Vasko | e3886bb | 2017-01-02 11:33:28 +0100 | [diff] [blame] | 1062 | * @brief Get the type structure of a leaf. In case of union, the correct |
| 1063 | * specific type is found. |
| 1064 | * |
| 1065 | * @param[in] leaf Leaf to examine. |
| 1066 | * @return Type structure of \p leaf, NULL on error. |
| 1067 | */ |
| 1068 | const struct lys_type *lyd_leaf_type(const struct lyd_node_leaf_list *leaf); |
| 1069 | |
| 1070 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1071 | * @brief Print data tree in the specified format. |
| 1072 | * |
| 1073 | * Same as lyd_print(), but it allocates memory and store the data into it. |
| 1074 | * It is up to caller to free the returned string by free(). |
| 1075 | * |
| 1076 | * @param[out] strp Pointer to store the resulting dump. |
| 1077 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 1078 | * node of the data tree to print the specific subtree. |
| 1079 | * @param[in] format Data output format. |
| 1080 | * @param[in] options [printer flags](@ref printerflags). |
| 1081 | * @return 0 on success, 1 on failure (#ly_errno is set). |
| 1082 | */ |
| 1083 | 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] | 1084 | |
| 1085 | /** |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1086 | * @brief Print data tree in the specified format. |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 1087 | * |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1088 | * Same as lyd_print(), but output is written into the specified file descriptor. |
| 1089 | * |
| 1090 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 1091 | * node of the data tree to print the specific subtree. |
| 1092 | * @param[in] fd File descriptor where to print the data. |
| 1093 | * @param[in] format Data output format. |
| 1094 | * @param[in] options [printer flags](@ref printerflags). |
| 1095 | * @return 0 on success, 1 on failure (#ly_errno is set). |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 1096 | */ |
Radek Krejci | def5002 | 2016-02-01 16:38:32 +0100 | [diff] [blame] | 1097 | int lyd_print_fd(int fd, const struct lyd_node *root, LYD_FORMAT format, int options); |
| 1098 | |
| 1099 | /** |
| 1100 | * @brief Print data tree in the specified format. |
| 1101 | * |
| 1102 | * To write data into a file descriptor, use lyd_print_fd(). |
| 1103 | * |
| 1104 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 1105 | * node of the data tree to print the specific subtree. |
| 1106 | * @param[in] f File stream where to print the data. |
| 1107 | * @param[in] format Data output format. |
| 1108 | * @param[in] options [printer flags](@ref printerflags). |
| 1109 | * @return 0 on success, 1 on failure (#ly_errno is set). |
| 1110 | */ |
| 1111 | int lyd_print_file(FILE *f, const struct lyd_node *root, LYD_FORMAT format, int options); |
| 1112 | |
| 1113 | /** |
| 1114 | * @brief Print data tree in the specified format. |
| 1115 | * |
| 1116 | * Same as lyd_print(), but output is written via provided callback. |
| 1117 | * |
| 1118 | * @param[in] root Root node of the data tree to print. It can be actually any (not only real root) |
| 1119 | * node of the data tree to print the specific subtree. |
| 1120 | * @param[in] writeclb Callback function to write the data (see write(1)). |
| 1121 | * @param[in] arg Optional caller-specific argument to be passed to the \p writeclb callback. |
| 1122 | * @param[in] format Data output format. |
| 1123 | * @param[in] options [printer flags](@ref printerflags). |
| 1124 | * @return 0 on success, 1 on failure (#ly_errno is set). |
| 1125 | */ |
| 1126 | int lyd_print_clb(ssize_t (*writeclb)(void *arg, const void *buf, size_t count), void *arg, |
| 1127 | const struct lyd_node *root, LYD_FORMAT format, int options); |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 1128 | |
Michal Vasko | 4d1f048 | 2016-09-19 14:35:06 +0200 | [diff] [blame] | 1129 | /** |
| 1130 | * @brief Get the double value of a decimal64 leaf/leaf-list. |
| 1131 | * |
| 1132 | * YANG decimal64 type enables higher precision numbers than IEEE 754 double-precision |
| 1133 | * format, so this conversion does not have to be lossless. |
| 1134 | * |
| 1135 | * @param[in] node Leaf/leaf-list of type decimal64. |
| 1136 | * @return Closest double equivalent to the decimal64 value. |
| 1137 | */ |
| 1138 | double lyd_dec64_to_double(const struct lyd_node *node); |
| 1139 | |
Michal Vasko | 2d162e1 | 2015-09-24 14:33:29 +0200 | [diff] [blame] | 1140 | /**@} */ |
| 1141 | |
| 1142 | #ifdef __cplusplus |
| 1143 | } |
| 1144 | #endif |
| 1145 | |
| 1146 | #endif /* LY_TREE_DATA_H_ */ |