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