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" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 22 | |
Radek Krejci | ca376bd | 2020-06-11 16:04:06 +0200 | [diff] [blame] | 23 | #ifdef __cplusplus |
| 24 | extern "C" { |
| 25 | #endif |
| 26 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 27 | struct ly_ctx; |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 28 | struct ly_path; |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 29 | struct ly_set; |
| 30 | struct lyd_node; |
| 31 | struct lyd_node_opaq; |
| 32 | struct lys_module; |
| 33 | struct lysc_node; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 34 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 35 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 36 | * @page howtoData Data Instances |
| 37 | * |
| 38 | * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema |
| 39 | * it can be cast to several other structures. |
| 40 | * |
| 41 | * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq. |
| 42 | * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the |
| 43 | * context. Such a node can appear in several places in the data tree. |
| 44 | * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were |
| 45 | * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can |
| 46 | * appear as a node's attributes. |
| 47 | * - As a representation of YANG anydata/anyxml content. |
| 48 | * - As envelopes of standard data tree instances (RPCs, actions or Notifications). |
| 49 | * |
| 50 | * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is |
| 51 | * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype). |
| 52 | * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide |
| 53 | * structure of the tree by having children nodes. |
| 54 | * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal |
| 55 | * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value |
| 56 | * structure with string representation of the value (::lyd_value.canonical) and the type specific data stored in the |
| 57 | * structure's union according to the real type of the value (::lyd_value.realtype). The string representation provides |
| 58 | * canonical representation of the value in case the type has the canonical representation specified. Otherwise, it is the |
| 59 | * original value or, in case the value can contain prefixes, the JSON format is used to make the value unambiguous. |
| 60 | * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes. |
| 61 | * |
| 62 | * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use |
| 63 | * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros |
| 64 | * and functions. |
| 65 | * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node. |
| 66 | * - ::LYD_CTX to get libyang context from a data node. |
| 67 | * - ::LYD_CANON_VALUE to get canonical string value from a terminal node. |
| 68 | * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first). |
| 69 | * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page. |
| 70 | * |
| 71 | * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of |
| 72 | * \b lyd_find_*() functions. |
| 73 | * |
| 74 | * More information about specific operations with data instances can be found on the following pages: |
| 75 | * - @subpage howtoDataParsers |
| 76 | * - @subpage howtoDataValidation |
| 77 | * - @subpage howtoDataWD |
| 78 | * - @subpage howtoDataManipulation |
| 79 | * - @subpage howtoDataPrinters |
| 80 | * |
| 81 | * \note API for this group of functions is described in the [Data Instances module](@ref datatree). |
| 82 | * |
| 83 | * Functions List (not assigned to above subsections) |
| 84 | * -------------------------------------------------- |
| 85 | * - ::lyd_child() |
| 86 | * - ::lyd_child_no_keys() |
| 87 | * - ::lyd_parent() |
| 88 | * - ::lyd_owner_module() |
| 89 | * - ::lyd_find_xpath() |
| 90 | * - ::lyd_find_sibling_val() |
| 91 | * - ::lyd_find_sibling_first() |
| 92 | * - ::lyd_find_meta() |
| 93 | * |
| 94 | * - ::lyd_path() |
| 95 | * - ::lyd_target() |
| 96 | * |
| 97 | * - ::lyd_lyb_data_length() |
| 98 | */ |
| 99 | |
| 100 | /** |
| 101 | * @page howtoDataManipulation Manipulating Data |
| 102 | * |
| 103 | * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from |
| 104 | * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you |
| 105 | * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly |
| 106 | * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore, |
| 107 | * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure |
| 108 | * that the changed data tree is valid. |
| 109 | * |
| 110 | * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and |
| 111 | * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the |
| 112 | * nodes order from the YANG schema. So the node is not inserted to the end or beginning of the siblings list, but after the |
| 113 | * existing instance of the closest preceding sibling node from the schema. In case the node is opaq (it is not connected |
| 114 | * with any schema node), it is placed to the end of the sibling node in the order they are inserted in. The only situation |
| 115 | * when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list instances. In such |
| 116 | * a case the ::lyd_insert_after() or ::lyd_insert_before() can be used. |
| 117 | * |
| 118 | * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on |
| 119 | * the node name and/or its parent (::lyd_new_inner(), ::lyd_new_term(), ::lyd_new_any(), ::lyd_new_list(), ::lyd_new_list2() |
| 120 | * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path(), |
| 121 | * ::lyd_new_path2() and ::lyd_new_path_any()). The latter enables to create a whole path of nodes, requires less information |
| 122 | * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using |
| 123 | * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single(). |
| 124 | * |
| 125 | * The [metadata](@ref howtoPluginsExtensionsMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta() |
| 126 | * and ::lyd_new_attr(). |
| 127 | * |
| 128 | * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value |
| 129 | * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value |
| 130 | * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node |
| 131 | * (::lyd_value_validate()). |
| 132 | * |
| 133 | * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions. |
| 134 | * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when |
| 135 | * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more |
| 136 | * powerful insert. |
| 137 | * |
| 138 | * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose, |
| 139 | * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one |
| 140 | * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple |
| 141 | * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and |
| 142 | * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(), |
| 143 | * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used. |
| 144 | * |
| 145 | * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using |
| 146 | * ::lyd_free_all() (or other \b lyd_free_*() functions). |
| 147 | * |
| 148 | * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the |
| 149 | * same context. |
| 150 | * |
| 151 | * Modifying the single data tree in multiple threads is not safe. |
| 152 | * |
| 153 | * Functions List |
| 154 | * -------------- |
| 155 | * - ::lyd_new_inner() |
| 156 | * - ::lyd_new_term() |
| 157 | * - ::lyd_new_list() |
| 158 | * - ::lyd_new_list2() |
| 159 | * - ::lyd_new_any() |
| 160 | * - ::lyd_new_opaq() |
| 161 | * - ::lyd_new_attr() |
| 162 | * - ::lyd_new_meta() |
| 163 | * - ::lyd_new_path() |
| 164 | * - ::lyd_new_path2() |
| 165 | * - ::lyd_new_path_any() |
| 166 | * |
| 167 | * - ::lyd_dup_single() |
| 168 | * - ::lyd_dup_siblings() |
| 169 | * - ::lyd_dup_meta_single() |
| 170 | * |
| 171 | * - ::lyd_insert_child() |
| 172 | * - ::lyd_insert_sibling() |
| 173 | * - ::lyd_insert_after() |
| 174 | * - ::lyd_insert_before() |
| 175 | * |
| 176 | * - ::lyd_value_compare() |
| 177 | * - ::lyd_value_validate() |
| 178 | * |
| 179 | * - ::lyd_change_term() |
| 180 | * - ::lyd_change_meta() |
| 181 | * |
| 182 | * - ::lyd_compare_single() |
| 183 | * - ::lyd_compare_siblings() |
| 184 | * - ::lyd_compare_meta() |
| 185 | * - ::lyd_diff_tree() |
| 186 | * - ::lyd_diff_siblings() |
| 187 | * - ::lyd_diff_apply_all() |
| 188 | * - ::lyd_diff_apply_module() |
| 189 | * - ::lyd_diff_reverse_all() |
| 190 | * - ::lyd_diff_merge_all() |
| 191 | * - ::lyd_diff_merge_module() |
| 192 | * - ::lyd_diff_merge_tree() |
| 193 | * |
| 194 | * - ::lyd_merge_tree() |
| 195 | * - ::lyd_merge_siblings() |
| 196 | * |
| 197 | * - ::lyd_unlink_tree() |
| 198 | * |
| 199 | * - ::lyd_free_all() |
| 200 | * - ::lyd_free_siblings() |
| 201 | * - ::lyd_free_tree() |
| 202 | * - ::lyd_free_meta_single() |
| 203 | * - ::lyd_free_meta_siblings() |
| 204 | * - ::lyd_free_attr_single() |
| 205 | * - ::lyd_free_attr_siblings() |
| 206 | * |
| 207 | * - ::lyd_any_copy_value() |
| 208 | */ |
| 209 | |
| 210 | /** |
| 211 | * @page howtoDataWD Default Values |
| 212 | * |
| 213 | * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243). |
| 214 | * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to |
| 215 | * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the |
| 216 | * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata |
| 217 | * providing the information about the default values cannot be used. It means that when parsing data, the default nodes |
| 218 | * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected |
| 219 | * nodes are printed without the ietf-netconf-with-defaults metadata. |
| 220 | * |
| 221 | * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them |
| 222 | * via @ref dataprinterflags when printing data trees. |
| 223 | * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default |
| 224 | * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option. |
| 225 | * This is the default with-defaults mode of the printer. The data nodes do not contain any additional |
| 226 | * metadata information. |
| 227 | * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option. |
| 228 | * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or |
| 229 | * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by |
| 230 | * ::LYD_PRINT_WD_ALL option. |
| 231 | * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value |
| 232 | * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode. |
| 233 | * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes |
| 234 | * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option. |
| 235 | * |
| 236 | * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation). |
| 237 | * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding |
| 238 | * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the |
| 239 | * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the |
| 240 | * appropriate metadata. |
| 241 | * |
| 242 | * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes |
| 243 | * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the |
| 244 | * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions. |
| 245 | * |
| 246 | * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member |
| 247 | * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container |
| 248 | * holds only a default node(s) or it is implicitly added empty container (according to YANG 1.1 spec, all such containers are part of |
| 249 | * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added |
| 250 | * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option. |
| 251 | * |
| 252 | * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can |
| 253 | * use ::lyd_is_default() function. |
| 254 | * |
| 255 | * Functions List |
| 256 | * -------------- |
| 257 | * - ::lyd_is_default() |
| 258 | * - ::lyd_new_implicit_all() |
| 259 | * - ::lyd_new_implicit_module() |
| 260 | * - ::lyd_new_implicit_tree() |
| 261 | */ |
| 262 | |
| 263 | /** |
Radek Krejci | 2ff0d57 | 2020-05-21 15:27:28 +0200 | [diff] [blame] | 264 | * @ingroup trees |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 265 | * @defgroup datatree Data Tree |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 266 | * @{ |
| 267 | * |
| 268 | * Data structures and functions to manipulate and access instance data tree. |
| 269 | */ |
| 270 | |
Michal Vasko | 64246d8 | 2020-08-19 12:35:00 +0200 | [diff] [blame] | 271 | /* *INDENT-OFF* */ |
| 272 | |
Michal Vasko | a276cd9 | 2020-08-10 15:10:08 +0200 | [diff] [blame] | 273 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 274 | * @brief Macro to iterate via all elements in a data tree. This is the opening part |
| 275 | * to the #LYD_TREE_DFS_END - they always have to be used together. |
| 276 | * |
| 277 | * The function follows deep-first search algorithm: |
| 278 | * <pre> |
| 279 | * 1 |
| 280 | * / \ |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 281 | * 2 4 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 282 | * / / \ |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 283 | * 3 5 6 |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 284 | * </pre> |
| 285 | * |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 286 | * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 287 | * START can be any of the lyd_node* types, ELEM variable must be a pointer to |
| 288 | * the generic struct lyd_node. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 289 | * |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 290 | * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue |
| 291 | * variable to non-zero value. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 292 | * |
| 293 | * Use with opening curly bracket '{' after the macro. |
| 294 | * |
| 295 | * @param START Pointer to the starting element processed first. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 296 | * @param ELEM Iterator intended for use in the block. |
| 297 | */ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 298 | #define LYD_TREE_DFS_BEGIN(START, ELEM) \ |
Radek Krejci | 857189e | 2020-09-01 13:26:36 +0200 | [diff] [blame] | 299 | { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 300 | for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 301 | (ELEM); \ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 302 | (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0) |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 303 | |
| 304 | /** |
| 305 | * @brief Macro to iterate via all elements in a tree. This is the closing part |
| 306 | * to the #LYD_TREE_DFS_BEGIN - they always have to be used together. |
| 307 | * |
| 308 | * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 309 | * START can be any of the lyd_node* types, ELEM variable must be a pointer |
| 310 | * to the generic struct lyd_node. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 311 | * |
| 312 | * Use with closing curly bracket '}' after the macro. |
| 313 | * |
| 314 | * @param START Pointer to the starting element processed first. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 315 | * @param ELEM Iterator intended for use in the block. |
| 316 | */ |
| 317 | |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 318 | #define LYD_TREE_DFS_END(START, ELEM) \ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 319 | /* select element for the next run - children first */ \ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 320 | if (LYD_TREE_DFS_continue) { \ |
| 321 | (LYD_TREE_DFS_next) = NULL; \ |
| 322 | } else { \ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 323 | (LYD_TREE_DFS_next) = lyd_child(ELEM); \ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 324 | }\ |
| 325 | if (!(LYD_TREE_DFS_next)) { \ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 326 | /* no children */ \ |
| 327 | if ((ELEM) == (struct lyd_node*)(START)) { \ |
| 328 | /* we are done, (START) has no children */ \ |
| 329 | break; \ |
| 330 | } \ |
| 331 | /* try siblings */ \ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 332 | (LYD_TREE_DFS_next) = (ELEM)->next; \ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 333 | } \ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 334 | while (!(LYD_TREE_DFS_next)) { \ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 335 | /* parent is already processed, go to its sibling */ \ |
| 336 | (ELEM) = (struct lyd_node*)(ELEM)->parent; \ |
| 337 | /* no siblings, go back through parents */ \ |
| 338 | if ((ELEM)->parent == (START)->parent) { \ |
| 339 | /* we are done, no next element to process */ \ |
| 340 | break; \ |
| 341 | } \ |
Michal Vasko | 56daf73 | 2020-08-10 10:57:18 +0200 | [diff] [blame] | 342 | (LYD_TREE_DFS_next) = (ELEM)->next; \ |
| 343 | } } \ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 344 | |
Michal Vasko | 64246d8 | 2020-08-19 12:35:00 +0200 | [diff] [blame] | 345 | /* *INDENT-ON* */ |
| 346 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 347 | /** |
Michal Vasko | 03ff5a7 | 2019-09-11 13:49:33 +0200 | [diff] [blame] | 348 | * @brief Macro to get context from a data tree node. |
| 349 | */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 350 | #define LYD_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] | 351 | |
| 352 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 353 | * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and |
| 354 | * [printer](@ref howtoDataPrinters) functions. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 355 | */ |
| 356 | typedef enum { |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 357 | LYD_UNKNOWN = 0, /**< unknown data format, invalid value */ |
| 358 | LYD_XML, /**< XML instance data format */ |
| 359 | LYD_JSON, /**< JSON instance data format */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 360 | LYD_LYB /**< LYB instance data format */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 361 | } LYD_FORMAT; |
| 362 | |
| 363 | /** |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 364 | * @brief All kinds of supported prefix mappings to modules. |
| 365 | */ |
| 366 | typedef enum { |
| 367 | LY_PREF_SCHEMA, /**< value prefixes map to YANG import prefixes */ |
Michal Vasko | c979558 | 2020-10-08 16:22:17 +0200 | [diff] [blame] | 368 | LY_PREF_SCHEMA_RESOLVED, /**< value prefixes map to module structures directly */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 369 | LY_PREF_XML, /**< value prefixes map to XML namespace prefixes */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 370 | LY_PREF_JSON /**< value prefixes map to module names */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 371 | } LY_PREFIX_FORMAT; |
| 372 | |
| 373 | /** |
Radek Krejci | 59583bb | 2019-09-11 12:57:55 +0200 | [diff] [blame] | 374 | * @brief List of possible value types stored in ::lyd_node_any. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 375 | */ |
| 376 | typedef enum { |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 377 | 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] | 378 | is directly connected into the anydata node without duplication, caller is supposed to not manipulate |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 379 | with the data after a successful call (including calling ::lyd_free_all() on the provided data) */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 380 | 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] | 381 | as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata |
| 382 | is printed in XML format. */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 383 | LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */ |
| 384 | LYD_ANYDATA_JSON, /**< Value is a string containing the data modeled by YANG and encoded as I-JSON. */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 385 | LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 386 | } LYD_ANYDATA_VALUETYPE; |
| 387 | |
| 388 | /** @} */ |
| 389 | |
| 390 | /** |
| 391 | * @brief YANG data representation |
| 392 | */ |
| 393 | struct lyd_value { |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 394 | const char *canonical; /**< Canonical string representation of the value in the dictionary. It is never |
| 395 | NULL and in case of no canonical value, its JSON representation is used instead. */ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 396 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 397 | union { |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 398 | int8_t boolean; /**< 0 as false, 1 as true */ |
| 399 | int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */ |
Radek Krejci | 8dc4f2d | 2019-07-16 12:24:00 +0200 | [diff] [blame] | 400 | int8_t int8; /**< 8-bit signed integer */ |
| 401 | int16_t int16; /**< 16-bit signed integer */ |
| 402 | int32_t int32; /**< 32-bit signed integer */ |
| 403 | int64_t int64; /**< 64-bit signed integer */ |
| 404 | uint8_t uint8; /**< 8-bit unsigned integer */ |
Michal Vasko | 7c8439f | 2020-08-05 13:25:19 +0200 | [diff] [blame] | 405 | uint16_t uint16; /**< 16-bit unsigned integer */ |
| 406 | uint32_t uint32; /**< 32-bit unsigned integer */ |
| 407 | uint64_t uint64; /**< 64-bit unsigned integer */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 408 | 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] | 409 | 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] | 410 | struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */ |
Michal Vasko | c8a230d | 2020-08-14 12:17:10 +0200 | [diff] [blame] | 411 | struct ly_path *target; /**< Instance-identifier target path. */ |
| 412 | struct lyd_value_subvalue *subvalue; /** Union value with some metadata. */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 413 | void *ptr; /**< generic data type structure used to store the data */ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 414 | }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype |
| 415 | plugin's callbacks to work with the data.*/ |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 416 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 417 | const 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 | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 418 | in the schema node of the data node since the type's store plugin can use other types/plugins for |
| 419 | storing data. Speaking about built-in types, this is the case of leafref which stores data as its |
| 420 | target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data |
| 421 | stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type. |
| 422 | In general, this type is used to get free callback for this lyd_value structure, so it must reflect |
| 423 | the type used to store data directly in the same lyd_value instance. */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 424 | }; |
| 425 | |
| 426 | /** |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 427 | * @brief Macro for getting the string canonical value from a term node. |
| 428 | * |
| 429 | * @param[in] node Term node with the value. |
| 430 | * @return Canonical value. |
| 431 | */ |
Michal Vasko | b7be7a8 | 2020-08-20 09:09:04 +0200 | [diff] [blame] | 432 | #define LYD_CANON_VALUE(node) ((struct lyd_node_term *)(node))->value.canonical |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 433 | |
| 434 | /** |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 435 | * @brief Special lyd_value structure for union. |
| 436 | * |
| 437 | * Represents data with multiple types (union). Original value is stored in the main lyd_value:canonical_cache while |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 438 | * the ::lyd_value_subvalue.value contains representation according to one of the union's types. |
| 439 | * The ::lyd_value_subvalue.prefix_data provides (possible) mappings from prefixes in the original value to YANG modules. |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 440 | * These prefixes are necessary to parse original value to the union's subtypes. |
| 441 | */ |
| 442 | struct lyd_value_subvalue { |
| 443 | struct lyd_value value; /**< representation of the value according to the selected union's subtype |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 444 | (stored as ::lyd_value.realtype here, in subvalue structure */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 445 | const char *original; /**< Original value in the dictionary. */ |
| 446 | LY_PREFIX_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide |
| 447 | whether a value is valid for the specific format or not on later validations |
| 448 | (instance-identifier in XML looks different than in JSON). */ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 449 | void *prefix_data; /**< Format-specific data for prefix resolution (see ::ly_type_store_resolve_prefix()) */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 450 | uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */ |
| 451 | const struct lysc_node *ctx_node; /**< Context schema node. */ |
| 452 | }; |
| 453 | |
| 454 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 455 | * @brief Metadata structure. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 456 | * |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 457 | * 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] | 458 | * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations) |
| 459 | * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON, |
| 460 | * they are represented as JSON elements starting with the '@' character (for more information, see the |
| 461 | * YANG metadata RFC. |
| 462 | * |
| 463 | */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 464 | struct lyd_meta { |
| 465 | struct lyd_node *parent; /**< data node where the metadata is placed */ |
| 466 | struct lyd_meta *next; /**< pointer to the next metadata of the same element */ |
| 467 | struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */ |
| 468 | const char *name; /**< metadata name */ |
| 469 | struct lyd_value value; /**< metadata value representation */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 470 | }; |
| 471 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 472 | /** |
| 473 | * @brief Generic prefix and namespace mapping, meaning depends on the format. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 474 | * |
| 475 | * The union is used as a reference to the data's module and according to the format, it can be used as a key for |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 476 | * ::ly_ctx_get_module_implemented_ns() or ::ly_ctx_get_module_implemented(). While the module reference is always present, |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 477 | * the id member can be omitted in case it is not present in the source data as a reference to the default namespace. |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 478 | */ |
| 479 | struct ly_prefix { |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 480 | const char *id; /**< identifier used in the qualified name of the item to reference data node namespace */ |
| 481 | union { |
| 482 | const char *module_ns; /**< namespace of the module where the data are supposed to belongs to, used for LYD_XML format. */ |
| 483 | const char *module_name; /**< name of the module where the data are supposed to belongs to, used for LYD_JSON format. */ |
| 484 | }; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 485 | }; |
| 486 | |
| 487 | /** |
| 488 | * @brief Generic attribute structure. |
| 489 | */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 490 | struct lyd_attr { |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 491 | struct lyd_node_opaq *parent; /**< data node where the attribute is placed */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 492 | struct lyd_attr *next; |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 493 | struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */ |
| 494 | const char *name; |
| 495 | const char *value; |
| 496 | |
Radek Krejci | 5536d28 | 2020-08-04 23:27:44 +0200 | [diff] [blame] | 497 | LYD_FORMAT format; /**< format of the prefixes, only LYD_XML and LYD_JSON values can appear at this place */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 498 | uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 499 | struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */ |
| 500 | |
| 501 | }; |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 502 | |
Michal Vasko | 1bf0939 | 2020-03-27 12:38:10 +0100 | [diff] [blame] | 503 | #define LYD_NODE_INNER (LYS_CONTAINER|LYS_LIST|LYS_RPC|LYS_ACTION|LYS_NOTIF) /**< Schema nodetype mask for lyd_node_inner */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 504 | #define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */ |
| 505 | #define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */ |
| 506 | |
| 507 | /** |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 508 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 509 | * @defgroup dnodeflags Data node flags |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 510 | * @{ |
| 511 | * |
| 512 | * Various flags of data nodes. |
| 513 | * |
| 514 | * 1 - container 5 - anydata/anyxml |
| 515 | * 2 - list 6 - rpc/action |
| 516 | * 3 - leaf 7 - notification |
| 517 | * 4 - leaflist |
| 518 | * |
| 519 | * bit name 1 2 3 4 5 6 7 |
| 520 | * ---------------------+-+-+-+-+-+-+-+ |
| 521 | * 1 LYD_DEFAULT |x| |x|x| | | | |
| 522 | * +-+-+-+-+-+-+-+ |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 523 | * 2 LYD_WHEN_TRUE |x|x|x|x|x| | | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 524 | * +-+-+-+-+-+-+-+ |
| 525 | * 3 LYD_NEW |x|x|x|x|x|x|x| |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 526 | * ---------------------+-+-+-+-+-+-+-+ |
| 527 | * |
| 528 | */ |
| 529 | |
Michal Vasko | 5c4e589 | 2019-11-14 12:31:38 +0100 | [diff] [blame] | 530 | #define LYD_DEFAULT 0x01 /**< default (implicit) node */ |
| 531 | #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] | 532 | #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] | 533 | |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 534 | /** @} */ |
| 535 | |
| 536 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 537 | * @brief Generic structure for a data node. |
| 538 | */ |
| 539 | struct lyd_node { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 540 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 541 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 542 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 543 | nodes are equal due to possible collisions. */ |
| 544 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Michal Vasko | ecd62de | 2019-11-13 12:35:11 +0100 | [diff] [blame] | 545 | const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 546 | ::lysc_node but ::lysc_action or ::lysc_notif as well */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 547 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 548 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 549 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 550 | never NULL. If there is no sibling node, pointer points to the node |
| 551 | itself. In case of the first node, this pointer points to the last |
| 552 | node in the list. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 553 | 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] | 554 | |
| 555 | #ifdef LY_ENABLED_LYD_PRIV |
| 556 | void *priv; /**< private user data, not used by libyang */ |
| 557 | #endif |
| 558 | }; |
| 559 | |
| 560 | /** |
Radek Krejci | f3b6fec | 2019-07-24 15:53:11 +0200 | [diff] [blame] | 561 | * @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] | 562 | */ |
| 563 | struct lyd_node_inner { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 564 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 565 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 566 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 567 | nodes are equal due to possible collisions. */ |
| 568 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 569 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 570 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 571 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 572 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 573 | never NULL. If there is no sibling node, pointer points to the node |
| 574 | itself. In case of the first node, this pointer points to the last |
| 575 | node in the list. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 576 | 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] | 577 | |
| 578 | #ifdef LY_ENABLED_LYD_PRIV |
| 579 | void *priv; /**< private user data, not used by libyang */ |
| 580 | #endif |
| 581 | |
| 582 | struct lyd_node *child; /**< pointer to the first child node. */ |
| 583 | struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 584 | #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] | 585 | }; |
| 586 | |
| 587 | /** |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 588 | * @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] | 589 | */ |
| 590 | struct lyd_node_term { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 591 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 592 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 593 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 594 | nodes are equal due to possible collisions. */ |
| 595 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 596 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 597 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 598 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 599 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 600 | never NULL. If there is no sibling node, pointer points to the node |
| 601 | itself. In case of the first node, this pointer points to the last |
| 602 | node in the list. */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 603 | 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] | 604 | |
| 605 | #ifdef LY_ENABLED_LYD_PRIV |
| 606 | void *priv; /**< private user data, not used by libyang */ |
| 607 | #endif |
| 608 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 609 | struct lyd_value value; /**< node's value representation */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 610 | }; |
| 611 | |
| 612 | /** |
| 613 | * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls. |
| 614 | */ |
| 615 | struct lyd_node_any { |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 616 | uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| 617 | hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| 618 | used to get know that nodes are not equal, it cannot be used to decide that the |
| 619 | nodes are equal due to possible collisions. */ |
| 620 | uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 621 | const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| 622 | struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| 623 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 624 | struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| 625 | never NULL. If there is no sibling node, pointer points to the node |
| 626 | itself. In case of the first node, this pointer points to the last |
| 627 | node in the list. */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 628 | 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] | 629 | |
| 630 | #ifdef LY_ENABLED_LYD_PRIV |
| 631 | void *priv; /**< private user data, not used by libyang */ |
| 632 | #endif |
| 633 | |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 634 | union lyd_any_value { |
Radek Krejci | ee4cab2 | 2019-07-17 17:07:47 +0200 | [diff] [blame] | 635 | struct lyd_node *tree; /**< data tree */ |
| 636 | const char *str; /**< Generic string data */ |
| 637 | const char *xml; /**< Serialized XML data */ |
| 638 | const char *json; /**< I-JSON encoded string */ |
| 639 | char *mem; /**< LYD_ANYDATA_LYB memory chunk */ |
| 640 | } value; /**< pointer to the stored value representation of the anydata/anyxml node */ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 641 | 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] | 642 | }; |
| 643 | |
| 644 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 645 | * @ingroup datatree |
| 646 | * @defgroup lydvalhints Value format hints. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 647 | * @{ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 648 | * |
| 649 | * Hints for the type of the data value. |
| 650 | * |
| 651 | * Any information about value types encoded in the format is hinted by these values. |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 652 | */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 653 | #define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */ |
| 654 | #define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */ |
| 655 | #define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */ |
| 656 | #define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */ |
| 657 | #define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */ |
| 658 | #define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */ |
| 659 | #define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */ |
| 660 | /** |
| 661 | * @} lydvalhints |
| 662 | */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 663 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 664 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 665 | * @ingroup datatree |
| 666 | * @defgroup lydnodehints Node type format hints |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 667 | * @{ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 668 | * |
| 669 | * Hints for the type of the data node. |
| 670 | * |
| 671 | * Any information about node types encoded in the format is hinted by these values. |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 672 | */ |
| 673 | #define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */ |
| 674 | #define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */ |
| 675 | #define LYD_NODEHINT_ENVELOPE 0x8000 /**< only found in opaque node hints; node is a special protocol-dependent |
| 676 | RPC/Action/Notification envelope */ |
| 677 | /** |
| 678 | * @} lydnodehints |
| 679 | */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 680 | |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 681 | /** |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 682 | * @ingroup datatree |
| 683 | * @defgroup lydhints Value and node type format hints |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 684 | * @{ |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 685 | * |
| 686 | * Hints for the types of data node and its value. |
| 687 | * |
| 688 | * Any information about value and node types encoded in the format is hinted by these values. |
| 689 | * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints). |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 690 | */ |
| 691 | #define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when |
| 692 | there is no encoding or it does not provide any additional information about |
| 693 | a node/value type); do not combine with specific [value hints](@ref lydvalhints) |
| 694 | or [node hints](@ref lydnodehints). */ |
| 695 | #define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when |
| 696 | there is no encoding or it does not provide any additional information about |
| 697 | a node/value type); do not combine with specific [value hints](@ref lydvalhints) |
| 698 | or [node hints](@ref lydnodehints). */ |
| 699 | /** |
| 700 | * @} lydhints |
| 701 | */ |
Radek Krejci | 1798aae | 2020-07-14 13:26:06 +0200 | [diff] [blame] | 702 | |
| 703 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 704 | * @brief Data node structure for unparsed (opaque) nodes. |
| 705 | */ |
| 706 | struct lyd_node_opaq { |
| 707 | uint32_t hash; /**< always 0 */ |
| 708 | uint32_t flags; /**< always 0 */ |
| 709 | const struct lysc_node *schema; /**< always NULL */ |
| 710 | struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */ |
| 711 | struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| 712 | struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 713 | struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 714 | |
| 715 | #ifdef LY_ENABLED_LYD_PRIV |
| 716 | void *priv; /**< private user data, not used by libyang */ |
| 717 | #endif |
| 718 | |
| 719 | struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */ |
| 720 | const char *name; |
| 721 | LYD_FORMAT format; |
| 722 | struct ly_prefix prefix; /**< name prefix */ |
| 723 | struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */ |
| 724 | const char *value; /**< original value */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 725 | uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 726 | const struct ly_ctx *ctx; /**< libyang context */ |
| 727 | }; |
| 728 | |
| 729 | /** |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 730 | * @brief Get the generic parent pointer of a data node. |
| 731 | * |
| 732 | * @param[in] node Node whose parent pointer to get. |
| 733 | * @return Pointer to the parent node of the @p node. |
| 734 | * @return NULL in case of the top-level node or if the @p node is NULL itself. |
Michal Vasko | 5bfd4be | 2020-06-23 13:26:19 +0200 | [diff] [blame] | 735 | */ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 736 | struct lyd_node *lyd_parent(const struct lyd_node *node); |
Michal Vasko | 5bfd4be | 2020-06-23 13:26:19 +0200 | [diff] [blame] | 737 | |
| 738 | /** |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 739 | * @brief Get the child pointer of a generic data node. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 740 | * |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 741 | * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq). |
| 742 | * |
| 743 | * If you need to skip key children, use ::lyd_child_no_keys(). |
| 744 | * |
| 745 | * @param[in] node Node to use. |
| 746 | * @return Pointer to the first child node (if any) of the @p node. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 747 | */ |
Radek Krejci | a1c1e54 | 2020-09-29 16:06:52 +0200 | [diff] [blame] | 748 | struct lyd_node *lyd_child(const struct lyd_node *node); |
| 749 | |
| 750 | /** |
| 751 | * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST. |
| 752 | * |
| 753 | * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq). |
| 754 | * |
| 755 | * If you need to take key children into account, use ::lyd_child(). |
| 756 | * |
| 757 | * @param[in] node Node to use. |
| 758 | * @return Pointer to the first child node (if any) of the @p node. |
| 759 | */ |
| 760 | struct lyd_node *lyd_child_no_keys(const struct lyd_node *node); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 761 | |
| 762 | /** |
Michal Vasko | c193ce9 | 2020-03-06 11:04:48 +0100 | [diff] [blame] | 763 | * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally, |
| 764 | * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined. |
| 765 | * |
| 766 | * @param[in] node Data node to examine. |
| 767 | * @return Module owner of the node. |
| 768 | */ |
| 769 | const struct lys_module *lyd_owner_module(const struct lyd_node *node); |
| 770 | |
| 771 | /** |
Radek Krejci | 1961125 | 2020-10-04 13:54:53 +0200 | [diff] [blame] | 772 | * @brief Check whether a node value equals to its default one. |
| 773 | * |
| 774 | * @param[in] node Term node to test. |
| 775 | * @return false (no, it is not a default node) or true (yes, it is default) |
| 776 | */ |
| 777 | ly_bool lyd_is_default(const struct lyd_node *node); |
| 778 | |
| 779 | /** |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 780 | * @brief Learn the length of LYB data. |
| 781 | * |
| 782 | * @param[in] data LYB data to examine. |
| 783 | * @return Length of the LYB data chunk, |
| 784 | * @return -1 on error. |
| 785 | */ |
| 786 | int lyd_lyb_data_length(const char *data); |
| 787 | |
| 788 | /** |
Michal Vasko | c000427 | 2020-08-06 08:32:34 +0200 | [diff] [blame] | 789 | * @brief Copy anydata value from one node to another. Target value is freed first. |
| 790 | * |
| 791 | * @param[in,out] trg Target node. |
| 792 | * @param[in] value Source value, may be NULL when the target value is only freed. |
| 793 | * @param[in] value_type Source value type. |
| 794 | * @return LY_ERR value. |
| 795 | */ |
| 796 | LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type); |
| 797 | |
| 798 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 799 | * @brief Create a new inner node in the data tree. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 800 | * |
| 801 | * @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] | 802 | * @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] | 803 | * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 804 | * @param[out] node Optional created node. |
| 805 | * @return LY_ERR value. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 806 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 807 | LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, struct lyd_node **node); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 808 | |
| 809 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 810 | * @brief Create a new list node in the data tree. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 811 | * |
| 812 | * @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] | 813 | * @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] | 814 | * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 815 | * @param[out] node Optional created node. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 816 | * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 817 | * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for |
| 818 | * key-less lists. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 819 | * @return LY_ERR value. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 820 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 821 | LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, struct lyd_node **node, ...); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 822 | |
| 823 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 824 | * @brief Create a new list node in the data tree. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 825 | * |
| 826 | * @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] | 827 | * @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] | 828 | * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
| 829 | * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered. |
| 830 | * In case of an instance-identifier or identityref value, the JSON format is expected (module names instead of prefixes). |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 831 | * Use NULL or string of length 0 in case of key-less list. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 832 | * @param[out] node Optional created node. |
| 833 | * @return LY_ERR value. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 834 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 835 | LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 836 | struct lyd_node **node); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 837 | |
| 838 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 839 | * @brief Create a new term node in the data tree. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 840 | * |
| 841 | * @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] | 842 | * @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] | 843 | * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST. |
| 844 | * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref |
| 845 | * value, the JSON format is expected (module names instead of prefixes). |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 846 | * @param[out] node Optional created node. |
| 847 | * @return LY_ERR value. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 848 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 849 | LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 850 | struct lyd_node **node); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 851 | |
| 852 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 853 | * @brief Create a new any node in the data tree. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 854 | * |
| 855 | * @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] | 856 | * @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] | 857 | * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML. |
| 858 | * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type. |
| 859 | * @param[in] value_type Type of the provided value in @p value. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 860 | * @param[out] node Optional created node. |
| 861 | * @return LY_ERR value. |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 862 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 863 | LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, const void *value, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 864 | LYD_ANYDATA_VALUETYPE value_type, struct lyd_node **node); |
Michal Vasko | 013a818 | 2020-03-03 10:46:53 +0100 | [diff] [blame] | 865 | |
| 866 | /** |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 867 | * @brief Create new metadata for a data node. |
| 868 | * |
| 869 | * @param[in] parent Parent node for the metadata being created. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 870 | * @param[in] module Module of the metadata being created. If NULL, @p name must include module name as the prefix. |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 871 | * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix. |
| 872 | * If the prefix is specified it is always used but if not specified, @p module must be set. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 873 | * @param[in] val_str String form of the value of the metadata. In case of an instance-identifier or identityref |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 874 | * value, the JSON format is expected (module names instead of prefixes). |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 875 | * @param[out] meta Optional created metadata. |
| 876 | * @return LY_ERR value. |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 877 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 878 | LY_ERR lyd_new_meta(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 879 | struct lyd_meta **meta); |
Michal Vasko | d86997b | 2020-05-26 15:19:54 +0200 | [diff] [blame] | 880 | |
| 881 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 882 | * @brief Create a new opaque node in the data tree. |
| 883 | * |
| 884 | * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element. |
| 885 | * @param[in] ctx libyang context. If NULL, @p parent context will be used. |
| 886 | * @param[in] name Node name. |
| 887 | * @param[in] value Node value, may be NULL. |
| 888 | * @param[in] module_name Node module name. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 889 | * @param[out] node Optional created node. |
| 890 | * @return LY_ERR value. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 891 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 892 | LY_ERR lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 893 | const char *module_name, struct lyd_node **node); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 894 | |
| 895 | /** |
| 896 | * @brief Create new attribute for an opaque data node. |
| 897 | * |
| 898 | * @param[in] parent Parent opaque node for the attribute being created. |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 899 | * @param[in] module_name Name of the module of the attribute being created. There may be none. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 900 | * @param[in] name Attribute name. It can include the module name as the prefix. |
| 901 | * @param[in] val_str String value of the attribute. Is stored directly. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 902 | * @param[out] attr Optional created attribute. |
| 903 | * @return LY_ERR value. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 904 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 905 | LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 906 | struct lyd_attr **attr); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 907 | |
| 908 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 909 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 910 | * @defgroup pathoptions Data path creation options |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 911 | * |
| 912 | * Various options to change lyd_new_path*() behavior. |
| 913 | * |
| 914 | * Default behavior: |
| 915 | * - if the target node already exists (and is not default), an error is returned. |
| 916 | * - the whole path to the target node is created (with any missing parents) if necessary. |
| 917 | * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally. |
| 918 | * @{ |
| 919 | */ |
| 920 | |
Radek Krejci | 092e33c | 2020-10-12 15:33:10 +0200 | [diff] [blame] | 921 | #define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its |
| 922 | default flag is changed, it is returned. If the target node exists and is not |
| 923 | a leaf or generally no change occurs in the @p parent tree, NULL is returned and |
| 924 | no error set. */ |
| 925 | #define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only |
| 926 | output ones. */ |
| 927 | #define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__ |
| 928 | in the path is not uniquely defined ((leaf-)list without a predicate) or has an |
| 929 | invalid value (leaf/leaf-list), it is created as opaque. */ |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 930 | |
| 931 | /** @} pathoptions */ |
| 932 | |
| 933 | /** |
| 934 | * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes, |
| 935 | * for those use ::lyd_new_path_any. |
| 936 | * |
| 937 | * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used |
| 938 | * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path |
| 939 | * and @p value is set, the predicate is preferred. |
| 940 | * |
| 941 | * @param[in] parent Data parent to add to/modify, can be NULL. |
| 942 | * @param[in] ctx libyang context, must be set if @p parent is NULL. |
| 943 | * @param[in] path Path to create (TODO ref path). |
| 944 | * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored. |
| 945 | * @param[in] options Bitmask of options, see @ref pathoptions. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 946 | * @param[out] node Optional first created node. |
| 947 | * @return LY_ERR value. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 948 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 949 | LY_ERR lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 950 | uint32_t options, struct lyd_node **node); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 951 | |
| 952 | /** |
| 953 | * @brief Create a new node in the data tree based on a path. All node types can be created. |
| 954 | * |
| 955 | * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used |
| 956 | * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path |
| 957 | * and @p value is set, the predicate is preferred. |
| 958 | * |
| 959 | * @param[in] parent Data parent to add to/modify, can be NULL. |
| 960 | * @param[in] ctx libyang context, must be set if @p parent is NULL. |
| 961 | * @param[in] path Path to create (TODO ref path). |
| 962 | * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored. |
| 963 | * @param[in] value_type Anyxml/anydata node @p value type. |
| 964 | * @param[in] options Bitmask of options, see @ref pathoptions. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 965 | * @param[out] node Optional first created node. |
| 966 | * @return LY_ERR value. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 967 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 968 | LY_ERR lyd_new_path_any(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 969 | LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **node); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 970 | |
| 971 | /** |
| 972 | * @brief Create a new node in the data tree based on a path. All node types can be created. |
| 973 | * |
| 974 | * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used |
| 975 | * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path |
| 976 | * and @p value is set, the predicate is preferred. |
| 977 | * |
| 978 | * @param[in] parent Data parent to add to/modify, can be NULL. |
| 979 | * @param[in] ctx libyang context, must be set if @p parent is NULL. |
| 980 | * @param[in] path Path to create (TODO ref path). |
| 981 | * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored. |
| 982 | * @param[in] value_type Anyxml/anydata node @p value type. |
| 983 | * @param[in] options Bitmask of options, see @ref pathoptions. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 984 | * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node. |
| 985 | * @param[out] new_node Optional last node created. |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 986 | * @return LY_ERR value. |
| 987 | */ |
| 988 | LY_ERR lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value, |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 989 | LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, struct lyd_node **new_node); |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 990 | |
| 991 | /** |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 992 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 993 | * @defgroup implicitoptions Implicit node creation options |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 994 | * |
| 995 | * Various options to change lyd_new_implicit*() behavior. |
| 996 | * |
| 997 | * Default behavior: |
| 998 | * - both configuration and state missing implicit nodes are added. |
| 999 | * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists). |
| 1000 | * @{ |
| 1001 | */ |
| 1002 | |
Michal Vasko | 44b19a1 | 2020-08-07 09:21:30 +0200 | [diff] [blame] | 1003 | #define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */ |
| 1004 | #define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */ |
| 1005 | #define LYD_IMPLICIT_NO_DEFAULTS 0x04 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1006 | containers. */ |
| 1007 | |
| 1008 | /** @} implicitoptions */ |
| 1009 | |
| 1010 | /** |
| 1011 | * @brief Add any missing implicit nodes into a data subtree. |
| 1012 | * |
| 1013 | * @param[in] tree Tree to add implicit nodes into. |
| 1014 | * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions. |
| 1015 | * @param[out] diff Optional diff with any created nodes. |
| 1016 | * @return LY_ERR value. |
| 1017 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1018 | LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1019 | |
| 1020 | /** |
| 1021 | * @brief Add any missing implicit nodes. |
| 1022 | * |
| 1023 | * @param[in,out] tree Tree to add implicit nodes into. |
| 1024 | * @param[in] ctx libyang context, must be set only if @p tree is an empty tree. |
| 1025 | * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions. |
| 1026 | * @param[out] diff Optional diff with any created nodes. |
| 1027 | * @return LY_ERR value. |
| 1028 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1029 | LY_ERR lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options, struct lyd_node **diff); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1030 | |
| 1031 | /** |
| 1032 | * @brief Add any missing implicit nodes of one module. |
| 1033 | * |
| 1034 | * @param[in,out] tree Tree to add implicit nodes into. |
| 1035 | * @param[in] module Module whose implicit nodes to create. |
| 1036 | * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions. |
| 1037 | * @param[out] diff Optional diff with any created nodes. |
| 1038 | * @return LY_ERR value. |
| 1039 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1040 | LY_ERR lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1041 | struct lyd_node **diff); |
Michal Vasko | a6669ba | 2020-08-06 16:14:26 +0200 | [diff] [blame] | 1042 | |
| 1043 | /** |
Michal Vasko | 00cbf53 | 2020-06-15 13:58:47 +0200 | [diff] [blame] | 1044 | * @brief Change the value of a term (leaf or leaf-list) node. |
| 1045 | * |
| 1046 | * Node changed this way is always considered explicitly set, meaning its default flag |
| 1047 | * is always cleared. |
| 1048 | * |
| 1049 | * @param[in] term Term node to change. |
| 1050 | * @param[in] val_str New value to set, any prefixes are expected in JSON format. |
| 1051 | * @return LY_SUCCESS if value was changed, |
| 1052 | * @return LY_EEXIST if value was the same and only the default flag was cleared, |
| 1053 | * @return LY_ENOT if the values were equal and no change occured, |
| 1054 | * @return LY_ERR value on other errors. |
| 1055 | */ |
| 1056 | LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str); |
| 1057 | |
| 1058 | /** |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1059 | * @brief Change the value of a metadata instance. |
| 1060 | * |
Michal Vasko | 4158635 | 2020-07-13 13:54:25 +0200 | [diff] [blame] | 1061 | * @param[in] meta Metadata to change. |
| 1062 | * @param[in] val_str New value to set, any prefixes are expected in JSON format. |
| 1063 | * @return LY_SUCCESS if value was changed, |
| 1064 | * @return LY_ENOT if the values were equal and no change occured, |
| 1065 | * @return LY_ERR value on other errors. |
| 1066 | */ |
| 1067 | LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str); |
| 1068 | |
| 1069 | /** |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1070 | * @brief Insert a child into a parent. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1071 | * |
| 1072 | * - if the node is part of some other tree, it is automatically unlinked. |
| 1073 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 1074 | * |
| 1075 | * @param[in] parent Parent node to insert into. |
| 1076 | * @param[in] node Node to insert. |
| 1077 | * @return LY_SUCCESS on success. |
| 1078 | * @return LY_ERR error on error. |
| 1079 | */ |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1080 | LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node); |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1081 | |
| 1082 | /** |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1083 | * @brief Insert a node into siblings. |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1084 | * |
| 1085 | * - if the node is part of some other tree, it is automatically unlinked. |
| 1086 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 1087 | * |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1088 | * @param[in] sibling Siblings to insert into, can even be NULL. |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1089 | * @param[in] node Node to insert. |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1090 | * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling. |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1091 | * @return LY_SUCCESS on success. |
| 1092 | * @return LY_ERR error on error. |
| 1093 | */ |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1094 | LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first); |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 1095 | |
| 1096 | /** |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1097 | * @brief Insert a node before another node, can be used only for user-ordered nodes. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1098 | * |
| 1099 | * - if the node is part of some other tree, it is automatically unlinked. |
| 1100 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 1101 | * |
| 1102 | * @param[in] sibling Sibling node to insert before. |
| 1103 | * @param[in] node Node to insert. |
| 1104 | * @return LY_SUCCESS on success. |
| 1105 | * @return LY_ERR error on error. |
| 1106 | */ |
| 1107 | LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node); |
| 1108 | |
| 1109 | /** |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1110 | * @brief Insert a node after another node, can be used only for user-ordered nodes. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1111 | * |
| 1112 | * - if the node is part of some other tree, it is automatically unlinked. |
| 1113 | * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| 1114 | * |
| 1115 | * @param[in] sibling Sibling node to insert after. |
| 1116 | * @param[in] node Node to insert. |
| 1117 | * @return LY_SUCCESS on success. |
| 1118 | * @return LY_ERR error on error. |
| 1119 | */ |
| 1120 | LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node); |
| 1121 | |
| 1122 | /** |
| 1123 | * @brief Unlink the specified data subtree. |
| 1124 | * |
| 1125 | * @param[in] node Data tree node to be unlinked (together with all the children). |
| 1126 | */ |
| 1127 | void lyd_unlink_tree(struct lyd_node *node); |
| 1128 | |
| 1129 | /** |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 1130 | * @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] | 1131 | * |
| 1132 | * @param[in] node Any of the nodes inside the tree. |
| 1133 | */ |
| 1134 | void lyd_free_all(struct lyd_node *node); |
| 1135 | |
| 1136 | /** |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1137 | * @brief Free all the sibling nodes (preceding as well as succeeding). |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 1138 | * |
| 1139 | * @param[in] node Any of the sibling nodes to free. |
| 1140 | */ |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1141 | void lyd_free_siblings(struct lyd_node *node); |
Radek Krejci | b0849a2 | 2019-07-25 12:31:04 +0200 | [diff] [blame] | 1142 | |
| 1143 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1144 | * @brief Free (and unlink) the specified data (sub)tree. |
| 1145 | * |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1146 | * @param[in] node Root of the (sub)tree to be freed. |
| 1147 | */ |
| 1148 | void lyd_free_tree(struct lyd_node *node); |
| 1149 | |
| 1150 | /** |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1151 | * @brief Free a single metadata instance. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1152 | * |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1153 | * @param[in] meta Metadata to free. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1154 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1155 | void lyd_free_meta_single(struct lyd_meta *meta); |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 1156 | |
| 1157 | /** |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1158 | * @brief Free the metadata instance with any following instances. |
| 1159 | * |
| 1160 | * @param[in] meta Metadata to free. |
| 1161 | */ |
| 1162 | void lyd_free_meta_siblings(struct lyd_meta *meta); |
| 1163 | |
| 1164 | /** |
| 1165 | * @brief Free a single attribute. |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 1166 | * |
| 1167 | * @param[in] ctx Context where the attributes were created. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1168 | * @param[in] attr Attribute to free. |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 1169 | */ |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1170 | void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1171 | |
| 1172 | /** |
| 1173 | * @brief Free the attribute with any following attributes. |
| 1174 | * |
| 1175 | * @param[in] ctx Context where the attributes were created. |
| 1176 | * @param[in] attr First attribute to free. |
| 1177 | */ |
Radek Krejci | 011e4aa | 2020-09-04 15:22:31 +0200 | [diff] [blame] | 1178 | void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1179 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1180 | /** |
| 1181 | * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value. |
| 1182 | * |
| 1183 | * The given node is not modified in any way - it is just checked if the @p value can be set to the node. |
| 1184 | * |
| 1185 | * If there is no data node instance and you are fine with checking just the type's restrictions without the |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1186 | * data tree context (e.g. for the case of require-instance restriction), use ::lys_value_validate(). |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1187 | * |
| 1188 | * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL) |
| 1189 | * @param[in] node Data node for the @p value. |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 1190 | * @param[in] value String value to be checked, it is expected to be in JSON format. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1191 | * @param[in] value_len Length of the given @p value (mandatory). |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1192 | * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target, |
| 1193 | * instance-identifier) can be placed. NULL in case the data tree is not yet complete, |
| 1194 | * then LY_EINCOMPLETE can be returned. |
Michal Vasko | 3701af5 | 2020-08-03 14:29:38 +0200 | [diff] [blame] | 1195 | * @param[out] realtype Optional real type of the value. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1196 | * @return LY_SUCCESS on success |
| 1197 | * @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). |
| 1198 | * @return LY_ERR value if an error occurred. |
| 1199 | */ |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame] | 1200 | 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 | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1201 | const struct lyd_node *tree, const struct lysc_type **realtype); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1202 | |
| 1203 | /** |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1204 | * @brief Compare the node's value with the given string value. The string value is first validated according to |
| 1205 | * the (current) node's type. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1206 | * |
| 1207 | * @param[in] node Data node to compare. |
| 1208 | * @param[in] value String value to be compared. It does not need to be in a canonical form - as part of the process, |
Michal Vasko | f937cfe | 2020-08-03 16:07:12 +0200 | [diff] [blame] | 1209 | * it is validated and canonized if possible. But it is expected to be in JSON format. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1210 | * @param[in] value_len Length of the given @p value (mandatory). |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1211 | * @return LY_SUCCESS on success, |
| 1212 | * @return LY_ENOT if the values do not match, |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1213 | * @return LY_ERR value if an error occurred. |
| 1214 | */ |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 1215 | LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1216 | |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 1217 | /** |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 1218 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1219 | * @defgroup datacompareoptions Data compare options |
| 1220 | * @{ |
| 1221 | * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior. |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 1222 | */ |
| 1223 | #define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children |
| 1224 | (subtree, so direct as well as indirect children) are the same. By default, |
| 1225 | containers are the same in case of the same schema node and lists are the same |
| 1226 | in case of equal keys (keyless lists do the full recursion comparison all the time). */ |
| 1227 | #define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag |
| 1228 | changes this behavior and implicit (automatically created default node) and explicit |
| 1229 | (explicitly created node with the default value) default nodes are considered different. */ |
Michal Vasko | 60ea635 | 2020-06-29 13:39:39 +0200 | [diff] [blame] | 1230 | /** @} datacompareoptions */ |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 1231 | |
| 1232 | /** |
| 1233 | * @brief Compare 2 data nodes if they are equivalent. |
| 1234 | * |
| 1235 | * @param[in] node1 The first node to compare. |
| 1236 | * @param[in] node2 The second node to compare. |
Radek Krejci | c5ad965 | 2019-09-11 11:31:51 +0200 | [diff] [blame] | 1237 | * @param[in] options Various @ref datacompareoptions. |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 1238 | * @return LY_SUCCESS if the nodes are equivalent. |
| 1239 | * @return LY_ENOT if the nodes are not equivalent. |
| 1240 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1241 | LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options); |
Michal Vasko | 8f359bf | 2020-07-28 10:41:15 +0200 | [diff] [blame] | 1242 | |
| 1243 | /** |
| 1244 | * @brief Compare 2 lists of siblings if they are equivalent. |
| 1245 | * |
| 1246 | * @param[in] node1 The first sibling list to compare. |
| 1247 | * @param[in] node2 The second sibling list to compare. |
| 1248 | * @param[in] options Various @ref datacompareoptions. |
| 1249 | * @return LY_SUCCESS if all the siblings are equivalent. |
| 1250 | * @return LY_ENOT if the siblings are not equivalent. |
| 1251 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1252 | LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options); |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 1253 | |
| 1254 | /** |
Michal Vasko | 2172574 | 2020-06-29 11:49:25 +0200 | [diff] [blame] | 1255 | * @brief Compare 2 metadata. |
| 1256 | * |
| 1257 | * @param[in] meta1 First metadata. |
| 1258 | * @param[in] meta2 Second metadata. |
| 1259 | * @return LY_SUCCESS if the metadata are equivalent. |
| 1260 | * @return LY_ENOT if not. |
| 1261 | */ |
| 1262 | LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2); |
| 1263 | |
| 1264 | /** |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1265 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1266 | * @defgroup dupoptions Data duplication options |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1267 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1268 | * Various options to change ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single() behavior. |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1269 | * |
| 1270 | * Default behavior: |
| 1271 | * - only the specified node is duplicated without siblings, parents, or children. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1272 | * - all the metadata of the duplicated nodes are also duplicated. |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1273 | * @{ |
| 1274 | */ |
| 1275 | |
| 1276 | #define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that |
| 1277 | list's keys are always duplicated. */ |
Michal Vasko | a29a576 | 2020-06-23 13:28:49 +0200 | [diff] [blame] | 1278 | #define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1279 | #define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents. |
| 1280 | Keys are also duplicated for lists. Return value does not change! */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1281 | #define LYD_DUP_WITH_FLAGS 0x08 /**< Also copy any data node flags. That will cause the duplicated data to preserve |
Michal Vasko | f6df0a0 | 2020-06-16 13:08:34 +0200 | [diff] [blame] | 1282 | its validation/default node state. */ |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1283 | |
| 1284 | /** @} dupoptions */ |
| 1285 | |
| 1286 | /** |
| 1287 | * @brief Create a copy of the specified data tree \p node. Schema references are kept the same. |
| 1288 | * |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1289 | * @param[in] node Data tree node to be duplicated. |
| 1290 | * @param[in] parent Optional parent node where to connect the duplicated node(s). |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1291 | * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with |
| 1292 | * the @p parent. |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1293 | * @param[in] options Bitmask of options flags, see @ref dupoptions. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1294 | * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated |
| 1295 | * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned. |
| 1296 | * @return LY_ERR value. |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1297 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1298 | LY_ERR lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1299 | |
| 1300 | /** |
| 1301 | * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same. |
| 1302 | * |
| 1303 | * @param[in] node Data tree node to be duplicated. |
| 1304 | * @param[in] parent Optional parent node where to connect the duplicated node(s). |
| 1305 | * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with |
| 1306 | * the @p parent. |
| 1307 | * @param[in] options Bitmask of options flags, see @ref dupoptions. |
| 1308 | * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated |
| 1309 | * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned. |
| 1310 | * @return LY_ERR value. |
| 1311 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1312 | LY_ERR lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup); |
Radek Krejci | 22ebdba | 2019-07-25 13:59:43 +0200 | [diff] [blame] | 1313 | |
| 1314 | /** |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 1315 | * @brief Create a copy of the metadata. |
| 1316 | * |
| 1317 | * @param[in] meta Metadata to copy. |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1318 | * @param[in] parent Node where to append the new metadata. |
| 1319 | * @param[out] dup Optional created metadata copy. |
| 1320 | * @return LY_ERR value. |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 1321 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1322 | LY_ERR lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *parent, struct lyd_meta **dup); |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 1323 | |
| 1324 | /** |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1325 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1326 | * @defgroup mergeoptions Data merge options. |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 1327 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1328 | * Various options to change ::lyd_merge_tree() and ::lyd_merge_siblings() behavior. |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1329 | * |
| 1330 | * Default behavior: |
| 1331 | * - source data tree is not modified in any way, |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1332 | * - any default nodes in the source are ignored if there are explicit nodes in the target. |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1333 | * @{ |
| 1334 | */ |
| 1335 | |
| 1336 | #define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1337 | #define LYD_MERGE_DEFAULTS 0x02 /**< Default nodes in the source tree replace even explicit nodes in the target. */ |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1338 | |
| 1339 | /** @} mergeoptions */ |
| 1340 | |
| 1341 | /** |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1342 | * @brief Merge the source data subtree into the target data tree. Merge may not be complete until validation |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1343 | * is called on the resulting data tree (data from more cases may be present, default and non-default values). |
| 1344 | * |
| 1345 | * @param[in,out] target Target data tree to merge into, must be a top-level tree. |
| 1346 | * @param[in] source Source data tree to merge, must be a top-level tree. |
| 1347 | * @param[in] options Bitmask of option flags, see @ref mergeoptions. |
| 1348 | * @return LY_SUCCESS on success, |
| 1349 | * @return LY_ERR value on error. |
| 1350 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1351 | LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1352 | |
| 1353 | /** |
| 1354 | * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be |
| 1355 | * complete until validation called on the resulting data tree (data from more cases may be present, default |
| 1356 | * and non-default values). |
| 1357 | * |
| 1358 | * @param[in,out] target Target data tree to merge into, must be a top-level tree. |
| 1359 | * @param[in] source Source data tree to merge, must be a top-level tree. |
| 1360 | * @param[in] options Bitmask of option flags, see @ref mergeoptions. |
| 1361 | * @return LY_SUCCESS on success, |
| 1362 | * @return LY_ERR value on error. |
| 1363 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1364 | LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options); |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1365 | |
| 1366 | /** |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1367 | * @ingroup datatree |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1368 | * @defgroup diffoptions Data diff options. |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1369 | * |
Radek Krejci | 8678fa4 | 2020-08-18 16:07:28 +0200 | [diff] [blame] | 1370 | * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior. |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1371 | * |
| 1372 | * Default behavior: |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1373 | * - any default nodes are treated as non-existent and ignored. |
| 1374 | * @{ |
| 1375 | */ |
| 1376 | |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1377 | #define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit |
| 1378 | nodes. Also, leaves and leaf-lists are added into diff even in case only their |
| 1379 | default flag (state) was changed. */ |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1380 | |
| 1381 | /** @} diffoptions */ |
| 1382 | |
| 1383 | /** |
| 1384 | * @brief Learn the differences between 2 data trees. |
| 1385 | * |
| 1386 | * The resulting diff is represented as a data tree with specific metadata from the internal 'yang' |
| 1387 | * module. Most importantly, every node has an effective 'operation' metadata. If there is none |
| 1388 | * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must |
| 1389 | * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value', |
| 1390 | * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first |
| 1391 | * or the second tree. |
| 1392 | * |
| 1393 | * The diff tree is completely independent on the @p first and @p second trees, meaning all |
| 1394 | * the information about the change is stored in the diff and the trees are not needed. |
| 1395 | * |
| 1396 | * !! Caution !! |
| 1397 | * The diff tree should never be validated because it may easily not be valid! For example, |
| 1398 | * when data from one case branch are deleted and data from another branch created - data from both |
| 1399 | * branches are then stored in the diff tree simultaneously. |
| 1400 | * |
| 1401 | * @param[in] first First data tree. |
| 1402 | * @param[in] second Second data tree. |
| 1403 | * @param[in] options Bitmask of options flags, see @ref diffoptions. |
| 1404 | * @param[out] diff Generated diff. |
| 1405 | * @return LY_SUCCESS on success, |
| 1406 | * @return LY_ERR on error. |
| 1407 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1408 | LY_ERR lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff); |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1409 | |
| 1410 | /** |
| 1411 | * @brief Learn the differences between 2 data trees including all the following siblings. |
| 1412 | * |
| 1413 | * @param[in] first First data tree. |
| 1414 | * @param[in] second Second data tree. |
| 1415 | * @param[in] options Bitmask of options flags, see @ref diffoptions. |
| 1416 | * @param[out] diff Generated diff. |
| 1417 | * @return LY_SUCCESS on success, |
| 1418 | * @return LY_ERR on error. |
| 1419 | */ |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 1420 | LY_ERR lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff); |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1421 | |
| 1422 | /** |
| 1423 | * @brief Callback for diff nodes. |
| 1424 | * |
| 1425 | * @param[in] diff_node Diff node. |
| 1426 | * @param[in] data_node Matching node in data. |
| 1427 | * @param[in] cb_data Arbitrary callback data. |
| 1428 | * @return LY_ERR value. |
| 1429 | */ |
| 1430 | typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data); |
| 1431 | |
| 1432 | /** |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1433 | * @brief Apply the whole diff on a data tree but restrict the operation to one module. |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1434 | * |
| 1435 | * @param[in,out] data Data to apply the diff on. |
| 1436 | * @param[in] diff Diff to apply. |
| 1437 | * @param[in] mod Module, whose diff/data only to consider, NULL for all modules. |
| 1438 | * @param[in] diff_cb Optional diff callback that will be called for every changed node. |
| 1439 | * @param[in] cb_data Arbitrary callback data. |
| 1440 | * @return LY_SUCCESS on success, |
| 1441 | * @return LY_ERR on error. |
| 1442 | */ |
| 1443 | LY_ERR lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff, const struct lys_module *mod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1444 | lyd_diff_cb diff_cb, void *cb_data); |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1445 | |
| 1446 | /** |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1447 | * @brief Apply the whole diff tree on a data tree. |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1448 | * |
| 1449 | * @param[in,out] data Data to apply the diff on. |
| 1450 | * @param[in] diff Diff to apply. |
| 1451 | * @return LY_SUCCESS on success, |
| 1452 | * @return LY_ERR on error. |
| 1453 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1454 | LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff); |
Michal Vasko | e893ddd | 2020-06-23 13:35:20 +0200 | [diff] [blame] | 1455 | |
| 1456 | /** |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1457 | * @brief Merge 2 diffs into each other but restrict the operation to one module. |
| 1458 | * |
| 1459 | * The diffs must be possible to be merged, which is guaranteed only if the source diff was |
| 1460 | * created on data that had the target diff applied on them. In other words, this sequence is legal |
| 1461 | * |
Michal Vasko | 04f8591 | 2020-08-07 12:14:58 +0200 | [diff] [blame] | 1462 | * 1) diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 -> |
| 1463 | * -> data 33 from apply diff2 on data1 |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1464 | * |
| 1465 | * and reusing these diffs |
| 1466 | * |
Michal Vasko | 04f8591 | 2020-08-07 12:14:58 +0200 | [diff] [blame] | 1467 | * 2) diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1 |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1468 | * |
Michal Vasko | fb737aa | 2020-08-06 13:53:53 +0200 | [diff] [blame] | 1469 | * @param[in,out] diff Target diff to merge into. |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1470 | * @param[in] src_diff Source diff. |
| 1471 | * @param[in] mod Module, whose diff only to consider, NULL for all modules. |
| 1472 | * @param[in] diff_cb Optional diff callback that will be called for every changed node. |
| 1473 | * @param[in] cb_data Arbitrary callback data. |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1474 | * @return LY_SUCCESS on success, |
| 1475 | * @return LY_ERR on error. |
| 1476 | */ |
Michal Vasko | fb737aa | 2020-08-06 13:53:53 +0200 | [diff] [blame] | 1477 | LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1478 | lyd_diff_cb diff_cb, void *cb_data); |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1479 | |
| 1480 | /** |
Michal Vasko | 04f8591 | 2020-08-07 12:14:58 +0200 | [diff] [blame] | 1481 | * @brief Merge 2 diff trees into each other. |
| 1482 | * |
| 1483 | * @param[in,out] diff_first Target diff first sibling to merge into. |
| 1484 | * @param[in] diff_parent Target diff parent to merge into. |
| 1485 | * @param[in] src_sibling Source diff sibling to merge. |
| 1486 | * @param[in] diff_cb Optional diff callback that will be called for every changed node. |
| 1487 | * @param[in] cb_data Arbitrary callback data. |
| 1488 | * @return LY_SUCCESS on success, |
| 1489 | * @return LY_ERR on error. |
| 1490 | */ |
| 1491 | LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1492 | lyd_diff_cb diff_cb, void *cb_data); |
Michal Vasko | 04f8591 | 2020-08-07 12:14:58 +0200 | [diff] [blame] | 1493 | |
| 1494 | /** |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1495 | * @brief Merge 2 diffs into each other. |
| 1496 | * |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1497 | * @param[in,out] diff Target diff to merge into. |
Michal Vasko | fb737aa | 2020-08-06 13:53:53 +0200 | [diff] [blame] | 1498 | * @param[in] src_diff Source diff. |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1499 | * @return LY_SUCCESS on success, |
| 1500 | * @return LY_ERR on error. |
| 1501 | */ |
Michal Vasko | fb737aa | 2020-08-06 13:53:53 +0200 | [diff] [blame] | 1502 | LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff); |
Michal Vasko | e6323f6 | 2020-07-09 15:49:02 +0200 | [diff] [blame] | 1503 | |
| 1504 | /** |
Michal Vasko | 4231fb6 | 2020-07-13 13:54:47 +0200 | [diff] [blame] | 1505 | * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create, |
| 1506 | * or move from place A to B to move from B to A and so on. |
| 1507 | * |
| 1508 | * @param[in] src_diff Diff to reverse. |
| 1509 | * @param[out] diff Reversed diff. |
| 1510 | * @return LY_SUCCESS on success. |
| 1511 | * @return LY_ERR on error. |
| 1512 | */ |
Michal Vasko | 3a41dff | 2020-07-15 14:30:28 +0200 | [diff] [blame] | 1513 | LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff); |
Michal Vasko | 4231fb6 | 2020-07-13 13:54:47 +0200 | [diff] [blame] | 1514 | |
| 1515 | /** |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1516 | * @brief Find the target in data of a compiled ly_path structure (instance-identifier). |
| 1517 | * |
| 1518 | * @param[in] path Compiled path structure. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1519 | * @param[in] tree Data tree to be searched. |
Michal Vasko | 4490d31 | 2020-06-16 13:08:55 +0200 | [diff] [blame] | 1520 | * @return Found target node, |
| 1521 | * @return NULL if not found. |
Radek Krejci | 576b23f | 2019-07-12 14:06:32 +0200 | [diff] [blame] | 1522 | */ |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 1523 | const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 1524 | |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 1525 | /** |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 1526 | * @brief Types of the different data paths. |
| 1527 | */ |
| 1528 | typedef enum { |
Michal Vasko | 1465471 | 2020-02-06 08:35:21 +0100 | [diff] [blame] | 1529 | LYD_PATH_LOG, /**< Descriptive path format used in log messages */ |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame] | 1530 | LYD_PATH_LOG_NO_LAST_PRED /**< Similar to ::LYD_PATH_LOG except there is never a predicate on the last node */ |
Michal Vasko | 5ec7cda | 2019-09-11 13:43:08 +0200 | [diff] [blame] | 1531 | } LYD_PATH_TYPE; |
| 1532 | |
| 1533 | /** |
| 1534 | * @brief Generate path of the given node in the requested format. |
| 1535 | * |
| 1536 | * @param[in] node Schema path of this node will be generated. |
| 1537 | * @param[in] pathtype Format of the path to generate. |
| 1538 | * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| 1539 | * If NULL, memory for the complete path is allocated. |
| 1540 | * @param[in] buflen Size of the provided @p buffer. |
| 1541 | * @return NULL in case of memory allocation error, path of the node otherwise. |
| 1542 | * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| 1543 | */ |
| 1544 | char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen); |
| 1545 | |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1546 | /** |
Michal Vasko | 25a3282 | 2020-07-09 15:48:22 +0200 | [diff] [blame] | 1547 | * @brief Find a specific metadata. |
| 1548 | * |
| 1549 | * @param[in] first First metadata to consider. |
| 1550 | * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix. |
| 1551 | * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set. |
| 1552 | * @return Found metadata, |
| 1553 | * @return NULL if not found. |
| 1554 | */ |
| 1555 | struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name); |
| 1556 | |
| 1557 | /** |
Michal Vasko | da85903 | 2020-07-14 12:20:14 +0200 | [diff] [blame] | 1558 | * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1559 | * Uses hashes - should be used whenever possible for best performance. |
| 1560 | * |
| 1561 | * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| 1562 | * @param[in] target Target node to find. |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 1563 | * @param[out] match Can be NULL, otherwise the found data node. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1564 | * @return LY_SUCCESS on success, @p match set. |
| 1565 | * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| 1566 | * @return LY_ERR value if another error occurred. |
| 1567 | */ |
| 1568 | LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match); |
| 1569 | |
| 1570 | /** |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1571 | * @brief Search in the given siblings for the first schema instance. |
| 1572 | * Uses hashes - should be used whenever possible for best performance. |
| 1573 | * |
| 1574 | * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| 1575 | * @param[in] schema Schema node of the data node to find. |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1576 | * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many |
| 1577 | * instances, it can be set based on the type of @p schema: |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1578 | * LYS_LEAFLIST: |
| 1579 | * Searched instance value. |
| 1580 | * LYS_LIST: |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 1581 | * Searched instance key values in the form of "[key1='val1'][key2='val2']...". |
| 1582 | * The keys do not have to be ordered but all of them must be set. |
| 1583 | * |
| 1584 | * Note that any explicit values (leaf-list or list key values) will be canonized first |
| 1585 | * before comparison. But values that do not have a canonical value are expected to be in the |
| 1586 | * JSON format! |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 1587 | * @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] | 1588 | * @param[out] match Can be NULL, otherwise the found data node. |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1589 | * @return LY_SUCCESS on success, @p match set. |
| 1590 | * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| 1591 | * @return LY_EINVAL if @p schema is a key-less list. |
| 1592 | * @return LY_ERR value if another error occurred. |
| 1593 | */ |
| 1594 | LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value, |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 1595 | size_t val_len, struct lyd_node **match); |
Michal Vasko | e444f75 | 2020-02-10 12:20:06 +0100 | [diff] [blame] | 1596 | |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 1597 | /** |
| 1598 | * @brief Search in the given data for instances of nodes matching the provided XPath. |
| 1599 | * |
Michal Vasko | b104f11 | 2020-07-17 09:54:54 +0200 | [diff] [blame] | 1600 | * The expected format of the expression is ::LYD_JSON, meaning the first node in every path |
Michal Vasko | 61ac2f6 | 2020-05-25 12:39:51 +0200 | [diff] [blame] | 1601 | * must have its module name as prefix or be the special `*` value for all the nodes. |
| 1602 | * |
Michal Vasko | 19a3060 | 2020-05-25 10:40:19 +0200 | [diff] [blame] | 1603 | * If a list instance is being selected with all its key values specified (but not necessarily ordered) |
| 1604 | * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form |
| 1605 | * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity |
| 1606 | * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones. |
| 1607 | * |
Michal Vasko | ccc0234 | 2020-05-21 10:09:21 +0200 | [diff] [blame] | 1608 | * @param[in] ctx_node XPath context node. |
| 1609 | * @param[in] xpath Data XPath expression filtering the matching nodes. ::LYD_JSON format is expected. |
| 1610 | * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean, |
| 1611 | * the returned set is empty. |
| 1612 | * @return LY_SUCCESS on success, @p set is returned. |
| 1613 | * @return LY_ERR value if an error occurred. |
| 1614 | */ |
| 1615 | LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set); |
| 1616 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1617 | #ifdef __cplusplus |
| 1618 | } |
| 1619 | #endif |
| 1620 | |
| 1621 | #endif /* LY_TREE_DATA_H_ */ |