Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 1 | /** |
| 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" |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 19 | #include "plugins_types.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 20 | |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 21 | #include <assert.h> |
| 22 | #include <stddef.h> |
| 23 | |
| 24 | static_assert(offsetof(struct lyd_node, flags) == offsetof(struct lyd_node_opaq, flags), ""); |
| 25 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 26 | /** |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 27 | * @brief Check whether a node to be deleted is the first top-level sibling. |
| 28 | * |
| 29 | * @param[in] first First sibling. |
| 30 | * @param[in] to_del Node to be deleted. |
| 31 | */ |
| 32 | #define LYD_DEL_IS_ROOT(first, to_del) (((first) == (to_del)) && !(first)->parent && !(first)->prev->next) |
| 33 | |
| 34 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 35 | * @brief Get address of a node's child pointer if any. |
| 36 | * |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 37 | * @param[in] node Node to check. |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 38 | * @return Address of the node's child member, |
| 39 | * @return NULL if there is no child pointer. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 40 | */ |
| 41 | struct lyd_node **lyd_node_children_p(struct lyd_node *node); |
| 42 | |
| 43 | /** |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 44 | * @brief Create a term (leaf/leaf-list) node from a string value. |
| 45 | * |
| 46 | * Hash is calculated and new node flag is set. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 47 | * |
| 48 | * @param[in] schema Schema node of the new data node. |
| 49 | * @param[in] value String value to be parsed. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 50 | * @param[in] value_len Length of @p value, must be set correctly. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 51 | * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed. |
| 52 | * @param[in] get_prefix Parser-specific getter to resolve prefixes used in the @p value string. |
| 53 | * @param[in] prefix_data User data for @p get_prefix. |
| 54 | * @param[in] format Input format of @p value. |
| 55 | * @param[out] node Created node. |
| 56 | * @return LY_SUCCESS on success. |
| 57 | * @return LY_EINCOMPLETE in case data tree is needed to finish the validation. |
| 58 | * @return LY_ERR value if an error occurred. |
| 59 | */ |
| 60 | LY_ERR lyd_create_term(const struct lysc_node *schema, const char *value, size_t value_len, int *dynamic, |
| 61 | ly_clb_resolve_prefix get_prefix, void *prefix_data, LYD_FORMAT format, struct lyd_node **node); |
| 62 | |
| 63 | /** |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 64 | * @brief Create a term (leaf/leaf-list) node from a parsed value by duplicating it. |
| 65 | * |
| 66 | * Hash is calculated and new node flag is set. |
| 67 | * |
| 68 | * @param[in] schema Schema node of the new data node. |
| 69 | * @param[in] val Parsed value to use. |
| 70 | * @param[out] node Created node. |
| 71 | * @return LY_SUCCESS on success. |
| 72 | * @return LY_ERR value if an error occurred. |
| 73 | */ |
| 74 | LY_ERR lyd_create_term2(const struct lysc_node *schema, const struct lyd_value *val, struct lyd_node **node); |
| 75 | |
| 76 | /** |
| 77 | * @brief Create an inner (container/list/RPC/action/notification) node. |
| 78 | * |
| 79 | * Hash is calculated and new node flag is set except |
| 80 | * for list with keys, when the hash is not calculated! |
| 81 | * Also, non-presence container has its default flag set. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 82 | * |
| 83 | * @param[in] schema Schema node of the new data node. |
| 84 | * @param[out] node Created node. |
| 85 | * @return LY_SUCCESS on success. |
| 86 | * @return LY_ERR value if an error occurred. |
| 87 | */ |
| 88 | LY_ERR lyd_create_inner(const struct lysc_node *schema, struct lyd_node **node); |
| 89 | |
| 90 | /** |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 91 | * @brief Create a list with all its keys (cannot be used for key-less list). |
| 92 | * |
| 93 | * Hash is calculated and new node flag is set. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 94 | * |
| 95 | * @param[in] schema Schema node of the new data node. |
| 96 | * @param[in] keys_str List instance key values in the form of "[key1='val1'][key2='val2']...". |
| 97 | * The keys do not have to be ordered but all of them must be set. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 98 | * @param[in] keys_len Length of @p keys_str, must be set correctly. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 99 | * @param[out] node Created node. |
| 100 | * @return LY_SUCCESS on success. |
| 101 | * @return LY_ERR value if an error occurred. |
| 102 | */ |
| 103 | LY_ERR lyd_create_list(const struct lysc_node *schema, const char *keys_str, size_t keys_len, struct lyd_node **node); |
| 104 | |
| 105 | /** |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 106 | * @brief Create an anyxml/anydata node. |
| 107 | * |
| 108 | * Hash is calculated and flags are properly set based on @p is_valid. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 109 | * |
| 110 | * @param[in] schema Schema node of the new data node. |
| 111 | * @param[in] value Value of the any node, is directly assigned into the data node. |
| 112 | * @param[in] value_type Value type of the value. |
| 113 | * @param[out] node Created node. |
| 114 | * @return LY_SUCCESS on success. |
| 115 | * @return LY_ERR value if an error occurred. |
| 116 | */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 117 | LY_ERR lyd_create_any(const struct lysc_node *schema, const void *value, LYD_ANYDATA_VALUETYPE value_type, |
| 118 | struct lyd_node **node); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 119 | |
| 120 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 121 | * @brief Create an opaque node. |
| 122 | * |
| 123 | * @param[in] ctx libyang context. |
| 124 | * @param[in] name Element name. |
| 125 | * @param[in] name_len Length of @p name, must be set correctly. |
| 126 | * @param[in] value String value to be parsed. |
| 127 | * @param[in] value_len Length of @p value, must be set correctly. |
| 128 | * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed. |
| 129 | * @param[in] format Input format of @p value and @p ns. |
| 130 | * @param[in] val_prefs Possible value prefixes, array is spent. |
| 131 | * @param[in] prefix Element prefix. |
| 132 | * @param[in] pref_len Length of @p prefix, must be set correctly. |
| 133 | * @param[in] ns Node namespace, meaning depends on @p format. |
| 134 | * @param[out] node Created node. |
| 135 | * @return LY_SUCCESS on success. |
| 136 | * @return LY_ERR value if an error occurred. |
| 137 | */ |
| 138 | LY_ERR lyd_create_opaq(const struct ly_ctx *ctx, const char *name, size_t name_len, const char *value, size_t value_len, |
| 139 | int *dynamic, LYD_FORMAT format, struct ly_prefix *val_prefs, const char *prefix, size_t pref_len, |
| 140 | const char *ns, struct lyd_node **node); |
| 141 | |
| 142 | /** |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 143 | * @brief Find the key after which to insert the new key. |
| 144 | * |
| 145 | * @param[in] first_sibling List first sibling. |
| 146 | * @param[in] new_key Key that will be inserted. |
| 147 | * @return Key to insert after. |
| 148 | * @return NULL if the new key should be first. |
| 149 | */ |
| 150 | struct lyd_node *lyd_get_prev_key_anchor(const struct lyd_node *first_sibling, const struct lysc_node *new_key); |
| 151 | |
| 152 | /** |
| 153 | * @brief Insert a node into parent/siblings. In case a key is being inserted into a list, the correct position |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 154 | * is found, inserted into, and if it is the last key, parent list hash is calculated. Also, in case we are inserting |
| 155 | * into top-level siblings, insert it as the last sibling of all the module data siblings. Otherwise it is inserted at |
| 156 | * the very last place. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 157 | * |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 158 | * @param[in] parent Parent to insert into, NULL for top-level sibling. |
| 159 | * @param[in,out] first_sibling First sibling, NULL if no top-level sibling exist yet. Can be also NULL if @p parent is set. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 160 | * @param[in] node Individual node (without siblings) to insert. |
| 161 | */ |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 162 | void lyd_insert_node(struct lyd_node *parent, struct lyd_node **first_sibling, struct lyd_node *node); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 163 | |
| 164 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 165 | * @brief Create and insert a metadata (last) into a parent. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 166 | * |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 167 | * @param[in] parent Parent of the metadata, can be NULL. |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 168 | * @param[in,out] meta Metadata list to add at its end if @p parent is NULL, returned created attribute. |
| 169 | * @param[in] mod Metadata module (with the annotation definition). |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 170 | * @param[in] name Attribute name. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 171 | * @param[in] name_len Length of @p name, must be set correctly. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 172 | * @param[in] value String value to be parsed. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 173 | * @param[in] value_len Length of @p value, must be set correctly. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 174 | * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed. |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 175 | * @param[in] resolve_prefix Parser-specific getter to resolve prefixes used in the @p value string. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 176 | * @param[in] prefix_data User data for @p get_prefix. |
| 177 | * @param[in] format Input format of @p value. |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 178 | * @param[in] ctx_snode Context node for value resolution in schema. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 179 | * @return LY_SUCCESS on success. |
| 180 | * @return LY_EINCOMPLETE in case data tree is needed to finish the validation. |
| 181 | * @return LY_ERR value if an error occurred. |
| 182 | */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 183 | LY_ERR lyd_create_meta(struct lyd_node *parent, struct lyd_meta **meta, const struct lys_module *mod, const char *name, |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 184 | size_t name_len, const char *value, size_t value_len, int *dynamic, ly_clb_resolve_prefix resolve_prefix, |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 185 | void *prefix_data, LYD_FORMAT format, const struct lysc_node *ctx_snode); |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 186 | |
| 187 | /** |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 188 | * @brief Create and insert a generic attribute (last) into a parent. |
| 189 | * |
| 190 | * @param[in] parent Parent of the attribute, can be NULL. |
| 191 | * @param[in,out] attr Attribute list to add at its end if @p parent is NULL, returned created attribute. |
| 192 | * @param[in] ctx libyang context. |
| 193 | * @param[in] name Attribute name. |
| 194 | * @param[in] name_len Length of @p name, must be set correctly. |
| 195 | * @param[in] value String value to be parsed. |
| 196 | * @param[in] value_len Length of @p value, must be set correctly. |
| 197 | * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed. |
| 198 | * @param[in] format Input format of @p value and @p ns. |
| 199 | * @param[in] val_prefs Possible value prefixes, array is spent. |
| 200 | * @param[in] prefix Attribute prefix. |
| 201 | * @param[in] prefix_len Attribute prefix length. |
| 202 | * @param[in] ns Attribute namespace, meaning depends on @p format. |
| 203 | * @return LY_SUCCESS on success. |
| 204 | * @return LY_ERR value if an error occurred. |
| 205 | */ |
| 206 | LY_ERR ly_create_attr(struct lyd_node *parent, struct ly_attr **attr, const struct ly_ctx *ctx, const char *name, |
| 207 | size_t name_len, const char *value, size_t value_len, int *dynamic, LYD_FORMAT format, |
| 208 | struct ly_prefix *val_prefs, const char *prefix, size_t prefix_len, const char *ns); |
| 209 | |
| 210 | /** |
Radek Krejci | 5819f7c | 2019-05-31 14:53:29 +0200 | [diff] [blame] | 211 | * @brief Validate, canonize and store the given @p value into the node according to the node's type's rules. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 212 | * |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 213 | * @param[in] node Data node for the @p value. |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 214 | * @param[in] value String value to be parsed, must not be NULL. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 215 | * @param[in] value_len Length of the give @p value, must be set correctly. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 216 | * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed. |
Radek Krejci | 3c9758d | 2019-07-11 16:49:10 +0200 | [diff] [blame] | 217 | * @param[in] second Flag for the second call after returning LY_EINCOMPLETE |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 218 | * @param[in] get_prefix Parser-specific getter to resolve prefixes used in the @p value string. |
Radek Krejci | aca7403 | 2019-06-04 08:53:06 +0200 | [diff] [blame] | 219 | * @param[in] parser Parser's data for @p get_prefix |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 220 | * @param[in] format Input format of @p value. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 221 | * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required |
Radek Krejci | e553e6d | 2019-06-07 15:33:18 +0200 | [diff] [blame] | 222 | * data instance (leafref target, instance-identifier) can be placed. NULL in case the data tree are not yet complete, |
| 223 | * then LY_EINCOMPLETE can be returned. |
| 224 | * @return LY_SUCCESS on success |
| 225 | * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation. |
| 226 | * @return LY_ERR value if an error occurred. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 227 | */ |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 228 | LY_ERR lyd_value_parse(struct lyd_node_term *node, const char *value, size_t value_len, int *dynamic, int second, |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 229 | ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format, const struct lyd_node *tree); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 230 | |
| 231 | /** |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 232 | * @brief Validate, canonize and store the given @p value into the metadata according to the annotation type's rules. |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 233 | * |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 234 | * @param[in] ctx libyang context. |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 235 | * @param[in] meta Metadata for the @p value. |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 236 | * @param[in] value String value to be parsed, must not be NULL. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 237 | * @param[in] value_len Length of the give @p value, must be set correctly. |
Michal Vasko | 90932a9 | 2020-02-12 14:33:03 +0100 | [diff] [blame] | 238 | * @param[in,out] dynamic Flag if @p value is dynamically allocated, is adjusted when @p value is consumed. |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 239 | * @param[in] second Flag for the second call after returning LY_EINCOMPLETE |
| 240 | * @param[in] get_prefix Parser-specific getter to resolve prefixes used in the @p value string. |
| 241 | * @param[in] parser Parser's data for @p get_prefix |
| 242 | * @param[in] format Input format of the data. |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 243 | * @param[in] ctx_snode Context node for value resolution in schema. |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 244 | * @param[in] tree Data tree (e.g. when validating RPC/Notification) where the required |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 245 | * data instance (leafref target, instance-identifier) can be placed. NULL in case the data tree are not yet complete, |
| 246 | * then LY_EINCOMPLETE can be returned. |
| 247 | * @return LY_SUCCESS on success |
| 248 | * @return LY_EINCOMPLETE in case the @p trees is not provided and it was needed to finish the validation. |
| 249 | * @return LY_ERR value if an error occurred. |
| 250 | */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 251 | LY_ERR lyd_value_parse_meta(struct ly_ctx *ctx, struct lyd_meta *meta, const char *value, size_t value_len, int *dynamic, |
Michal Vasko | 8d54425 | 2020-03-02 10:19:52 +0100 | [diff] [blame] | 252 | int second, ly_clb_resolve_prefix get_prefix, void *parser, LYD_FORMAT format, |
Michal Vasko | f03ed03 | 2020-03-04 13:31:44 +0100 | [diff] [blame] | 253 | const struct lysc_node *ctx_snode, const struct lyd_node *tree); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 254 | |
| 255 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 256 | * @brief Parse XML string as YANG data tree. |
| 257 | * |
| 258 | * @param[in] ctx libyang context |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 259 | * @param[in] data Pointer to the XML data to parse. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 260 | * @param[in] options @ref dataparseroptions |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 261 | * @param[out] tree Parsed data tree. Note that NULL can be a valid result. |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 262 | * @return LY_ERR value. |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 263 | */ |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 264 | LY_ERR lyd_parse_xml_data(struct ly_ctx *ctx, const char *data, int options, struct lyd_node **tree); |
| 265 | |
| 266 | /** |
| 267 | * @brief Parse XML string as YANG RPC/action invocation. |
| 268 | * |
| 269 | * Optional \<rpc\> envelope element, if present, is [checked](https://tools.ietf.org/html/rfc6241#section-4.1) and all |
| 270 | * its XML attributes returned. In that case an RPC is expected to be parsed. |
| 271 | * |
| 272 | * Can be followed by optional \<action\> envelope element, which is also |
| 273 | * [checked](https://tools.ietf.org/html/rfc7950#section-7.15.2) and then an action is expected to be parsed. |
| 274 | * |
| 275 | * @param[in] ctx libyang context. |
| 276 | * @param[in] data Pointer to the XML data to parse. |
| 277 | * @param[out] tree Parsed RPC/action data tree. |
| 278 | * @param[out] attr Any found attributes on the rpc envelope. |
| 279 | * @param[out] op Pointer to the actual operation. Useful mainly for action. |
| 280 | * @return LY_ERR value. |
| 281 | */ |
| 282 | LY_ERR lyd_parse_xml_rpc(struct ly_ctx *ctx, const char *data, struct lyd_node **tree, struct ly_attr **attr, |
| 283 | struct lyd_node **op); |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 284 | |
| 285 | /** |
| 286 | * @defgroup datahash Data nodes hash manipulation |
| 287 | * @ingroup datatree |
| 288 | */ |
| 289 | |
| 290 | /** |
Radek Krejci | 1f05b6a | 2019-07-18 16:15:06 +0200 | [diff] [blame] | 291 | * @brief Generate hash for the node. |
| 292 | * |
| 293 | * @param[in] node Data node to (re)generate hash value. |
| 294 | * @return LY_ERR value. |
| 295 | */ |
| 296 | LY_ERR lyd_hash(struct lyd_node *node); |
| 297 | |
| 298 | /** |
| 299 | * @brief Insert hash of the node into the hash table of its parent. |
| 300 | * |
| 301 | * @param[in] node Data node which hash will be inserted into the lyd_node_inner::children_hash hash table of its parent. |
| 302 | * @return LY_ERR value. |
| 303 | */ |
| 304 | LY_ERR lyd_insert_hash(struct lyd_node *node); |
| 305 | |
| 306 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 307 | * @brief Maintain node's parent's children hash table when unlinking the node. |
| 308 | * |
| 309 | * When completely freeing data tree, it is expected to free the parent's children hash table first, at once. |
| 310 | * |
| 311 | * @param[in] node The data node being unlinked from its parent. |
| 312 | */ |
| 313 | void lyd_unlink_hash(struct lyd_node *node); |
| 314 | |
| 315 | /** @} datahash */ |
| 316 | |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 317 | /** |
| 318 | * @brief Free path (target) structure of the lyd_value. |
| 319 | * |
| 320 | * @param[in] ctx libyang context. |
| 321 | * @param[in] path The structure ([sized array](@ref sizedarrays)) to free. |
| 322 | */ |
Michal Vasko | 52927e2 | 2020-03-16 17:26:14 +0100 | [diff] [blame] | 323 | void lyd_value_free_path(const struct ly_ctx *ctx, struct lyd_value_path *path); |
Radek Krejci | 084289f | 2019-07-09 17:35:30 +0200 | [diff] [blame] | 324 | |
Michal Vasko | 9b368d3 | 2020-02-14 13:53:31 +0100 | [diff] [blame] | 325 | /** |
| 326 | * @brief Find the node, in the list, satisfying the given restrictions. |
| 327 | * Does **not** use hashes - should not be used unless necessary for best performance. |
| 328 | * |
| 329 | * @param[in] first Starting sibling node for search, only succeeding ones are searched. |
| 330 | * @param[in] schema Schema node of the data node to find. |
| 331 | * @param[in] key_or_value Expected value depends on the type of @p schema: |
| 332 | * LYS_CONTAINER: |
| 333 | * LYS_ANYXML: |
| 334 | * LYS_ANYDATA: |
| 335 | * LYS_NOTIF: |
| 336 | * LYS_RPC: |
| 337 | * LYS_ACTION: |
| 338 | * NULL should be always set, will be ignored. |
| 339 | * LYS_LEAF: |
| 340 | * LYS_LEAFLIST: |
| 341 | * Optional restriction on the specific leaf(-list) value. |
| 342 | * LYS_LIST: |
| 343 | * Optional keys values of the matching list instances in the form of "[key1='val1'][key2='val2']...". |
| 344 | * The keys do not have to be ordered and not all keys need to be specified. |
| 345 | * |
| 346 | * Note that any explicit values (leaf, leaf-list or list key values) will be canonized first |
| 347 | * before comparison. But values that do not have a canonical value are expected to be in the |
| 348 | * JSON format! |
| 349 | * @param[in] val_len Optional length of the @p key_or_value argument in case it is not NULL-terminated string. |
| 350 | * @param[out] match Can be NULL, otherwise the found data node. |
| 351 | * @return LY_SUCCESS on success, @p match set. |
| 352 | * @return LY_ENOTFOUND if not found, @p match set to NULL. |
| 353 | * @return LY_ERR value if another error occurred. |
| 354 | */ |
| 355 | LY_ERR lyd_find_sibling_next2(const struct lyd_node *first, const struct lysc_node *schema, const char *key_or_value, |
| 356 | size_t val_len, struct lyd_node **match); |
| 357 | |
| 358 | /** |
Michal Vasko | b1b5c26 | 2020-03-05 14:29:47 +0100 | [diff] [blame] | 359 | * @brief Iterate over implemented modules for functions that accept specific modules or the whole context. |
| 360 | * |
| 361 | * @param[in] tree Data tree. |
| 362 | * @param[in] modules Selected modules, NULL for all. |
| 363 | * @param[in] mod_count Count of @p modules. |
| 364 | * @param[in] ctx Context, NULL for selected modules. |
| 365 | * @param[in,out] i Iterator, set to 0 on first call. |
| 366 | * @param[out] first First sibling of the returned module. |
| 367 | * @return Next module. |
| 368 | * @return NULL if all modules were traversed. |
| 369 | */ |
| 370 | const struct lys_module *lyd_mod_next_module(struct lyd_node *tree, const struct lys_module **modules, int mod_count, |
| 371 | const struct ly_ctx *ctx, uint32_t *i, struct lyd_node **first); |
| 372 | |
| 373 | /** |
| 374 | * @brief Iterate over modules for functions that want to traverse all the top-level data. |
| 375 | * |
| 376 | * @param[in,out] next Pointer to the next module data, set to first top-level sibling on first call. |
| 377 | * @param[out] first First sibling of the returned module. |
| 378 | * @return Next module. |
| 379 | * @return NULL if all modules were traversed. |
| 380 | */ |
| 381 | const struct lys_module *lyd_data_next_module(struct lyd_node **next, struct lyd_node **first); |
| 382 | |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 383 | /** |
| 384 | * @brief Check that a list has all its keys. |
| 385 | * |
| 386 | * @param[in] node List to check. |
Michal Vasko | 44685da | 2020-03-17 15:38:06 +0100 | [diff] [blame^] | 387 | * @return LY_SUCCESS on success. |
| 388 | * @return LY_ENOT on a missing key. |
Michal Vasko | 9f96a05 | 2020-03-10 09:41:45 +0100 | [diff] [blame] | 389 | */ |
| 390 | LY_ERR lyd_parse_check_keys(struct lyd_node *node); |
| 391 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 392 | #endif /* LY_TREE_DATA_INTERNAL_H_ */ |