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