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