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" |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 22 | #include "set.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 23 | #include "tree.h" |
| 24 | #include "tree_schema.h" |
| 25 | |
| 26 | struct ly_ctx; |
| 27 | |
| 28 | #ifdef __cplusplus |
| 29 | extern "C" { |
| 30 | #endif |
| 31 | |
| 32 | /** |
| 33 | * @defgroup datatree Data Tree |
| 34 | * @{ |
| 35 | * |
| 36 | * Data structures and functions to manipulate and access instance data tree. |
| 37 | */ |
| 38 | |
| 39 | /** |
| 40 | * @brief Macro to iterate via all elements in a data tree. This is the opening part |
| 41 | * to the #LYD_TREE_DFS_END - they always have to be used together. |
| 42 | * |
| 43 | * The function follows deep-first search algorithm: |
| 44 | * <pre> |
| 45 | * 1 |
| 46 | * / \ |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 47 | * 2 4 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 48 | * / / \ |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 49 | * 3 5 6 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 50 | * </pre> |
| 51 | * |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 52 | * 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] | 53 | * START can be any of the lyd_node* types, NEXT and ELEM variables are expected |
| 54 | * to be pointers to a generic struct lyd_node. |
| 55 | * |
| 56 | * Since the next node is selected as part of #LYD_TREE_DFS_END, do not use |
| 57 | * continue statement between the #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. |
| 58 | * |
| 59 | * Use with opening curly bracket '{' after the macro. |
| 60 | * |
| 61 | * @param START Pointer to the starting element processed first. |
| 62 | * @param NEXT Temporary storage, do not use. |
| 63 | * @param ELEM Iterator intended for use in the block. |
| 64 | */ |
| 65 | #define LYD_TREE_DFS_BEGIN(START, NEXT, ELEM) \ |
| 66 | for ((ELEM) = (NEXT) = (START); \ |
| 67 | (ELEM); \ |
| 68 | (ELEM) = (NEXT)) |
| 69 | |
| 70 | /** |
| 71 | * @brief Macro to iterate via all elements in a tree. This is the closing part |
| 72 | * to the #LYD_TREE_DFS_BEGIN - they always have to be used together. |
| 73 | * |
| 74 | * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While |
| 75 | * START can be any of the lyd_node* types, NEXT and ELEM variables are expected |
| 76 | * to be pointers to a generic struct lyd_node. |
| 77 | * |
| 78 | * Use with closing curly bracket '}' after the macro. |
| 79 | * |
| 80 | * @param START Pointer to the starting element processed first. |
| 81 | * @param NEXT Temporary storage, do not use. |
| 82 | * @param ELEM Iterator intended for use in the block. |
| 83 | */ |
| 84 | |
| 85 | #define LYD_TREE_DFS_END(START, NEXT, ELEM) \ |
| 86 | /* select element for the next run - children first */ \ |
| 87 | (NEXT) = (struct lyd_node*)lyd_node_children((struct lyd_node*)ELEM); \ |
| 88 | if (!(NEXT)) { \ |
| 89 | /* no children */ \ |
| 90 | if ((ELEM) == (struct lyd_node*)(START)) { \ |
| 91 | /* we are done, (START) has no children */ \ |
| 92 | break; \ |
| 93 | } \ |
| 94 | /* try siblings */ \ |
| 95 | (NEXT) = (ELEM)->next; \ |
| 96 | } \ |
| 97 | while (!(NEXT)) { \ |
| 98 | /* parent is already processed, go to its sibling */ \ |
| 99 | (ELEM) = (struct lyd_node*)(ELEM)->parent; \ |
| 100 | /* no siblings, go back through parents */ \ |
| 101 | if ((ELEM)->parent == (START)->parent) { \ |
| 102 | /* we are done, no next element to process */ \ |
| 103 | break; \ |
| 104 | } \ |
| 105 | (NEXT) = (ELEM)->next; \ |
| 106 | } |
| 107 | |
| 108 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 109 | * @brief Macro to get context from a data tree node. |
| 110 | */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 111 | #define LYD_NODE_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx) |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 112 | |
| 113 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 114 | * @brief Data input/output formats supported by libyang [parser](@ref howtodataparsers) and |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 115 | * [printer](@ref howtodataprinters) functions. Also used for value prefix format. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 116 | */ |
| 117 | typedef enum { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 118 | LYD_SCHEMA = 0, /**< invalid instance data format, value prefixes map to YANG import prefixes */ |
| 119 | LYD_XML, /**< XML instance data format, value prefixes map to XML namespace prefixes */ |
| 120 | LYD_JSON, /**< JSON instance data format, value prefixes map to module names */ |
Radek Krejci | 355bf4f | 2019-07-16 17:14:16 +0200 | [diff] [blame] | 121 | #if 0 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 122 | LYD_LYB, /**< LYB format of the instance data */ |
| 123 | #endif |
| 124 | } LYD_FORMAT; |
| 125 | |
| 126 | /** |
Radek Krejci | 59583bb | 2019-09-11 12:57:55 +0200 | [diff] [blame] | 127 | * @brief List of possible value types stored in ::lyd_node_any. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 128 | */ |
| 129 | typedef enum { |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 130 | 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] | 131 | is directly connected into the anydata node without duplication, caller is supposed to not manipulate |
| 132 | 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] | 133 | 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] | 134 | as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata |
| 135 | is printed in XML format. */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 136 | LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */ |
| 137 | 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] | 138 | #if 0 /* TODO LYB format */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 139 | 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] | 140 | #endif |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 141 | } LYD_ANYDATA_VALUETYPE; |
| 142 | |
| 143 | /** @} */ |
| 144 | |
| 145 | /** |
| 146 | * @brief YANG data representation |
| 147 | */ |
| 148 | struct lyd_value { |
Radek Krejci | 950f6a5 | 2019-09-12 17:15:32 +0200 | [diff] [blame] | 149 | const char *original; /**< Original string representation of the value. It is never NULL, but (canonical) string representation |
| 150 | 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] | 151 | union { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 152 | int8_t boolean; /**< 0 as false, 1 as true */ |
| 153 | int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */ |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 154 | int8_t int8; /**< 8-bit signed integer */ |
| 155 | int16_t int16; /**< 16-bit signed integer */ |
| 156 | int32_t int32; /**< 32-bit signed integer */ |
| 157 | int64_t int64; /**< 64-bit signed integer */ |
| 158 | uint8_t uint8; /**< 8-bit unsigned integer */ |
| 159 | uint16_t uint16; /**< 16-bit signed integer */ |
| 160 | uint32_t uint32; /**< 32-bit signed integer */ |
| 161 | uint64_t uint64; /**< 64-bit signed integer */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 162 | 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] | 163 | 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] | 164 | 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] | 165 | |
| 166 | struct lyd_value_subvalue { |
| 167 | struct lyd_value_prefix { |
| 168 | const char *prefix; /**< prefix string used in the canonized string to identify the mod of the YANG schema */ |
| 169 | const struct lys_module *mod; /**< YANG schema module identified by the prefix string */ |
| 170 | } *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] | 171 | struct lyd_value *value; /**< representation of the value according to the selected union's subtype (stored as lyd_value::realpath |
| 172 | here, in subvalue structure */ |
| 173 | } *subvalue; /**< data to represent data with multiple types (union). Original value is stored in the main |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 174 | lyd_value:canonical_cache while the lyd_value_subvalue::value contains representation according to the |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 175 | one of the union's type. The lyd_value_subvalue:prefixes provides (possible) mappings from prefixes |
| 176 | in original value to YANG modules. These prefixes are necessary to parse original value to the union's |
| 177 | subtypes. */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 178 | |
| 179 | struct lyd_value_path { |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 180 | const struct lysc_node *node; /**< Schema node representing the path segment */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 181 | struct lyd_value_path_predicate { |
| 182 | union { |
| 183 | struct { |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 184 | const struct lysc_node *key; /**< key node of the predicate, in case of the leaf-list-predicate, it is the leaf-list node itself */ |
| 185 | struct lyd_value *value; /**< value representation according to the key's type */ |
| 186 | }; /**< key-value pair for leaf-list-predicate and key-predicate (type 1 and 2) */ |
| 187 | uint64_t position; /**< position value for the position-predicate (type 0) */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 188 | }; |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 189 | uint8_t type; /**< Predicate types (see YANG ABNF): 0 - position, 1 - key-predicate, 2 - leaf-list-predicate */ |
| 190 | } *predicates; /**< [Sized array](@ref sizedarrays) of the path segment's predicates */ |
| 191 | } *target; /**< [Sized array](@ref sizedarrays) of (instance-identifier's) path segments. */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 192 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 193 | void *ptr; /**< generic data type structure used to store the data */ |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 194 | }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the lyd_value::realtype |
| 195 | plugin's callbacks to work with the data. */ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 196 | |
Radek Krejci | 950f6a5 | 2019-09-12 17:15:32 +0200 | [diff] [blame] | 197 | 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] | 198 | in the schema node of the data node since the type's store plugin can use other types/plugins for |
| 199 | storing data. Speaking about built-in types, this is the case of leafref which stores data as its |
| 200 | target type. In contrast, union type also use its subtype's callbacks, but inside an internal data |
| 201 | lyd_value::subvalue structure, so here is the pointer to the union type. |
| 202 | In general, this type is used to get free callback for this lyd_value structure, so it must reflect |
| 203 | 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] | 204 | void *canonical_cache; /**< Generic cache for type plugins to store data necessary to print canonical value. It can be the canonical |
| 205 | value itself or anything else useful to print the canonical form of the value. Plugin is responsible for |
| 206 | freeing the cache in its free callback. */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 207 | }; |
| 208 | |
| 209 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 210 | * @brief Metadata structure. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 211 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 212 | * The structure provides information about metadata of a data element. Such attributes must map to |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 213 | * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations) |
| 214 | * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON, |
| 215 | * they are represented as JSON elements starting with the '@' character (for more information, see the |
| 216 | * YANG metadata RFC. |
| 217 | * |
| 218 | */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 219 | struct lyd_meta { |
| 220 | struct lyd_node *parent; /**< data node where the metadata is placed */ |
| 221 | struct lyd_meta *next; /**< pointer to the next metadata of the same element */ |
| 222 | struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */ |
| 223 | const char *name; /**< metadata name */ |
| 224 | struct lyd_value value; /**< metadata value representation */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 225 | }; |
| 226 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 227 | /** |
| 228 | * @brief Generic prefix and namespace mapping, meaning depends on the format. |
| 229 | */ |
| 230 | struct ly_prefix { |
| 231 | const char *pref; |
| 232 | const char *ns; |
| 233 | }; |
| 234 | |
| 235 | /** |
| 236 | * @brief Generic attribute structure. |
| 237 | */ |
| 238 | struct ly_attr { |
| 239 | struct lyd_node_opaq *parent; /**< data node where the attribute is placed */ |
| 240 | struct ly_attr *next; |
| 241 | struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */ |
| 242 | const char *name; |
| 243 | const char *value; |
| 244 | |
| 245 | LYD_FORMAT format; |
| 246 | struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */ |
| 247 | |
| 248 | }; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 249 | |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 250 | #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] | 251 | #define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */ |
| 252 | #define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */ |
| 253 | |
| 254 | /** |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 255 | * @defgroup dnodeflags Data node flags |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 256 | * @ingroup datatree |
| 257 | * @{ |
| 258 | * |
| 259 | * Various flags of data nodes. |
| 260 | * |
| 261 | * 1 - container 5 - anydata/anyxml |
| 262 | * 2 - list 6 - rpc/action |
| 263 | * 3 - leaf 7 - notification |
| 264 | * 4 - leaflist |
| 265 | * |
| 266 | * bit name 1 2 3 4 5 6 7 |
| 267 | * ---------------------+-+-+-+-+-+-+-+ |
| 268 | * 1 LYD_DEFAULT |x| |x|x| | | | |
| 269 | * +-+-+-+-+-+-+-+ |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 270 | * 2 LYD_WHEN_TRUE |x|x|x|x|x| | | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 271 | * +-+-+-+-+-+-+-+ |
| 272 | * 3 LYD_NEW |x|x|x|x|x|x|x| |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 273 | * ---------------------+-+-+-+-+-+-+-+ |
| 274 | * |
| 275 | */ |
| 276 | |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 277 | #define LYD_DEFAULT 0x01 /**< default (implicit) node */ |
| 278 | #define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 279 | #define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 280 | |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 281 | /** @} */ |
| 282 | |
| 283 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 284 | * @brief Callback provided by the data/schema parsers to type plugins to resolve (format-specific) mapping between prefixes used |
| 285 | * in the value strings to the YANG schemas. |
| 286 | * |
| 287 | * Reverse function to ly_clb_get_prefix. |
| 288 | * |
| 289 | * XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports. |
| 290 | * |
| 291 | * @param[in] ctx libyang context to find the schema. |
| 292 | * @param[in] prefix Prefix found in the value string |
| 293 | * @param[in] prefix_len Length of the @p prefix. |
| 294 | * @param[in] private Internal data needed by the callback. |
| 295 | * @return Pointer to the YANG schema identified by the provided prefix or NULL if no mapping found. |
| 296 | */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 297 | typedef const struct lys_module *(*ly_clb_resolve_prefix)(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len, |
| 298 | void *private); |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 299 | |
| 300 | /** |
| 301 | * @brief Callback provided by the data/schema printers to type plugins to resolve (format-specific) mapping between YANG module of a data object |
| 302 | * to prefixes used in the value strings. |
| 303 | * |
| 304 | * Reverse function to ly_clb_resolve_prefix. |
| 305 | * |
| 306 | * XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports. |
| 307 | * |
| 308 | * @param[in] mod YANG module of the object. |
| 309 | * @param[in] private Internal data needed by the callback. |
| 310 | * @return String representing prefix for the object of the given YANG module @p mod. |
| 311 | */ |
| 312 | typedef const char *(*ly_clb_get_prefix)(const struct lys_module *mod, void *private); |
| 313 | |
| 314 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 315 | * @brief Generic structure for a data node. |
| 316 | */ |
| 317 | struct lyd_node { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 318 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 319 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 320 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 321 | nodes are equal due to possible collisions. */ |
| 322 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 323 | const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just |
| 324 | ::struct lysc_node but ::struct lysc_action or ::struct lysc_notif as well */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 325 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 326 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 327 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 328 | never NULL. If there is no sibling node, pointer points to the node |
| 329 | itself. In case of the first node, this pointer points to the last |
| 330 | node in the list. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 331 | struct lyd_meta *meta; /**< pointer to the list of metadata of this node */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 332 | |
| 333 | #ifdef LY_ENABLED_LYD_PRIV |
| 334 | void *priv; /**< private user data, not used by libyang */ |
| 335 | #endif |
| 336 | }; |
| 337 | |
| 338 | /** |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 339 | * @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] | 340 | */ |
| 341 | struct lyd_node_inner { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 342 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 343 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 344 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 345 | nodes are equal due to possible collisions. */ |
| 346 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 347 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 348 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 349 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 350 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 351 | never NULL. If there is no sibling node, pointer points to the node |
| 352 | itself. In case of the first node, this pointer points to the last |
| 353 | node in the list. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 354 | struct lyd_meta *meta; /**< pointer to the list of metadata of this node */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 355 | |
| 356 | #ifdef LY_ENABLED_LYD_PRIV |
| 357 | void *priv; /**< private user data, not used by libyang */ |
| 358 | #endif |
| 359 | |
| 360 | struct lyd_node *child; /**< pointer to the first child node. */ |
| 361 | 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] | 362 | #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] | 363 | }; |
| 364 | |
| 365 | /** |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 366 | * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 367 | */ |
| 368 | struct lyd_node_term { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 369 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 370 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 371 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 372 | nodes are equal due to possible collisions. */ |
| 373 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 374 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 375 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 376 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 377 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 378 | never NULL. If there is no sibling node, pointer points to the node |
| 379 | itself. In case of the first node, this pointer points to the last |
| 380 | node in the list. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 381 | struct lyd_meta *meta; /**< pointer to the list of metadata of this node */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 382 | |
| 383 | #ifdef LY_ENABLED_LYD_PRIV |
| 384 | void *priv; /**< private user data, not used by libyang */ |
| 385 | #endif |
| 386 | |
| 387 | struct lyd_value value; /**< node's value representation */ |
| 388 | }; |
| 389 | |
| 390 | /** |
| 391 | * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls. |
| 392 | */ |
| 393 | struct lyd_node_any { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 394 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 395 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 396 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 397 | nodes are equal due to possible collisions. */ |
| 398 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 399 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 400 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 401 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 402 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 403 | never NULL. If there is no sibling node, pointer points to the node |
| 404 | itself. In case of the first node, this pointer points to the last |
| 405 | node in the list. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 406 | struct lyd_meta *meta; /**< pointer to the list of attributes of this node */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 407 | |
| 408 | #ifdef LY_ENABLED_LYD_PRIV |
| 409 | void *priv; /**< private user data, not used by libyang */ |
| 410 | #endif |
| 411 | |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 412 | union { |
| 413 | struct lyd_node *tree; /**< data tree */ |
| 414 | const char *str; /**< Generic string data */ |
| 415 | const char *xml; /**< Serialized XML data */ |
| 416 | const char *json; /**< I-JSON encoded string */ |
| 417 | char *mem; /**< LYD_ANYDATA_LYB memory chunk */ |
| 418 | } value; /**< pointer to the stored value representation of the anydata/anyxml node */ |
| 419 | 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] | 420 | }; |
| 421 | |
| 422 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 423 | * @brief Data node structure for unparsed (opaque) nodes. |
| 424 | */ |
| 425 | struct lyd_node_opaq { |
| 426 | uint32_t hash; /**< always 0 */ |
| 427 | uint32_t flags; /**< always 0 */ |
| 428 | const struct lysc_node *schema; /**< always NULL */ |
| 429 | struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */ |
| 430 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 431 | struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */ |
| 432 | struct ly_attr *attr; |
| 433 | |
| 434 | #ifdef LY_ENABLED_LYD_PRIV |
| 435 | void *priv; /**< private user data, not used by libyang */ |
| 436 | #endif |
| 437 | |
| 438 | struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */ |
| 439 | const char *name; |
| 440 | LYD_FORMAT format; |
| 441 | struct ly_prefix prefix; /**< name prefix */ |
| 442 | struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */ |
| 443 | const char *value; /**< original value */ |
| 444 | const struct ly_ctx *ctx; /**< libyang context */ |
| 445 | }; |
| 446 | |
| 447 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 448 | * @defgroup dataparseroptions Data parser options |
| 449 | * @ingroup datatree |
| 450 | * |
| 451 | * Various options to change the data tree parsers behavior. |
| 452 | * |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 453 | * Default parser behavior: |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 454 | * - complete input file is always parsed. In case of XML, even not well-formed XML document (multiple top-level |
| 455 | * elements) is parsed in its entirety, |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 456 | * - parser silently ignores data without matching schema node definition, |
| 457 | * - list instances are checked whether they have all the keys, error is raised if not. |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 458 | * |
| 459 | * Default parser validation behavior: |
| 460 | * - the provided data are expected to provide complete datastore content (both the configuration and state data) |
| 461 | * and performs data validation according to all YANG rules, specifics follow, |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 462 | * - list instances are expected to have all the keys (it is not checked), |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 463 | * - instantiated (status) obsolete data print a warning, |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 464 | * - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have |
| 465 | * all the keys, leaf(-lists) correct values), |
| 466 | * - when statements on existing nodes are evaluated, if not satisfied, a validation error is raised, |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 467 | * - if-feature statements are evaluated, |
| 468 | * - invalid multiple data instances/data from several cases cause a validation error, |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 469 | * - default values are added. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 470 | * @{ |
| 471 | */ |
| 472 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 473 | #define LYD_OPT_PARSE_ONLY 0x0001 /**< Data will be only parsed and no validation will be performed. When statements |
| 474 | are kept unevaluated, union types may not be fully resolved, if-feature |
| 475 | statements are not checked, and default values are not added (only the ones |
| 476 | parsed are present). */ |
| 477 | #define LYD_OPT_TRUSTED 0x0002 /**< Data are considered trusted so they will be parsed as validated. If the parsed |
| 478 | data are not valid, using this flag may lead to some unexpected behavior! |
| 479 | This flag can be used only with #LYD_OPT_PARSE_ONLY. */ |
| 480 | #define LYD_OPT_STRICT 0x0004 /**< Instead of silently ignoring data without schema definition raise an error. |
| 481 | Do not combine with #LYD_OPT_OPAQ. */ |
| 482 | #define LYD_OPT_OPAQ 0x0008 /**< Instead of silently ignoring data without definition, parse them into |
| 483 | an opaq node. Do not combine with #LYD_OPT_STRICT. */ |
| 484 | #define LYD_OPT_NO_STATE 0x0010 /**< Forbid state data in the parsed data. */ |
| 485 | |
| 486 | #define LYD_OPT_MASK 0xFFFF /**< Mask for all the parser options. */ |
Michal Vasko | 5b37a35 | 2020-03-06 13:38:33 +0100 | [diff] [blame] | 487 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 488 | /** @} dataparseroptions */ |
| 489 | |
| 490 | /** |
| 491 | * @defgroup datavalidationoptions Data validation options |
| 492 | * @ingroup datatree |
| 493 | * |
| 494 | * Various options to change data validation behaviour, both for the parser and separate validation. |
| 495 | * |
| 496 | * Default separate validation behavior: |
| 497 | * - the provided data are expected to provide complete datastore content (both the configuration and state data) |
| 498 | * and performs data validation according to all YANG rules, specifics follow, |
Michal Vasko | e75ecfd | 2020-03-06 14:12:28 +0100 | [diff] [blame] | 499 | * - instantiated (status) obsolete data print a warning, |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 500 | * - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have |
| 501 | * all the keys, leaf(-lists) correct values), |
| 502 | * - when statements on existing nodes are evaluated. Depending on the previous when state (from previous validation |
| 503 | * or parsing), the node is silently auto-deleted if the state changed from true to false, otherwise a validation error |
| 504 | * is raised if it evaluates to false, |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 505 | * - if-feature statements are evaluated, |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 506 | * - data from several cases behave based on their previous state (from previous validation or parsing). If there existed |
| 507 | * already a case and another one was added, the previous one is silently auto-deleted. Otherwise (if data from 2 or |
| 508 | * more cases were created) a validation error is raised, |
| 509 | * - default values are added. |
| 510 | * |
| 511 | * @{ |
| 512 | */ |
| 513 | |
| 514 | #define LYD_VALOPT_NO_STATE 0x00010000 /**< Consider state data not allowed and raise an error if they are found. */ |
| 515 | #define LYD_VALOPT_DATA_ONLY 0x00020000 /**< Validate only modules whose data actually exist. */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 516 | |
Michal Vasko | 5b37a35 | 2020-03-06 13:38:33 +0100 | [diff] [blame] | 517 | #define LYD_VALOPT_MASK 0xFFFF0000 /**< Mask for all the validation options. */ |
| 518 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 519 | /** @} datavalidationoptions */ |
| 520 | |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 521 | //#define LYD_OPT_VAL_DIFF 0x40000 /**< Flag only for validation, store all the data node changes performed by the validation |
| 522 | // in a diff structure. */ |
| 523 | //#define LYD_OPT_DATA_TEMPLATE 0x1000000 /**< Data represents YANG data template. */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 524 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 525 | /** |
| 526 | * @brief Get the node's children list if any. |
| 527 | * |
| 528 | * Decides the node's type and in case it has a children list, returns it. |
| 529 | * @param[in] node Node to check. |
| 530 | * @return Pointer to the first child node (if any) of the \p node. |
| 531 | */ |
| 532 | const struct lyd_node *lyd_node_children(const struct lyd_node *node); |
| 533 | |
| 534 | /** |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 535 | * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally, |
| 536 | * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined. |
| 537 | * |
| 538 | * @param[in] node Data node to examine. |
| 539 | * @return Module owner of the node. |
| 540 | */ |
| 541 | const struct lys_module *lyd_owner_module(const struct lyd_node *node); |
| 542 | |
| 543 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 544 | * @brief Parse (and validate) data from memory. |
| 545 | * |
| 546 | * In case of LY_XML format, the data string is parsed completely. It means that when it contains |
| 547 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 548 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 549 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 550 | * |
| 551 | * @param[in] ctx Context to connect with the data tree being built here. |
| 552 | * @param[in] data Serialized data in the specified format. |
| 553 | * @param[in] format Format of the input data to be parsed. |
Michal Vasko | 5b37a35 | 2020-03-06 13:38:33 +0100 | [diff] [blame] | 554 | * @param[in] options Parser and validation options, see @ref parseroptions. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 555 | * @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] | 556 | * use lyd_free_all(). |
| 557 | * @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] | 558 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 559 | struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 560 | |
| 561 | /** |
| 562 | * @brief Read (and validate) data from the given file descriptor. |
| 563 | * |
| 564 | * \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc. |
| 565 | * |
| 566 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 567 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 568 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 569 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 570 | * |
| 571 | * @param[in] ctx Context to connect with the data tree being built here. |
| 572 | * @param[in] fd The standard file descriptor of the file containing the data tree in the specified format. |
| 573 | * @param[in] format Format of the input data to be parsed. |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 574 | * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_PARSE_ONLY implicitly. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 575 | * @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] | 576 | * use lyd_free_all(). |
| 577 | * @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] | 578 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 579 | struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 580 | |
| 581 | /** |
| 582 | * @brief Read (and validate) data from the given file path. |
| 583 | * |
| 584 | * In case of LY_XML format, the file content is parsed completely. It means that when it contains |
| 585 | * a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The |
| 586 | * returned data node is a root of the first tree with other trees connected via the next pointer. |
| 587 | * This behavior can be changed by #LYD_OPT_NOSIBLINGS option. |
| 588 | * |
| 589 | * @param[in] ctx Context to connect with the data tree being built here. |
| 590 | * @param[in] path Path to the file containing the data tree in the specified format. |
| 591 | * @param[in] format Format of the input data to be parsed. |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 592 | * @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_PARSE_ONLY implicitly. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 593 | * @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] | 594 | * use lyd_free_all(). |
| 595 | * @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] | 596 | */ |
Michal Vasko | a388136 | 2020-01-21 15:57:35 +0100 | [diff] [blame] | 597 | struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 598 | |
| 599 | /** |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 600 | * @brief Fully validate a data tree. |
| 601 | * |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 602 | * @param[in,out] tree Data tree to recursively validate. May be changed by validation. |
| 603 | * @param[in] ctx libyang context. Can be NULL if @p tree is set. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 604 | * @param[in] val_opts Validation options (@ref datavalidationoptions). |
| 605 | * @return LY_SUCCESS on success. |
| 606 | * @return LY_ERR error on error. |
| 607 | */ |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 608 | LY_ERR lyd_validate(struct lyd_node **tree, const struct ly_ctx *ctx, int val_opts); |
| 609 | |
| 610 | /** |
| 611 | * @brief Fully validate a data tree. |
| 612 | * |
| 613 | * @param[in,out] tree Data tree to recursively validate. May be changed by validation. |
| 614 | * @param[in] modules Array of modules to validate. |
| 615 | * @param[in] mod_count Number of @p modules. |
| 616 | * @param[in] val_opts Validation options (@ref datavalidationoptions). |
| 617 | * @return LY_SUCCESS on success. |
| 618 | * @return LY_ERR error on error. |
| 619 | */ |
| 620 | LY_ERR lyd_validate_modules(struct lyd_node **tree, const struct lys_module **modules, int mod_count, int val_opts); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 621 | |
| 622 | /** |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 623 | * @brief Create a new inner node in a data tree. |
| 624 | * |
| 625 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 626 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 627 | * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION. |
| 628 | * @return New created node. |
| 629 | * @return NULL on error. |
| 630 | */ |
| 631 | struct lyd_node *lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name); |
| 632 | |
| 633 | /** |
| 634 | * @brief Create a new list node in a data tree. |
| 635 | * |
| 636 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 637 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 638 | * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
| 639 | * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier |
| 640 | * or identityref value, the JSON format is expected (module names instead of prefixes). |
| 641 | * @return New created node. |
| 642 | * @return NULL on error. |
| 643 | */ |
| 644 | struct lyd_node *lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ...); |
| 645 | |
| 646 | /** |
| 647 | * @brief Create a new list node in a data tree. |
| 648 | * |
| 649 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 650 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 651 | * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
| 652 | * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered. |
| 653 | * In case of an instance-identifier or identityref value, the JSON format is expected (module names instead of prefixes). |
| 654 | * @return New created node. |
| 655 | * @return NULL on error. |
| 656 | */ |
| 657 | struct lyd_node *lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys); |
| 658 | |
| 659 | /** |
| 660 | * @brief Create a new term node in a data tree. |
| 661 | * |
| 662 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 663 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 664 | * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST. |
| 665 | * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref |
| 666 | * value, the JSON format is expected (module names instead of prefixes). |
| 667 | * @return New created node. |
| 668 | * @return NULL on error. |
| 669 | */ |
| 670 | struct lyd_node *lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str); |
| 671 | |
| 672 | /** |
| 673 | * @brief Create a new any node in a data tree. |
| 674 | * |
| 675 | * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 676 | * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 677 | * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML. |
| 678 | * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type. |
| 679 | * @param[in] value_type Type of the provided value in @p value. |
| 680 | * @return New created node. |
| 681 | * @return NULL on error. |
| 682 | */ |
| 683 | struct lyd_node *lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, |
| 684 | const void *value, LYD_ANYDATA_VALUETYPE value_type); |
| 685 | |
| 686 | /** |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 687 | * @brief Insert a child into a parent. It is inserted as the last child. |
| 688 | * |
| 689 | * - if the node is part of some other tree, it is automatically unlinked. |
| 690 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 691 | * |
| 692 | * @param[in] parent Parent node to insert into. |
| 693 | * @param[in] node Node to insert. |
| 694 | * @return LY_SUCCESS on success. |
| 695 | * @return LY_ERR error on error. |
| 696 | */ |
| 697 | LY_ERR lyd_insert(struct lyd_node *parent, struct lyd_node *node); |
| 698 | |
| 699 | /** |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 700 | * @brief Insert a node into siblings. It is inserted as the last sibling. |
| 701 | * |
| 702 | * - if the node is part of some other tree, it is automatically unlinked. |
| 703 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 704 | * |
| 705 | * @param[in] sibling Siblings to insert into. |
| 706 | * @param[in] node Node to insert. |
| 707 | * @return LY_SUCCESS on success. |
| 708 | * @return LY_ERR error on error. |
| 709 | */ |
| 710 | LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node); |
| 711 | |
| 712 | /** |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 713 | * @brief Insert a node before another node that is its schema sibling. |
| 714 | * |
| 715 | * - if the node is part of some other tree, it is automatically unlinked. |
| 716 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 717 | * |
| 718 | * @param[in] sibling Sibling node to insert before. |
| 719 | * @param[in] node Node to insert. |
| 720 | * @return LY_SUCCESS on success. |
| 721 | * @return LY_ERR error on error. |
| 722 | */ |
| 723 | LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node); |
| 724 | |
| 725 | /** |
| 726 | * @brief Insert a node after another node that is its schema sibling. |
| 727 | * |
| 728 | * - if the node is part of some other tree, it is automatically unlinked. |
| 729 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 730 | * |
| 731 | * @param[in] sibling Sibling node to insert after. |
| 732 | * @param[in] node Node to insert. |
| 733 | * @return LY_SUCCESS on success. |
| 734 | * @return LY_ERR error on error. |
| 735 | */ |
| 736 | LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node); |
| 737 | |
| 738 | /** |
| 739 | * @brief Unlink the specified data subtree. |
| 740 | * |
| 741 | * @param[in] node Data tree node to be unlinked (together with all the children). |
| 742 | */ |
| 743 | void lyd_unlink_tree(struct lyd_node *node); |
| 744 | |
| 745 | /** |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 746 | * @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] | 747 | * |
| 748 | * @param[in] node Any of the nodes inside the tree. |
| 749 | */ |
| 750 | void lyd_free_all(struct lyd_node *node); |
| 751 | |
| 752 | /** |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 753 | * @brief Free all the sibling nodes. |
| 754 | * |
| 755 | * @param[in] node Any of the sibling nodes to free. |
| 756 | */ |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 757 | void lyd_free_siblings(struct lyd_node *node); |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 758 | |
| 759 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 760 | * @brief Free (and unlink) the specified data (sub)tree. |
| 761 | * |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 762 | * @param[in] node Root of the (sub)tree to be freed. |
| 763 | */ |
| 764 | void lyd_free_tree(struct lyd_node *node); |
| 765 | |
| 766 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 767 | * @brief Destroy metadata. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 768 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 769 | * @param[in] ctx Context where the metadata was created. |
| 770 | * @param[in] meta Metadata to destroy |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 771 | * @param[in] recursive Zero to destroy only the single metadata (the metadata list is corrected), |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 772 | * non-zero to destroy also all the subsequent metadata in the list. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 773 | */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 774 | void lyd_free_meta(const struct ly_ctx *ctx, struct lyd_meta *meta, int recursive); |
| 775 | |
| 776 | /** |
| 777 | * @brief Destroy attributes. |
| 778 | * |
| 779 | * @param[in] ctx Context where the attributes were created. |
| 780 | * @param[in] attr Attributes to destroy. |
| 781 | * @param[in] recursive Zero to destroy only the single attribute (the attribute list is corrected), |
| 782 | * non-zero to destroy also all the subsequent attributes in the list. |
| 783 | */ |
| 784 | void ly_free_attr(const struct ly_ctx *ctx, struct ly_attr *attr, int recursive); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 785 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 786 | /** |
| 787 | * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value. |
| 788 | * |
| 789 | * The given node is not modified in any way - it is just checked if the @p value can be set to the node. |
| 790 | * |
| 791 | * If there is no data node instance and you are fine with checking just the type's restrictions without the |
| 792 | * data tree context (e.g. for the case of require-instance restriction), use lys_value_validate(). |
| 793 | * |
| 794 | * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL) |
| 795 | * @param[in] node Data node for the @p value. |
| 796 | * @param[in] value String value to be checked. |
| 797 | * @param[in] value_len Length of the given @p value (mandatory). |
| 798 | * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string. |
| 799 | * @param[in] get_prefix_data Private data for the @p get_prefix callback. |
| 800 | * @param[in] format Input format of the data. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 801 | * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target, |
| 802 | * instance-identifier) can be placed. NULL in case the data tree is not yet complete, |
| 803 | * then LY_EINCOMPLETE can be returned. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 804 | * @return LY_SUCCESS on success |
| 805 | * @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). |
| 806 | * @return LY_ERR value if an error occurred. |
| 807 | */ |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 808 | LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len, |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 809 | ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 810 | |
| 811 | /** |
| 812 | * @brief Compare the node's value with the given string value. The string value is first validated according to the node's type. |
| 813 | * |
| 814 | * @param[in] node Data node to compare. |
| 815 | * @param[in] value String value to be compared. It does not need to be in a canonical form - as part of the process, |
| 816 | * it is validated and canonized if possible. |
| 817 | * @param[in] value_len Length of the given @p value (mandatory). |
| 818 | * @param[in] get_prefix Callback function to resolve prefixes used in the @p value string. |
| 819 | * @param[in] get_prefix_data Private data for the @p get_prefix callback. |
| 820 | * @param[in] format Input format of the data. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 821 | * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target, |
| 822 | * instance-identifier) can be placed. NULL in case the data tree is not yet complete, |
| 823 | * then LY_EINCOMPLETE can be returned. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 824 | * @return LY_SUCCESS on success |
| 825 | * @return LY_EINCOMPLETE in case of success when the @p trees is not provided and it was needed to finish the validation of |
| 826 | * the given string @p value (e.g. due to require-instance). |
| 827 | * @return LY_ERR value if an error occurred. |
| 828 | */ |
| 829 | LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len, |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 830 | ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 831 | |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 832 | /** |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 833 | * @defgroup datacompareoptions Data compare options |
| 834 | * @ingroup datatree |
| 835 | * |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 836 | * Various options to change the lyd_compare() behavior. |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 837 | */ |
| 838 | #define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children |
| 839 | (subtree, so direct as well as indirect children) are the same. By default, |
| 840 | containers are the same in case of the same schema node and lists are the same |
| 841 | in case of equal keys (keyless lists do the full recursion comparison all the time). */ |
| 842 | #define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag |
| 843 | changes this behavior and implicit (automatically created default node) and explicit |
| 844 | (explicitly created node with the default value) default nodes are considered different. */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 845 | /**@} datacompareoptions */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 846 | |
| 847 | /** |
| 848 | * @brief Compare 2 data nodes if they are equivalent. |
| 849 | * |
| 850 | * @param[in] node1 The first node to compare. |
| 851 | * @param[in] node2 The second node to compare. |
Radek Krejci | c5ad965 | 2019-09-11 11:31:51 +0200 | [diff] [blame] | 852 | * @param[in] options Various @ref datacompareoptions. |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 853 | * @return LY_SUCCESS if the nodes are equivalent. |
| 854 | * @return LY_ENOT if the nodes are not equivalent. |
| 855 | */ |
| 856 | LY_ERR lyd_compare(const struct lyd_node *node1, const struct lyd_node *node2, int options); |
| 857 | |
| 858 | /** |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 859 | * @defgroup dupoptions Data duplication options |
| 860 | * @ingroup datatree |
| 861 | * |
| 862 | * Various options to change lyd_dup() behavior. |
| 863 | * |
| 864 | * Default behavior: |
| 865 | * - only the specified node is duplicated without siblings, parents, or children. |
| 866 | * - all the attributes of the duplicated nodes are also duplicated. |
| 867 | * @{ |
| 868 | */ |
| 869 | |
| 870 | #define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that |
| 871 | list's keys are always duplicated. */ |
| 872 | #define LYD_DUP_NO_ATTR 0x02 /**< Do not duplicate attributes of any node. */ |
| 873 | #define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents. |
| 874 | Keys are also duplicated for lists. Return value does not change! */ |
| 875 | #define LYD_DUP_WITH_SIBLINGS 0x08 /**< Duplicate also all the sibling of the given node. */ |
| 876 | #define LYD_DUP_WITH_WHEN 0x10 /**< Also copy any when evaluation state flags. This is useful in case the copied |
| 877 | nodes are actually still part of the same datastore meaning no dependency data |
| 878 | could have changed. Otherwise nothing is assumed about the copied node when |
| 879 | state and it is evaluated from scratch during validation. */ |
| 880 | |
| 881 | /** @} dupoptions */ |
| 882 | |
| 883 | /** |
| 884 | * @brief Create a copy of the specified data tree \p node. Schema references are kept the same. |
| 885 | * |
| 886 | * __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators). |
| 887 | * |
| 888 | * @param[in] node Data tree node to be duplicated. |
| 889 | * @param[in] parent Optional parent node where to connect the duplicated node(s). |
| 890 | * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connect with the @p parent |
| 891 | * (if the parents chain does not match at some node the schema node of the provided @p parent, duplication fails). |
| 892 | * @param[in] options Bitmask of options flags, see @ref dupoptions. |
| 893 | * @return Created copy of the provided data \p node (the first of the duplicated siblings when LYD_DUP_WITH_SIBLINGS used). |
| 894 | * Note that in case the parents chain is duplicated for the duplicated node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node |
| 895 | * is still returned, not a pointer to the duplicated parents. |
| 896 | */ |
| 897 | struct lyd_node *lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, int options); |
| 898 | |
| 899 | /** |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 900 | * @brief Resolve instance-identifier defined by lyd_value_path structure. |
| 901 | * |
| 902 | * @param[in] path Path structure specifying the instance-identifier target. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 903 | * @param[in] tree Data tree to be searched. |
| 904 | * @return Target node of the instance-identifier present in the given data @p tree. |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 905 | */ |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 906 | const struct lyd_node_term *lyd_target(struct lyd_value_path *path, const struct lyd_node *tree); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 907 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 908 | /** |
| 909 | * @brief Get string value of a term data \p node. |
| 910 | * |
| 911 | * @param[in] node Data tree node with the value. |
| 912 | * @param[out] dynamic Whether the string value was dynmically allocated. |
| 913 | * @return String value of @p node, if @p dynamic, needs to be freed. |
| 914 | */ |
| 915 | const char *lyd_value2str(const struct lyd_node_term *node, int *dynamic); |
| 916 | |
| 917 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 918 | * @brief Get string value of a metadata \p meta. |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 919 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 920 | * @param[in] meta Metadata with the value. |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 921 | * @param[out] dynamic Whether the string value was dynmically allocated. |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 922 | * @return String value of @p meta, if @p dynamic, needs to be freed. |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 923 | */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 924 | const char *lyd_meta2str(const struct lyd_meta *meta, int *dynamic); |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 925 | |
| 926 | /** |
| 927 | * @brief Types of the different data paths. |
| 928 | */ |
| 929 | typedef enum { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 930 | LYD_PATH_LOG, /**< Descriptive path format used in log messages */ |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 931 | } LYD_PATH_TYPE; |
| 932 | |
| 933 | /** |
| 934 | * @brief Generate path of the given node in the requested format. |
| 935 | * |
| 936 | * @param[in] node Schema path of this node will be generated. |
| 937 | * @param[in] pathtype Format of the path to generate. |
| 938 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 939 | * If NULL, memory for the complete path is allocated. |
| 940 | * @param[in] buflen Size of the provided @p buffer. |
| 941 | * @return NULL in case of memory allocation error, path of the node otherwise. |
| 942 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| 943 | */ |
| 944 | char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen); |
| 945 | |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 946 | /** |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 947 | * @brief Find the node, in the list, satisfying the given restrictions. |
| 948 | * Does **not** use hashes - should not be used unless necessary for best performance. |
| 949 | * |
| 950 | * @param[in] first Starting sibling node for search, only succeeding ones are searched. |
| 951 | * @param[in] module Module of the node to find. |
| 952 | * @param[in] name Name of the node to find. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 953 | * @param[in] name_len Optional length of @p name in case it is not 0-terminated string. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 954 | * @param[in] key_or_value Expected value depends on the type of @p name node: |
| 955 | * LYS_CONTAINER: |
| 956 | * LYS_ANYXML: |
| 957 | * LYS_ANYDATA: |
| 958 | * LYS_NOTIF: |
| 959 | * LYS_RPC: |
| 960 | * LYS_ACTION: |
| 961 | * NULL should be always set, will be ignored. |
| 962 | * LYS_LEAF: |
| 963 | * LYS_LEAFLIST: |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 964 | * Optional restriction on the specific leaf(-list) value. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 965 | * LYS_LIST: |
| 966 | * Optional keys values of the matching list instances in the form of "[key1='val1'][key2='val2']...". |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 967 | * The keys do not have to be ordered and not all keys need to be specified. |
| 968 | * |
| 969 | * Note that any explicit values (leaf, leaf-list or list key values) will be canonized first |
| 970 | * before comparison. But values that do not have a canonical value are expected to be in the |
| 971 | * JSON format! |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 972 | * @param[in] val_len Optional length of @p key_or_value in case it is not 0-terminated string. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 973 | * @param[out] match Found data node. |
| 974 | * @return LY_SUCCESS on success, @p match set. |
| 975 | * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| 976 | * @return LY_ERR value if another error occurred. |
| 977 | */ |
| 978 | LY_ERR lyd_find_sibling_next(const struct lyd_node *first, const struct lys_module *module, const char *name, |
| 979 | size_t name_len, const char *key_or_value, size_t val_len, struct lyd_node **match); |
| 980 | |
| 981 | /** |
| 982 | * @brief Search in the given siblings (NOT recursively) for the first target instance. |
| 983 | * Uses hashes - should be used whenever possible for best performance. |
| 984 | * |
| 985 | * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| 986 | * @param[in] target Target node to find. |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 987 | * @param[out] match Can be NULL, otherwise the found data node. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 988 | * @return LY_SUCCESS on success, @p match set. |
| 989 | * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| 990 | * @return LY_ERR value if another error occurred. |
| 991 | */ |
| 992 | LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match); |
| 993 | |
| 994 | /** |
| 995 | * @brief Search in the given siblings for all target instances. |
| 996 | * Uses hashes - should be used whenever possible for best performance. |
| 997 | * |
| 998 | * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| 999 | * @param[in] target Target node to find. Key-less lists are compared based on |
| 1000 | * all its descendants (both direct and indirect). |
| 1001 | * @param[out] set Found nodes in a set in case of success. |
| 1002 | * @return LY_SUCCESS on success. |
| 1003 | * @return LY_ENOTFOUND if no matching siblings found. |
| 1004 | * @return LY_ERR value if another error occurred. |
| 1005 | */ |
| 1006 | LY_ERR lyd_find_sibling_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set); |
| 1007 | |
| 1008 | /** |
| 1009 | * @brief Search in the given siblings for the first schema instance. |
| 1010 | * Uses hashes - should be used whenever possible for best performance. |
| 1011 | * |
| 1012 | * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| 1013 | * @param[in] schema Schema node of the data node to find. |
| 1014 | * @param[in] key_or_value Expected value depends on the type of \p schema: |
| 1015 | * LYS_CONTAINER: |
| 1016 | * LYS_LEAF: |
| 1017 | * LYS_ANYXML: |
| 1018 | * LYS_ANYDATA: |
| 1019 | * LYS_NOTIF: |
| 1020 | * LYS_RPC: |
| 1021 | * LYS_ACTION: |
| 1022 | * NULL should be always set, will be ignored. |
| 1023 | * LYS_LEAFLIST: |
| 1024 | * Searched instance value. |
| 1025 | * LYS_LIST: |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1026 | * Searched instance key values in the form of "[key1='val1'][key2='val2']...". |
| 1027 | * The keys do not have to be ordered but all of them must be set. |
| 1028 | * |
| 1029 | * Note that any explicit values (leaf-list or list key values) will be canonized first |
| 1030 | * before comparison. But values that do not have a canonical value are expected to be in the |
| 1031 | * JSON format! |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1032 | * @param[in] val_len Optional length of @p key_or_value in case it is not 0-terminated. |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1033 | * @param[out] match Can be NULL, otherwise the found data node. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1034 | * @return LY_SUCCESS on success, @p match set. |
| 1035 | * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| 1036 | * @return LY_EINVAL if @p schema is a key-less list. |
| 1037 | * @return LY_ERR value if another error occurred. |
| 1038 | */ |
| 1039 | LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value, |
| 1040 | size_t val_len, struct lyd_node **match); |
| 1041 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1042 | #ifdef __cplusplus |
| 1043 | } |
| 1044 | #endif |
| 1045 | |
| 1046 | #endif /* LY_TREE_DATA_H_ */ |