blob: ec11578cfdcc2fba1e765001074e0169cc1268f6 [file] [log] [blame]
Radek Krejcie7b95092019-05-15 11:03:07 +02001/**
2 * @file tree_data_internal.h
3 * @author Radek Krejci <rkrejci@cesnet.cz>
4 * @brief internal functions for YANG schema trees.
5 *
6 * Copyright (c) 2015 - 2019 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
14
15#ifndef LY_TREE_DATA_INTERNAL_H_
16#define LY_TREE_DATA_INTERNAL_H_
17
18#include "tree_data.h"
19
20/**
21 * @brief Get address of a node's child pointer if any.
22 *
23 * Decides the node's type and in case it has a children list, returns its address.
24 * @param[in] node Node to check.
25 * @return Address of the node's child member if any, NULL otherwise.
26 */
27struct lyd_node **lyd_node_children_p(struct lyd_node *node);
28
29/**
30 * @brief Check validity of data parser options.
31 *
32 * @param ctx libyang context
33 * @param options Data parser options to check
34 * @param func name of the function where called
35 * @return LY_SUCCESS when options are ok
36 * @return LY_EINVAL when multiple data types bits are set, or incompatible options are used together.
37 */
38LY_ERR lyd_parse_check_options(struct ly_ctx *ctx, int options, const char *func);
39
40/**
Radek Krejci5819f7c2019-05-31 14:53:29 +020041 * @brief Validate, canonize and store the given @p value into the node according to the node's type's rules.
Radek Krejcie7b95092019-05-15 11:03:07 +020042 *
Radek Krejci5819f7c2019-05-31 14:53:29 +020043 * @param[in] node Data node for with the @p value.
44 * @param[in] value String value to be parsed.
45 * @param[in] value_len Length of the give @p value (mandatory).
46 * @param[in] dynamic Flag if @p value is a dynamically allocated memory and should be directly consumed/freed inside the function.
47 * @return LY_ERR value.
Radek Krejcie7b95092019-05-15 11:03:07 +020048 */
Radek Krejci5819f7c2019-05-31 14:53:29 +020049LY_ERR lyd_value_parse(struct lyd_node_term *node, const char *value, size_t value_len, int dynamic);
Radek Krejcie7b95092019-05-15 11:03:07 +020050
51/**
52 * @brief Parse XML string as YANG data tree.
53 *
54 * @param[in] ctx libyang context
55 * @param[in] data Pointer to the XML string representation of the YANG data to parse.
56 * @param[in] options @ref dataparseroptions
57 * @param[out] result Resulting list of the parsed data trees. Note that NULL can be a valid result.
58 * @reutn LY_ERR value.
59 */
60LY_ERR lyd_parse_xml(struct ly_ctx *ctx, const char *data, int options, struct lyd_node **result);
61
62/**
63 * @defgroup datahash Data nodes hash manipulation
64 * @ingroup datatree
65 */
66
67/**
68 * @brief Maintain node's parent's children hash table when unlinking the node.
69 *
70 * When completely freeing data tree, it is expected to free the parent's children hash table first, at once.
71 *
72 * @param[in] node The data node being unlinked from its parent.
73 */
74void lyd_unlink_hash(struct lyd_node *node);
75
76/** @} datahash */
77
78#endif /* LY_TREE_DATA_INTERNAL_H_ */