Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1 | /** |
| 2 | * @file tree_data.h |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief libyang representation of YANG data trees. |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2019 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
| 15 | #ifndef LY_TREE_DATA_H_ |
| 16 | #define LY_TREE_DATA_H_ |
| 17 | |
| 18 | #include <stddef.h> |
| 19 | #include <stdint.h> |
| 20 | |
| 21 | #include "log.h" |
| 22 | #include "tree.h" |
| 23 | #include "tree_schema.h" |
| 24 | |
| 25 | struct ly_ctx; |
| 26 | |
| 27 | #ifdef __cplusplus |
| 28 | extern "C" { |
| 29 | #endif |
| 30 | |
| 31 | /** |
| 32 | * @defgroup datatree Data Tree |
| 33 | * @{ |
| 34 | * |
| 35 | * Data structures and functions to manipulate and access instance data tree. |
| 36 | */ |
| 37 | |
| 38 | /** |
| 39 | * @brief Macro to iterate via all elements in a data tree. This is the opening part |
| 40 | * to the #LYD_TREE_DFS_END - they always have to be used together. |
| 41 | * |
| 42 | * The function follows deep-first search algorithm: |
| 43 | * <pre> |
| 44 | * 1 |
| 45 | * / \ |
| 46 | * 2 4 |
| 47 | * / / \ |
| 48 | * 3 5 6 |
| 49 | * </pre> |
| 50 | * |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 51 | * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 52 | * START can be any of the lyd_node* types, NEXT and ELEM variables are expected |
| 53 | * to be pointers to a generic struct lyd_node. |
| 54 | * |
| 55 | * Since the next node is selected as part of #LYD_TREE_DFS_END, do not use |
| 56 | * continue statement between the #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. |
| 57 | * |
| 58 | * Use with opening curly bracket '{' after the macro. |
| 59 | * |
| 60 | * @param START Pointer to the starting element processed first. |
| 61 | * @param NEXT Temporary storage, do not use. |
| 62 | * @param ELEM Iterator intended for use in the block. |
| 63 | */ |
| 64 | #define LYD_TREE_DFS_BEGIN(START, NEXT, ELEM) \ |
| 65 | for ((ELEM) = (NEXT) = (START); \ |
| 66 | (ELEM); \ |
| 67 | (ELEM) = (NEXT)) |
| 68 | |
| 69 | /** |
| 70 | * @brief Macro to iterate via all elements in a tree. This is the closing part |
| 71 | * to the #LYD_TREE_DFS_BEGIN - they always have to be used together. |
| 72 | * |
| 73 | * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While |
| 74 | * START can be any of the lyd_node* types, NEXT and ELEM variables are expected |
| 75 | * to be pointers to a generic struct lyd_node. |
| 76 | * |
| 77 | * Use with closing curly bracket '}' after the macro. |
| 78 | * |
| 79 | * @param START Pointer to the starting element processed first. |
| 80 | * @param NEXT Temporary storage, do not use. |
| 81 | * @param ELEM Iterator intended for use in the block. |
| 82 | */ |
| 83 | |
| 84 | #define LYD_TREE_DFS_END(START, NEXT, ELEM) \ |
| 85 | /* select element for the next run - children first */ \ |
| 86 | (NEXT) = (struct lyd_node*)lyd_node_children((struct lyd_node*)ELEM); \ |
| 87 | if (!(NEXT)) { \ |
| 88 | /* no children */ \ |
| 89 | if ((ELEM) == (struct lyd_node*)(START)) { \ |
| 90 | /* we are done, (START) has no children */ \ |
| 91 | break; \ |
| 92 | } \ |
| 93 | /* try siblings */ \ |
| 94 | (NEXT) = (ELEM)->next; \ |
| 95 | } \ |
| 96 | while (!(NEXT)) { \ |
| 97 | /* parent is already processed, go to its sibling */ \ |
| 98 | (ELEM) = (struct lyd_node*)(ELEM)->parent; \ |
| 99 | /* no siblings, go back through parents */ \ |
| 100 | if ((ELEM)->parent == (START)->parent) { \ |
| 101 | /* we are done, no next element to process */ \ |
| 102 | break; \ |
| 103 | } \ |
| 104 | (NEXT) = (ELEM)->next; \ |
| 105 | } |
| 106 | |
| 107 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 108 | * @brief Macro to get context from a data tree node. |
| 109 | */ |
| 110 | #define LYD_NODE_CTX(node) ((node)->schema->module->ctx) |
| 111 | |
| 112 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 113 | * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and |
| 114 | * [printer](@ref howtodataprinters) functions. |
| 115 | */ |
| 116 | typedef enum { |
| 117 | LYD_UNKNOWN = 0, /**< unknown format, used as return value in case of error */ |
| 118 | LYD_XML, /**< XML format of the instance data */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 119 | LYD_JSON, /**< JSON format of the instance data */ |
Radek Krejci | 355bf4f | 2019-07-16 17:14:16 +0200 | [diff] [blame] | 120 | #if 0 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 121 | LYD_LYB, /**< LYB format of the instance data */ |
| 122 | #endif |
| 123 | } LYD_FORMAT; |
| 124 | |
| 125 | /** |
Radek Krejci | 59583bb | 2019-09-11 12:57:55 +0200 | [diff] [blame] | 126 | * @brief List of possible value types stored in ::lyd_node_any. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 127 | */ |
| 128 | typedef enum { |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 129 | LYD_ANYDATA_DATATREE, /**< Value is a pointer to lyd_node structure (first sibling). When provided as input parameter, the pointer |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 130 | is directly connected into the anydata node without duplication, caller is supposed to not manipulate |
| 131 | with the data after a successful call (including calling lyd_free() on the provided data) */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 132 | LYD_ANYDATA_STRING, /**< Value is a generic string without any knowledge about its format (e.g. anyxml value in JSON encoded |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 133 | as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata |
| 134 | is printed in XML format. */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 135 | LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */ |
| 136 | LYD_ANYDATA_JSON, /**< Value is a string containing the data modeled by YANG and encoded as I-JSON. */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 137 | #if 0 /* TODO LYB format */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 138 | LYD_ANYDATA_LYB, /**< Value is a memory chunk with the serialized data tree in LYB format. */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 139 | #endif |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 140 | } LYD_ANYDATA_VALUETYPE; |
| 141 | |
| 142 | /** @} */ |
| 143 | |
| 144 | /** |
| 145 | * @brief YANG data representation |
| 146 | */ |
| 147 | struct lyd_value { |
Radek Krejci | 950f6a5 | 2019-09-12 17:15:32 +0200 | [diff] [blame] | 148 | const char *original; /**< Original string representation of the value. It is never NULL, but (canonical) string representation |
| 149 | of the value should be always obtained via the type's printer callback (lyd_value::realtype::plugin::print). */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 150 | union { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 151 | int8_t boolean; /**< 0 as false, 1 as true */ |
| 152 | int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */ |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 153 | int8_t int8; /**< 8-bit signed integer */ |
| 154 | int16_t int16; /**< 16-bit signed integer */ |
| 155 | int32_t int32; /**< 32-bit signed integer */ |
| 156 | int64_t int64; /**< 64-bit signed integer */ |
| 157 | uint8_t uint8; /**< 8-bit unsigned integer */ |
| 158 | uint16_t uint16; /**< 16-bit signed integer */ |
| 159 | uint32_t uint32; /**< 32-bit signed integer */ |
| 160 | uint64_t uint64; /**< 64-bit signed integer */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 161 | struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */ |
Radek Krejci | 849a62a | 2019-05-22 15:29:05 +0200 | [diff] [blame] | 162 | struct lysc_type_bitenum_item **bits_items; /**< list of set pointers to the specification of the set bits ([sized array](@ref sizedarrays)) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 163 | struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */ |
Radek Krejci | efbb392 | 2019-07-15 12:58:00 +0200 | [diff] [blame] | 164 | |
| 165 | struct lyd_value_subvalue { |
| 166 | struct lyd_value_prefix { |
| 167 | const char *prefix; /**< prefix string used in the canonized string to identify the mod of the YANG schema */ |
| 168 | const struct lys_module *mod; /**< YANG schema module identified by the prefix string */ |
| 169 | } *prefixes; /**< list of mappings between prefix in canonized value to a YANG schema ([sized array](@ref sizedarrays)) */ |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 170 | struct lyd_value *value; /**< representation of the value according to the selected union's subtype (stored as lyd_value::realpath |
| 171 | here, in subvalue structure */ |
| 172 | } *subvalue; /**< data to represent data with multiple types (union). Original value is stored in the main |
| 173 | lyd_value:canonized while the lyd_value_subvalue::value contains representation according to the |
| 174 | one of the union's type. The lyd_value_subvalue:prefixes provides (possible) mappings from prefixes |
| 175 | in original value to YANG modules. These prefixes are necessary to parse original value to the union's |
| 176 | subtypes. */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 177 | |
| 178 | struct lyd_value_path { |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 179 | const struct lysc_node *node; /**< Schema node representing the path segment */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 180 | struct lyd_value_path_predicate { |
| 181 | union { |
| 182 | struct { |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 183 | const struct lysc_node *key; /**< key node of the predicate, in case of the leaf-list-predicate, it is the leaf-list node itself */ |
| 184 | struct lyd_value *value; /**< value representation according to the key's type */ |
| 185 | }; /**< key-value pair for leaf-list-predicate and key-predicate (type 1 and 2) */ |
| 186 | uint64_t position; /**< position value for the position-predicate (type 0) */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 187 | }; |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 188 | uint8_t type; /**< Predicate types (see YANG ABNF): 0 - position, 1 - key-predicate, 2 - leaf-list-predicate */ |
| 189 | } *predicates; /**< [Sized array](@ref sizedarrays) of the path segment's predicates */ |
| 190 | } *target; /**< [Sized array](@ref sizedarrays) of (instance-identifier's) path segments. */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 191 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 192 | void *ptr; /**< generic data type structure used to store the data */ |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 193 | }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the lyd_value::realtype |
| 194 | plugin's callbacks to work with the data. */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 195 | |
Radek Krejci | 950f6a5 | 2019-09-12 17:15:32 +0200 | [diff] [blame] | 196 | struct lysc_type *realtype; /**< pointer to the real type of the data stored in the value structure. This type can differ from the type |
Radek Krejci | 62903c3 | 2019-07-15 14:42:05 +0200 | [diff] [blame] | 197 | in the schema node of the data node since the type's store plugin can use other types/plugins for |
| 198 | storing data. Speaking about built-in types, this is the case of leafref which stores data as its |
| 199 | target type. In contrast, union type also use its subtype's callbacks, but inside an internal data |
| 200 | lyd_value::subvalue structure, so here is the pointer to the union type. |
| 201 | In general, this type is used to get free callback for this lyd_value structure, so it must reflect |
| 202 | the type used to store data directly in the same lyd_value instance. */ |
Radek Krejci | 950f6a5 | 2019-09-12 17:15:32 +0200 | [diff] [blame] | 203 | void *canonical_cache; /**< Generic cache for type plugins to store data necessary to print canonical value. It can be the canonical |
| 204 | value itself or anything else useful to print the canonical form of the value. Plugin is responsible for |
| 205 | freeing the cache in its free callback. */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 206 | }; |
| 207 | |
| 208 | /** |
| 209 | * @brief Attribute structure. |
| 210 | * |
| 211 | * The structure provides information about attributes of a data element. Such attributes must map to |
| 212 | * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations) |
| 213 | * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON, |
| 214 | * they are represented as JSON elements starting with the '@' character (for more information, see the |
| 215 | * YANG metadata RFC. |
| 216 | * |
| 217 | */ |
| 218 | struct lyd_attr { |
| 219 | struct lyd_node *parent; /**< data node where the attribute is placed */ |
| 220 | struct lyd_attr *next; /**< pointer to the next attribute of the same element */ |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 221 | struct lysc_ext_instance *annotation; /**< pointer to the attribute/annotation's definition */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 222 | const char *name; /**< attribute name */ |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 223 | struct lyd_value value; /**< attribute's value representation */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 224 | }; |
| 225 | |
| 226 | |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 227 | #define LYD_NODE_INNER (LYS_CONTAINER|LYS_LIST|LYS_ACTION|LYS_NOTIF) /**< Schema nodetype mask for lyd_node_inner */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 228 | #define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */ |
| 229 | #define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */ |
| 230 | |
| 231 | /** |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 232 | * @defgroup dnodeflags Data nodes flags |
| 233 | * @ingroup datatree |
| 234 | * @{ |
| 235 | * |
| 236 | * Various flags of data nodes. |
| 237 | * |
| 238 | * 1 - container 5 - anydata/anyxml |
| 239 | * 2 - list 6 - rpc/action |
| 240 | * 3 - leaf 7 - notification |
| 241 | * 4 - leaflist |
| 242 | * |
| 243 | * bit name 1 2 3 4 5 6 7 |
| 244 | * ---------------------+-+-+-+-+-+-+-+ |
| 245 | * 1 LYD_DEFAULT |x| |x|x| | | | |
| 246 | * +-+-+-+-+-+-+-+ |
| 247 | * 2 | | | | | | | | |
| 248 | * ---------------------+-+-+-+-+-+-+-+ |
| 249 | * |
| 250 | */ |
| 251 | |
| 252 | #define LYD_DEFAULT 0x01 /**< default (implicit) node; */ |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 253 | #define LYD_DUMMY 0x80000000 /**< dummy node (in XPath context, internal flag) */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 254 | /** @} */ |
| 255 | |
| 256 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 257 | * @brief Generic structure for a data node. |
| 258 | */ |
| 259 | struct lyd_node { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 260 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 261 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 262 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 263 | nodes are equal due to possible collisions. */ |
| 264 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 265 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 266 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 267 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 268 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 269 | never NULL. If there is no sibling node, pointer points to the node |
| 270 | itself. In case of the first node, this pointer points to the last |
| 271 | node in the list. */ |
| 272 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 273 | |
| 274 | #ifdef LY_ENABLED_LYD_PRIV |
| 275 | void *priv; /**< private user data, not used by libyang */ |
| 276 | #endif |
| 277 | }; |
| 278 | |
| 279 | /** |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 280 | * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 281 | */ |
| 282 | struct lyd_node_inner { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 283 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 284 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 285 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 286 | nodes are equal due to possible collisions. */ |
| 287 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 288 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 289 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 290 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 291 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 292 | never NULL. If there is no sibling node, pointer points to the node |
| 293 | itself. In case of the first node, this pointer points to the last |
| 294 | node in the list. */ |
| 295 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 296 | |
| 297 | #ifdef LY_ENABLED_LYD_PRIV |
| 298 | void *priv; /**< private user data, not used by libyang */ |
| 299 | #endif |
| 300 | |
| 301 | struct lyd_node *child; /**< pointer to the first child node. */ |
| 302 | struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 303 | #define LYD_HT_MIN_ITEMS 4 /**< minimal number of children to create lyd_node_inner::children_ht hash table. */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 304 | }; |
| 305 | |
| 306 | /** |
| 307 | * @brief Data node structure for the terminal data tree nodes - leafs and leaf-lists. |
| 308 | */ |
| 309 | struct lyd_node_term { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 310 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 311 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 312 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 313 | nodes are equal due to possible collisions. */ |
| 314 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 315 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 316 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 317 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 318 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 319 | never NULL. If there is no sibling node, pointer points to the node |
| 320 | itself. In case of the first node, this pointer points to the last |
| 321 | node in the list. */ |
| 322 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 323 | |
| 324 | #ifdef LY_ENABLED_LYD_PRIV |
| 325 | void *priv; /**< private user data, not used by libyang */ |
| 326 | #endif |
| 327 | |
| 328 | struct lyd_value value; /**< node's value representation */ |
| 329 | }; |
| 330 | |
| 331 | /** |
| 332 | * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls. |
| 333 | */ |
| 334 | struct lyd_node_any { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 335 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 336 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 337 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 338 | nodes are equal due to possible collisions. */ |
| 339 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 340 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 341 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 342 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 343 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 344 | never NULL. If there is no sibling node, pointer points to the node |
| 345 | itself. In case of the first node, this pointer points to the last |
| 346 | node in the list. */ |
| 347 | struct lyd_attr *attr; /**< pointer to the list of attributes of this node */ |
| 348 | |
| 349 | #ifdef LY_ENABLED_LYD_PRIV |
| 350 | void *priv; /**< private user data, not used by libyang */ |
| 351 | #endif |
| 352 | |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 353 | union { |
| 354 | struct lyd_node *tree; /**< data tree */ |
| 355 | const char *str; /**< Generic string data */ |
| 356 | const char *xml; /**< Serialized XML data */ |
| 357 | const char *json; /**< I-JSON encoded string */ |
| 358 | char *mem; /**< LYD_ANYDATA_LYB memory chunk */ |
| 359 | } value; /**< pointer to the stored value representation of the anydata/anyxml node */ |
| 360 | LYD_ANYDATA_VALUETYPE value_type;/**< type of the data stored as lyd_node_any::value */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 361 | }; |
| 362 | |
| 363 | /** |
| 364 | * @defgroup dataparseroptions Data parser options |
| 365 | * @ingroup datatree |
| 366 | * |
| 367 | * Various options to change the data tree parsers behavior. |
| 368 | * |
| 369 | * Default behavior: |
| 370 | * - in case of XML, parser reads all data from its input (file, memory, XML tree) including the case of not well-formed |
| 371 | * XML document (multiple top-level elements) and if there is an unknown element, it is skipped including its subtree |
| 372 | * (see the next point). This can be changed by the #LYD_OPT_NOSIBLINGS option which make parser to read only a single |
| 373 | * tree (with a single root element) from its input. |
| 374 | * - parser silently ignores the data without a matching node in schema trees. If the caller want to stop |
| 375 | * parsing in case of presence of unknown data, the #LYD_OPT_STRICT can be used. The strict mode is useful for |
| 376 | * NETCONF servers, since NETCONF clients should always send data according to the capabilities announced by the server. |
| 377 | * On the other hand, the default non-strict mode is useful for clients receiving data from NETCONF server since |
| 378 | * clients are not required to understand everything the server does. Of course, the optimal strategy for clients is |
| 379 | * to use filtering to get only the required data. Having an unknown element of the known namespace is always an error. |
| 380 | * The behavior can be changed by #LYD_OPT_STRICT option. |
| 381 | * - using obsolete statements (status set to obsolete) just generates a warning, but the processing continues. The |
| 382 | * behavior can be changed by #LYD_OPT_OBSOLETE option. |
| 383 | * - parser expects that the provided data provides complete datastore content (both the configuration and state data) |
| 384 | * and performs data validation according to all YANG rules. This can be a problem in case of representing NETCONF's |
| 385 | * subtree filter data, edit-config's data or other type of data set - such data do not represent a complete data set |
| 386 | * and some of the validation rules can fail. Therefore there are other options (within lower 8 bits) to make parser |
| 387 | * to accept such a data. |
| 388 | * - when parser evaluates when-stmt condition to false, a validation error is raised. If the |
| 389 | * #LYD_OPT_WHENAUTODEL is used, the invalid node is silently removed instead of an error. The option (and also this default |
| 390 | * behavior) takes effect only in case of #LYD_OPT_DATA or #LYD_OPT_CONFIG type of data. |
| 391 | * @{ |
| 392 | */ |
| 393 | |
| 394 | #define LYD_OPT_DATA 0x00 /**< Default type of data - complete datastore content with configuration as well as |
| 395 | state data. To handle possibly missing (but by default required) ietf-yang-library |
| 396 | data, use #LYD_OPT_DATA_NO_YANGLIB or #LYD_OPT_DATA_ADD_YANGLIB options. */ |
| 397 | #define LYD_OPT_CONFIG 0x01 /**< A configuration datastore - complete datastore without state data. |
| 398 | Validation modifications: |
| 399 | - status data are not allowed */ |
| 400 | #define LYD_OPT_GET 0x02 /**< Data content from a NETCONF reply message to the NETCONF \<get\> operation. |
| 401 | Validation modifications: |
| 402 | - mandatory nodes can be omitted |
| 403 | - leafrefs and instance-identifier resolution is allowed to fail |
| 404 | - list's keys/unique nodes are not required (so duplication is not checked) |
| 405 | - must and when evaluation skipped */ |
| 406 | #define LYD_OPT_GETCONFIG 0x04 /**< Data content from a NETCONF reply message to the NETCONF \<get-config\> operation |
| 407 | Validation modifications: |
| 408 | - mandatory nodes can be omitted |
| 409 | - leafrefs and instance-identifier resolution is allowed to fail |
| 410 | - list's keys/unique nodes are not required (so duplication is not checked) |
| 411 | - must and when evaluation skipped |
| 412 | - status data are not allowed */ |
| 413 | #define LYD_OPT_EDIT 0x08 /**< Content of the NETCONF \<edit-config\>'s config element. |
| 414 | Validation modifications: |
| 415 | - mandatory nodes can be omitted |
| 416 | - leafrefs and instance-identifier resolution is allowed to fail |
| 417 | - must and when evaluation skipped |
| 418 | - status data are not allowed */ |
| 419 | #define LYD_OPT_RPC 0x10 /**< Data represents RPC or action input parameters. */ |
| 420 | #define LYD_OPT_RPCREPLY 0x20 /**< Data represents RPC or action output parameters (maps to NETCONF <rpc-reply> data). */ |
| 421 | #define LYD_OPT_NOTIF 0x40 /**< Data represents an event notification data. */ |
| 422 | #define LYD_OPT_NOTIF_FILTER 0x80 /**< Data represents a filtered event notification data. |
| 423 | Validation modification: |
| 424 | - the only requirement is that the data tree matches the schema tree */ |
| 425 | #define LYD_OPT_TYPEMASK 0x10000ff /**< Mask to filter data type options. Always only a single data type option (only |
| 426 | single bit from the lower 8 bits) can be set. */ |
| 427 | |
| 428 | /* 0x100 reserved, used internally */ |
| 429 | #define LYD_OPT_STRICT 0x0200 /**< Instead of silent ignoring data without schema definition, raise an error. */ |
| 430 | #define LYD_OPT_DESTRUCT 0x0400 /**< Free the provided XML tree during parsing the data. With this option, the |
| 431 | provided XML tree is affected and all successfully parsed data are freed. |
| 432 | This option is applicable only to lyd_parse_xml() function. */ |
| 433 | #define LYD_OPT_OBSOLETE 0x0800 /**< Raise an error when an obsolete statement (status set to obsolete) is used. */ |
| 434 | #define LYD_OPT_NOSIBLINGS 0x1000 /**< Parse only a single XML tree from the input. This option applies only to |
| 435 | XML input data. */ |
| 436 | #define LYD_OPT_TRUSTED 0x2000 /**< Data comes from a trusted source and it is not needed to validate them. Data |
| 437 | are connected with the schema, but the most validation checks (mandatory nodes, |
| 438 | list instance uniqueness, etc.) are not performed. This option does not make |
| 439 | sense for lyd_validate() so it is ignored by this function. */ |
| 440 | #define LYD_OPT_WHENAUTODEL 0x4000 /**< Automatically delete subtrees with false when-stmt condition. The flag is |
| 441 | applicable only in combination with #LYD_OPT_DATA and #LYD_OPT_CONFIG flags. |
| 442 | If used, libyang will not generate a validation error. */ |
| 443 | #define LYD_OPT_NOEXTDEPS 0x8000 /**< Allow external dependencies (external leafrefs, instance-identifiers, must, |
| 444 | and when) to not be resolved/satisfied during validation. */ |
| 445 | #define LYD_OPT_DATA_NO_YANGLIB 0x10000 /**< Ignore (possibly) missing ietf-yang-library data. Applicable only with #LYD_OPT_DATA. */ |
| 446 | #define LYD_OPT_DATA_ADD_YANGLIB 0x20000 /**< Add missing ietf-yang-library data into the validated data tree. Applicable |
| 447 | only with #LYD_OPT_DATA. If some ietf-yang-library data are present, they are |
| 448 | preserved and option is ignored. */ |
| 449 | #define LYD_OPT_VAL_DIFF 0x40000 /**< Flag only for validation, store all the data node changes performed by the validation |
| 450 | in a diff structure. */ |
| 451 | #define LYD_OPT_DATA_TEMPLATE 0x1000000 /**< Data represents YANG data template. */ |
| 452 | |
| 453 | /**@} dataparseroptions */ |
| 454 | |
| 455 | /** |
| 456 | * @brief Get the node's children list if any. |
| 457 | * |
| 458 | * Decides the node's type and in case it has a children list, returns it. |
| 459 | * @param[in] node Node to check. |
| 460 | * @return Pointer to the first child node (if any) of the \p node. |
| 461 | */ |
| 462 | const struct lyd_node *lyd_node_children(const struct lyd_node *node); |
| 463 | |
| 464 | /** |
| 465 | * @brief Find the node, in the list, satisfying the given restrictions. |
| 466 | * |
| 467 | * @param[in] first Starting child node for search. |
| 468 | * @param[in] module Module of the node to find (mandatory argument). |
| 469 | * @param[in] name Name of the node to find (mandatory argument). |
| 470 | * @param[in] name_len Optional length of the @p name argument in case it is not NULL-terminated string. |
| 471 | * @param[in] nodetype Optional mask for the nodetype of the node to find, 0 is understood as all nodetypes. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 472 | * @param[in] value Optional restriction for lyd_node_term nodes to select node with the specific value. Note that this |
Radek Krejci | 950f6a5 | 2019-09-12 17:15:32 +0200 | [diff] [blame] | 473 | * search restriction is limited to compare original string representation of the @p first value. Some of the types have |
| 474 | * canonical representation defined so the same value can be represented by multiple lexical representation. In such a |
| 475 | * case the @p value not matching the original representation of @p first may still be the same. |
| 476 | * For such a case there is more advanced lyd_value_compare() to check if the values matches. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 477 | * @param[in] value_len Optional length of the @p value argument in case it is not NULL-terminated string. |
| 478 | * @return The sibling node of the @p first (or itself), satisfying the given restrictions. |
| 479 | * @return NULL in case there is no node satisfying the restrictions. |
| 480 | */ |
| 481 | const struct lyd_node *lyd_search(const struct lyd_node *first, const struct lys_module *module, |
| 482 | const char *name, size_t name_len, uint16_t nodetype, const char *value, size_t value_len); |
| 483 | |
| 484 | /** |
| 485 | * @brief Parse (and validate) data from memory. |
| 486 | * |
| 487 | * In case of LY_XML format, the data string is parsed completely. It means that when it contains |
| 488 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 489 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 490 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 491 | * |
| 492 | * @param[in] ctx Context to connect with the data tree being built here. |
| 493 | * @param[in] data Serialized data in the specified format. |
| 494 | * @param[in] format Format of the input data to be parsed. |
| 495 | * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly. |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 496 | * @param[in] trees ([Sized array](@ref sizedarrays)) of data trees (e.g. when validating RPC/Notification) where the required |
| 497 | * data instances (leafref target, instance-identifier, when, must) can be placed. To simply prepare this structure, |
| 498 | * use lyd_trees_new(). In case of parsing RPC/action reply (LYD_OPT_RPCREPLY), the first tree in the array MUST be |
| 499 | * complete RPC/action data tree (the source request) for the reply. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 500 | * @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure, |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 501 | * use lyd_free_all(). |
| 502 | * @return NULL in case of error. The error information can be then obtained using ly_err* functions. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 503 | */ |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 504 | struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options, const struct lyd_node **trees); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 505 | |
| 506 | /** |
| 507 | * @brief Read (and validate) data from the given file descriptor. |
| 508 | * |
| 509 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 510 | * |
| 511 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 512 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 513 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 514 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 515 | * |
| 516 | * @param[in] ctx Context to connect with the data tree being built here. |
| 517 | * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format. |
| 518 | * @param[in] format Format of the input data to be parsed. |
| 519 | * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly. |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 520 | * @param[in] trees ([Sized array](@ref sizedarrays)) of data trees (e.g. when validating RPC/Notification) where the required |
| 521 | * data instances (leafref target, instance-identifier, when, must) can be placed. To simply prepare this structure, |
| 522 | * use lyd_trees_new(). In case of parsing RPC/action reply (LYD_OPT_RPCREPLY), the first tree in the array MUST be |
| 523 | * complete RPC/action data tree (the source request) for the reply. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 524 | * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure, |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 525 | * use lyd_free_all(). |
| 526 | * @return NULL in case of error. The error information can be then obtained using ly_err* functions. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 527 | */ |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 528 | struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options, const struct lyd_node **trees); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 529 | |
| 530 | /** |
| 531 | * @brief Read (and validate) data from the given file path. |
| 532 | * |
| 533 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 534 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 535 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 536 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 537 | * |
| 538 | * @param[in] ctx Context to connect with the data tree being built here. |
| 539 | * @param[in] path Path to the file containing the data tree in the specified format. |
| 540 | * @param[in] format Format of the input data to be parsed. |
| 541 | * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_TRUSTED implicitly. |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 542 | * @param[in] trees ([Sized array](@ref sizedarrays)) of data trees (e.g. when validating RPC/Notification) where the required |
| 543 | * data instances (leafref target, instance-identifier, when, must) can be placed. To simply prepare this structure, |
| 544 | * use lyd_trees_new(). In case of parsing RPC/action reply (LYD_OPT_RPCREPLY), the first tree in the array MUST be |
| 545 | * complete RPC/action data tree (the source request) for the reply. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 546 | * @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure, |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 547 | * use lyd_free_all(). |
| 548 | * @return NULL in case of error. The error information can be then obtained using ly_err* functions. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 549 | */ |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 550 | struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options, const struct lyd_node **trees); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 551 | |
| 552 | /** |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 553 | * @brief Free all the nodes (even parents of the node) in the data tree. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 554 | * |
| 555 | * @param[in] node Any of the nodes inside the tree. |
| 556 | */ |
| 557 | void lyd_free_all(struct lyd_node *node); |
| 558 | |
| 559 | /** |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 560 | * @brief Free all the sibling nodes. |
| 561 | * |
| 562 | * @param[in] node Any of the sibling nodes to free. |
| 563 | */ |
| 564 | void lyd_free_withsiblings(struct lyd_node *node); |
| 565 | |
| 566 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 567 | * @brief Free (and unlink) the specified data (sub)tree. |
| 568 | * |
| 569 | * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators). |
| 570 | * |
| 571 | * @param[in] node Root of the (sub)tree to be freed. |
| 572 | */ |
| 573 | void lyd_free_tree(struct lyd_node *node); |
| 574 | |
| 575 | /** |
| 576 | * @brief Unlink the specified data subtree. All referenced namespaces are copied. |
| 577 | * |
| 578 | * Note, that the node's connection with the schema tree is kept. Therefore, in case of |
| 579 | * reconnecting the node to a data tree using lyd_paste() it is necessary to paste it |
| 580 | * to the appropriate place in the data tree following the schema. |
| 581 | * |
| 582 | * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators). |
| 583 | * |
| 584 | * @param[in] node Data tree node to be unlinked (together with all children). |
| 585 | * @return LY_SUCCESS for success |
| 586 | * @return LY_E* values in case of error |
| 587 | */ |
| 588 | LY_ERR lyd_unlink_tree(struct lyd_node *node); |
| 589 | |
| 590 | /** |
| 591 | * @brief Destroy data attribute. |
| 592 | * |
| 593 | * @param[in] ctx Context where the attribute was created. |
| 594 | * @param[in] attr Attribute to destroy |
| 595 | * @param[in] recursive Zero to destroy only the attribute (the attribute list is corrected), |
| 596 | * non-zero to destroy also all the subsequent attributes in the list. |
| 597 | */ |
| 598 | void lyd_free_attr(struct ly_ctx *ctx, struct lyd_attr *attr, int recursive); |
| 599 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 600 | /** |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 601 | * @brief Prepare ([sized array](@ref sizedarrays)) of data trees required by various (mostly validation) functions. |
| 602 | * |
| 603 | * @param[in] count Number of trees to include (including the mandatory @p tree). |
| 604 | * @param[in] tree First (and mandatory) tree to be included into the resulting ([sized array](@ref sizedarrays)). |
| 605 | * @return NULL in case of memory allocation failure or invalid argument, prepared ([sized array](@ref sizedarrays)) otherwise. |
| 606 | */ |
| 607 | const struct lyd_node **lyd_trees_new(size_t count, const struct lyd_node *tree, ...); |
| 608 | |
| 609 | /** |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 610 | * @brief Add tree into the ([sized array](@ref sizedarrays)) of data trees created by lyd_trees_new(), |
| 611 | * |
| 612 | * @param[in] trees Existing [sized array](@ref sizedarrays)) of data trees to be extended. |
| 613 | * @param[in] tree Data tree to be included into the provided @p trees ([sized array](@ref sizedarrays)). |
| 614 | * @return NULL in case of memory allocation failure or invalid argument, extended @p trees ([sized array](@ref sizedarrays)) otherwise. |
| 615 | */ |
| 616 | const struct lyd_node **lyd_trees_add(const struct lyd_node **trees, const struct lyd_node *tree); |
| 617 | |
| 618 | /** |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 619 | * @brief Free the trees ([sized array](@ref sizedarrays)). |
| 620 | * |
| 621 | * @param[in] trees ([Sized array](@ref sizedarrays)) of data trees. |
| 622 | * @param[in] free_data Flag to free also the particular trees in the @p trees ([sized array](@ref sizedarrays)). |
| 623 | * If set to zero, only the trees envelope is freed and data are untouched. |
| 624 | */ |
| 625 | void lyd_trees_free(const struct lyd_node **trees, int free_data); |
| 626 | |
| 627 | /** |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 628 | * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value. |
| 629 | * |
| 630 | * The given node is not modified in any way - it is just checked if the @p value can be set to the node. |
| 631 | * |
| 632 | * If there is no data node instance and you are fine with checking just the type's restrictions without the |
| 633 | * data tree context (e.g. for the case of require-instance restriction), use lys_value_validate(). |
| 634 | * |
| 635 | * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL) |
| 636 | * @param[in] node Data node for the @p value. |
| 637 | * @param[in] value String value to be checked. |
| 638 | * @param[in] value_len Length of the given @p value (mandatory). |
| 639 | * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string. |
| 640 | * @param[in] get_prefix_data Private data for the @p get_prefix callback. |
| 641 | * @param[in] format Input format of the data. |
| 642 | * @param[in] trees ([Sized array](@ref sizedarrays)) of data trees (e.g. when validating RPC/Notification) where the required |
| 643 | * data instance (leafref target, instance-identifier) can be placed. NULL in case the data tree are not yet complete, |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 644 | * then LY_EINCOMPLETE can be returned. To simply prepare this structure, use lyd_trees_new(). |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 645 | * @return LY_SUCCESS on success |
| 646 | * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation (e.g. due to require-instance). |
| 647 | * @return LY_ERR value if an error occurred. |
| 648 | */ |
| 649 | LY_ERR lyd_value_validate(struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len, |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 650 | ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node **trees); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 651 | |
| 652 | /** |
| 653 | * @brief Compare the node's value with the given string value. The string value is first validated according to the node's type. |
| 654 | * |
| 655 | * @param[in] node Data node to compare. |
| 656 | * @param[in] value String value to be compared. It does not need to be in a canonical form - as part of the process, |
| 657 | * it is validated and canonized if possible. |
| 658 | * @param[in] value_len Length of the given @p value (mandatory). |
| 659 | * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string. |
| 660 | * @param[in] get_prefix_data Private data for the @p get_prefix callback. |
| 661 | * @param[in] format Input format of the data. |
| 662 | * @param[in] trees ([Sized array](@ref sizedarrays)) of data trees (e.g. when validating RPC/Notification) where the required |
| 663 | * data instance (leafref target, instance-identifier) can be placed. NULL in case the data tree are not yet complete, |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 664 | * then LY_EINCOMPLETE can be returned in case the validation was not completed, but values matches. To simply prepare |
| 665 | * this structure, use lyd_trees_new(). To simply prepare this structure, use lyd_trees_new(). |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 666 | * @return LY_SUCCESS on success |
| 667 | * @return LY_EINCOMPLETE in case of success when the @p trees is not provided and it was needed to finish the validation of |
| 668 | * the given string @p value (e.g. due to require-instance). |
| 669 | * @return LY_ERR value if an error occurred. |
| 670 | */ |
| 671 | LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len, |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 672 | ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node **trees); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 673 | |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 674 | /** |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 675 | * @defgroup datacompareoptions Data compare options |
| 676 | * @ingroup datatree |
| 677 | * |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 678 | * Various options to change the lyd_compare() behavior. |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 679 | */ |
| 680 | #define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children |
| 681 | (subtree, so direct as well as indirect children) are the same. By default, |
| 682 | containers are the same in case of the same schema node and lists are the same |
| 683 | in case of equal keys (keyless lists do the full recursion comparison all the time). */ |
| 684 | #define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag |
| 685 | changes this behavior and implicit (automatically created default node) and explicit |
| 686 | (explicitly created node with the default value) default nodes are considered different. */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 687 | /**@} datacompareoptions */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 688 | |
| 689 | /** |
| 690 | * @brief Compare 2 data nodes if they are equivalent. |
| 691 | * |
| 692 | * @param[in] node1 The first node to compare. |
| 693 | * @param[in] node2 The second node to compare. |
Radek Krejci | c5ad965 | 2019-09-11 11:31:51 +0200 | [diff] [blame] | 694 | * @param[in] options Various @ref datacompareoptions. |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 695 | * @return LY_SUCCESS if the nodes are equivalent. |
| 696 | * @return LY_ENOT if the nodes are not equivalent. |
| 697 | */ |
| 698 | LY_ERR lyd_compare(const struct lyd_node *node1, const struct lyd_node *node2, int options); |
| 699 | |
| 700 | /** |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 701 | * @defgroup dupoptions Data duplication options |
| 702 | * @ingroup datatree |
| 703 | * |
| 704 | * Various options to change lyd_dup() behavior. |
| 705 | * |
| 706 | * Default behavior: |
| 707 | * - only the specified node is duplicated without siblings, parents, or children. |
| 708 | * - all the attributes of the duplicated nodes are also duplicated. |
| 709 | * @{ |
| 710 | */ |
| 711 | |
| 712 | #define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that |
| 713 | list's keys are always duplicated. */ |
| 714 | #define LYD_DUP_NO_ATTR 0x02 /**< Do not duplicate attributes of any node. */ |
| 715 | #define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents. |
| 716 | Keys are also duplicated for lists. Return value does not change! */ |
| 717 | #define LYD_DUP_WITH_SIBLINGS 0x08 /**< Duplicate also all the sibling of the given node. */ |
| 718 | #define LYD_DUP_WITH_WHEN 0x10 /**< Also copy any when evaluation state flags. This is useful in case the copied |
| 719 | nodes are actually still part of the same datastore meaning no dependency data |
| 720 | could have changed. Otherwise nothing is assumed about the copied node when |
| 721 | state and it is evaluated from scratch during validation. */ |
| 722 | |
| 723 | /** @} dupoptions */ |
| 724 | |
| 725 | /** |
| 726 | * @brief Create a copy of the specified data tree \p node. Schema references are kept the same. |
| 727 | * |
| 728 | * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators). |
| 729 | * |
| 730 | * @param[in] node Data tree node to be duplicated. |
| 731 | * @param[in] parent Optional parent node where to connect the duplicated node(s). |
| 732 | * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connect with the @p parent |
| 733 | * (if the parents chain does not match at some node the schema node of the provided @p parent, duplication fails). |
| 734 | * @param[in] options Bitmask of options flags, see @ref dupoptions. |
| 735 | * @return Created copy of the provided data \p node (the first of the duplicated siblings when LYD_DUP_WITH_SIBLINGS used). |
| 736 | * Note that in case the parents chain is duplicated for the duplicated node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node |
| 737 | * is still returned, not a pointer to the duplicated parents. |
| 738 | */ |
| 739 | struct lyd_node *lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, int options); |
| 740 | |
| 741 | /** |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 742 | * @brief Resolve instance-identifier defined by lyd_value_path structure. |
| 743 | * |
| 744 | * @param[in] path Path structure specifying the instance-identifier target. |
| 745 | * @param[in] trees ([Sized array](@ref sizedarrays)) of data trees to be searched. |
| 746 | * To simply prepare this structure, use lyd_trees_new(). |
| 747 | * @return Target node of the instance-identifier present in the given data @p trees. |
| 748 | */ |
| 749 | const struct lyd_node_term *lyd_target(struct lyd_value_path *path, const struct lyd_node **trees); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 750 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 751 | /** |
| 752 | * @brief Get string value of a term data \p node. |
| 753 | * |
| 754 | * @param[in] node Data tree node with the value. |
| 755 | * @param[out] dynamic Whether the string value was dynmically allocated. |
| 756 | * @return String value of @p node, if @p dynamic, needs to be freed. |
| 757 | */ |
| 758 | const char *lyd_value2str(const struct lyd_node_term *node, int *dynamic); |
| 759 | |
| 760 | /** |
| 761 | * @brief Get string value of an attribute \p attr. |
| 762 | * |
| 763 | * @param[in] attr Attribute with the value. |
| 764 | * @param[out] dynamic Whether the string value was dynmically allocated. |
| 765 | * @return String value of @p attr, if @p dynamic, needs to be freed. |
| 766 | */ |
| 767 | const char *lyd_attr2str(const struct lyd_attr *attr, int *dynamic); |
| 768 | |
| 769 | /** |
| 770 | * @brief Types of the different data paths. |
| 771 | */ |
| 772 | typedef enum { |
| 773 | LYD_PATH_LOG /**< Descriptive path format used in log messages */ |
| 774 | } LYD_PATH_TYPE; |
| 775 | |
| 776 | /** |
| 777 | * @brief Generate path of the given node in the requested format. |
| 778 | * |
| 779 | * @param[in] node Schema path of this node will be generated. |
| 780 | * @param[in] pathtype Format of the path to generate. |
| 781 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 782 | * If NULL, memory for the complete path is allocated. |
| 783 | * @param[in] buflen Size of the provided @p buffer. |
| 784 | * @return NULL in case of memory allocation error, path of the node otherwise. |
| 785 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| 786 | */ |
| 787 | char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen); |
| 788 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 789 | #ifdef __cplusplus |
| 790 | } |
| 791 | #endif |
| 792 | |
| 793 | #endif /* LY_TREE_DATA_H_ */ |