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