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