| /** |
| * @file tree_data.h |
| * @author Radek Krejci <rkrejci@cesnet.cz> |
| * @brief libyang representation of YANG data trees. |
| * |
| * Copyright (c) 2015 - 2019 CESNET, z.s.p.o. |
| * |
| * This source code is licensed under BSD 3-Clause License (the "License"). |
| * You may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * https://opensource.org/licenses/BSD-3-Clause |
| */ |
| |
| #ifndef LY_TREE_DATA_H_ |
| #define LY_TREE_DATA_H_ |
| |
| #include <stddef.h> |
| #include <stdint.h> |
| |
| #include "log.h" |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| struct ly_ctx; |
| struct ly_path; |
| struct ly_set; |
| struct lyd_node; |
| struct lyd_node_opaq; |
| struct lyd_node_term; |
| struct lys_module; |
| struct lysc_node; |
| struct lysc_type; |
| |
| /** |
| * @page howtoData Data Instances |
| * |
| * All the nodes in data tree comes are based on ::lyd_node structure. According to the content of the ::lyd_node.schema |
| * it can be cast to several other structures. |
| * |
| * In case the ::lyd_node.schema pointer is NULL, the node is actually __opaq__ and can be safely cast to ::lyd_node_opaq. |
| * The opaq node represent an unknown node which wasn't mapped to any [(compiled) schema](@ref howtoSchema) node in the |
| * context. Such a node can appear in several places in the data tree. |
| * - As a part of the tree structure, but only in the case the ::LYD_PARSE_OPAQ option was used when input data were |
| * [parsed](@ref howtoDataParsers), because unknown data instances are ignored by default. The same way, the opaq nodes can |
| * appear as a node's attributes. |
| * - As a representation of YANG anydata/anyxml content. |
| * - As envelopes of standard data tree instances (RPCs, actions or Notifications). |
| * |
| * In case the data node has its definition in a [compiled schema tree](@ref howtoSchema), the structure of the data node is |
| * actually one of the followings according to the schema node's nodetype (::lysc_node.nodetype). |
| * - ::lyd_node_inner - represents data nodes corresponding to schema nodes matching ::LYD_NODE_INNER nodetypes. They provide |
| * structure of the tree by having children nodes. |
| * - ::lyd_node_term - represents data nodes corresponding to schema nodes matching ::LYD_NODE_TERM nodetypes. The terminal |
| * nodes provide values of the particular configuration/status information. The values are represented as ::lyd_value |
| * structure with string representation of the value (::lyd_value.canonical) and the type specific data stored in the |
| * structure's union according to the real type of the value (::lyd_value.realtype). The string representation provides |
| * canonical representation of the value in case the type has the canonical representation specified. Otherwise, it is the |
| * original value or, in case the value can contain prefixes, the JSON format is used to make the value unambiguous. |
| * - ::lyd_node_any - represents data nodes corresponding to schema nodes matching ::LYD_NODE_ANY nodetypes. |
| * |
| * Despite all the aforementioned structures and their members are available as part of the libyang API and callers can use |
| * it to navigate through the data tree structure or to obtain various information, we recommend to use the following macros |
| * and functions. |
| * - ::lyd_child() (or ::lyd_child_no_keys()) and ::lyd_parent() to get the node's child/parent node. |
| * - ::LYD_CTX to get libyang context from a data node. |
| * - ::LYD_CANON_VALUE to get canonical string value from a terminal node. |
| * - ::LYD_TREE_DFS_BEGIN and ::LYD_TREE_DFS_END to traverse the data tree (depth-first). |
| * - ::LY_LIST_FOR and ::LY_ARRAY_FOR as described on @ref howtoStructures page. |
| * |
| * Instead of going through the data tree on your own, a specific data node can be also located using a wide set of |
| * \b lyd_find_*() functions. |
| * |
| * More information about specific operations with data instances can be found on the following pages: |
| * - @subpage howtoDataParsers |
| * - @subpage howtoDataValidation |
| * - @subpage howtoDataWD |
| * - @subpage howtoDataManipulation |
| * - @subpage howtoDataPrinters |
| * |
| * \note API for this group of functions is described in the [Data Instances module](@ref datatree). |
| * |
| * Functions List (not assigned to above subsections) |
| * -------------------------------------------------- |
| * - ::lyd_child() |
| * - ::lyd_child_no_keys() |
| * - ::lyd_parent() |
| * - ::lyd_owner_module() |
| * - ::lyd_find_xpath() |
| * - ::lyd_find_sibling_val() |
| * - ::lyd_find_sibling_first() |
| * - ::lyd_find_meta() |
| * |
| * - ::lyd_path() |
| * - ::lyd_target() |
| * |
| * - ::lyd_lyb_data_length() |
| */ |
| |
| /** |
| * @page howtoDataManipulation Manipulating Data |
| * |
| * There are many functions to create or modify an existing data tree. You can add new nodes, reconnect nodes from |
| * one tree to another (or e.g. from one list instance to another) or remove nodes. The functions doesn't allow you |
| * to put a node to a wrong place (by checking the YANG module structure), but not all validation checks can be made directly |
| * (or you have to make a valid change by multiple tree modifications) when the tree is being changed. Therefore, |
| * the [validation process](@ref howtoDataValidation) is expected to be invoked after changing the data tree to make sure |
| * that the changed data tree is valid. |
| * |
| * When inserting a node into data tree (no matter if the node already exists, via ::lyd_insert_child() and |
| * ::lyd_insert_sibling(), or a new node is being created), the node is automatically inserted to the place respecting the |
| * nodes order from the YANG schema. So the node is not inserted to the end or beginning of the siblings list, but after the |
| * existing instance of the closest preceding sibling node from the schema. In case the node is opaq (it is not connected |
| * with any schema node), it is placed to the end of the sibling node in the order they are inserted in. The only situation |
| * when it is possible to influence the order of the nodes is the order of user-ordered list/leaf-list instances. In such |
| * a case the ::lyd_insert_after() or ::lyd_insert_before() can be used. |
| * |
| * Creating data is generally possible in two ways, they can be combined. You can add nodes one-by-one based on |
| * the node name and/or its parent (::lyd_new_inner(), ::lyd_new_term(), ::lyd_new_any(), ::lyd_new_list(), ::lyd_new_list2() |
| * and ::lyd_new_opaq()) or address the nodes using a [simple XPath addressing](@ref howtoXPath) (::lyd_new_path() and |
| * ::lyd_new_path2()). The latter enables to create a whole path of nodes, requires less information |
| * about the modified data, and is generally simpler to use. Actually the third way is duplicating the existing data using |
| * ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single(). |
| * |
| * The [metadata](@ref howtoPluginsExtensionsMetadata) (and attributes in opaq nodes) can be created with ::lyd_new_meta() |
| * and ::lyd_new_attr(). |
| * |
| * Changing value of a terminal node (leaf, leaf-list) is possible with ::lyd_change_term(). Similarly, the metadata value |
| * can be changed with ::lyd_change_meta(). Before changing the value, it might be useful to compare the node's value |
| * with a string value (::lyd_value_compare()) or verify that the new string value is correct for the specific data node |
| * (::lyd_value_validate()). |
| * |
| * Working with two existing subtrees can also be performed two ways. Usually, you would use lyd_insert*() functions. |
| * They are generally meant for simple inserts of a node into a data tree. For more complicated inserts and when |
| * merging 2 trees use ::lyd_merge_tree() or ::lyd_merge_siblings(). It offers additional options and is basically a more |
| * powerful insert. |
| * |
| * Besides merging, libyang is also capable to provide information about differences between two data trees. For this purpose, |
| * ::lyd_diff_tree() and ::lyd_diff_siblings() generates annotated data trees which can be, in addition, used to change one |
| * data tree to another one using ::lyd_diff_apply_all(), ::lyd_diff_apply_module() and ::lyd_diff_reverse_all(). Multiple |
| * diff data trees can be also put together for further work using ::lyd_diff_merge_all(), ::lyd_diff_merge_module() and |
| * ::lyd_diff_merge_tree() functions. To just check equivalence of the data nodes, ::lyd_compare_single(), |
| * ::lyd_compare_siblings() and ::lyd_compare_meta() can be used. |
| * |
| * To remove a node or subtree from a data tree, use ::lyd_unlink_tree() and then free the unwanted data using |
| * ::lyd_free_all() (or other \b lyd_free_*() functions). |
| * |
| * Also remember, that when you are creating/inserting a node, all the objects in that operation must belong to the |
| * same context. |
| * |
| * Modifying the single data tree in multiple threads is not safe. |
| * |
| * Functions List |
| * -------------- |
| * - ::lyd_new_inner() |
| * - ::lyd_new_term() |
| * - ::lyd_new_list() |
| * - ::lyd_new_list2() |
| * - ::lyd_new_any() |
| * - ::lyd_new_opaq() |
| * - ::lyd_new_attr() |
| * - ::lyd_new_meta() |
| * - ::lyd_new_path() |
| * - ::lyd_new_path2() |
| * |
| * - ::lyd_dup_single() |
| * - ::lyd_dup_siblings() |
| * - ::lyd_dup_meta_single() |
| * |
| * - ::lyd_insert_child() |
| * - ::lyd_insert_sibling() |
| * - ::lyd_insert_after() |
| * - ::lyd_insert_before() |
| * |
| * - ::lyd_value_compare() |
| * - ::lyd_value_validate() |
| * |
| * - ::lyd_change_term() |
| * - ::lyd_change_meta() |
| * |
| * - ::lyd_compare_single() |
| * - ::lyd_compare_siblings() |
| * - ::lyd_compare_meta() |
| * - ::lyd_diff_tree() |
| * - ::lyd_diff_siblings() |
| * - ::lyd_diff_apply_all() |
| * - ::lyd_diff_apply_module() |
| * - ::lyd_diff_reverse_all() |
| * - ::lyd_diff_merge_all() |
| * - ::lyd_diff_merge_module() |
| * - ::lyd_diff_merge_tree() |
| * |
| * - ::lyd_merge_tree() |
| * - ::lyd_merge_siblings() |
| * |
| * - ::lyd_unlink_tree() |
| * |
| * - ::lyd_free_all() |
| * - ::lyd_free_siblings() |
| * - ::lyd_free_tree() |
| * - ::lyd_free_meta_single() |
| * - ::lyd_free_meta_siblings() |
| * - ::lyd_free_attr_single() |
| * - ::lyd_free_attr_siblings() |
| * |
| * - ::lyd_any_copy_value() |
| */ |
| |
| /** |
| * @page howtoDataWD Default Values |
| * |
| * libyang provides support for work with default values as defined in [RFC 6243](https://tools.ietf.org/html/rfc6243). |
| * However, libyang context do not contains the *ietf-netconf-with-defaults* module on its own and caller is supposed to |
| * add this YANG module to enable full support of the *with-defaults* features described below. Without presence of the |
| * mentioned module in the context, the default nodes are still present and handled in the data trees, but the metadata |
| * providing the information about the default values cannot be used. It means that when parsing data, the default nodes |
| * marked with the metadata as implicit default nodes are handled as explicit data and when printing data tree, the expected |
| * nodes are printed without the ietf-netconf-with-defaults metadata. |
| * |
| * The RFC document defines 4 modes for handling default nodes in a data tree, libyang adds the fifth mode and use them |
| * via @ref dataprinterflags when printing data trees. |
| * - \b explicit - Only the explicitly set configuration data. But in the case of status data, missing default |
| * data are added into the tree. In libyang, this mode is represented by ::LYD_PRINT_WD_EXPLICIT option. |
| * This is the default with-defaults mode of the printer. The data nodes do not contain any additional |
| * metadata information. |
| * - \b trim - Data nodes containing the default value are removed. This mode is applied with ::LYD_PRINT_WD_TRIM option. |
| * - \b report-all - This mode provides all the default data nodes despite they were explicitly present in source data or |
| * they were added by libyang's [validation process](@ref howtoDataValidation). This mode is activated by |
| * ::LYD_PRINT_WD_ALL option. |
| * - \b report-all-tagged - In this case, all the data nodes (implicit as well the explicit) containing the default value |
| * are printed and tagged (see the note below). Printers accept ::LYD_PRINT_WD_ALL_TAG option for this mode. |
| * - \b report-implicit-tagged - The last mode is similar to the previous one, except only the implicitly added nodes |
| * are tagged. This is the libyang's extension and it is activated by ::LYD_PRINT_WD_IMPL_TAG option. |
| * |
| * Internally, libyang adds the default nodes into the data tree as part of the [validation process](@ref howtoDataValidation). |
| * When [parsing data](@ref howtoDataParsers) from an input source, adding default nodes can be avoided only by avoiding |
| * the whole [validation process](@ref howtoDataValidation). In case the ietf-netconf-with-defaults module is present in the |
| * context, the [parser process](@ref howtoDataParsers) also supports to recognize the implicit default nodes marked with the |
| * appropriate metadata. |
| * |
| * Note, that in a modified data tree (via e.g. \b lyd_insert_*() or \b lyd_free_*() functions), some of the default nodes |
| * can be missing or they can be present by mistake. Such a data tree is again corrected during the next run of the |
| * [validation process](@ref howtoDataValidation) or manualy using \b lyd_new_implicit_*() functions. |
| * |
| * The implicit (default) nodes, created by libyang, are marked with the ::LYD_DEFAULT flag in ::lyd_node.flags member |
| * Note, that besides leafs and leaf-lists, the flag can appear also in containers, where it means that the container |
| * 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 |
| * the accessible data tree). When printing data trees, the presence of empty containers (despite they were added |
| * explicitly or implicitly as part of accessible data tree) depends on ::LYD_PRINT_KEEPEMPTYCONT option. |
| * |
| * To get know if the particular leaf or leaf-list node contains default value (despite implicit or explicit), you can |
| * use ::lyd_is_default() function. |
| * |
| * Functions List |
| * -------------- |
| * - ::lyd_is_default() |
| * - ::lyd_new_implicit_all() |
| * - ::lyd_new_implicit_module() |
| * - ::lyd_new_implicit_tree() |
| */ |
| |
| /** |
| * @ingroup trees |
| * @defgroup datatree Data Tree |
| * @{ |
| * |
| * Data structures and functions to manipulate and access instance data tree. |
| */ |
| |
| /* *INDENT-OFF* */ |
| |
| /** |
| * @brief Macro to iterate via all elements in a data tree. This is the opening part |
| * to the #LYD_TREE_DFS_END - they always have to be used together. |
| * |
| * The function follows deep-first search algorithm: |
| * <pre> |
| * 1 |
| * / \ |
| * 2 4 |
| * / / \ |
| * 3 5 6 |
| * </pre> |
| * |
| * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While |
| * START can be any of the lyd_node* types, ELEM variable must be a pointer to |
| * the generic struct lyd_node. |
| * |
| * To skip a particular subtree, instead of the continue statement, set LYD_TREE_DFS_continue |
| * variable to non-zero value. |
| * |
| * Use with opening curly bracket '{' after the macro. |
| * |
| * @param START Pointer to the starting element processed first. |
| * @param ELEM Iterator intended for use in the block. |
| */ |
| #define LYD_TREE_DFS_BEGIN(START, ELEM) \ |
| { ly_bool LYD_TREE_DFS_continue = 0; struct lyd_node *LYD_TREE_DFS_next; \ |
| for ((ELEM) = (LYD_TREE_DFS_next) = (struct lyd_node *)(START); \ |
| (ELEM); \ |
| (ELEM) = (LYD_TREE_DFS_next), LYD_TREE_DFS_continue = 0) |
| |
| /** |
| * @brief Macro to iterate via all elements in a tree. This is the closing part |
| * to the #LYD_TREE_DFS_BEGIN - they always have to be used together. |
| * |
| * Use the same parameters for #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END. While |
| * START can be any of the lyd_node* types, ELEM variable must be a pointer |
| * to the generic struct lyd_node. |
| * |
| * Use with closing curly bracket '}' after the macro. |
| * |
| * @param START Pointer to the starting element processed first. |
| * @param ELEM Iterator intended for use in the block. |
| */ |
| |
| #define LYD_TREE_DFS_END(START, ELEM) \ |
| /* select element for the next run - children first */ \ |
| if (LYD_TREE_DFS_continue) { \ |
| (LYD_TREE_DFS_next) = NULL; \ |
| } else { \ |
| (LYD_TREE_DFS_next) = lyd_child(ELEM); \ |
| }\ |
| if (!(LYD_TREE_DFS_next)) { \ |
| /* no children */ \ |
| if ((ELEM) == (struct lyd_node*)(START)) { \ |
| /* we are done, (START) has no children */ \ |
| break; \ |
| } \ |
| /* try siblings */ \ |
| (LYD_TREE_DFS_next) = (ELEM)->next; \ |
| } \ |
| while (!(LYD_TREE_DFS_next)) { \ |
| /* parent is already processed, go to its sibling */ \ |
| (ELEM) = (struct lyd_node*)(ELEM)->parent; \ |
| /* no siblings, go back through parents */ \ |
| if ((ELEM)->parent == (START)->parent) { \ |
| /* we are done, no next element to process */ \ |
| break; \ |
| } \ |
| (LYD_TREE_DFS_next) = (ELEM)->next; \ |
| } } \ |
| |
| /* *INDENT-ON* */ |
| |
| /** |
| * @brief Macro to get context from a data tree node. |
| */ |
| #define LYD_CTX(node) ((node)->schema ? (node)->schema->module->ctx : ((struct lyd_node_opaq *)(node))->ctx) |
| |
| /** |
| * @brief Data input/output formats supported by libyang [parser](@ref howtoDataParsers) and |
| * [printer](@ref howtoDataPrinters) functions. |
| */ |
| typedef enum { |
| LYD_UNKNOWN = 0, /**< unknown data format, invalid value */ |
| LYD_XML, /**< XML instance data format */ |
| LYD_JSON, /**< JSON instance data format */ |
| LYD_LYB /**< LYB instance data format */ |
| } LYD_FORMAT; |
| |
| /** |
| * @brief All kinds of supported prefix mappings to modules. |
| */ |
| typedef enum { |
| LY_PREF_SCHEMA, /**< value prefixes map to YANG import prefixes */ |
| LY_PREF_SCHEMA_RESOLVED, /**< value prefixes map to module structures directly */ |
| LY_PREF_XML, /**< value prefixes map to XML namespace prefixes */ |
| LY_PREF_JSON /**< value prefixes map to module names */ |
| } LY_PREFIX_FORMAT; |
| |
| /** |
| * @brief List of possible value types stored in ::lyd_node_any. |
| */ |
| typedef enum { |
| LYD_ANYDATA_DATATREE, /**< Value is a pointer to ::lyd_node structure (first sibling). When provided as input parameter, the pointer |
| is directly connected into the anydata node without duplication, caller is supposed to not manipulate |
| with the data after a successful call (including calling ::lyd_free_all() on the provided data) */ |
| LYD_ANYDATA_STRING, /**< Value is a generic string without any knowledge about its format (e.g. anyxml value in JSON encoded |
| as string). XML sensitive characters (such as & or \>) are automatically escaped when the anydata |
| is printed in XML format. */ |
| LYD_ANYDATA_XML, /**< Value is a string containing the serialized XML data. */ |
| LYD_ANYDATA_JSON, /**< Value is a string containing the data modeled by YANG and encoded as I-JSON. */ |
| LYD_ANYDATA_LYB /**< Value is a memory chunk with the serialized data tree in LYB format. */ |
| } LYD_ANYDATA_VALUETYPE; |
| |
| /** @} */ |
| |
| /** |
| * @brief YANG data representation |
| */ |
| struct lyd_value { |
| const char *canonical; /**< Canonical string representation of the value in the dictionary. It is never |
| NULL and in case of no canonical value, its JSON representation is used instead. */ |
| |
| union { |
| int8_t boolean; /**< 0 as false, 1 as true */ |
| int64_t dec64; /**< decimal64: value = dec64 / 10^fraction-digits */ |
| int8_t int8; /**< 8-bit signed integer */ |
| int16_t int16; /**< 16-bit signed integer */ |
| int32_t int32; /**< 32-bit signed integer */ |
| int64_t int64; /**< 64-bit signed integer */ |
| uint8_t uint8; /**< 8-bit unsigned integer */ |
| uint16_t uint16; /**< 16-bit unsigned integer */ |
| uint32_t uint32; /**< 32-bit unsigned integer */ |
| uint64_t uint64; /**< 64-bit unsigned integer */ |
| struct lysc_type_bitenum_item *enum_item; /**< pointer to the definition of the enumeration value */ |
| struct lysc_type_bitenum_item **bits_items; /**< list of set pointers to the specification of the set bits ([sized array](@ref sizedarrays)) */ |
| struct lysc_ident *ident; /**< pointer to the schema definition of the identityref value */ |
| struct ly_path *target; /**< Instance-identifier target path. */ |
| struct lyd_value_subvalue *subvalue; /** Union value with some metadata. */ |
| void *ptr; /**< generic data type structure used to store the data */ |
| }; /**< The union is just a list of shorthands to possible values stored by a type's plugin. libyang itself uses the ::lyd_value.realtype |
| plugin's callbacks to work with the data.*/ |
| |
| 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 |
| in the schema node of the data node since the type's store plugin can use other types/plugins for |
| storing data. Speaking about built-in types, this is the case of leafref which stores data as its |
| target type. In contrast, union type also uses its subtype's callbacks, but inside an internal data |
| stored in subvalue member of ::lyd_value structure, so here is the pointer to the union type. |
| In general, this type is used to get free callback for this lyd_value structure, so it must reflect |
| the type used to store data directly in the same lyd_value instance. */ |
| }; |
| |
| /** |
| * @brief Macro for getting the string canonical value from a term node. |
| * |
| * @param[in] node Term node with the value. |
| * @return Canonical value. |
| */ |
| #define LYD_CANON_VALUE(node) ((struct lyd_node_term *)(node))->value.canonical |
| |
| /** |
| * @brief Special lyd_value structure for union. |
| * |
| * Represents data with multiple types (union). Original value is stored in the main lyd_value:canonical_cache while |
| * the ::lyd_value_subvalue.value contains representation according to one of the union's types. |
| * The ::lyd_value_subvalue.prefix_data provides (possible) mappings from prefixes in the original value to YANG modules. |
| * These prefixes are necessary to parse original value to the union's subtypes. |
| */ |
| struct lyd_value_subvalue { |
| struct lyd_value value; /**< representation of the value according to the selected union's subtype |
| (stored as ::lyd_value.realtype here, in subvalue structure */ |
| const char *original; /**< Original value in the dictionary. */ |
| LY_PREFIX_FORMAT format; /**< Prefix format of the value. However, this information is also used to decide |
| whether a value is valid for the specific format or not on later validations |
| (instance-identifier in XML looks different than in JSON). */ |
| void *prefix_data; /**< Format-specific data for prefix resolution (see ::ly_type_store_resolve_prefix()) */ |
| uint32_t hints; /**< [Value hints](@ref lydvalhints) from the parser */ |
| const struct lysc_node *ctx_node; /**< Context schema node. */ |
| }; |
| |
| /** |
| * @brief Metadata structure. |
| * |
| * The structure provides information about metadata of a data element. Such attributes must map to |
| * annotations as specified in RFC 7952. The only exception is the filter type (in NETCONF get operations) |
| * and edit-config's operation attributes. In XML, they are represented as standard XML attributes. In JSON, |
| * they are represented as JSON elements starting with the '@' character (for more information, see the |
| * YANG metadata RFC. |
| * |
| */ |
| struct lyd_meta { |
| struct lyd_node *parent; /**< data node where the metadata is placed */ |
| struct lyd_meta *next; /**< pointer to the next metadata of the same element */ |
| struct lysc_ext_instance *annotation; /**< pointer to the annotation's definition */ |
| const char *name; /**< metadata name */ |
| struct lyd_value value; /**< metadata value representation */ |
| }; |
| |
| /** |
| * @brief Generic prefix and namespace mapping, meaning depends on the format. |
| * |
| * 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 |
| * ::ly_ctx_get_module_implemented_ns() or ::ly_ctx_get_module_implemented(). While the module reference is always present, |
| * the prefix member can be omitted in case it is not present in the source data as a reference to the default module/namespace. |
| */ |
| struct ly_opaq_name { |
| const char *name; /**< node name, without prefix if any was defined */ |
| const char *prefix; /**< identifier used in the qualified name as the prefix, can be NULL */ |
| union { |
| const char *module_ns; /**< format ::LY_PREF_XML - XML namespace of the node element */ |
| const char *module_name; /**< format ::LY_PREF_JSON - (inherited) name of the module of the element */ |
| }; |
| }; |
| |
| /** |
| * @brief Generic attribute structure. |
| */ |
| struct lyd_attr { |
| struct lyd_node_opaq *parent; /**< data node where the attribute is placed */ |
| struct lyd_attr *next; /**< pointer to the next attribute */ |
| struct ly_opaq_name name; /**< attribute name with module information */ |
| const char *value; /**< attribute value */ |
| LY_PREFIX_FORMAT format; /**< format of the attribute and any prefixes, ::LY_PREF_XML or ::LY_PREF_JSON */ |
| void *val_prefix_data; /**< format-specific prefix data */ |
| uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */ |
| |
| }; |
| |
| #define LYD_NODE_INNER (LYS_CONTAINER|LYS_LIST|LYS_RPC|LYS_ACTION|LYS_NOTIF) /**< Schema nodetype mask for lyd_node_inner */ |
| #define LYD_NODE_TERM (LYS_LEAF|LYS_LEAFLIST) /**< Schema nodetype mask for lyd_node_term */ |
| #define LYD_NODE_ANY (LYS_ANYDATA) /**< Schema nodetype mask for lyd_node_any */ |
| |
| /** |
| * @ingroup datatree |
| * @defgroup dnodeflags Data node flags |
| * @{ |
| * |
| * Various flags of data nodes. |
| * |
| * 1 - container 5 - anydata/anyxml |
| * 2 - list 6 - rpc/action |
| * 3 - leaf 7 - notification |
| * 4 - leaflist |
| * |
| * bit name 1 2 3 4 5 6 7 |
| * ---------------------+-+-+-+-+-+-+-+ |
| * 1 LYD_DEFAULT |x| |x|x| | | | |
| * +-+-+-+-+-+-+-+ |
| * 2 LYD_WHEN_TRUE |x|x|x|x|x| | | |
| * +-+-+-+-+-+-+-+ |
| * 3 LYD_NEW |x|x|x|x|x|x|x| |
| * ---------------------+-+-+-+-+-+-+-+ |
| * |
| */ |
| |
| #define LYD_DEFAULT 0x01 /**< default (implicit) node */ |
| #define LYD_WHEN_TRUE 0x02 /**< all when conditions of this node were evaluated to true */ |
| #define LYD_NEW 0x04 /**< node was created after the last validation, is needed for the next validation */ |
| |
| /** @} */ |
| |
| /** |
| * @brief Generic structure for a data node. |
| */ |
| struct lyd_node { |
| uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| used to get know that nodes are not equal, it cannot be used to decide that the |
| nodes are equal due to possible collisions. */ |
| uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
| const struct lysc_node *schema; /**< pointer to the schema definition of this node, note that the target can be not just |
| ::lysc_node but ::lysc_action or ::lysc_notif as well */ |
| struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| never NULL. If there is no sibling node, pointer points to the node |
| itself. In case of the first node, this pointer points to the last |
| node in the list. */ |
| struct lyd_meta *meta; /**< pointer to the list of metadata of this node */ |
| void *priv; /**< private user data, not used by libyang */ |
| }; |
| |
| /** |
| * @brief Data node structure for the inner data tree nodes - containers, lists, RPCs, actions and Notifications. |
| */ |
| struct lyd_node_inner { |
| uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| used to get know that nodes are not equal, it cannot be used to decide that the |
| nodes are equal due to possible collisions. */ |
| uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
| const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| never NULL. If there is no sibling node, pointer points to the node |
| itself. In case of the first node, this pointer points to the last |
| node in the list. */ |
| struct lyd_meta *meta; /**< pointer to the list of metadata of this node */ |
| void *priv; /**< private user data, not used by libyang */ |
| |
| struct lyd_node *child; /**< pointer to the first child node. */ |
| struct hash_table *children_ht; /**< hash table with all the direct children (except keys for a list, lists without keys) */ |
| #define LYD_HT_MIN_ITEMS 4 /**< minimal number of children to create ::lyd_node_inner.children_ht hash table. */ |
| }; |
| |
| /** |
| * @brief Data node structure for the terminal data tree nodes - leaves and leaf-lists. |
| */ |
| struct lyd_node_term { |
| uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| used to get know that nodes are not equal, it cannot be used to decide that the |
| nodes are equal due to possible collisions. */ |
| uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
| const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| never NULL. If there is no sibling node, pointer points to the node |
| itself. In case of the first node, this pointer points to the last |
| node in the list. */ |
| struct lyd_meta *meta; /**< pointer to the list of metadata of this node */ |
| void *priv; /**< private user data, not used by libyang */ |
| |
| struct lyd_value value; /**< node's value representation */ |
| }; |
| |
| /** |
| * @brief Data node structure for the anydata data tree nodes - anydatas and anyxmls. |
| */ |
| struct lyd_node_any { |
| uint32_t hash; /**< hash of this particular node (module name + schema name + key string values if list or |
| hashes of all nodes of subtree in case of keyless list). Note that while hash can be |
| used to get know that nodes are not equal, it cannot be used to decide that the |
| nodes are equal due to possible collisions. */ |
| uint32_t flags; /**< [data node flags](@ref dnodeflags) */ |
| const struct lysc_node *schema; /**< pointer to the schema definition of this node */ |
| struct lyd_node_inner *parent; /**< pointer to the parent node, NULL in case of root node */ |
| struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| struct lyd_node *prev; /**< pointer to the previous sibling node \note Note that this pointer is |
| never NULL. If there is no sibling node, pointer points to the node |
| itself. In case of the first node, this pointer points to the last |
| node in the list. */ |
| struct lyd_meta *meta; /**< pointer to the list of metadata of this node */ |
| void *priv; /**< private user data, not used by libyang */ |
| |
| union lyd_any_value { |
| struct lyd_node *tree; /**< data tree */ |
| const char *str; /**< Generic string data */ |
| const char *xml; /**< Serialized XML data */ |
| const char *json; /**< I-JSON encoded string */ |
| char *mem; /**< LYD_ANYDATA_LYB memory chunk */ |
| } value; /**< pointer to the stored value representation of the anydata/anyxml node */ |
| LYD_ANYDATA_VALUETYPE value_type;/**< type of the data stored as ::lyd_node_any.value */ |
| }; |
| |
| /** |
| * @ingroup datatree |
| * @defgroup lydvalhints Value format hints. |
| * @{ |
| * |
| * Hints for the type of the data value. |
| * |
| * Any information about value types encoded in the format is hinted by these values. |
| */ |
| #define LYD_VALHINT_STRING 0x0001 /**< value is allowed to be a string */ |
| #define LYD_VALHINT_DECNUM 0x0002 /**< value is allowed to be a decimal number */ |
| #define LYD_VALHINT_OCTNUM 0x0004 /**< value is allowed to be an octal number */ |
| #define LYD_VALHINT_HEXNUM 0x0008 /**< value is allowed to be a hexadecimal number */ |
| #define LYD_VALHINT_NUM64 0x0010 /**< value is allowed to be an int64 or uint64 */ |
| #define LYD_VALHINT_BOOLEAN 0x0020 /**< value is allowed to be a boolean */ |
| #define LYD_VALHINT_EMPTY 0x0040 /**< value is allowed to be empty */ |
| /** |
| * @} lydvalhints |
| */ |
| |
| /** |
| * @ingroup datatree |
| * @defgroup lydnodehints Node type format hints |
| * @{ |
| * |
| * Hints for the type of the data node. |
| * |
| * Any information about node types encoded in the format is hinted by these values. |
| */ |
| #define LYD_NODEHINT_LIST 0x0080 /**< node is allowed to be a list instance */ |
| #define LYD_NODEHINT_LEAFLIST 0x0100 /**< node is allowed to be a leaf-list instance */ |
| /** |
| * @} lydnodehints |
| */ |
| |
| /** |
| * @ingroup datatree |
| * @defgroup lydhints Value and node type format hints |
| * @{ |
| * |
| * Hints for the types of data node and its value. |
| * |
| * Any information about value and node types encoded in the format is hinted by these values. |
| * It combines [value hints](@ref lydvalhints) and [node hints](@ref lydnodehints). |
| */ |
| #define LYD_HINT_DATA 0x01F3 /**< special node/value hint to be used for generic data node/value (for cases when |
| there is no encoding or it does not provide any additional information about |
| a node/value type); do not combine with specific [value hints](@ref lydvalhints) |
| or [node hints](@ref lydnodehints). */ |
| #define LYD_HINT_SCHEMA 0x01FF /**< special node/value hint to be used for generic schema node/value(for cases when |
| there is no encoding or it does not provide any additional information about |
| a node/value type); do not combine with specific [value hints](@ref lydvalhints) |
| or [node hints](@ref lydnodehints). */ |
| /** |
| * @} lydhints |
| */ |
| |
| /** |
| * @brief Data node structure for unparsed (opaque) nodes. |
| */ |
| struct lyd_node_opaq { |
| uint32_t hash; /**< always 0 */ |
| uint32_t flags; /**< always 0 */ |
| const struct lysc_node *schema; /**< always NULL */ |
| struct lyd_node *parent; /**< pointer to the parent node (NULL in case of root node) */ |
| struct lyd_node *next; /**< pointer to the next sibling node (NULL if there is no one) */ |
| struct lyd_node *prev; /**< pointer to the previous sibling node (last sibling if there is none) */ |
| struct lyd_attr *attr; /**< pointer to the list of generic attributes of this node */ |
| void *priv; /**< private user data, not used by libyang */ |
| |
| struct lyd_node *child; /**< pointer to the child node (compatible with ::lyd_node_inner) */ |
| |
| struct ly_opaq_name name; /**< node name with module information */ |
| const char *value; /**< original value */ |
| LY_PREFIX_FORMAT format; /**< format of the node and any prefixes, ::LY_PREF_XML or ::LY_PREF_JSON */ |
| void *val_prefix_data; /**< format-specific prefix data */ |
| uint32_t hints; /**< additional information about from the data source, see the [hints list](@ref lydhints) */ |
| |
| const struct ly_ctx *ctx; /**< libyang context */ |
| }; |
| |
| /** |
| * @brief Get the generic parent pointer of a data node. |
| * |
| * @param[in] node Node whose parent pointer to get. |
| * @return Pointer to the parent node of the @p node. |
| * @return NULL in case of the top-level node or if the @p node is NULL itself. |
| */ |
| struct lyd_node *lyd_parent(const struct lyd_node *node); |
| |
| /** |
| * @brief Get the child pointer of a generic data node. |
| * |
| * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq). |
| * |
| * If you need to skip key children, use ::lyd_child_no_keys(). |
| * |
| * @param[in] node Node to use. |
| * @return Pointer to the first child node (if any) of the @p node. |
| */ |
| struct lyd_node *lyd_child(const struct lyd_node *node); |
| |
| /** |
| * @brief Get the child pointer of a generic data node but skip its keys in case it is ::LYS_LIST. |
| * |
| * Decides the node's type and in case it has a children list, returns it. Supports even the opaq nodes (::lyd_node_opaq). |
| * |
| * If you need to take key children into account, use ::lyd_child(). |
| * |
| * @param[in] node Node to use. |
| * @return Pointer to the first child node (if any) of the @p node. |
| */ |
| struct lyd_node *lyd_child_no_keys(const struct lyd_node *node); |
| |
| /** |
| * @brief Get the owner module of the data node. It is the module of the top-level schema node. Generally, |
| * in case of augments it is the target module, recursively, otherwise it is the module where the data node is defined. |
| * |
| * Also works for opaque nodes, if it is possible to resolve the module. |
| * |
| * @param[in] node Data node to examine. |
| * @return Module owner of the node. |
| */ |
| const struct lys_module *lyd_owner_module(const struct lyd_node *node); |
| |
| /** |
| * @brief Check whether a node value equals to its default one. |
| * |
| * @param[in] node Term node to test. |
| * @return false (no, it is not a default node) or true (yes, it is default) |
| */ |
| ly_bool lyd_is_default(const struct lyd_node *node); |
| |
| /** |
| * @brief Learn the relative position of a list or leaf-list instance within other instances of the same schema node. |
| * |
| * @param[in] instance List or leaf-list instance to get the position of. |
| * return 0 on error. |
| * return Positive integer of the @p instance position. |
| */ |
| uint32_t lyd_list_pos(const struct lyd_node *instance); |
| |
| /** |
| * @brief Get the first sibling of the given node. |
| * |
| * @param[in] node Node which first sibling is going to be the result. |
| * @return The first sibling of the given node or the node itself if it is the first child of the parent. |
| */ |
| struct lyd_node *lyd_first_sibling(const struct lyd_node *node); |
| |
| /** |
| * @brief Learn the length of LYB data. |
| * |
| * @param[in] data LYB data to examine. |
| * @return Length of the LYB data chunk, |
| * @return -1 on error. |
| */ |
| int lyd_lyb_data_length(const char *data); |
| |
| /** |
| * @brief Copy anydata value from one node to another. Target value is freed first. |
| * |
| * @param[in,out] trg Target node. |
| * @param[in] value Source value, may be NULL when the target value is only freed. |
| * @param[in] value_type Source value type. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_any_copy_value(struct lyd_node *trg, const union lyd_any_value *value, LYD_ANYDATA_VALUETYPE value_type); |
| |
| /** |
| * @brief Create a new inner node in the data tree. |
| * |
| * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| * @param[in] name Schema node name of the new data node. The node can be #LYS_CONTAINER, #LYS_NOTIF, #LYS_RPC, or #LYS_ACTION. |
| * @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 |
| * taken into consideration. Otherwise, the output's data node is going to be created. |
| * @param[out] node Optional created node. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, struct lyd_node **node); |
| |
| /** |
| * @brief Create a new list node in the data tree. |
| * |
| * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
| * @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 |
| * taken into consideration. Otherwise, the output's data node is going to be created. |
| * @param[out] node Optional created node. |
| * @param[in] ... Ordered key values of the new list instance, all must be set. In case of an instance-identifier |
| * or identityref value, the JSON format is expected (module names instead of prefixes). No keys are expected for |
| * key-less lists. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ly_bool output, struct lyd_node **node, ...); |
| |
| /** |
| * @brief Create a new list node in the data tree. |
| * |
| * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| * @param[in] name Schema node name of the new data node. The node must be #LYS_LIST. |
| * @param[in] keys All key values predicate in the form of "[key1='val1'][key2='val2']...", they do not have to be ordered. |
| * In case of an instance-identifier or identityref value, the JSON format is expected (module names instead of prefixes). |
| * Use NULL or string of length 0 in case of key-less list. |
| * @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 |
| * taken into consideration. Otherwise, the output's data node is going to be created. |
| * @param[out] node Optional created node. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys, |
| ly_bool output, struct lyd_node **node); |
| |
| /** |
| * @brief Create a new term node in the data tree. |
| * |
| * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| * @param[in] name Schema node name of the new data node. The node can be #LYS_LEAF or #LYS_LEAFLIST. |
| * @param[in] val_str String form of the value of the node being created. In case of an instance-identifier or identityref |
| * value, the JSON format is expected (module names instead of prefixes). |
| * @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 |
| * taken into consideration. Otherwise, the output's data node is going to be created. |
| * @param[out] node Optional created node. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str, |
| ly_bool output, struct lyd_node **node); |
| |
| /** |
| * @brief Create a new any node in the data tree. |
| * |
| * @param[in] parent Parent node for the node being created. NULL in case of creating a top level element. |
| * @param[in] module Module of the node being created. If NULL, @p parent module will be used. |
| * @param[in] name Schema node name of the new data node. The node can be #LYS_ANYDATA or #LYS_ANYXML. |
| * @param[in] value Value to be directly assigned to the node. Expected type is determined by @p value_type. |
| * @param[in] value_type Type of the provided value in @p value. |
| * @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 |
| * taken into consideration. Otherwise, the output's data node is going to be created. |
| * @param[out] node Optional created node. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name, void *value, |
| LYD_ANYDATA_VALUETYPE value_type, ly_bool output, struct lyd_node **node); |
| |
| /** |
| * @brief Create new metadata. |
| * |
| * @param[in] ctx libyang context, |
| * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL. |
| * @param[in] module Module of the metadata being created. If NULL, @p name must include module name as the prefix. |
| * @param[in] name Annotation name of the new metadata. It can include the annotation module as the prefix. |
| * If the prefix is specified it is always used but if not specified, @p module must be set. |
| * @param[in] val_str String form of the value of the metadata. In case of an instance-identifier or identityref |
| * value, the JSON format is expected (module names instead of prefixes). |
| * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers. |
| * @param[out] meta Optional created metadata. Must be set if @p parent is NULL. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_meta(const struct ly_ctx *ctx, struct lyd_node *parent, const struct lys_module *module, const char *name, |
| const char *val_str, ly_bool clear_dflt, struct lyd_meta **meta); |
| |
| /** |
| * @brief Create new metadata from an opaque node attribute if possible. |
| * |
| * @param[in] ctx libyang context. |
| * @param[in] parent Optional parent node for the metadata being created. Must be set if @p meta is NULL. |
| * @param[in] clear_dflt Whether to clear the default flag starting from @p parent, recursively all NP containers. |
| * @param[in] attr Opaque node attribute to parse into metadata. |
| * @param[out] meta Optional created metadata. Must be set if @p parent is NULL. |
| * @return LY_SUCCESS on success. |
| * @return LY_ENOT if the attribute could not be parsed into any metadata. |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_new_meta2(const struct ly_ctx *ctx, struct lyd_node *parent, ly_bool clear_dflt, const struct lyd_attr *attr, |
| struct lyd_meta **meta); |
| |
| /** |
| * @brief Create a new opaque node in the data tree. |
| * |
| * @param[in] parent Parent node for the node beaing created. NULL in case of creating a top level element. |
| * @param[in] ctx libyang context. If NULL, @p parent context will be used. |
| * @param[in] name Node name. |
| * @param[in] value Node value, may be NULL. |
| * @param[in] module_name Node module name. |
| * @param[out] node Optional created node. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_opaq(struct lyd_node *parent, const struct ly_ctx *ctx, const char *name, const char *value, |
| const char *module_name, struct lyd_node **node); |
| |
| /** |
| * @brief Create new attribute for an opaque data node. |
| * |
| * @param[in] parent Parent opaque node for the attribute being created. |
| * @param[in] module_name Name of the module of the attribute being created. There may be none. |
| * @param[in] name Attribute name. It can include the module name as the prefix. |
| * @param[in] val_str String value of the attribute. Is stored directly. |
| * @param[out] attr Optional created attribute. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_attr(struct lyd_node *parent, const char *module_name, const char *name, const char *val_str, |
| struct lyd_attr **attr); |
| |
| /** |
| * @ingroup datatree |
| * @defgroup pathoptions Data path creation options |
| * |
| * Various options to change lyd_new_path*() behavior. |
| * |
| * Default behavior: |
| * - if the target node already exists (and is not default), an error is returned. |
| * - the whole path to the target node is created (with any missing parents) if necessary. |
| * - RPC output schema children are completely ignored in all modules. Input is searched and nodes created normally. |
| * @{ |
| */ |
| |
| #define LYD_NEW_PATH_UPDATE 0x01 /**< If the target node exists, is a leaf, and it is updated with a new value or its |
| default flag is changed, it is returned. If the target node exists and is not |
| a leaf or generally no change occurs in the @p parent tree, NULL is returned and |
| no error set. */ |
| #define LYD_NEW_PATH_OUTPUT 0x02 /**< Changes the behavior to ignoring RPC/action input schema nodes and using only |
| output ones. */ |
| #define LYD_NEW_PATH_OPAQ 0x04 /**< Enables the creation of opaque nodes with some specific rules. If the __last node__ |
| in the path is not uniquely defined ((leaf-)list without a predicate) or has an |
| invalid value (leaf/leaf-list), it is created as opaque. */ |
| |
| /** @} pathoptions */ |
| |
| /** |
| * @brief Create a new node in the data tree based on a path. Cannot be used for anyxml/anydata nodes, |
| * for those use ::lyd_new_path2. |
| * |
| * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used |
| * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path |
| * and @p value is set, the predicate is preferred. |
| * |
| * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used, |
| * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted |
| * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases. |
| * @param[in] ctx libyang context, must be set if @p parent is NULL. |
| * @param[in] path [Path](@ref howtoXPath) to create. |
| * @param[in] value Value of the new leaf/leaf-list. For other node types, it is ignored. |
| * @param[in] options Bitmask of options, see @ref pathoptions. |
| * @param[out] node Optional first created node. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_path(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const char *value, |
| uint32_t options, struct lyd_node **node); |
| |
| /** |
| * @brief Create a new node in the data tree based on a path. All node types can be created. |
| * |
| * If @p path points to a list key and the list instance does not exist, the key value from the predicate is used |
| * and @p value is ignored. Also, if a leaf-list is being created and both a predicate is defined in @p path |
| * and @p value is set, the predicate is preferred. |
| * |
| * @param[in] parent Data parent to add to/modify, can be NULL. Note that in case a first top-level sibling is used, |
| * it may no longer be first if @p path is absolute and starts with a non-existing top-level node inserted |
| * before @p parent. Use ::lyd_first_sibling() to adjust @p parent in these cases. |
| * @param[in] ctx libyang context, must be set if @p parent is NULL. |
| * @param[in] path [Path](@ref howtoXPath) to create. |
| * @param[in] value Value of the new leaf/leaf-list/anyxml/anydata. For other node types, it is ignored. |
| * @param[in] value_type Anyxml/anydata node @p value type. |
| * @param[in] options Bitmask of options, see @ref pathoptions. |
| * @param[out] new_parent Optional first parent node created. If only one node was created, equals to @p new_node. |
| * @param[out] new_node Optional last node created. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_path2(struct lyd_node *parent, const struct ly_ctx *ctx, const char *path, const void *value, |
| LYD_ANYDATA_VALUETYPE value_type, uint32_t options, struct lyd_node **new_parent, struct lyd_node **new_node); |
| |
| /** |
| * @ingroup datatree |
| * @defgroup implicitoptions Implicit node creation options |
| * |
| * Various options to change lyd_new_implicit*() behavior. |
| * |
| * Default behavior: |
| * - both configuration and state missing implicit nodes are added. |
| * - for existing RPC/action nodes, input implicit nodes are added. |
| * - all implicit node types are added (non-presence containers, default leaves, and default leaf-lists). |
| * @{ |
| */ |
| |
| #define LYD_IMPLICIT_NO_STATE 0x01 /**< Do not add any implicit state nodes. */ |
| #define LYD_IMPLICIT_NO_CONFIG 0x02 /**< Do not add any implicit config nodes. */ |
| #define LYD_IMPLICIT_OUTPUT 0x04 /**< For RPC/action nodes, add output implicit nodes instead of input. */ |
| #define LYD_IMPLICIT_NO_DEFAULTS 0x08 /**< Do not add any default nodes (leaves/leaf-lists), only non-presence |
| containers. */ |
| |
| /** @} implicitoptions */ |
| |
| /** |
| * @brief Add any missing implicit nodes into a data subtree. Default nodes with a false "when" are not added. |
| * |
| * @param[in] tree Tree to add implicit nodes into. |
| * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions. |
| * @param[out] diff Optional diff with any created nodes. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_implicit_tree(struct lyd_node *tree, uint32_t implicit_options, struct lyd_node **diff); |
| |
| /** |
| * @brief Add any missing implicit nodes. Default nodes with a false "when" are not added. |
| * |
| * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used, |
| * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to |
| * adjust @p tree in these cases. |
| * @param[in] ctx libyang context, must be set only if @p tree is an empty tree. |
| * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions. |
| * @param[out] diff Optional diff with any created nodes. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_implicit_all(struct lyd_node **tree, const struct ly_ctx *ctx, uint32_t implicit_options, struct lyd_node **diff); |
| |
| /** |
| * @brief Add any missing implicit nodes of one module. Default nodes with a false "when" are not added. |
| * |
| * @param[in,out] tree Tree to add implicit nodes into. Note that in case a first top-level sibling is used, |
| * it may no longer be first if an implicit node was inserted before @p tree. Use ::lyd_first_sibling() to |
| * adjust @p tree in these cases. |
| * @param[in] module Module whose implicit nodes to create. |
| * @param[in] implicit_options Options for implicit node creation, see @ref implicitoptions. |
| * @param[out] diff Optional diff with any created nodes. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_new_implicit_module(struct lyd_node **tree, const struct lys_module *module, uint32_t implicit_options, |
| struct lyd_node **diff); |
| |
| /** |
| * @brief Change the value of a term (leaf or leaf-list) node. |
| * |
| * Node changed this way is always considered explicitly set, meaning its default flag |
| * is always cleared. |
| * |
| * @param[in] term Term node to change. |
| * @param[in] val_str New value to set, any prefixes are expected in JSON format. |
| * @return LY_SUCCESS if value was changed, |
| * @return LY_EEXIST if value was the same and only the default flag was cleared, |
| * @return LY_ENOT if the values were equal and no change occured, |
| * @return LY_ERR value on other errors. |
| */ |
| LY_ERR lyd_change_term(struct lyd_node *term, const char *val_str); |
| |
| /** |
| * @brief Change the value of a metadata instance. |
| * |
| * @param[in] meta Metadata to change. |
| * @param[in] val_str New value to set, any prefixes are expected in JSON format. |
| * @return LY_SUCCESS if value was changed, |
| * @return LY_ENOT if the values were equal and no change occured, |
| * @return LY_ERR value on other errors. |
| */ |
| LY_ERR lyd_change_meta(struct lyd_meta *meta, const char *val_str); |
| |
| /** |
| * @brief Insert a child into a parent. |
| * |
| * - if the node is part of some other tree, it is automatically unlinked. |
| * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| * |
| * @param[in] parent Parent node to insert into. |
| * @param[in] node Node to insert. |
| * @return LY_SUCCESS on success. |
| * @return LY_ERR error on error. |
| */ |
| LY_ERR lyd_insert_child(struct lyd_node *parent, struct lyd_node *node); |
| |
| /** |
| * @brief Insert a node into siblings. |
| * |
| * - if the node is part of some other tree, it is automatically unlinked. |
| * - if the node is the first node of a node list (with no parent), all the subsequent nodes are also inserted. |
| * |
| * @param[in] sibling Siblings to insert into, can even be NULL. |
| * @param[in] node Node to insert. |
| * @param[out] first Optionally return the first sibling after insertion. Can be the address of @p sibling. |
| * @return LY_SUCCESS on success. |
| * @return LY_ERR error on error. |
| */ |
| LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node, struct lyd_node **first); |
| |
| /** |
| * @brief Insert a node before another node, can be used only for user-ordered nodes. |
| * If inserting several siblings, each of them must be inserted individually. |
| * |
| * - if the node is part of some other tree, it is automatically unlinked. |
| * |
| * @param[in] sibling Sibling node to insert before. |
| * @param[in] node Node to insert. |
| * @return LY_SUCCESS on success. |
| * @return LY_ERR error on error. |
| */ |
| LY_ERR lyd_insert_before(struct lyd_node *sibling, struct lyd_node *node); |
| |
| /** |
| * @brief Insert a node after another node, can be used only for user-ordered nodes. |
| * If inserting several siblings, each of them must be inserted individually. |
| * |
| * - if the node is part of some other tree, it is automatically unlinked. |
| * |
| * @param[in] sibling Sibling node to insert after. |
| * @param[in] node Node to insert. |
| * @return LY_SUCCESS on success. |
| * @return LY_ERR error on error. |
| */ |
| LY_ERR lyd_insert_after(struct lyd_node *sibling, struct lyd_node *node); |
| |
| /** |
| * @brief Unlink the specified data subtree. |
| * |
| * @param[in] node Data tree node to be unlinked (together with all the children). |
| */ |
| void lyd_unlink_tree(struct lyd_node *node); |
| |
| /** |
| * @brief Free all the nodes (even parents of the node) in the data tree. |
| * |
| * @param[in] node Any of the nodes inside the tree. |
| */ |
| void lyd_free_all(struct lyd_node *node); |
| |
| /** |
| * @brief Free all the sibling nodes (preceding as well as succeeding). |
| * |
| * @param[in] node Any of the sibling nodes to free. |
| */ |
| void lyd_free_siblings(struct lyd_node *node); |
| |
| /** |
| * @brief Free (and unlink) the specified data (sub)tree. |
| * |
| * @param[in] node Root of the (sub)tree to be freed. |
| */ |
| void lyd_free_tree(struct lyd_node *node); |
| |
| /** |
| * @brief Free a single metadata instance. |
| * |
| * @param[in] meta Metadata to free. |
| */ |
| void lyd_free_meta_single(struct lyd_meta *meta); |
| |
| /** |
| * @brief Free the metadata instance with any following instances. |
| * |
| * @param[in] meta Metadata to free. |
| */ |
| void lyd_free_meta_siblings(struct lyd_meta *meta); |
| |
| /** |
| * @brief Free a single attribute. |
| * |
| * @param[in] ctx Context where the attributes were created. |
| * @param[in] attr Attribute to free. |
| */ |
| void lyd_free_attr_single(const struct ly_ctx *ctx, struct lyd_attr *attr); |
| |
| /** |
| * @brief Free the attribute with any following attributes. |
| * |
| * @param[in] ctx Context where the attributes were created. |
| * @param[in] attr First attribute to free. |
| */ |
| void lyd_free_attr_siblings(const struct ly_ctx *ctx, struct lyd_attr *attr); |
| |
| /** |
| * @brief Check type restrictions applicable to the particular leaf/leaf-list with the given string @p value. |
| * |
| * The given node is not modified in any way - it is just checked if the @p value can be set to the node. |
| * |
| * If there is no data node instance and you are fine with checking just the type's restrictions without the |
| * data tree context (e.g. for the case of require-instance restriction), use ::lys_value_validate(). |
| * |
| * @param[in] ctx libyang context for logging (function does not log errors when @p ctx is NULL) |
| * @param[in] node Data node for the @p value. |
| * @param[in] value String value to be checked, it is expected to be in JSON format. |
| * @param[in] value_len Length of the given @p value (mandatory). |
| * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required data instance (leafref target, |
| * instance-identifier) can be placed. NULL in case the data tree is not yet complete, |
| * then LY_EINCOMPLETE can be returned. |
| * @param[out] realtype Optional real type of the value. |
| * @return LY_SUCCESS on success |
| * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation (e.g. due to require-instance). |
| * @return LY_ERR value if an error occurred. |
| */ |
| LY_ERR lyd_value_validate(const struct ly_ctx *ctx, const struct lyd_node_term *node, const char *value, size_t value_len, |
| const struct lyd_node *tree, const struct lysc_type **realtype); |
| |
| /** |
| * @brief Compare the node's value with the given string value. The string value is first validated according to |
| * the (current) node's type. |
| * |
| * @param[in] node Data node to compare. |
| * @param[in] value String value to be compared. It does not need to be in a canonical form - as part of the process, |
| * it is validated and canonized if possible. But it is expected to be in JSON format. |
| * @param[in] value_len Length of the given @p value (mandatory). |
| * @return LY_SUCCESS on success, |
| * @return LY_ENOT if the values do not match, |
| * @return LY_ERR value if an error occurred. |
| */ |
| LY_ERR lyd_value_compare(const struct lyd_node_term *node, const char *value, size_t value_len); |
| |
| /** |
| * @ingroup datatree |
| * @defgroup datacompareoptions Data compare options |
| * @{ |
| * Various options to change the ::lyd_compare_single() and ::lyd_compare_siblings() behavior. |
| */ |
| #define LYD_COMPARE_FULL_RECURSION 0x01 /* lists and containers are the same only in case all they children |
| (subtree, so direct as well as indirect children) are the same. By default, |
| containers are the same in case of the same schema node and lists are the same |
| in case of equal keys (keyless lists do the full recursion comparison all the time). */ |
| #define LYD_COMPARE_DEFAULTS 0x02 /* By default, implicit and explicit default nodes are considered to be equal. This flag |
| changes this behavior and implicit (automatically created default node) and explicit |
| (explicitly created node with the default value) default nodes are considered different. */ |
| /** @} datacompareoptions */ |
| |
| /** |
| * @brief Compare 2 data nodes if they are equivalent. |
| * |
| * @param[in] node1 The first node to compare. |
| * @param[in] node2 The second node to compare. |
| * @param[in] options Various @ref datacompareoptions. |
| * @return LY_SUCCESS if the nodes are equivalent. |
| * @return LY_ENOT if the nodes are not equivalent. |
| */ |
| LY_ERR lyd_compare_single(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options); |
| |
| /** |
| * @brief Compare 2 lists of siblings if they are equivalent. |
| * |
| * @param[in] node1 The first sibling list to compare. |
| * @param[in] node2 The second sibling list to compare. |
| * @param[in] options Various @ref datacompareoptions. |
| * @return LY_SUCCESS if all the siblings are equivalent. |
| * @return LY_ENOT if the siblings are not equivalent. |
| */ |
| LY_ERR lyd_compare_siblings(const struct lyd_node *node1, const struct lyd_node *node2, uint32_t options); |
| |
| /** |
| * @brief Compare 2 metadata. |
| * |
| * @param[in] meta1 First metadata. |
| * @param[in] meta2 Second metadata. |
| * @return LY_SUCCESS if the metadata are equivalent. |
| * @return LY_ENOT if not. |
| */ |
| LY_ERR lyd_compare_meta(const struct lyd_meta *meta1, const struct lyd_meta *meta2); |
| |
| /** |
| * @ingroup datatree |
| * @defgroup dupoptions Data duplication options |
| * |
| * Various options to change ::lyd_dup_single(), ::lyd_dup_siblings() and ::lyd_dup_meta_single() behavior. |
| * |
| * Default behavior: |
| * - only the specified node is duplicated without siblings, parents, or children. |
| * - all the metadata of the duplicated nodes are also duplicated. |
| * @{ |
| */ |
| |
| #define LYD_DUP_RECURSIVE 0x01 /**< Duplicate not just the node but also all the children. Note that |
| list's keys are always duplicated. */ |
| #define LYD_DUP_NO_META 0x02 /**< Do not duplicate metadata of any node. */ |
| #define LYD_DUP_WITH_PARENTS 0x04 /**< If a nested node is being duplicated, duplicate also all the parents. |
| Keys are also duplicated for lists. Return value does not change! */ |
| #define LYD_DUP_WITH_FLAGS 0x08 /**< Also copy any data node flags. That will cause the duplicated data to preserve |
| its validation/default node state. */ |
| |
| /** @} dupoptions */ |
| |
| /** |
| * @brief Create a copy of the specified data tree \p node. Schema references are kept the same. |
| * |
| * @param[in] node Data tree node to be duplicated. |
| * @param[in] parent Optional parent node where to connect the duplicated node(s). |
| * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with |
| * the @p parent. |
| * @param[in] options Bitmask of options flags, see @ref dupoptions. |
| * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated |
| * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_dup_single(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup); |
| |
| /** |
| * @brief Create a copy of the specified data tree \p node with any following siblings. Schema references are kept the same. |
| * |
| * @param[in] node Data tree node to be duplicated. |
| * @param[in] parent Optional parent node where to connect the duplicated node(s). |
| * If set in combination with LYD_DUP_WITH_PARENTS, the parents chain is duplicated until it comes to and connects with |
| * the @p parent. |
| * @param[in] options Bitmask of options flags, see @ref dupoptions. |
| * @param[out] dup Optional created copy of the node. Note that in case the parents chain is duplicated for the duplicated |
| * node(s) (when LYD_DUP_WITH_PARENTS used), the first duplicated node is still returned. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_dup_siblings(const struct lyd_node *node, struct lyd_node_inner *parent, uint32_t options, struct lyd_node **dup); |
| |
| /** |
| * @brief Create a copy of the metadata. |
| * |
| * @param[in] meta Metadata to copy. |
| * @param[in] parent Node where to append the new metadata. |
| * @param[out] dup Optional created metadata copy. |
| * @return LY_ERR value. |
| */ |
| LY_ERR lyd_dup_meta_single(const struct lyd_meta *meta, struct lyd_node *parent, struct lyd_meta **dup); |
| |
| /** |
| * @ingroup datatree |
| * @defgroup mergeoptions Data merge options. |
| * |
| * Various options to change ::lyd_merge_tree() and ::lyd_merge_siblings() behavior. |
| * |
| * Default behavior: |
| * - source data tree is not modified in any way, |
| * - any default nodes in the source are ignored if there are explicit nodes in the target. |
| * @{ |
| */ |
| |
| #define LYD_MERGE_DESTRUCT 0x01 /**< Spend source data tree in the function, it cannot be used afterwards! */ |
| #define LYD_MERGE_DEFAULTS 0x02 /**< Default nodes in the source tree replace even explicit nodes in the target. */ |
| |
| /** @} mergeoptions */ |
| |
| /** |
| * @brief Merge the source data subtree into the target data tree. Merge may not be complete until validation |
| * is called on the resulting data tree (data from more cases may be present, default and non-default values). |
| * |
| * Example input: |
| * |
| * source (A1) - A2 - A3 target (B1) - B2 - B3 |
| * /\ /\ /\ /\ /\ /\ |
| * .... .... .... .... .... .... |
| * |
| * result target (A1) - B1 - B2 - B3 |
| * /\ /\ /\ /\ |
| * .... .... .... .... |
| * |
| * @param[in,out] target Target data tree to merge into, must be a top-level tree. |
| * @param[in] source Source data tree to merge, must be a top-level tree. |
| * @param[in] options Bitmask of option flags, see @ref mergeoptions. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR value on error. |
| */ |
| LY_ERR lyd_merge_tree(struct lyd_node **target, const struct lyd_node *source, uint16_t options); |
| |
| /** |
| * @brief Merge the source data tree with any following siblings into the target data tree. Merge may not be |
| * complete until validation called on the resulting data tree (data from more cases may be present, default |
| * and non-default values). |
| * |
| * Example input: |
| * |
| * source (A1) - A2 - A3 target (B1) - B2 - B3 |
| * /\ /\ /\ /\ /\ /\ |
| * .... .... .... .... .... .... |
| * |
| * result target (A1) - A2 - A3 - B1 - B2 - B3 |
| * /\ /\ /\ /\ /\ /\ |
| * .... .... .... .... .... .... |
| * |
| * @param[in,out] target Target data tree to merge into, must be a top-level tree. |
| * @param[in] source Source data tree to merge, must be a top-level tree. |
| * @param[in] options Bitmask of option flags, see @ref mergeoptions. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR value on error. |
| */ |
| LY_ERR lyd_merge_siblings(struct lyd_node **target, const struct lyd_node *source, uint16_t options); |
| |
| /** |
| * @ingroup datatree |
| * @defgroup diffoptions Data diff options. |
| * |
| * Various options to change ::lyd_diff_tree() and ::lyd_diff_siblings() behavior. |
| * |
| * Default behavior: |
| * - any default nodes are treated as non-existent and ignored. |
| * @{ |
| */ |
| |
| #define LYD_DIFF_DEFAULTS 0x01 /**< Default nodes in the trees are not ignored but treated similarly to explicit |
| nodes. Also, leaves and leaf-lists are added into diff even in case only their |
| default flag (state) was changed. */ |
| |
| /** @} diffoptions */ |
| |
| /** |
| * @brief Learn the differences between 2 data trees. |
| * |
| * The resulting diff is represented as a data tree with specific metadata from the internal 'yang' |
| * module. Most importantly, every node has an effective 'operation' metadata. If there is none |
| * defined on the node, it inherits the operation from the nearest parent. Top-level nodes must |
| * always have the 'operation' metadata defined. Additional metadata ('orig-default', 'value', |
| * 'orig-value', 'key', 'orig-key') are used for storing more information about the value in the first |
| * or the second tree. |
| * |
| * The diff tree is completely independent on the @p first and @p second trees, meaning all |
| * the information about the change is stored in the diff and the trees are not needed. |
| * |
| * !! Caution !! |
| * The diff tree should never be validated because it may easily not be valid! For example, |
| * when data from one case branch are deleted and data from another branch created - data from both |
| * branches are then stored in the diff tree simultaneously. |
| * |
| * @param[in] first First data tree. |
| * @param[in] second Second data tree. |
| * @param[in] options Bitmask of options flags, see @ref diffoptions. |
| * @param[out] diff Generated diff. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_tree(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff); |
| |
| /** |
| * @brief Learn the differences between 2 data trees including all the following siblings. |
| * |
| * @param[in] first First data tree. |
| * @param[in] second Second data tree. |
| * @param[in] options Bitmask of options flags, see @ref diffoptions. |
| * @param[out] diff Generated diff. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_siblings(const struct lyd_node *first, const struct lyd_node *second, uint16_t options, struct lyd_node **diff); |
| |
| /** |
| * @brief Callback for diff nodes. |
| * |
| * @param[in] diff_node Diff node. |
| * @param[in] data_node Matching node in data. |
| * @param[in] cb_data Arbitrary callback data. |
| * @return LY_ERR value. |
| */ |
| typedef LY_ERR (*lyd_diff_cb)(const struct lyd_node *diff_node, struct lyd_node *data_node, void *cb_data); |
| |
| /** |
| * @brief Apply the whole diff on a data tree but restrict the operation to one module. |
| * |
| * @param[in,out] data Data to apply the diff on. |
| * @param[in] diff Diff to apply. |
| * @param[in] mod Module, whose diff/data only to consider, NULL for all modules. |
| * @param[in] diff_cb Optional diff callback that will be called for every changed node. |
| * @param[in] cb_data Arbitrary callback data. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_apply_module(struct lyd_node **data, const struct lyd_node *diff, const struct lys_module *mod, |
| lyd_diff_cb diff_cb, void *cb_data); |
| |
| /** |
| * @brief Apply the whole diff tree on a data tree. |
| * |
| * @param[in,out] data Data to apply the diff on. |
| * @param[in] diff Diff to apply. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_apply_all(struct lyd_node **data, const struct lyd_node *diff); |
| |
| /** |
| * @ingroup datatree |
| * @defgroup diffmergeoptions Data diff merge options. |
| * |
| * Various options to change ::lyd_diff_merge_module(), ::lyd_diff_merge_tree(), and ::lyd_diff_merge_all() behavior. |
| * |
| * Default behavior: |
| * - any default nodes are expected to be a result of validation corrections and not explicitly modified. |
| * @{ |
| */ |
| |
| #define LYD_DIFF_MERGE_DEFAULTS 0x01 /**< Default nodes in the diffs are treated as possibly explicitly modified. */ |
| |
| /** @} diffoptions */ |
| |
| /** |
| * @brief Merge 2 diffs into each other but restrict the operation to one module. |
| * |
| * The diffs must be possible to be merged, which is guaranteed only if the source diff was |
| * created on data that had the target diff applied on them. In other words, this sequence is legal |
| * |
| * 1) diff1 from data1 and data2 -> data11 from apply diff1 on data1 -> diff2 from data11 and data3 -> |
| * -> data 33 from apply diff2 on data1 |
| * |
| * and reusing these diffs |
| * |
| * 2) diff11 from merge diff1 and diff2 -> data33 from apply diff11 on data1 |
| * |
| * @param[in,out] diff Target diff to merge into. |
| * @param[in] src_diff Source diff. |
| * @param[in] mod Module, whose diff only to consider, NULL for all modules. |
| * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source |
| * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is |
| * called on the root with @p diff_node being NULL. |
| * @param[in] cb_data Arbitrary callback data. |
| * @param[in] options Bitmask of options flags, see @ref diffmergeoptions. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_merge_module(struct lyd_node **diff, const struct lyd_node *src_diff, const struct lys_module *mod, |
| lyd_diff_cb diff_cb, void *cb_data, uint16_t options); |
| |
| /** |
| * @brief Merge 2 diff trees into each other. |
| * |
| * @param[in,out] diff_first Target diff first sibling to merge into. |
| * @param[in] diff_parent Target diff parent to merge into. |
| * @param[in] src_sibling Source diff sibling to merge. |
| * @param[in] diff_cb Optional diff callback that will be called for every merged node. Param @p diff_node is the source |
| * diff node while @p data_node is the updated target diff node. In case a whole subtree is added, the callback is |
| * called on the root with @p diff_node being NULL. |
| * @param[in] cb_data Arbitrary callback data. |
| * @param[in] options Bitmask of options flags, see @ref diffmergeoptions. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_merge_tree(struct lyd_node **diff_first, struct lyd_node *diff_parent, const struct lyd_node *src_sibling, |
| lyd_diff_cb diff_cb, void *cb_data, uint16_t options); |
| |
| /** |
| * @brief Merge 2 diffs into each other. |
| * |
| * @param[in,out] diff Target diff to merge into. |
| * @param[in] src_diff Source diff. |
| * @param[in] options Bitmask of options flags, see @ref diffmergeoptions. |
| * @return LY_SUCCESS on success, |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_merge_all(struct lyd_node **diff, const struct lyd_node *src_diff, uint16_t options); |
| |
| /** |
| * @brief Reverse a diff and make the opposite changes. Meaning change create to delete, delete to create, |
| * or move from place A to B to move from B to A and so on. |
| * |
| * @param[in] src_diff Diff to reverse. |
| * @param[out] diff Reversed diff. |
| * @return LY_SUCCESS on success. |
| * @return LY_ERR on error. |
| */ |
| LY_ERR lyd_diff_reverse_all(const struct lyd_node *src_diff, struct lyd_node **diff); |
| |
| /** |
| * @brief Find the target in data of a compiled instance-identifier path (the target member in ::lyd_value). |
| * |
| * @param[in] path Compiled path structure. |
| * @param[in] tree Data tree to be searched. |
| * @return Found target node, |
| * @return NULL if not found. |
| */ |
| const struct lyd_node_term *lyd_target(const struct ly_path *path, const struct lyd_node *tree); |
| |
| /** |
| * @brief Types of the different data paths. |
| */ |
| typedef enum { |
| LYD_PATH_STD, /**< Generic data path used for logging, node searching (::lyd_find_xpath(), ::lys_find_path()) as well as |
| creating new nodes (::lyd_new_path(), ::lyd_new_path2()). */ |
| LYD_PATH_STD_NO_LAST_PRED /**< Similar to ::LYD_PATH_STD except there is never a predicate on the last node. While it |
| can be used to search for nodes, do not use it to create new data nodes (lists). */ |
| } LYD_PATH_TYPE; |
| |
| /** |
| * @brief Generate path of the given node in the requested format. |
| * |
| * @param[in] node Data path of this node will be generated. |
| * @param[in] pathtype Format of the path to generate. |
| * @param[in,out] buffer Prepared buffer of the @p buflen length to store the generated path. |
| * If NULL, memory for the complete path is allocated. |
| * @param[in] buflen Size of the provided @p buffer. |
| * @return NULL in case of memory allocation error, path of the node otherwise. |
| * In case the @p buffer is NULL, the returned string is dynamically allocated and caller is responsible to free it. |
| */ |
| char *lyd_path(const struct lyd_node *node, LYD_PATH_TYPE pathtype, char *buffer, size_t buflen); |
| |
| /** |
| * @brief Find a specific metadata. |
| * |
| * @param[in] first First metadata to consider. |
| * @param[in] module Module of the metadata definition, may be NULL if @p name includes a prefix. |
| * @param[in] name Name of the metadata to find, may not include a prefix (module name) if @p module is set. |
| * @return Found metadata, |
| * @return NULL if not found. |
| */ |
| struct lyd_meta *lyd_find_meta(const struct lyd_meta *first, const struct lys_module *module, const char *name); |
| |
| /** |
| * @brief Search in the given siblings (NOT recursively) for the first target instance with the same value. |
| * Uses hashes - should be used whenever possible for best performance. |
| * |
| * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| * @param[in] target Target node to find. |
| * @param[out] match Can be NULL, otherwise the found data node. |
| * @return LY_SUCCESS on success, @p match set. |
| * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| * @return LY_ERR value if another error occurred. |
| */ |
| LY_ERR lyd_find_sibling_first(const struct lyd_node *siblings, const struct lyd_node *target, struct lyd_node **match); |
| |
| /** |
| * @brief Search in the given siblings for the first schema instance. |
| * Uses hashes - should be used whenever possible for best performance. |
| * |
| * @param[in] siblings Siblings to search in including preceding and succeeding nodes. |
| * @param[in] schema Schema node of the data node to find. |
| * @param[in] key_or_value If it is NULL, the first schema node data instance is found. For nodes with many |
| * instances, it can be set based on the type of @p schema: |
| * LYS_LEAFLIST: |
| * Searched instance value. |
| * LYS_LIST: |
| * Searched instance key values in the form of "[key1='val1'][key2='val2']...". |
| * The keys do not have to be ordered but all of them must be set. |
| * |
| * Note that any explicit values (leaf-list or list key values) will be canonized first |
| * before comparison. But values that do not have a canonical value are expected to be in the |
| * JSON format! |
| * @param[in] val_len Optional length of @p key_or_value in case it is not 0-terminated. |
| * @param[out] match Can be NULL, otherwise the found data node. |
| * @return LY_SUCCESS on success, @p match set. |
| * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| * @return LY_EINVAL if @p schema is a key-less list. |
| * @return LY_ERR value if another error occurred. |
| */ |
| LY_ERR lyd_find_sibling_val(const struct lyd_node *siblings, const struct lysc_node *schema, const char *key_or_value, |
| size_t val_len, struct lyd_node **match); |
| |
| /** |
| * @brief Search in the given data for instances of nodes matching the provided XPath. |
| * |
| * The expected format of the expression is ::LYD_JSON, meaning the first node in every path |
| * must have its module name as prefix or be the special `*` value for all the nodes. |
| * |
| * If a list instance is being selected with all its key values specified (but not necessarily ordered) |
| * in the form `list[key1='val1'][key2='val2'][key3='val3']` or a leaf-list instance in the form |
| * `leaf-list[.='val']`, these instances are found using hashes with constant (*O(1)*) complexity |
| * (unless they are defined in top-level). Other predicates can still follow the aforementioned ones. |
| * |
| * @param[in] ctx_node XPath context node. |
| * @param[in] xpath Data XPath expression filtering the matching nodes. ::LYD_JSON format is expected. |
| * @param[out] set Set of found data nodes. In case the result is a number, a string, or a boolean, |
| * the returned set is empty. |
| * @return LY_SUCCESS on success, @p set is returned. |
| * @return LY_ERR value if an error occurred. |
| */ |
| LY_ERR lyd_find_xpath(const struct lyd_node *ctx_node, const char *xpath, struct ly_set **set); |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif /* LY_TREE_DATA_H_ */ |