blob: b3a2ab4073183f41825258a693a9c4039b2365c0 [file] [log] [blame]
/**
* @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"
#include "set.h"
#include "tree.h"
#include "tree_schema.h"
struct ly_ctx;
#ifdef __cplusplus
extern "C" {
#endif
/**
* @defgroup datatree Data Tree
* @{
*
* Data structures and functions to manipulate and access instance data tree.
*/
/**
* @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, NEXT and ELEM variables are expected
* to be pointers to a generic struct lyd_node.
*
* Since the next node is selected as part of #LYD_TREE_DFS_END, do not use
* continue statement between the #LYD_TREE_DFS_BEGIN and #LYD_TREE_DFS_END.
*
* Use with opening curly bracket '{' after the macro.
*
* @param START Pointer to the starting element processed first.
* @param NEXT Temporary storage, do not use.
* @param ELEM Iterator intended for use in the block.
*/
#define LYD_TREE_DFS_BEGIN(START, NEXT, ELEM) \
for ((ELEM) = (NEXT) = (START); \
(ELEM); \
(ELEM) = (NEXT))
/**
* @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, NEXT and ELEM variables are expected
* to be pointers to a generic struct lyd_node.
*
* Use with closing curly bracket '}' after the macro.
*
* @param START Pointer to the starting element processed first.
* @param NEXT Temporary storage, do not use.
* @param ELEM Iterator intended for use in the block.
*/
#define LYD_TREE_DFS_END(START, NEXT, ELEM) \
/* select element for the next run - children first */ \
(NEXT) = lyd_node_children((struct lyd_node*)ELEM); \
if (!(NEXT)) { \
/* no children */ \
if ((ELEM) == (struct lyd_node*)(START)) { \
/* we are done, (START) has no children */ \
break; \
} \
/* try siblings */ \
(NEXT) = (ELEM)->next; \
} \
while (!(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; \
} \
(NEXT) = (ELEM)->next; \
}
/**
* @brief Macro to get context from a data tree node.
*/
#define LYD_NODE_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. Also used for value prefix format (TODO link to prefix formats descriptions).
*/
typedef enum {
LYD_SCHEMA = 0, /**< invalid instance data format, value prefixes map to YANG import prefixes */
LYD_XML, /**< XML instance data format, value prefixes map to XML namespace prefixes */
LYD_JSON, /**< JSON instance data format, value prefixes map to module names */
#if 0
LYD_LYB, /**< LYB format of the instance data */
#endif
} LYD_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() 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. */
#if 0 /* TODO LYB format */
LYD_ANYDATA_LYB, /**< Value is a memory chunk with the serialized data tree in LYB format. */
#endif
} LYD_ANYDATA_VALUETYPE;
/** @} */
/**
* @brief YANG data representation
*/
struct lyd_value {
const char *original; /**< Original string representation of the value. It is never NULL, but (canonical) string representation
of the value should be always obtained via the type's printer callback (lyd_value::realtype::plugin::print). */
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 signed integer */
uint32_t uint32; /**< 32-bit signed integer */
uint64_t uint64; /**< 64-bit signed 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 lyd_value_subvalue {
struct lyd_value_prefix {
const char *prefix; /**< prefix string used in the canonized string to identify the mod of the YANG schema */
const struct lys_module *mod; /**< YANG schema module identified by the prefix string */
} *prefixes; /**< list of mappings between prefix in canonized value to a YANG schema ([sized array](@ref sizedarrays)) */
struct lyd_value *value; /**< representation of the value according to the selected union's subtype (stored as lyd_value::realpath
here, in subvalue structure */
} *subvalue; /**< data to represent 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 the
one of the union's type. The lyd_value_subvalue:prefixes provides (possible) mappings from prefixes
in original value to YANG modules. These prefixes are necessary to parse original value to the union's
subtypes. */
struct lyd_value_path {
const struct lysc_node *node; /**< Schema node representing the path segment */
struct lyd_value_path_predicate {
union {
struct {
const struct lysc_node *key; /**< key node of the predicate, in case of the leaf-list-predicate, it is the leaf-list node itself */
struct lyd_value *value; /**< value representation according to the key's type */
}; /**< key-value pair for leaf-list-predicate and key-predicate (type 1 and 2) */
uint64_t position; /**< position value for the position-predicate (type 0) */
};
uint8_t type; /**< Predicate types (see YANG ABNF): 0 - position, 1 - key-predicate, 2 - leaf-list-predicate */
} *predicates; /**< [Sized array](@ref sizedarrays) of the path segment's predicates */
} *target; /**< [Sized array](@ref sizedarrays) of (instance-identifier's) path segments. */
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. */
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 use its subtype's callbacks, but inside an internal data
lyd_value::subvalue 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. */
void *canonical_cache; /**< Generic cache for type plugins to store data necessary to print canonical value. It can be the canonical
value itself or anything else useful to print the canonical form of the value. Plugin is responsible for
freeing the cache in its free callback. */
};
/**
* @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.
*/
struct ly_prefix {
const char *pref;
const char *ns;
};
/**
* @brief Generic attribute structure.
*/
struct ly_attr {
struct lyd_node_opaq *parent; /**< data node where the attribute is placed */
struct ly_attr *next;
struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
const char *name;
const char *value;
LYD_FORMAT format;
struct ly_prefix prefix; /**< name prefix, it is stored because they are a real pain to generate properly */
};
#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 */
/**
* @defgroup dnodeflags Data node flags
* @ingroup datatree
* @{
*
* 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 Callback provided by the data/schema parsers to type plugins to resolve (format-specific) mapping between prefixes used
* in the value strings to the YANG schemas.
*
* Reverse function to ly_clb_get_prefix.
*
* XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports.
*
* @param[in] ctx libyang context to find the schema.
* @param[in] prefix Prefix found in the value string
* @param[in] prefix_len Length of the @p prefix.
* @param[in] private Internal data needed by the callback.
* @return Pointer to the YANG schema identified by the provided prefix or NULL if no mapping found.
*/
typedef const struct lys_module *(*ly_clb_resolve_prefix)(const struct ly_ctx *ctx, const char *prefix, size_t prefix_len,
void *private);
/**
* @brief Callback provided by the data/schema printers to type plugins to resolve (format-specific) mapping between YANG module of a data object
* to prefixes used in the value strings.
*
* Reverse function to ly_clb_resolve_prefix.
*
* XML uses XML namespaces, JSON uses schema names as prefixes, YIN/YANG uses prefixes of the imports.
*
* @param[in] mod YANG module of the object.
* @param[in] private Internal data needed by the callback.
* @return String representing prefix for the object of the given YANG module @p mod.
*/
typedef const char *(*ly_clb_get_prefix)(const struct lys_module *mod, void *private);
/**
* @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
::struct lysc_node but ::struct lysc_action or ::struct 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 */
#ifdef LY_ENABLED_LYD_PRIV
void *priv; /**< private user data, not used by libyang */
#endif
};
/**
* @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 */
#ifdef LY_ENABLED_LYD_PRIV
void *priv; /**< private user data, not used by libyang */
#endif
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 */
#ifdef LY_ENABLED_LYD_PRIV
void *priv; /**< private user data, not used by libyang */
#endif
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 attributes of this node */
#ifdef LY_ENABLED_LYD_PRIV
void *priv; /**< private user data, not used by libyang */
#endif
union {
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 */
};
/**
* @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 ly_attr *attr;
#ifdef LY_ENABLED_LYD_PRIV
void *priv; /**< private user data, not used by libyang */
#endif
struct lyd_node *child; /**< pointer to the child node (NULL if there are none) */
const char *name;
LYD_FORMAT format;
struct ly_prefix prefix; /**< name prefix */
struct ly_prefix *val_prefs; /**< list of prefixes in the value ([sized array](@ref sizedarrays)) */
const char *value; /**< original value */
const struct ly_ctx *ctx; /**< libyang context */
};
/**
* @defgroup dataparseroptions Data parser options
* @ingroup datatree
*
* Various options to change the data tree parsers behavior.
*
* Default parser behavior:
* - complete input file is always parsed. In case of XML, even not well-formed XML document (multiple top-level
* elements) is parsed in its entirety,
* - parser silently ignores data without matching schema node definition,
* - list instances are checked whether they have all the keys, error is raised if not.
*
* Default parser validation behavior:
* - the provided data are expected to provide complete datastore content (both the configuration and state data)
* and performs data validation according to all YANG rules, specifics follow,
* - list instances are expected to have all the keys (it is not checked),
* - instantiated (status) obsolete data print a warning,
* - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have
* all the keys, leaf(-lists) correct values),
* - when statements on existing nodes are evaluated, if not satisfied, a validation error is raised,
* - if-feature statements are evaluated,
* - invalid multiple data instances/data from several cases cause a validation error,
* - default values are added.
* @{
*/
#define LYD_OPT_PARSE_ONLY 0x0001 /**< Data will be only parsed and no validation will be performed. When statements
are kept unevaluated, union types may not be fully resolved, if-feature
statements are not checked, and default values are not added (only the ones
parsed are present). */
#define LYD_OPT_TRUSTED 0x0002 /**< Data are considered trusted so they will be parsed as validated. If the parsed
data are not valid, using this flag may lead to some unexpected behavior!
This flag can be used only with #LYD_OPT_PARSE_ONLY. */
#define LYD_OPT_STRICT 0x0004 /**< Instead of silently ignoring data without schema definition raise an error.
Do not combine with #LYD_OPT_OPAQ. */
#define LYD_OPT_OPAQ 0x0008 /**< Instead of silently ignoring data without definition, parse them into
an opaq node. Do not combine with #LYD_OPT_STRICT. */
#define LYD_OPT_NO_STATE 0x0010 /**< Forbid state data in the parsed data. */
#define LYD_OPT_MASK 0xFFFF /**< Mask for all the parser options. */
/** @} dataparseroptions */
/**
* @defgroup datavalidationoptions Data validation options
* @ingroup datatree
*
* Various options to change data validation behaviour, both for the parser and separate validation.
*
* Default separate validation behavior:
* - the provided data are expected to provide complete datastore content (both the configuration and state data)
* and performs data validation according to all YANG rules, specifics follow,
* - instantiated (status) obsolete data print a warning,
* - all types are fully resolved (leafref/instance-identifier targets, unions) and must be valid (lists have
* all the keys, leaf(-lists) correct values),
* - when statements on existing nodes are evaluated. Depending on the previous when state (from previous validation
* or parsing), the node is silently auto-deleted if the state changed from true to false, otherwise a validation error
* is raised if it evaluates to false,
* - if-feature statements are evaluated,
* - data from several cases behave based on their previous state (from previous validation or parsing). If there existed
* already a case and another one was added, the previous one is silently auto-deleted. Otherwise (if data from 2 or
* more cases were created) a validation error is raised,
* - default values are added.
*
* @{
*/
#define LYD_VALOPT_NO_STATE 0x00010000 /**< Consider state data not allowed and raise an error if they are found. */
#define LYD_VALOPT_DATA_ONLY 0x00020000 /**< Validate only modules whose data actually exist. */
#define LYD_VALOPT_INPUT 0x00040000 /**< Validate RPC/action request (input parameters). */
#define LYD_VALOPT_OUTPUT 0x00080000 /**< Validate RPC/action reply (output parameters). */
#define LYD_VALOPT_MASK 0xFFFF0000 /**< Mask for all the validation options. */
/** @} datavalidationoptions */
//#define LYD_OPT_VAL_DIFF 0x40000 /**< Flag only for validation, store all the data node changes performed by the validation
// in a diff structure. */
//#define LYD_OPT_DATA_TEMPLATE 0x1000000 /**< Data represents YANG data template. */
/**
* @brief Get the node's children list if any.
*
* Decides the node's type and in case it has a children list, returns it.
* @param[in] node Node to check.
* @return Pointer to the first child node (if any) of the \p node.
*/
struct lyd_node *lyd_node_children(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.
*
* @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 Parse (and validate) data from memory.
*
* In case of LY_XML format, the data string is parsed completely. It means that when it contains
* a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
* returned data node is a root of the first tree with other trees connected via the next pointer.
* This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
*
* @param[in] ctx Context to connect with the data tree being built here.
* @param[in] data Serialized data in the specified format.
* @param[in] format Format of the input data to be parsed.
* @param[in] options Parser and validation options, see @ref parseroptions.
* @return Pointer to the built data tree or NULL in case of empty \p data. To free the returned structure,
* use lyd_free_all().
* @return NULL in case of error. The error information can be then obtained using ly_err* functions.
*/
struct lyd_node *lyd_parse_mem(struct ly_ctx *ctx, const char *data, LYD_FORMAT format, int options);
/**
* @brief Read (and validate) data from the given file descriptor.
*
* \note Current implementation supports only reading data from standard (disk) file, not from sockets, pipes, etc.
*
* In case of LY_XML format, the file content is parsed completely. It means that when it contains
* a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
* returned data node is a root of the first tree with other trees connected via the next pointer.
* This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
*
* @param[in] ctx Context to connect with the data tree being built here.
* @param[in] fd The standard file descriptor of the file containing the data tree in the specified format.
* @param[in] format Format of the input data to be parsed.
* @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_PARSE_ONLY implicitly.
* @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
* use lyd_free_all().
* @return NULL in case of error. The error information can be then obtained using ly_err* functions.
*/
struct lyd_node *lyd_parse_fd(struct ly_ctx *ctx, int fd, LYD_FORMAT format, int options);
/**
* @brief Read (and validate) data from the given file path.
*
* In case of LY_XML format, the file content is parsed completely. It means that when it contains
* a non well-formed XML with multiple root elements, all those sibling XML trees are parsed. The
* returned data node is a root of the first tree with other trees connected via the next pointer.
* This behavior can be changed by #LYD_OPT_NOSIBLINGS option.
*
* @param[in] ctx Context to connect with the data tree being built here.
* @param[in] path Path to the file containing the data tree in the specified format.
* @param[in] format Format of the input data to be parsed.
* @param[in] options Parser options, see @ref parseroptions. \p format LYD_LYB uses #LYD_OPT_PARSE_ONLY implicitly.
* @return Pointer to the built data tree or NULL in case of empty file. To free the returned structure,
* use lyd_free_all().
* @return NULL in case of error. The error information can be then obtained using ly_err* functions.
*/
struct lyd_node *lyd_parse_path(struct ly_ctx *ctx, const char *path, LYD_FORMAT format, int options);
/**
* @brief Fully validate a data tree.
*
* @param[in,out] tree Data tree to recursively validate. May be changed by validation.
* @param[in] ctx libyang context. Can be NULL if @p tree is set.
* @param[in] val_opts Validation options (@ref datavalidationoptions).
* @return LY_SUCCESS on success.
* @return LY_ERR error on error.
*/
LY_ERR lyd_validate(struct lyd_node **tree, const struct ly_ctx *ctx, int val_opts);
/**
* @brief Fully validate a data tree.
*
* @param[in,out] tree Data tree to recursively validate. May be changed by validation.
* @param[in] modules Array of modules to validate.
* @param[in] mod_count Number of @p modules.
* @param[in] val_opts Validation options (@ref datavalidationoptions).
* @return LY_SUCCESS on success.
* @return LY_ERR error on error.
*/
LY_ERR lyd_validate_modules(struct lyd_node **tree, const struct lys_module **modules, int mod_count, int val_opts);
/**
* @brief Validate an RPC/action, notification, or RPC/action reply.
*
* @param[in,out] op_tree Operation tree with any parents. It can point to the operation itself or any of
* its parents, only the operation subtree is actually validated.
* @param[in] tree Tree to be used for validating references from the operation subtree.
* @param[in] val_opts Specific validation option (@ref datavalidationoptions):
* 0 - no validation option for validation notifications,
* ::LYD_VALOPT_INPUT - for validating RPC/action request (input),
* ::LYD_VALOPT_OUTPUT - for validatin RPC/action reply (output).
* @return LY_SUCCESS on success.
* @return LY_ERR error on error.
*/
LY_ERR lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *tree, int val_opts);
/**
* @brief Create a new inner node in a 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.
* @return New created node.
* @return NULL on error.
*/
struct lyd_node *lyd_new_inner(struct lyd_node *parent, const struct lys_module *module, const char *name);
/**
* @brief Create a new list node in a 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] ... 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).
* @return New created node.
* @return NULL on error.
*/
struct lyd_node *lyd_new_list(struct lyd_node *parent, const struct lys_module *module, const char *name, ...);
/**
* @brief Create a new list node in a 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).
* @return New created node.
* @return NULL on error.
*/
struct lyd_node *lyd_new_list2(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *keys);
/**
* @brief Create a new term node in a 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).
* @return New created node.
* @return NULL on error.
*/
struct lyd_node *lyd_new_term(struct lyd_node *parent, const struct lys_module *module, const char *name, const char *val_str);
/**
* @brief Create a new any node in a 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.
* @return New created node.
* @return NULL on error.
*/
struct lyd_node *lyd_new_any(struct lyd_node *parent, const struct lys_module *module, const char *name,
const void *value, LYD_ANYDATA_VALUETYPE value_type);
/**
* @brief Insert a child into a parent. It is inserted as the last child.
*
* - 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(struct lyd_node *parent, struct lyd_node *node);
/**
* @brief Insert a node into siblings. It is inserted as the last sibling.
*
* - 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.
* @param[in] node Node to insert.
* @return LY_SUCCESS on success.
* @return LY_ERR error on error.
*/
LY_ERR lyd_insert_sibling(struct lyd_node *sibling, struct lyd_node *node);
/**
* @brief Insert a node before another node that is its schema sibling.
*
* - 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 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 that is its schema sibling.
*
* - 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 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.
*
* @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 Destroy metadata.
*
* @param[in] ctx Context where the metadata was created.
* @param[in] meta Metadata to destroy
* @param[in] recursive Zero to destroy only the single metadata (the metadata list is corrected),
* non-zero to destroy also all the subsequent metadata in the list.
*/
void lyd_free_meta(const struct ly_ctx *ctx, struct lyd_meta *meta, int recursive);
/**
* @brief Destroy attributes.
*
* @param[in] ctx Context where the attributes were created.
* @param[in] attr Attributes to destroy.
* @param[in] recursive Zero to destroy only the single attribute (the attribute list is corrected),
* non-zero to destroy also all the subsequent attributes in the list.
*/
void ly_free_attr(const struct ly_ctx *ctx, struct ly_attr *attr, int recursive);
/**
* @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.
* @param[in] value_len Length of the given @p value (mandatory).
* @param[in] get_prefix Callback function to resolve prefixes used in the @p value string.
* @param[in] get_prefix_data Private data for the @p get_prefix callback.
* @param[in] format Input format of the data.
* @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.
* @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,
ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree);
/**
* @brief Compare the node's value with the given string value. The string value is first validated according to the 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.
* @param[in] value_len Length of the given @p value (mandatory).
* @param[in] get_prefix Callback function to resolve prefixes used in the @p value string.
* @param[in] get_prefix_data Private data for the @p get_prefix callback.
* @param[in] format Input format of the data.
* @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.
* @return LY_SUCCESS on success
* @return LY_EINCOMPLETE in case of success when the @p trees is not provided and it was needed to finish the validation of
* the given string @p value (e.g. due to require-instance).
* @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,
ly_clb_resolve_prefix get_prefix, void *get_prefix_data, LYD_FORMAT format, const struct lyd_node *tree);
/**
* @defgroup datacompareoptions Data compare options
* @ingroup datatree
*
* Various options to change the lyd_compare() 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(const struct lyd_node *node1, const struct lyd_node *node2, int options);
/**
* @defgroup dupoptions Data duplication options
* @ingroup datatree
*
* Various options to change lyd_dup() behavior.
*
* Default behavior:
* - only the specified node is duplicated without siblings, parents, or children.
* - all the attributes 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_ATTR 0x02 /**< Do not duplicate attributes 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_SIBLINGS 0x08 /**< Duplicate also all the sibling of the given node. */
#define LYD_DUP_WITH_WHEN 0x10 /**< Also copy any when evaluation state flags. This is useful in case the copied
nodes are actually still part of the same datastore meaning no dependency data
could have changed. Otherwise nothing is assumed about the copied node when
state and it is evaluated from scratch during validation. */
/** @} dupoptions */
/**
* @brief Create a copy of the specified data tree \p node. Schema references are kept the same.
*
* __PARTIAL CHANGE__ - validate after the final change on the data tree (see @ref howtodatamanipulators).
*
* @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 connect with the @p parent
* (if the parents chain does not match at some node the schema node of the provided @p parent, duplication fails).
* @param[in] options Bitmask of options flags, see @ref dupoptions.
* @return Created copy of the provided data \p node (the first of the duplicated siblings when LYD_DUP_WITH_SIBLINGS used).
* 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, not a pointer to the duplicated parents.
*/
struct lyd_node *lyd_dup(const struct lyd_node *node, struct lyd_node_inner *parent, int options);
/**
* @brief Resolve instance-identifier defined by lyd_value_path structure.
*
* @param[in] path Path structure specifying the instance-identifier target.
* @param[in] tree Data tree to be searched.
* @return Target node of the instance-identifier present in the given data @p tree.
*/
const struct lyd_node_term *lyd_target(struct lyd_value_path *path, const struct lyd_node *tree);
/**
* @brief Get string value of a term data \p node.
*
* @param[in] node Data tree node with the value.
* @param[out] dynamic Whether the string value was dynmically allocated.
* @return String value of @p node, if @p dynamic, needs to be freed.
*/
const char *lyd_value2str(const struct lyd_node_term *node, int *dynamic);
/**
* @brief Get string value of a metadata \p meta.
*
* @param[in] meta Metadata with the value.
* @param[out] dynamic Whether the string value was dynmically allocated.
* @return String value of @p meta, if @p dynamic, needs to be freed.
*/
const char *lyd_meta2str(const struct lyd_meta *meta, int *dynamic);
/**
* @brief Types of the different data paths.
*/
typedef enum {
LYD_PATH_LOG, /**< Descriptive path format used in log messages */
} LYD_PATH_TYPE;
/**
* @brief Generate path of the given node in the requested format.
*
* @param[in] node Schema 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 the node, in the list, satisfying the given restrictions.
* Does **not** use hashes - should not be used unless necessary for best performance.
*
* @param[in] first Starting sibling node for search, only succeeding ones are searched.
* @param[in] module Module of the node to find.
* @param[in] name Name of the node to find.
* @param[in] name_len Optional length of @p name in case it is not 0-terminated string.
* @param[in] key_or_value Expected value depends on the type of @p name node:
* LYS_CONTAINER:
* LYS_ANYXML:
* LYS_ANYDATA:
* LYS_NOTIF:
* LYS_RPC:
* LYS_ACTION:
* NULL should be always set, will be ignored.
* LYS_LEAF:
* LYS_LEAFLIST:
* Optional restriction on the specific leaf(-list) value.
* LYS_LIST:
* Optional keys values of the matching list instances in the form of "[key1='val1'][key2='val2']...".
* The keys do not have to be ordered and not all keys need to be specified.
*
* Note that any explicit values (leaf, 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 string.
* @param[out] match 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_next(const struct lyd_node *first, const struct lys_module *module, const char *name,
size_t name_len, const char *key_or_value, size_t val_len, struct lyd_node **match);
/**
* @brief Search in the given siblings (NOT recursively) for the first target 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] 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 all target instances.
* 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. Key-less lists are compared based on
* all its descendants (both direct and indirect).
* @param[out] set Found nodes in a set in case of success.
* @return LY_SUCCESS on success.
* @return LY_ENOTFOUND if no matching siblings found.
* @return LY_ERR value if another error occurred.
*/
LY_ERR lyd_find_sibling_set(const struct lyd_node *siblings, const struct lyd_node *target, struct ly_set **set);
/**
* @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 Expected value depends on the type of \p schema:
* LYS_CONTAINER:
* LYS_LEAF:
* LYS_ANYXML:
* LYS_ANYDATA:
* LYS_NOTIF:
* LYS_RPC:
* LYS_ACTION:
* NULL should be always set, will be ignored.
* 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.
*
* @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_ */