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